diff --git a/add_bill_type.py b/add_bill_type.py index 673678d..5170770 100644 --- a/add_bill_type.py +++ b/add_bill_type.py @@ -18,7 +18,7 @@ CONGRESS_API_KEY = os.getenv('CONGRESS_API_KEY') driver = GraphDatabase.driver(NEO4J_URI, auth=(NEO4J_USER, NEO4J_PASSWORD)) def fetch_bills(offset): - url = f"https://api.congress.gov/v3/bill/117/sres?offset={offset}&api_key={CONGRESS_API_KEY}" + url = f"https://api.congress.gov/v3/bill/119/sres?offset={offset}&api_key={CONGRESS_API_KEY}" print(f"Fetching data from {url}") response = requests.get(url) if response.status_code == 200: diff --git a/add_csv.py b/add_csv.py index 177926d..eed2d0e 100644 --- a/add_csv.py +++ b/add_csv.py @@ -30,7 +30,6 @@ def main(csv_file_path): # Connect to Neo4j driver = create_neo4j_session(NEO4J_URI, NEO4J_USER, NEO4J_PASSWORD) - with driver.session() as session: for _, row in df.iterrows(): node_type = row['type'] @@ -43,7 +42,7 @@ def main(csv_file_path): 'date_repealed': pd.to_datetime(row['date_repealed']).strftime('%Y-%m-%d') if pd.notnull(row['date_repealed']) else None } # Create or merge the node in Neo4j - session.write_transaction(create_or_merge_node, node_type, properties) + session.execute_write(create_or_merge_node, node_type, properties) driver.close() diff --git a/add_law_sponsors.py b/add_law_sponsors.py new file mode 100644 index 0000000..fd393c2 --- /dev/null +++ b/add_law_sponsors.py @@ -0,0 +1,55 @@ +import os +from dotenv import load_dotenv +from neo4j import GraphDatabase + +# Load environment variables from .env file +load_dotenv() + +# Get Neo4j connection info from environment variables +NEO4J_URI = os.getenv('NEO4J_URI') +NEO4J_USER = os.getenv('NEO4J_USER') +NEO4J_PASSWORD = os.getenv('NEO4J_PASSWORD') + +# Function to connect to the Neo4j database and fetch the "sponsors.0.bioguideId" property of all Bill nodes +def get_sponsors_bioguide_id(uri, user, password): + driver = GraphDatabase.driver(uri, auth=(user, password)) + + with driver.session() as session: + # Cypher query to get all Bill nodes and match Person node with the same bioguideId + query = """ + MATCH (b:Bill) + WITH b, b.`sponsors.0.bioguideId` AS bioguideId + OPTIONAL MATCH (p:Person {bioguideId: bioguideId}) + WHERE NOT EXISTS((b)-[:SPONSORED]->(p)) + RETURN b.`sponsors.0.bioguideId` AS sponsorBioguideId, p + """ + + result = session.run(query) + + for record in result: + sponsor_bioguide_id = record['sponsorBioguideId'] + matched_person = record['p'] + + # Print the value of sponsors.0.bioguideId and the matched Person node + # print(f"Value of sponsors.0.bioguideId: {sponsor_bioguide_id}") + if matched_person: + person_properties = matched_person.items() + print("Matched Person Node:") + for key, value in person_properties: + print(f"{key}: {value}") + + # Create the SPONSORED relationship + create_relationship_query = """ + MATCH (b:Bill), (p:Person {bioguideId: $bioguideId}) + WHERE b.`sponsors.0.bioguideId` = $sponsorBioguideId + CREATE (p)-[:SPONSORED]->(b) + """ + session.run(create_relationship_query, bioguideId=sponsor_bioguide_id, sponsorBioguideId=sponsor_bioguide_id) + print("Created SPONSORED relationship.") + else: + continue # print("No matching Person node found.") + + driver.close() + +# Call the function with your connection info +get_sponsors_bioguide_id(NEO4J_URI, NEO4J_USER, NEO4J_PASSWORD) diff --git a/add_law_type.py b/add_law_type.py new file mode 100644 index 0000000..8bf4c56 --- /dev/null +++ b/add_law_type.py @@ -0,0 +1,68 @@ +import os +import requests +from dotenv import load_dotenv +from neo4j import GraphDatabase + +# Load environment variables from .env file +load_dotenv() + +# Neo4j connection details +NEO4J_URI = os.getenv('NEO4J_URI') +NEO4J_USER = os.getenv('NEO4J_USER') +NEO4J_PASSWORD = os.getenv('NEO4J_PASSWORD') + +# Congress API key +CONGRESS_API_KEY = os.getenv('CONGRESS_API_KEY') + +# Initialize Neo4j driver +driver = GraphDatabase.driver(NEO4J_URI, auth=(NEO4J_USER, NEO4J_PASSWORD)) + +def fetch_bills(offset): + url = f"https://api.congress.gov/v3/law/119/priv?offset={offset}&api_key={CONGRESS_API_KEY}" + print(f"Fetching data from {url}") + response = requests.get(url) + if response.status_code == 200: + return response.json() + else: + raise Exception(f"Failed to fetch data: {response.status_code}") + +def flatten_json(y): + out = {} + def flatten(x, name=''): + if type(x) is dict: + for a in x: + flatten(x[a], name + a + '_') + elif type(x) is list: + i = 0 + for a in x: + flatten(a, name + str(i) + '_') + i += 1 + else: + out[name[:-1]] = x + flatten(y) + return out + +def create_bill_node(tx, bill_data): + flat_bill_data = flatten_json(bill_data) + print(f"Creating Bill node with properties: {flat_bill_data}") + query = "CREATE (b:Law $properties)" + tx.run(query, properties=flat_bill_data) + +def main(): + offset = 0 + while True: + try: + bills_data = fetch_bills(offset) + if not bills_data or len(bills_data['bills']) == 0: + break + with driver.session() as session: + for bill in bills_data['bills']: + session.write_transaction(create_bill_node, bill) + offset += 250 + except Exception as e: + print(f"Error: {e}") + break + +if __name__ == "__main__": + main() + driver.close() diff --git a/api/endpoints/ingest_bills.py b/api/endpoints/ingest_bills.py new file mode 100644 index 0000000..d80a636 --- /dev/null +++ b/api/endpoints/ingest_bills.py @@ -0,0 +1,77 @@ +from flask import Blueprint, jsonify +import requests +import os +import json +from dotenv import load_dotenv +from app import get_driver, neo4j_logger + +load_dotenv() +bp = Blueprint('ingest_bills', __name__) + +@bp.route('/ingest_bills', methods=['POST']) +def ingest_bills(): + api_key = os.getenv('CONGRESS_API_KEY') + if not api_key: + neo4j_logger.error("Congress API key is missing in environment variables") + return jsonify({"error": "Congress API key is missing"}), 500 + + congress_number = 117 + start_offset = 0 + page_size = 250 + bills_url_template = f"https://api.congress.gov/v3/bill/{congress_number}?offset={{start_offset}}&limit={page_size}&api_key={api_key}" + + while True: + url = bills_url_template.format(start_offset=start_offset) + response = requests.get(url, timeout=10) # Add a timeout to prevent hanging requests + if response.status_code != 200: + neo4j_logger.error(f"Failed to fetch bills data: {response.status_code}, {response.text}") + return jsonify({"error": "Failed to fetch bills data"}), 500 + + bills_data = response.json() + + # Check for pagination details + total_results = int(bills_data.get('totalResults', 0)) + if not bills_data.get('bills'): + break + + # Process and create Bill nodes in Neo4j + driver = get_driver() + with driver.session() as session: + for bill in bills_data['bills']: + try: + bill_properties = {} + for key, value in bill.items(): + if isinstance(value, dict): + # Flatten nested dictionaries + for sub_key, sub_value in value.items(): + bill_properties[f"{key}_{sub_key}"] = sub_value or None + else: + bill_properties[key] = value or None + + # Ensure there is a unique identifier (bill_id) + if not bill_properties.get('bill_id'): + # Construct a bill_id based on available fields, e.g., bill_type and number + bill_id = f"{bill_properties['billType']}_{bill_properties['number']}" + bill_properties['bill_id'] = bill_id + + query_to_execute = session.write_transaction(create_bill_node, bill_properties) + print(f"Executing query: {query_to_execute}") + except Exception as e: + neo4j_logger.error(f"Error creating Bill node: {e}") + + # Update offset for pagination + start_offset += page_size + if start_offset >= total_results: + break + + return jsonify({"message": "Bill ingestion completed successfully"}), 200 + + +def create_bill_node(tx, properties): + query = """ + MERGE (b:Bill {bill_id: $bill_id}) + SET b += $properties + RETURN b + """ + result = tx.run(query, bill_id=properties.get('bill_id'), properties=properties) + return result.summary().query diff --git a/api/static/css/styles.css b/api/static/css/styles.css new file mode 100644 index 0000000..e84a281 --- /dev/null +++ b/api/static/css/styles.css @@ -0,0 +1,10 @@ +#chart { +border: 1px solid black; +margin: 20px auto; +display: block; +} + +text { + dominant-baseline: middle; + text-anchor: middle; +} diff --git a/render/app.py b/render/app.py new file mode 100644 index 0000000..ec0372e --- /dev/null +++ b/render/app.py @@ -0,0 +1,20 @@ +from flask import Flask, render_template +from dotenv import load_dotenv +import os +from neo4j import GraphDatabase + +# Load environment variables from .env file +load_dotenv() + +# Initialize Flask app +app = Flask(__name__, + static_url_path='', + static_folder='static', + template_folder='templates') + +@app.route('/') +def home(): + return render_template('index.html') + +if __name__ == '__main__': + app.run(debug=True) diff --git a/render/static/css/3d-force-graph.css b/render/static/css/3d-force-graph.css new file mode 100644 index 0000000..ef2a0c3 --- /dev/null +++ b/render/static/css/3d-force-graph.css @@ -0,0 +1,27 @@ +.graph-info-msg { + top: 50%; + width: 100%; + text-align: center; + color: lavender; + opacity: 0.7; + font-size: 22px; + position: absolute; + font-family: Sans-serif; +} + +.scene-container .clickable { + cursor: pointer; +} + +.scene-container .grabbable { + cursor: move; + cursor: grab; + cursor: -moz-grab; + cursor: -webkit-grab; +} + +.scene-container .grabbable:active { + cursor: grabbing; + cursor: -moz-grabbing; + cursor: -webkit-grabbing; +} \ No newline at end of file diff --git a/render/static/css/styles.css b/render/static/css/styles.css new file mode 100644 index 0000000..9173a9f --- /dev/null +++ b/render/static/css/styles.css @@ -0,0 +1,17 @@ +body { + font-family: Arial, sans-serif; +} + +#chart { +border: 1px solid #ccc; +} + +.node { + fill: steelblue; + stroke: white; + stroke-width: 2px; +} + +.label { + pointer-events: none; +} diff --git a/render/static/data/policymap.json b/render/static/data/policymap.json new file mode 100644 index 0000000..a850df8 --- /dev/null +++ b/render/static/data/policymap.json @@ -0,0 +1,17183 @@ +{"type":"node","id":"0","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Comer","cboCostEstimates.0.pubDate":"2023-10-10T19:58:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-274.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-274.","sponsors.0.party":"R","number":"4984","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4984/cosponsors?format=json","sponsors.0.bioguideId":"C001108","laws.0.number":"118-274","actions.url":"https://api.congress.gov/v3/bill/118/hr/4984/actions?format=json","textVersions.count":7,"latestAction.actionDate":"2025-01-06","sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","titles.count":9,"cosponsors.count":21,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-400,Part 1","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60026","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4984/text?format=json","updateDate":"2025-02-15T18:41:12Z","originChamber":"House","committees.count":4,"request.congress":"118","cboCostEstimates.1.pubDate":"2024-02-28T15:56:00Z","actions.count":45,"committeeReports.1.citation":"H. Rept. 118-400,Part 2","request.billNumber":"4984","sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4984/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4984/committees?format=json","title":"D.C. Robert F. Kennedy Memorial Stadium Campus Revitalization Act","cboCostEstimates.1.description":"As reported by the House Committee on Natural Resources on February 23, 2024\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 20, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":21,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59651","request.format":"json","latestAction_actionDate":"2025-01-06","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/400?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4984/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4984/summaries?format=json","cboCostEstimates.0.title":"H.R. 4984, D.C. Robert F. Kennedy Memorial Stadium Campus Revitalization Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/400?format=json","introducedDate":"2023-07-27","subjects.count":11,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4984?format=json","cboCostEstimates.1.title":"H.R. 4984, D.C. Robert F. Kennedy Memorial Stadium Campus Revitalization Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\n[Pages H4143-H4144]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 4984.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 17 of the U.S. Constitution,\nin that the legislation ``to exercise exclusive Legislation\nin all Cases\n[[Page H4144]]\nwhatsoever, over such District (not exceeding ten Miles\nsquare) as may, by Cession of particular States, and the\nAcceptance of Congress, become the Seat of the Government of\nthe United States, and to exercise like Authority over all\nPlaces purchased by the Consent of the Legislature of the\nState in which the Same shall be, for the Erection of Forts,\nMagazines, Arsenals, dock-Yards, and other needful\nBuildings.''\nThe single subject of this legislation is:\nTo transfer administrative jurisdiction of the District of\nColumbia RFK Memorial Stadium campus from the Secretary of\nthe Interior to the Administrator of General Services and\nauthorize a new lease with D.C. for redevelopment.\n","sponsors.0.district":1,"sponsors.0.firstName":"James","updateDateIncludingText":"2025-02-15T18:41:12Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":119,"sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2024-09-09T20:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-273.","policyArea.name":"Arts, Culture, Religion","type":"HR","latestAction.text":"Referred to the House Committee on Education and Workforce.","sponsors.0.party":"R","number":"82","amendments.count":14,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/82/cosponsors?format=json","sponsors.0.bioguideId":"B001302","laws.0.number":"118-273","actions.url":"https://api.congress.gov/v3/bill/119/hr/82/actions?format=json","latestAction.actionDate":"2025-01-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/82/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/82/amendments?format=json","titles.count":3,"cosponsors.count":330,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/119/hr/82/text?format=json","updateDate":"2025-02-06T17:42:01Z","originChamber":"House","committees.count":1,"request.congress":"119","actions.count":3,"request.billNumber":"82","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","subjects.url":"https://api.congress.gov/v3/bill/119/hr/82/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/119/hr/82/committees?format=json","title":"Defund National Endowment for the Humanities Act of 2025","cboCostEstimates.0.description":"As introduced in the House of Representatives on January 9, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":330,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60690","request.format":"json","latestAction_actionDate":"2025-01-05","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/119/hr/82/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/119/hr/82/summaries?format=json","cboCostEstimates.0.title":"H.R. 82, Social Security Fairness Act of 2023","introducedDate":"2025-01-03","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/82?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 171, Number 1 (Friday, January 3, 2025)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS of Arizona:\nH.R. 82.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to provide that none of\nthe funds made available to the National Endowment for the\nHumanities for any fiscal year may be used to carry out\nsection 7 of the National Foundation on the Arts and the\nHumanities Act of 1965.\n[Page H38]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-06T17:42:01Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9775/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Spartz","sponsors.0.isByRequest":"N","request.billNumber":"9775","sponsors.0.url":"https://api.congress.gov/v3/member/S000929?format=json","latestAction_text":"Became Public Law No: 118-269.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9775/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9775/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the facility of the United States Postal Service located at 119 North Anderson Street in Elwood, Indiana, as the \"Officer Noah Jacob Shahnavaz Post Office Building\".","latestAction.text":"Became Public Law No: 118-269.","sponsors.0.party":"R","number":"9775","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9775/cosponsors?format=json","sponsors.0.bioguideId":"S000929","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9775/titles?format=json","laws.0.number":"118-269","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9775/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9775/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Spartz, Victoria [R-IN-5]","titles.count":2,"introducedDate":"2024-09-24","cosponsors.count":8,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9775?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 149 (Tuesday, September 24, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. SPARTZ:\nH.R. 9775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 7\nArticle 1 , Section 8 , Clause 18\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 119 North Anderson Street in Elwood,\nIndiana, as the ``Officer Noah Jacob Shahnavaz Post Office\nBuilding''.\n[Page H5747]\n","sponsors.0.district":5,"sponsors.0.firstName":"Victoria","updateDateIncludingText":"2025-02-04T17:03:51Z","laws.0.type":"Public Law"}} +{"type":"node","id":"3","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Bishop","cboCostEstimates.0.pubDate":"2024-09-24T14:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-268.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-268.","sponsors.0.party":"D","number":"9600","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9600/cosponsors?format=json","sponsors.0.bioguideId":"B000490","laws.0.number":"118-268","actions.url":"https://api.congress.gov/v3/bill/118/hr/9600/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9600/relatedbills?format=json","sponsors.0.fullName":"Rep. Bishop, Sanford D. [D-GA-2]","titles.count":2,"cosponsors.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9600/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":25,"request.billNumber":"9600","sponsors.0.url":"https://api.congress.gov/v3/member/B000490?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9600/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9600/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 119 Main Street in Plains, Georgia, as the \"Jimmy and Rosalynn Carter Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60761","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9600/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9600/summaries?format=json","cboCostEstimates.0.title":"H.R. 9600, a bill to designate the facility of the United States Postal Service located at 119 Main Street in Plains, Georgia, as the “Jimmy and Rosalynn Carter Post Office","introducedDate":"2024-09-16","subjects.count":6,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9600?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BISHOP of Georgia:\nH.R. 9600.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 7\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 119 Main Street in Plains, Georgia, as the\n``Jimmy and Rosalynn Carter Post Office''.\n[Page H5239]\n","sponsors.0.district":2,"sponsors.0.firstName":"Sanford","updateDateIncludingText":"2025-02-04T17:03:48Z","laws.0.type":"Public Law"}} +{"type":"node","id":"4","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-267.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-267.","sponsors.0.party":"R","number":"9592","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9592/cosponsors?format=json","sponsors.0.bioguideId":"H001077","laws.0.number":"118-267","actions.url":"https://api.congress.gov/v3/bill/118/hr/9592/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":7,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-308","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9592/text?format=json","updateDate":"2025-02-15T20:06:11Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":25,"request.billNumber":"9592","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9592/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9592/subjects?format=json","title":"Federal Register Modernization Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/308?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9592/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9592/summaries?format=json","introducedDate":"2024-09-16","subjects.count":6,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9592?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 9592.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nThis legislation amends title 44, United States Code, to\nmodernize the Federal Register, and for other purposes.\n[Page H5239]\n","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2025-02-15T20:06:11Z","laws.0.type":"Public Law"}} +{"type":"node","id":"5","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Ross","cboCostEstimates.0.pubDate":"2024-09-24T14:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-266.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-266.","sponsors.0.party":"D","number":"9580","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9580/cosponsors?format=json","sponsors.0.bioguideId":"R000305","laws.0.number":"118-266","actions.url":"https://api.congress.gov/v3/bill/118/hr/9580/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":2,"cosponsors.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9580/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"9580","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9580/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9580/committees?format=json","title":"To designate the facility of the United States Postal Service located at 2777 Brentwood Road in Raleigh, North Carolina, as the \"Millie Dunn Veasey Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60760","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9580/summaries?format=json","cboCostEstimates.0.title":"H.R. 9580, a bill to designate the facility of the United States Postal Service located at 2777 Brentwood Road in Raleigh, North Carolina, as the “Millie Dunn Veasey Post Office","introducedDate":"2024-09-12","subjects.count":5,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9580?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 9580.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7\nThe single subject of this legislation is:\nDesignates the facility of the United States Postal Service\nlocated at 2777 Brentwood Road in Raleigh, North Carolina, as\nthe ``Millie Dunn Veasey Post Office''\n[Page H5231]\n","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"6","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Bonamici","cboCostEstimates.0.pubDate":"2024-09-24T14:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-265.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-265.","sponsors.0.party":"D","number":"9549","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9549/cosponsors?format=json","sponsors.0.bioguideId":"B001278","laws.0.number":"118-265","actions.url":"https://api.congress.gov/v3/bill/118/hr/9549/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","titles.count":2,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9549/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"9549","sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9549/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9549/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 125 South 1st Avenue in Hillsboro, Oregon, as the \"Elizabeth Furse Post Office Building\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60759","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9549/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9549/summaries?format=json","cboCostEstimates.0.title":"H.R. 9549, a bill to designate the facility of the United States Postal Service located at 125 South 1st Avenue in Hillsboro, Oregon, as the “Elizabeth Furse Post Office Building","introducedDate":"2024-09-12","subjects.count":5,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9549?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 9549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7 of the U S Constitution\nThe single subject of this legislation is:\nWould designate the facility of the United States Postal\nService located at 125 South 1st Avenue in Hillsboro, Oregon,\nas the ``Elizabeth Furse Post Office Building''.\n[Page H5230]\n","sponsors.0.district":1,"sponsors.0.firstName":"Suzanne","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"7","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Mfume","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-264.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-264.","sponsors.0.party":"D","number":"9544","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9544/cosponsors?format=json","sponsors.0.bioguideId":"M000687","laws.0.number":"118-264","actions.url":"https://api.congress.gov/v3/bill/118/hr/9544/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9544/relatedbills?format=json","sponsors.0.fullName":"Rep. Mfume, Kweisi [D-MD-7]","titles.count":2,"cosponsors.count":19,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9544/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"9544","sponsors.0.url":"https://api.congress.gov/v3/member/M000687?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9544/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 340 South Loudon Avenue in Baltimore, Maryland, as the \"United States Representative Elijah E. Cummings Post Office Building\".","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9544/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9544/summaries?format=json","introducedDate":"2024-09-11","subjects.count":5,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9544?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 141 (Wednesday, September 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MFUME:\nH.R. 9544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 Enumerated Powers, Clause 7 Post\nOffices.\nThe Congress shall have Power To establish Post Offices and\npost Roads.\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 340 South Loudon Avenue in Baltimore,\nMaryland, as the ``United States Representative Elijah E.\nCummings Post Office Building.''\n[Page H5202]\n","sponsors.0.district":7,"sponsors.0.firstName":"Kweisi","updateDateIncludingText":"2025-02-04T17:03:51Z","laws.0.type":"Public Law"}} +{"type":"node","id":"8","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Steil","cboCostEstimates.0.pubDate":"2024-12-18T22:02:44Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-263.","policyArea.name":"Congress","type":"HR","latestAction.text":"Became Public Law No: 118-263.","sponsors.0.party":"R","number":"9487","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9487/cosponsors?format=json","sponsors.0.bioguideId":"S001213","laws.0.number":"118-263","actions.url":"https://api.congress.gov/v3/bill/118/hr/9487/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":6,"sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-678","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9487/text?format=json","updateDate":"2025-01-17T03:11:16Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"9487","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9487/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9487/subjects?format=json","title":"House Office of Legislative Counsel Modernization Act","cboCostEstimates.0.description":"As passed by the House of Representatives on December 16, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61144","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/678?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9487/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9487/summaries?format=json","cboCostEstimates.0.title":"H.R. 9487, House Office of Legislative Counsel Modernization Act\t","introducedDate":"2024-09-06","subjects.count":4,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9487?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 138 (Friday, September 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEIL:\nH.R. 9487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThis bill will revise certain authorities of the House\nOffice of Legislative Counsel.\n[Page H5033]\n","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2025-01-17T03:11:16Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Perez","cboCostEstimates.0.pubDate":"2024-09-24T14:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-262.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-262.","sponsors.0.party":"D","number":"9421","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9421/cosponsors?format=json","sponsors.0.bioguideId":"G000600","laws.0.number":"118-262","actions.url":"https://api.congress.gov/v3/bill/118/hr/9421/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","titles.count":2,"cosponsors.count":9,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9421/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"9421","sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9421/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9421/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 108 North Main Street in Bucoda, Washington, as the \"Mayor Rob Gordon Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60758","request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9421/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9421/summaries?format=json","cboCostEstimates.0.title":"H.R. 9421, a bill to designate the facility of the United States Postal Service located at 108 North Main Street in Bucoda, Washington, as the “Mayor Rob Gordon Post Office","introducedDate":"2024-08-27","subjects.count":5,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9421?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PEREZ:\nH.R. 9421.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7:\n[The Congress shall have Power . . .] To establish Post\nOffices and post Roads; . . .\nThe single subject of this legislation is:\n``Post offices''\n[Page H5016]\n","sponsors.0.district":3,"sponsors.0.firstName":"Marie","updateDateIncludingText":"2025-02-04T17:03:48Z","laws.0.type":"Public Law"}} +{"type":"node","id":"10","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Sykes","cboCostEstimates.0.pubDate":"2024-09-24T14:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-261.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-261.","sponsors.0.party":"D","number":"9322","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9322/cosponsors?format=json","sponsors.0.bioguideId":"S001223","laws.0.number":"118-261","actions.url":"https://api.congress.gov/v3/bill/118/hr/9322/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Sykes, Emilia Strong [D-OH-13]","titles.count":2,"cosponsors.count":23,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9322/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"9322","sponsors.0.url":"https://api.congress.gov/v3/member/S001223?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9322/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9322/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 675 Wolf Ledges Parkway in Akron, Ohio, as the \"Judge James R. Williams Post Office Building\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":23,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60757","request.format":"json","sponsors.0.middleName":"Strong","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9322/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9322/summaries?format=json","cboCostEstimates.0.title":"H.R. 9322, a bill to designate the facility of the United States Postal Service located at 675 Wolf Ledges Parkway in Akron, Ohio, as the “Judge James R. Williams Post Office Building","introducedDate":"2024-08-06","subjects.count":5,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9322?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 128 (Tuesday, August 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. SYKES:\nH.R. 9322.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nThis bill designates a post office in the district as the\n``Judge James R. Williams Post Office Building''.\n[Page H4980]\n","sponsors.0.district":13,"sponsors.0.firstName":"Emilia","updateDateIncludingText":"2025-02-04T17:03:48Z","laws.0.type":"Public Law"}} +{"type":"node","id":"11","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Scholten","cboCostEstimates.0.pubDate":"2024-09-24T14:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-260.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-260.","sponsors.0.party":"D","number":"9285","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9285/cosponsors?format=json","sponsors.0.bioguideId":"S001221","laws.0.number":"118-260","actions.url":"https://api.congress.gov/v3/bill/118/hr/9285/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Scholten, Hillary J. [D-MI-3]","titles.count":2,"cosponsors.count":12,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9285/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"9285","sponsors.0.url":"https://api.congress.gov/v3/member/S001221?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9285/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9285/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 3913 Leland Avenue Northwest in Comstock Park, Michigan, as the \"Captain Miguel Justin Nava Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60756","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9285/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9285/summaries?format=json","cboCostEstimates.0.title":"H.R. 9285, a bill to designate the facility of the United States Postal Service located at 3913 Leland Avenue Northwest in Comstock Park, Michigan, as the “Captain Miguel Justin Nava Post Office","introducedDate":"2024-08-02","subjects.count":5,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9285?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHOLTEN:\nH.R. 9285.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nPost Office Renaming\n[Page H4974]\n","sponsors.0.district":3,"sponsors.0.firstName":"Hillary","updateDateIncludingText":"2025-02-04T17:03:48Z","laws.0.type":"Public Law"}} +{"type":"node","id":"12","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9124/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":22,"sponsors.0.lastName":"Kiley","sponsors.0.isByRequest":"N","request.billNumber":"9124","sponsors.0.url":"https://api.congress.gov/v3/member/K000401?format=json","latestAction_text":"Became Public Law No: 118-259.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9124/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To name the Department of Veterans Affairs community-based outpatient clinic in Auburn, California, as the \"Louis A. Conter VA Clinic\".","latestAction.text":"Became Public Law No: 118-259.","sponsors.0.party":"R","number":"9124","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9124/cosponsors?format=json","sponsors.0.bioguideId":"K000401","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9124/titles?format=json","laws.0.number":"118-259","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9124/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Kiley, Kevin [R-CA-3]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":40,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9124?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 120 (Wednesday, July 24, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILEY:\nH.R. 9124.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo name the Department of Veterans Affairs community-based\noutpatient clinic in Auburn, California, as the ``Louis A.\nConter VA Clinic''\n[Page H4914]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-01-14T17:05:15Z","laws.0.type":"Public Law"}} +{"type":"node","id":"13","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"LaHood","cboCostEstimates.0.pubDate":"2024-10-23T18:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-258.","policyArea.name":"Families","type":"HR","latestAction.text":"Became Public Law No: 118-258.","sponsors.0.party":"R","number":"9076","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9076/cosponsors?format=json","sponsors.0.bioguideId":"L000585","laws.0.number":"118-258","actions.url":"https://api.congress.gov/v3/bill/118/hr/9076/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2025-01-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9076/relatedbills?format=json","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","titles.count":8,"cosponsors.count":23,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-679","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9076/text?format=json","updateDate":"2025-02-27T20:23:56Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":29,"request.billNumber":"9076","sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9076/committees?format=json","title":"Supporting America’s Children and Families Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 24, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60853","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2025-01-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/679?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9076/summaries?format=json","cboCostEstimates.0.title":"H.R. 9076, Protecting America’s Children by Strengthening Families Act","introducedDate":"2024-07-22","subjects.count":25,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 9076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution--Congress has\nthe power ``To make all laws which shall be necessary and\nproper for carrying into execution the foregoing powers, and\nall other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.''\nThe single subject of this legislation is:\nThe bill would reauthorize and modernize part B of title IV\nof the Social Security Act to strengthen child welfare\nservices, expand the availability of prevention services to\nbetter meet the needs of vulnerable families.\n[Page H4730]\n","sponsors.0.district":16,"sponsors.0.firstName":"Darin","updateDateIncludingText":"2025-02-27T20:23:56Z","laws.0.type":"Public Law"}} +{"type":"node","id":"14","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Bost","cboCostEstimates.0.pubDate":"2024-09-24T14:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-257.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-257.","sponsors.0.party":"R","number":"8976","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8976/cosponsors?format=json","sponsors.0.bioguideId":"B001295","laws.0.number":"118-257","actions.url":"https://api.congress.gov/v3/bill/118/hr/8976/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":2,"cosponsors.count":17,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8976/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":24,"request.billNumber":"8976","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8976/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8976/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 20 West White Street in Millstadt, Illinois, as the \"Corporal Matthew A. Wyatt Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60754","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8976/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8976/summaries?format=json","cboCostEstimates.0.title":"H.R. 8976, a bill to designate the facility of the United States Postal Service located at 20 West White Street in Millstadt, Illinois, as the “Corporal Matthew A. Wyatt Post Office","introducedDate":"2024-07-10","subjects.count":5,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8976?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 114 (Wednesday, July 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 8976.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7\nThe single subject of this legislation is:\nTo rename a post office.\n[Page H4588]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"15","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Ferguson","cboCostEstimates.0.pubDate":"2024-09-24T14:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-256.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-256.","sponsors.0.party":"R","number":"8919","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8919/cosponsors?format=json","sponsors.0.bioguideId":"F000465","laws.0.number":"118-256","actions.url":"https://api.congress.gov/v3/bill/118/hr/8919/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Ferguson, A. Drew [R-GA-3]","titles.count":2,"cosponsors.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8919/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8919","sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8919/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8919/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 151 Highway 74 South in Peachtree City, Georgia, as the \"SFC Shawn McCloskey Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60753","request.format":"json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8919/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8919/summaries?format=json","cboCostEstimates.0.title":"H.R. 8919, a bill to designate the facility of the United States Postal Service located at 151 Highway 74 South in Peachtree City, Georgia, as the “SFC Shawn McCloskey Post Office","introducedDate":"2024-07-02","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8919?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 8919.\nCongress has the power to enact this legislation pursuant\nto the following:--\nPursuant to clause 7 of rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution. Congress has the power to enact this legislation\npursuant to the following: ``Clause 1 of section 8 of article\nI of the Constitution, to ``provide for the common defense\nand general welfare of the United States.''\nThe single subject of this legislation is:\nChange the name of the Peachtree City post office.\n[Page H4452]\n","sponsors.0.district":3,"sponsors.0.firstName":"A.","updateDateIncludingText":"2025-02-04T17:03:48Z","laws.0.type":"Public Law"}} +{"type":"node","id":"16","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Tokuda","cboCostEstimates.0.pubDate":"2024-09-24T14:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-255.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-255.","sponsors.0.party":"D","number":"8909","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8909/cosponsors?format=json","sponsors.0.bioguideId":"T000487","laws.0.number":"118-255","actions.url":"https://api.congress.gov/v3/bill/118/hr/8909/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8909/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8909","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8909/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8909/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 82-6110 Mamalahoa Highway in Captain Cook, Hawaii, as the \"Army 1st Lt. John Kuulei Kauhaihao Post Office Building\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60752","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8909/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8909/summaries?format=json","cboCostEstimates.0.title":"H.R. 8909, a bill to designate the facility of the United States Postal Service located at 82–6110 Mamalahoa Highway in Captain Cook, Hawaii, as the “Army 1st Lt. John Kuulei Kauhaihao Post Office Building","introducedDate":"2024-06-28","subjects.count":5,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8909?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 8909.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7 of the United States\nConstitution\nThe single subject of this legislation is:\nRenaming the Captain Cook Hawaii post office as the ``Army\n1st Lt. John Kuulei Kauhaihao Post Office Building''\n[Page H4445]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"17","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Pappas","cboCostEstimates.0.pubDate":"2024-09-24T14:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-254.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-254.","sponsors.0.party":"D","number":"8868","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8868/cosponsors?format=json","sponsors.0.bioguideId":"P000614","laws.0.number":"118-254","actions.url":"https://api.congress.gov/v3/bill/118/hr/8868/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8868/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8868","sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8868/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8868/committees?format=json","title":"To designate the facility of the United States Postal Service located at 609 Portsmouth Avenue in Greenland, New Hampshire, as the \"Chief Michael Maloney Post Office Building\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60751","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8868/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8868/summaries?format=json","cboCostEstimates.0.title":"H.R. 8868, a bill to designate the facility of the United States Postal Service located at 609 Portsmouth Avenue in Greenland, New Hampshire, as the “Chief Michael Maloney Post Office Building","introducedDate":"2024-06-27","subjects.count":5,"sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8868?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 8868.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 18 provides Congress with the\npower ``to make all Laws which shall be necessary and proper\nfor carrying into Execution the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or in any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo designate the 609 Portsmouth Avenue, Greenland, New\nHampshire post office as the ``Chief Michael Maloney Post\nOffice Building.''\n[Page H4411]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"18","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Fischbach","cboCostEstimates.0.pubDate":"2024-09-24T14:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-253.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-253.","sponsors.0.party":"R","number":"8841","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8841/cosponsors?format=json","sponsors.0.bioguideId":"F000470","laws.0.number":"118-253","actions.url":"https://api.congress.gov/v3/bill/118/hr/8841/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8841/relatedbills?format=json","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","titles.count":2,"cosponsors.count":7,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8841/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8841","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8841/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8841/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the \"Floyd B. Olson Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60750","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8841/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8841/summaries?format=json","cboCostEstimates.0.title":"H.R. 8841, a bill to designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the “Floyd B. Olson Post Office","introducedDate":"2024-06-26","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8841?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 107 (Wednesday, June 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 8841.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nRenaming the Roseau Post Office.\n[Page H4321]\n","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"19","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Owens","cboCostEstimates.0.pubDate":"2024-09-24T14:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-252.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-252.","sponsors.0.party":"R","number":"8717","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8717/cosponsors?format=json","sponsors.0.bioguideId":"O000086","laws.0.number":"118-252","actions.url":"https://api.congress.gov/v3/bill/118/hr/8717/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Owens, Burgess [R-UT-4]","titles.count":2,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8717/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8717","sponsors.0.url":"https://api.congress.gov/v3/member/O000086?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8717/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8717/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 20 West Main Street in Santaquin, Utah, as the \"SGT Bill Hooser Post Office Building\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60749","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8717/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8717/summaries?format=json","cboCostEstimates.0.title":"H.R. 8717, a bill to designate the facility of the United States Postal Service located at 20 West Main Street in Santaquin, Utah, as the “SGT Bill Hooser Post Office Building","introducedDate":"2024-06-12","subjects.count":5,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8717?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 99 (Wednesday, June 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OWENS:\nH.R. 8717.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRenaming of a federal facility; post office facility.\n[Page H3975]\n","sponsors.0.district":4,"sponsors.0.firstName":"Burgess","updateDateIncludingText":"2025-02-04T16:54:13Z","laws.0.type":"Public Law"}} +{"type":"node","id":"20","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10470/text?format=json","updateDate":"2025-01-30T13:32:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"10470","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10470/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10470/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"PAID Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10470","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10470/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10470/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10470/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","titles.count":4,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10470?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-01-30T13:32:52Z"}} +{"type":"node","id":"21","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10499/text?format=json","updateDate":"2025-01-26T05:23:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"10499","sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","latestAction_text":"Referred to the House Committee on Homeland Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10499/committees?format=json","type":"HR","title":"CBP Canine Home Kenneling Pilot Act","latestAction.text":"Referred to the House Committee on Homeland Security.","sponsors.0.party":"D","number":"10499","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10499/cosponsors?format=json","sponsors.0.bioguideId":"M001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10499/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10499/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10499?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-26T05:23:19Z"}} +{"type":"node","id":"22","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10493/text?format=json","updateDate":"2025-02-05T07:23:21Z","originChamber":"House","committees.count":12,"congress":118,"request.congress":"118","actions.count":14,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"10493","sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Transportation and Infrastructure, Ways and Means, Energy and Commerce, Foreign Affairs, Oversight and Accountability, Education and the Workforce, Financial Services, the Judiciary, Natural Resources, Science, Space, and Technology, and Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10493/committees?format=json","type":"HR","title":"SHIPS for America Act of 2024","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committees on Transportation and Infrastructure, Ways and Means, Energy and Commerce, Foreign Affairs, Oversight and Accountability, Education and the Workforce, Financial Services, the Judiciary, Natural Resources, Science, Space, and Technology, and Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"10493","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10493/cosponsors?format=json","sponsors.0.bioguideId":"K000388","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10493/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10493/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","titles.count":4,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10493?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Trent","updateDateIncludingText":"2025-02-05T07:23:21Z"}} +{"type":"node","id":"23","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10481/text?format=json","updateDate":"2025-01-30T14:08:55Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"10481","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10481/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10481/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Federal Law Enforcement and Public Protection Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10481","request.format":"json","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"D000623","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10481/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10481/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":3,"introducedDate":"2024-12-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10481?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-30T14:08:55Z"}} +{"type":"node","id":"24","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10478/text?format=json","updateDate":"2025-01-29T16:11:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Davis","sponsors.0.isByRequest":"N","request.billNumber":"10478","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10478/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10478/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Protecting Foster Youth Resources Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"10478","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10478/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10478/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10478/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10478?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Danny","updateDateIncludingText":"2025-01-29T16:11:34Z"}} +{"type":"node","id":"25","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10480/text?format=json","updateDate":"2025-01-30T14:09:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"10480","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10480/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/10480/committees?format=json","policyArea.name":"Health","type":"HR","title":"Local Gun Violence Reduction Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10480","request.format":"json","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"D000623","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10480/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10480/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":3,"introducedDate":"2024-12-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10480?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-30T14:09:54Z"}} +{"type":"node","id":"26","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10484/text?format=json","updateDate":"2025-01-25T04:53:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gottheimer","sponsors.0.isByRequest":"N","request.billNumber":"10484","sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10484/committees?format=json","type":"HR","title":"SEARCH Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10484","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10484/cosponsors?format=json","sponsors.0.bioguideId":"G000583","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10484/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10484/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","titles.count":4,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10484?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-25T04:53:18Z"}} +{"type":"node","id":"27","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10500/text?format=json","relatedBills.count":1,"updateDate":"2025-01-30T13:34:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nadler","sponsors.0.isByRequest":"N","request.billNumber":"10500","sponsors.0.url":"https://api.congress.gov/v3/member/N000002?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10500/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10500/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Consumer Bankruptcy Reform Act of 2024","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10500","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10500/cosponsors?format=json","sponsors.0.bioguideId":"N000002","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10500/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10500/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10500/relatedbills?format=json","sponsors.0.fullName":"Rep. Nadler, Jerrold [D-NY-12]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10500?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Jerrold","updateDateIncludingText":"2025-01-30T13:34:08Z"}} +{"type":"node","id":"28","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10495/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T16:48:56Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"10495","sponsors.0.url":"https://api.congress.gov/v3/member/L000590?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10495/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/10495/committees?format=json","policyArea.name":"Health","type":"HR","title":"Physicians for Underserved Areas Act","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10495","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10495/cosponsors?format=json","sponsors.0.bioguideId":"L000590","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10495/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10495/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10495/relatedbills?format=json","sponsors.0.fullName":"Rep. Lee, Susie [D-NV-3]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10495?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Susie","updateDateIncludingText":"2025-01-29T16:48:56Z"}} +{"type":"node","id":"29","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10502/text?format=json","updateDate":"2025-01-26T05:08:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pingree","sponsors.0.isByRequest":"N","request.billNumber":"10502","sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10502/committees?format=json","type":"HR","title":"Armed Forces Crisis Intervention Notification Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"10502","request.format":"json","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"P000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10502/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10502/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","titles.count":3,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10502?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Chellie","updateDateIncludingText":"2025-01-26T05:08:22Z"}} +{"type":"node","id":"30","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10487/text?format=json","updateDate":"2025-01-25T04:53:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","request.billNumber":"10487","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10487/committees?format=json","type":"HR","title":"Armory Project Expansion Act of 2024","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"10487","request.format":"json","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"H001077","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10487/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10487/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":3,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10487?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2025-01-25T04:53:19Z"}} +{"type":"node","id":"31","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10476/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T16:46:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Correa","sponsors.0.isByRequest":"N","request.billNumber":"10476","sponsors.0.url":"https://api.congress.gov/v3/member/C001110?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10476/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10476/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"End Airline Extortion Act","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"10476","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Luis","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10476/cosponsors?format=json","sponsors.0.bioguideId":"C001110","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10476/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10476/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10476/relatedbills?format=json","sponsors.0.fullName":"Rep. Correa, J. Luis [D-CA-46]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10476?format=json","sponsors.0.district":46,"sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-29T16:46:01Z"}} +{"type":"node","id":"32","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10504/text?format=json","updateDate":"2025-01-26T05:08:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ramirez","sponsors.0.isByRequest":"N","request.billNumber":"10504","sponsors.0.url":"https://api.congress.gov/v3/member/R000617?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10504/committees?format=json","type":"HR","title":"Family Reunification Task Force Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10504","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10504/cosponsors?format=json","sponsors.0.bioguideId":"R000617","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10504/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10504/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Ramirez, Delia C. [D-IL-3]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":20,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10504?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Delia","updateDateIncludingText":"2025-01-26T05:08:22Z"}} +{"type":"node","id":"33","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10472/text?format=json","updateDate":"2025-01-25T05:08:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Brecheen","sponsors.0.isByRequest":"N","request.billNumber":"10472","sponsors.0.url":"https://api.congress.gov/v3/member/B001317?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10472/committees?format=json","type":"HR","title":"Quapaw Tribal Settlement Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"10472","request.format":"json","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"B001317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10472/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10472/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Brecheen, Josh [R-OK-2]","titles.count":3,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10472?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-25T05:08:24Z"}} +{"type":"node","id":"34","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10496/text?format=json","updateDate":"2025-01-30T14:06:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"10496","sponsors.0.url":"https://api.congress.gov/v3/member/L000602?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10496/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10496/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"True Justice Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10496","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10496/cosponsors?format=json","sponsors.0.bioguideId":"L000602","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10496/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10496/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Lee, Summer L. [D-PA-12]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10496?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Summer","updateDateIncludingText":"2025-01-30T14:06:07Z"}} +{"type":"node","id":"35","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10501/text?format=json","updateDate":"2025-01-26T05:23:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Panetta","sponsors.0.isByRequest":"N","request.billNumber":"10501","sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10501/committees?format=json","type":"HR","title":"Immigrant Witness and Victim Protection Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10501","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10501/cosponsors?format=json","sponsors.0.bioguideId":"P000613","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10501/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10501/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10501?format=json","sponsors.0.district":19,"sponsors.0.firstName":"Jimmy","updateDateIncludingText":"2025-01-26T05:23:19Z"}} +{"type":"node","id":"36","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10492/text?format=json","updateDate":"2025-01-26T05:18:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"10492","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10492/committees?format=json","type":"HR","title":"To amend the Act of August 9, 1955 (commonly known as the \"Long-Term Leasing Act\"), to authorize leases of up to 99 years for land held in trust for the Mashpee Wampanoag Tribe and the Wampanoag Tribe of Gay Head (Aquinnah), and for other purposes.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"10492","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"K000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10492/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10492/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":2,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10492?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2025-01-26T05:18:17Z"}} +{"type":"node","id":"37","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10507/text?format=json","updateDate":"2025-02-05T07:23:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Swalwell","sponsors.0.isByRequest":"N","request.billNumber":"10507","sponsors.0.url":"https://api.congress.gov/v3/member/S001193?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10507/committees?format=json","type":"HR","title":"Strengthening Loan Forgiveness for Public Servants Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"10507","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10507/cosponsors?format=json","sponsors.0.bioguideId":"S001193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10507/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10507/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Swalwell, Eric [D-CA-14]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":5,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10507?format=json","sponsors.0.district":14,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-02-05T07:23:21Z"}} +{"type":"node","id":"38","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10479/text?format=json","updateDate":"2025-01-25T04:53:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Deluzio","sponsors.0.isByRequest":"N","request.billNumber":"10479","sponsors.0.url":"https://api.congress.gov/v3/member/D000530?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10479/committees?format=json","type":"HR","title":"Shipbuilding Innovation Act","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"10479","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"D000530","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10479/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10479/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Deluzio, Christopher R. [D-PA-17]","titles.count":3,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10479?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-25T04:53:19Z"}} +{"type":"node","id":"39","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10494/text?format=json","updateDate":"2025-01-26T05:23:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kustoff","sponsors.0.isByRequest":"N","request.billNumber":"10494","sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10494/committees?format=json","type":"HR","title":"Grown in America Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"10494","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10494/cosponsors?format=json","sponsors.0.bioguideId":"K000392","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10494/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10494/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":4,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10494?format=json","sponsors.0.district":8,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-01-26T05:23:19Z"}} +{"type":"node","id":"40","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Steel","cboCostEstimates.0.pubDate":"2023-06-27T18:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"3033","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3033/cosponsors?format=json","sponsors.0.bioguideId":"S001135","actions.url":"https://api.congress.gov/v3/bill/118/hr/3033/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3033/relatedbills?format=json","sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","titles.count":5,"cosponsors.count":37,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3033/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":6,"request.congress":"118","actions.count":19,"request.billNumber":"3033","sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3033/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3033/subjects?format=json","title":"Solidify Iran Sanctions Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on June 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59293","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3033/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3033/summaries?format=json","cboCostEstimates.0.title":"H.R. 3033, Solidify Iran Sanctions Act of 2023","introducedDate":"2023-04-28","subjects.count":9,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3033?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 72 (Friday, April 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 3033.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nForeign Affairs\n[Page H2120]\n","sponsors.0.district":45,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"41","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3034/text?format=json","updateDate":"2024-12-20T09:05:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"3034","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3034/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3034/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Ensuring Children Receive Support Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"3034","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3034/cosponsors?format=json","sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3034/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3034/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3034/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2023-04-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3034?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 72 (Friday, April 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 3034.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the Department of State to revoke passports for\ncertain individuals who fail to make child support payments.\n[Page H2120]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2024-12-20T09:05:50Z"}} +{"type":"node","id":"42","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7528/text?format=json","updateDate":"2025-02-19T01:26:12Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":16,"sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","request.billNumber":"7528","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 712.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7528/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7528/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Comment Integrity and Management Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 712.","sponsors.0.party":"R","number":"7528","request.format":"json","latestAction_actionDate":"2024-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/306?format=json","summaries.count":2,"sponsors.0.bioguideId":"H001077","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7528/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7528/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7528/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":4,"sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":6,"introducedDate":"2024-03-05","request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7528?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 7528.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nTo amend section 206 of the E-Government Act of 2002 to\nimprove the integrity and management of mass comments and\ncomputer-generated comments in the regulatory review process,\nand for other purposes.\n[Page H822]\n","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2025-02-19T01:26:12Z","committeeReports.0.citation":"S. Rept. 118-306"}} +{"type":"node","id":"43","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3068/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:45Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"3068","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3068/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3068/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Equal Health Care for All Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3068","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3068/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3068/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3068/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3068/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3068/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-05-02","cosponsors.count":21,"request.contentType":"application/json","subjects.count":22,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3068?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 74 (Tuesday, May 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 3068.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article I, Section 8,\nclause 18 of the United States Constitution\nThe single subject of this legislation is:\nto enusre the provision of equitable health care services\n[Page H2128]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-12-20T09:05:45Z"}} +{"type":"node","id":"44","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3069/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:36Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Sewell","sponsors.0.isByRequest":"N","request.billNumber":"3069","sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3069/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3069/subjects?format=json","policyArea.name":"Health","type":"HR","title":"John Lewis Equality in Medicare and Medicaid Treatment Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3069","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3069/cosponsors?format=json","sponsors.0.bioguideId":"S001185","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3069/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3069/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3069/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3069/relatedbills?format=json","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","titles.count":3,"introducedDate":"2023-05-02","cosponsors.count":7,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3069?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 74 (Tuesday, May 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 3069.\nCongress has the power to enact this legislation pursuant\nto the following:\nARTICLE 1 SECTION 8 CLAUSE 18\nThe single subject of this legislation is:\nTo amend title XI of the Social Security Act to improve\naccess to care for all Medicare and Medicaid beneficiaries\nthrough model tested under the Center for Medicare and\nMedicaid Innovation.\n[Page H2128]\n","sponsors.0.district":7,"sponsors.0.firstName":"Terri","updateDateIncludingText":"2024-12-20T09:06:36Z"}} +{"type":"node","id":"45","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3086/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:16Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"DELAURO","sponsors.0.isByRequest":"N","request.billNumber":"3086","sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3086/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Find It Early Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3086","cosponsors.countIncludingWithdrawnCosponsors":73,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3086/cosponsors?format=json","sponsors.0.bioguideId":"D000216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3086/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3086/relatedbills?format=json","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":73,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 3086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nensuring all health insurance to cover screening and\ndiagnostic mammograms and breast ultrasounds and MRIs with no\ncost-sharing.\n[Page H2136]\n","sponsors.0.district":3,"sponsors.0.firstName":"ROSA","updateDateIncludingText":"2024-12-20T09:06:16Z"}} +{"type":"node","id":"46","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3095/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"James","sponsors.0.isByRequest":"N","request.billNumber":"3095","sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3095/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Address Iran’s Malign Posture Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"3095","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3095/cosponsors?format=json","sponsors.0.bioguideId":"J000307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3095/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3095/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3095/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3095/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. James, John [R-MI-10]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3095?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JAMES:\nH.R. 3095.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H2137]\n","sponsors.0.district":10,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"47","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3118/text?format=json","updateDate":"2024-12-20T09:06:07Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"3118","sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3118/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Home Dialysis Risk Prevention Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"3118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3118/cosponsors?format=json","sponsors.0.bioguideId":"S001172","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3118/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.R. 3118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nImproving safety of home hemodialysis.\n[Page H2138]\n","sponsors.0.district":3,"sponsors.0.firstName":"Adrian","updateDateIncludingText":"2024-12-20T09:06:07Z"}} +{"type":"node","id":"48","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Kiggans","cboCostEstimates.0.pubDate":"2024-12-11T19:39:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 711.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 711.","sponsors.0.party":"R","number":"6972","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6972/cosponsors?format=json","sponsors.0.bioguideId":"K000399","actions.url":"https://api.congress.gov/v3/bill/118/hr/6972/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":4,"sponsors.0.fullName":"Rep. Kiggans, Jennifer A [R-VA-2]","titles.count":6,"cosponsors.count":14,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-305","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6972/text?format=json","updateDate":"2025-02-19T01:41:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"6972","sponsors.0.url":"https://api.congress.gov/v3/member/K000399?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6972/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6972/subjects?format=json","title":"Securing Chain of Command Continuity Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on November 20, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":14,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61090","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-17","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/305?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6972/summaries?format=json","cboCostEstimates.0.title":"H.R. 6972, Securing Chain of Command Continuity Act","introducedDate":"2024-01-11","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6972?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIGGANS of Virginia:\nH.R. 6972.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis legislation only pertains to: oversight of the\nNational Security Council\n[Page H108]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-02-19T01:41:13Z"}} +{"type":"node","id":"49","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Steel","cboCostEstimates.0.pubDate":"2024-11-12T21:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"3120","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3120/cosponsors?format=json","sponsors.0.bioguideId":"S001135","actions.url":"https://api.congress.gov/v3/bill/118/hr/3120/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3120/relatedbills?format=json","sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-875","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3120/text?format=json","updateDate":"2025-02-20T23:26:12Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":11,"request.billNumber":"3120","sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3120/subjects?format=json","title":"Healthy Competition for Better Care Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on September 11, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60976","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/875?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3120/titles?format=json","cboCostEstimates.0.title":"H.R. 3120, Healthy Competition for Better Care Act","introducedDate":"2023-05-05","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3120?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 3120.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHealth Care\n[Page H2138]\n","sponsors.0.district":45,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2025-02-20T23:26:12Z"}} +{"type":"node","id":"50","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3129/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"SESSIONS","sponsors.0.isByRequest":"N","request.billNumber":"3129","sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3129/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Health Care Fairness for All Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"3129","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3129/cosponsors?format=json","sponsors.0.bioguideId":"S000250","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3129/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3129/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3129/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":24,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3129?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 3129.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution--To\nmake all laws which shall be necessary and proper for\ncarrying into execution the foregoing powers, and all other\npowers vested by this Constitution in the government of the\nUnited States, or in any department or officer thereof.\nThe single subject of this legislation is:\nTo ensure health care fairness and affordability for all\nAmericans through universal access to equitable health\ninsurance tax credits, reformed health savings accounts, and\nstrengthened consumer protections, and for other purposes.\n[Page H2172]\n","sponsors.0.district":17,"sponsors.0.firstName":"PETE","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"51","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3132/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"3132","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3132/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Travel for Care Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3132","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3132/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":3,"introducedDate":"2023-05-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3132?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 3132.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nAbortion\n[Page H2172]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"52","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3133/text?format=json","updateDate":"2024-12-20T09:05:53Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Chu","sponsors.0.isByRequest":"N","request.billNumber":"3133","sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3133/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Acupuncture for Our Seniors Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3133","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3133/cosponsors?format=json","sponsors.0.bioguideId":"C001080","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3133/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3133/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Chu, Judy [D-CA-28]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":17,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3133?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 3133.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nHealth\n[Page H2172]\n","sponsors.0.district":28,"sponsors.0.firstName":"Judy","updateDateIncludingText":"2024-12-20T09:05:53Z"}} +{"type":"node","id":"53","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3134/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"3134","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3134/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3134/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Emergency Access to Insulin Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3134","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3134/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3134/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3134/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3134/relatedbills?format=json","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":27,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3134?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 3134.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nLowering insulin costs\n[Page H2172]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2024-12-20T09:06:27Z"}} +{"type":"node","id":"54","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"JACKSON LEE","cboCostEstimates.0.pubDate":"2023-08-01T20:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 710.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 710.","sponsors.0.party":"D","number":"3208","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3208/cosponsors?format=json","sponsors.0.bioguideId":"J000032","actions.url":"https://api.congress.gov/v3/bill/118/hr/3208/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":5,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":7,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-161","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3208/text?format=json","updateDate":"2025-02-19T14:06:12Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":21,"committeeReports.1.citation":"S. Rept. 118-304","request.billNumber":"3208","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3208/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3208/subjects?format=json","title":"DHS Cybersecurity On-the-Job Training Program Act","cboCostEstimates.0.description":"As reported by the House Committee on Homeland Security\non July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59447","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/161?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3208/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3208/summaries?format=json","cboCostEstimates.0.title":"H.R. 3208, DHS Cybersecurity On-the-Job Training Program Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/SRPT/304?format=json","introducedDate":"2023-05-11","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3208?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 3208.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nto establish a DHS Cybersecurity On-the-Job Training\nProgram\n[Page H2311]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2025-02-19T14:06:12Z"}} +{"type":"node","id":"55","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3135/text?format=json","updateDate":"2024-12-20T09:06:33Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Cuellar","sponsors.0.isByRequest":"N","request.billNumber":"3135","sponsors.0.url":"https://api.congress.gov/v3/member/C001063?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3135/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"LPOE Modernization Trust Fund Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"3135","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3135/cosponsors?format=json","sponsors.0.bioguideId":"C001063","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3135/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Cuellar, Henry [D-TX-28]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3135?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CUELLAR:\nH.R. 3135.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish the Land Port of Entry Modernization Trust\nFund\n[Page H2172]\n","sponsors.0.district":28,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-12-20T09:06:33Z"}} +{"type":"node","id":"56","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3136/text?format=json","updateDate":"2024-12-20T09:06:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"DELAURO","sponsors.0.isByRequest":"N","request.billNumber":"3136","sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3136/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"National Critical Capabilities Defense Act of 2023","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"3136","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3136/cosponsors?format=json","sponsors.0.bioguideId":"D000216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3136/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3136?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 3136.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nOutbound Investment\n[Page H2172]\n","sponsors.0.district":3,"sponsors.0.firstName":"ROSA","updateDateIncludingText":"2024-12-20T09:06:03Z"}} +{"type":"node","id":"57","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3194/text?format=json","relatedBills.count":4,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":12,"congress":118,"request.congress":"118","actions.count":19,"sponsors.0.lastName":"Sánchez","sponsors.0.isByRequest":"N","request.billNumber":"3194","sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3194/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3194/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"U.S. Citizenship Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"3194","cosponsors.countIncludingWithdrawnCosponsors":119,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3194/cosponsors?format=json","sponsors.0.bioguideId":"S001156","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3194/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3194/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3194/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3194/relatedbills?format=json","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","titles.count":4,"introducedDate":"2023-05-10","cosponsors.count":119,"request.contentType":"application/json","subjects.count":137,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3194?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 3194.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nImmigration\n[Page H2246]\n","sponsors.0.district":38,"sponsors.0.firstName":"Linda","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"58","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3198/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:30Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Tokuda","sponsors.0.isByRequest":"N","request.billNumber":"3198","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3198/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Equitable Payments for Nursing Facilities Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3198","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3198/cosponsors?format=json","sponsors.0.bioguideId":"T000487","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3198/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3198/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3198/relatedbills?format=json","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3198?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to\nauthorize the Secretary of Health and Human Services to make\nadjustments to payment rates for skilled nursing facilities\nunder the Medicare program to account for certain unique\ncircumstances.\n[Page H2246]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2024-12-20T09:05:30Z"}} +{"type":"node","id":"59","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Referred to the Subcommittee on Social Security.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Senior Citizens Tax Elimination Act","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}} +{"type":"node","id":"60","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4073/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McGarvey","sponsors.0.isByRequest":"N","request.billNumber":"4073","sponsors.0.url":"https://api.congress.gov/v3/member/M001220?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4073/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4073/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Duty Drawback Clarification Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"4073","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4073/cosponsors?format=json","sponsors.0.bioguideId":"M001220","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4073/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4073/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4073/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4073/relatedbills?format=json","sponsors.0.fullName":"Rep. McGarvey, Morgan [D-KY-3]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4073?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGARVEY:\nH.R. 4073.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTariffs\n[Page H2885]\n","sponsors.0.district":3,"sponsors.0.firstName":"Morgan","updateDateIncludingText":"2024-12-20T09:05:41Z"}} +{"type":"node","id":"61","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4104/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:18Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Buchanan","sponsors.0.isByRequest":"N","request.billNumber":"4104","sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4104/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Preserving Patient Access to Home Infusion Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"4104","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4104/cosponsors?format=json","sponsors.0.bioguideId":"B001260","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4104/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4104/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4104/relatedbills?format=json","sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":27,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4104?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 4104.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to clarify\ncongressional intent and preserve patient access to home\ninfusion therapy under the Medicare program\n[Page H2933]\n","sponsors.0.district":16,"sponsors.0.firstName":"Vern","updateDateIncludingText":"2024-12-20T09:06:18Z"}} +{"type":"node","id":"62","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4115/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:23Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"4115","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4115/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4115/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Lower Drug Costs for Families Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4115/cosponsors?format=json","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4115/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4115/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4115?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 4115.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article 1, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nHealthcare\n[Page H2933]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-20T09:06:23Z"}} +{"type":"node","id":"63","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4146/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:45Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Barragan","sponsors.0.isByRequest":"N","request.billNumber":"4146","sponsors.0.url":"https://api.congress.gov/v3/member/B001300?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4146/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4146/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Medicare Dental Benefit Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4146","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Diaz","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4146/cosponsors?format=json","sponsors.0.bioguideId":"B001300","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4146/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4146/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4146/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4146/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Barragan, Nanette Diaz [D-CA-44]","titles.count":3,"introducedDate":"2023-06-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4146?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 105 (Thursday, June 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BARRAGAN:\nH.R. 4146.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis bill provides for coverage of dental services under\nthe Medicare program\n[Page H2959]\n","sponsors.0.district":44,"sponsors.0.firstName":"Nanette","updateDateIncludingText":"2024-12-20T09:05:45Z"}} +{"type":"node","id":"64","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4148/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"4148","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4148/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4148/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Import Security and Fairness Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"4148","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4148/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4148/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4148/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4148/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4148/relatedbills?format=json","sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":3,"introducedDate":"2023-06-15","cosponsors.count":29,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4148?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 105 (Thursday, June 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 4148.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Article Section 8 of Article I of the U.S.\nConstitution\nThe single subject of this legislation is:\nTrade\n[Page H2959]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2024-12-20T09:05:59Z"}} +{"type":"node","id":"65","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8855/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"8855","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8855/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8855/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend title 18, United States Code, to protect unborn children.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"8855","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8855/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8855/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8855/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":2,"introducedDate":"2024-06-27","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8855?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8855.\nCongress has the power to enact this legislation pursuant\nto the following:\nSpending Clause--Article I, Section 8, Clause 1\nCommerce Clause--Article I, Section 8, Clause 3\n14th Amendment\nThe single subject of this legislation is:\nProtecting the lives of the unborn from the moment of\nconception.\n[Page H4410]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"66","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4165/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Graves","sponsors.0.isByRequest":"N","request.billNumber":"4165","sponsors.0.url":"https://api.congress.gov/v3/member/G000577?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4165/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4165/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"United States-Russian Federation Seafood Reciprocity Act of 2023","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"4165","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4165/cosponsors?format=json","sponsors.0.bioguideId":"G000577","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4165/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4165/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4165/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4165/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Graves, Garret [R-LA-6]","titles.count":3,"introducedDate":"2023-06-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4165?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 105 (Thursday, June 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Louisiana:\nH.R. 4165.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nBanning seafood from the Russian Federation from U.S.\nmarkets.\n[Page H2960]\n","sponsors.0.district":6,"sponsors.0.firstName":"Garret","updateDateIncludingText":"2024-12-20T09:05:38Z"}} +{"type":"node","id":"67","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4170/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":6,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"4170","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4170/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4170/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"LIFT the BAR Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"4170","cosponsors.countIncludingWithdrawnCosponsors":111,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4170/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4170/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4170/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4170/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":4,"introducedDate":"2023-06-15","cosponsors.count":111,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4170?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 105 (Thursday, June 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 4170.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nHealth\n[Page H2960]\n","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"68","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8865/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"LaMalfa","sponsors.0.isByRequest":"N","request.billNumber":"8865","sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8865/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8865/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To nullify Executive Order 14072 and prohibit the Secretary of Agriculture and the Secretary of the Interior from implementing, administering, or enforcing such Executive Order or any substantially similar executive order.","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"8865","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8865/cosponsors?format=json","sponsors.0.bioguideId":"L000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8865/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8865/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","titles.count":2,"introducedDate":"2024-06-27","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8865?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 8865.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, Clauses 1 and 18 of the United States\nConstitution\nThe single subject of this legislation is:\nTo nullify Executive Order 14072 and prohibit the Secretary\nof Agriculture and the Secretary of the Interior from\nimplementing, administering, or enforcing such Executive\nOrder or any substantially similar executive order.\n[Page H4411]\n","sponsors.0.district":1,"sponsors.0.firstName":"Doug","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"69","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8866/text?format=json","updateDate":"2024-12-19T09:06:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"8866","sponsors.0.url":"https://api.congress.gov/v3/member/M001212?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8866/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8866/subjects?format=json","policyArea.name":"Families","type":"HR","title":"Advocates for Families Act of 2024","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"8866","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8866/cosponsors?format=json","sponsors.0.bioguideId":"M001212","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8866/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8866/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Moore, Barry [R-AL-2]","titles.count":3,"introducedDate":"2024-06-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8866?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Alabama:\nH.R. 8866.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the US Constitution\nThe single subject of this legislation is:\nProviding resources to parents who have their children\ntaken into foster care.\n[Page H4411]\n","sponsors.0.district":2,"sponsors.0.firstName":"Barry","updateDateIncludingText":"2024-12-19T09:06:00Z"}} +{"type":"node","id":"70","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8872/text?format=json","updateDate":"2024-12-19T19:50:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Thompson","sponsors.0.isByRequest":"N","request.billNumber":"8872","sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","latestAction_text":"Referred to the Subcommittee on Social Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8872/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8872/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Health Care Worker and First Responder Fairness Act","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"8872","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8872/cosponsors?format=json","sponsors.0.bioguideId":"T000467","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8872/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","titles.count":3,"introducedDate":"2024-06-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8872?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 8872.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto exempt health care workers and first responders from the\nretirement earnings test during public health emergencies.\n[Page H4411]\n","sponsors.0.district":15,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2024-12-19T19:50:05Z"}} +{"type":"node","id":"71","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8878/text?format=json","updateDate":"2024-12-19T09:06:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sessions","sponsors.0.isByRequest":"N","request.billNumber":"8878","sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","latestAction_text":"Referred to the Subcommittee on Social Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8878/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8878/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Blind Americans Return to Work Act of 2024","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"8878","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8878/cosponsors?format=json","sponsors.0.bioguideId":"S000250","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8878/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8878/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","titles.count":3,"introducedDate":"2024-06-28","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8878?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 8878.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend title II of the Social Security Act to require the\nCommissioner of Social Security to carry out a demonstration\nproject relating to disability benefits of blind individuals.\n[Page H4444]\n","sponsors.0.district":17,"sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-12-19T09:06:35Z"}} +{"type":"node","id":"72","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8885/text?format=json","updateDate":"2024-12-19T09:07:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Davis","sponsors.0.isByRequest":"N","request.billNumber":"8885","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8885/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8885/subjects?format=json","policyArea.name":"Families","type":"HR","title":"Partnership Grants to Strengthen Families Affected by Parental Substance Use Disorder Act of 2024","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"8885","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8885/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8885/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8885/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":3,"introducedDate":"2024-06-28","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8885?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 8885.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nChild Welfare\n[Page H4444]\n","sponsors.0.district":7,"sponsors.0.firstName":"Danny","updateDateIncludingText":"2024-12-19T09:07:05Z"}} +{"type":"node","id":"73","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4189/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:03Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"THOMPSON","sponsors.0.isByRequest":"N","request.billNumber":"4189","sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4189/subjects?format=json","policyArea.name":"Health","type":"HR","title":"CONNECT for Health Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4189","cosponsors.countIncludingWithdrawnCosponsors":67,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4189/cosponsors?format=json","sponsors.0.bioguideId":"T000460","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4189/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4189/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","titles.count":4,"introducedDate":"2023-06-15","cosponsors.count":67,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4189?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 105 (Thursday, June 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 4189.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nTo provide for permanent Medicare coverage of certain\ntelehealth services.\n[Page H2961]\n","sponsors.0.district":4,"sponsors.0.firstName":"MIKE","updateDateIncludingText":"2024-12-20T09:06:03Z"}} +{"type":"node","id":"74","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8890/text?format=json","updateDate":"2024-12-19T09:05:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Horsford","sponsors.0.isByRequest":"N","request.billNumber":"8890","sponsors.0.url":"https://api.congress.gov/v3/member/H001066?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8890/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8890/subjects?format=json","policyArea.name":"Families","type":"HR","title":"Regional Partnership Grants Reauthorization Act of 2024","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"8890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8890/cosponsors?format=json","sponsors.0.bioguideId":"H001066","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8890/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8890/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Horsford, Steven [D-NV-4]","titles.count":3,"introducedDate":"2024-06-28","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8890?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HORSFORD:\nH.R. 8890.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution of the\nUnited States\nThe single subject of this legislation is:\nChild Welfare\n[Page H4445]\n","sponsors.0.district":4,"sponsors.0.firstName":"Steven","updateDateIncludingText":"2024-12-19T09:05:51Z"}} +{"type":"node","id":"75","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4195/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Davids","sponsors.0.isByRequest":"N","request.billNumber":"4195","sponsors.0.url":"https://api.congress.gov/v3/member/D000629?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4195/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Empowering Parents’ Healthcare Choices Act of 2021","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4195","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4195/cosponsors?format=json","sponsors.0.bioguideId":"D000629","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4195/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4195/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4195/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Davids, Sharice [D-KS-3]","titles.count":3,"introducedDate":"2023-06-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"KS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4195?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 106 (Friday, June 16, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DAVIDS of Kansas:\nH.R. 4195.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\nThe single subject of this legislation is:\nHealth insurance regulations.\n[Page H2965]\n","sponsors.0.district":3,"sponsors.0.firstName":"Sharice","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"76","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8912/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T09:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wenstrup","sponsors.0.isByRequest":"N","request.billNumber":"8912","sponsors.0.url":"https://api.congress.gov/v3/member/W000815?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8912/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8912/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Securing America’s Titanium Manufacturing Act of 2024","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"8912","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8912/cosponsors?format=json","sponsors.0.bioguideId":"W000815","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8912/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8912/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8912/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Wenstrup, Brad R. [R-OH-2]","titles.count":3,"introducedDate":"2024-06-28","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8912?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WENSTRUP:\nH.R. 8912.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTrade Policy\n[Page H4445]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2024-12-19T09:05:41Z"}} +{"type":"node","id":"77","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4215/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":6,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"4215","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4215/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4215/subjects?format=json","policyArea.name":"Health","type":"HR","title":"End Price Gouging for Medications Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4215","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"sponsors.0.bioguideId":"D000624","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4215/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4215/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":3,"introducedDate":"2023-06-20","request.contentType":"application/json","subjects.count":27,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4215?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 107 (Tuesday, June 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 4215.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo end prescription drug price gouging.\n[Page H2991]\n","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"78","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8921/text?format=json","updateDate":"2025-01-17T03:11:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Hern","sponsors.0.isByRequest":"N","request.billNumber":"8921","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8921/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8921/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Tribal Child Welfare Support Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"8921","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8921/cosponsors?format=json","sponsors.0.bioguideId":"H001082","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8921/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8921/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":3,"introducedDate":"2024-07-02","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8921?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 8921.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nChild Welfare\n[Page H4452]\n","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-01-17T03:11:14Z"}} +{"type":"node","id":"79","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4260/text?format=json","updateDate":"2024-12-20T09:06:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NEAL","sponsors.0.isByRequest":"N","request.billNumber":"4260","sponsors.0.url":"https://api.congress.gov/v3/member/N000015?format=json","latestAction_text":"Referred to the Subcommittee on Social Security.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4260/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4260/committees?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Public Servants Protection and Fairness Act of 2023","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"D","number":"4260","cosponsors.countIncludingWithdrawnCosponsors":107,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4260/cosponsors?format=json","sponsors.0.bioguideId":"N000015","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4260/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4260/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Neal, Richard E. [D-MA-1]","titles.count":3,"introducedDate":"2023-06-21","cosponsors.count":107,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4260?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 108 (Wednesday, June 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEAL:\nH.R. 4260.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nSocial Security\n[Page H3073]\n","sponsors.0.district":1,"sponsors.0.firstName":"RICHARD","updateDateIncludingText":"2024-12-20T09:06:28Z"}} +{"type":"node","id":"80","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2598/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T09:05:47Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","request.billNumber":"2598","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2598/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2598/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"PREPARE Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2598","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2598/cosponsors?format=json","sponsors.0.bioguideId":"J000295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2598/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2598/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2598/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2598/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":4,"introducedDate":"2023-04-13","cosponsors.count":5,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2598?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 2598.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo establish a Commission on the Federal Regulation of\nCannabis to study a prompt and plausible pathway to the\nFederal regulation of cannabis.\n[Page H1727]\n","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-12-21T09:05:47Z"}} +{"type":"node","id":"81","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4816/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Underwood","sponsors.0.isByRequest":"N","request.billNumber":"4816","sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4816/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4816/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To amend title XXVII of the Public Health Service Act to require group health plans and health insurance issuers offering group or individual health insurance coverage to permit enrollees to obtain a 365-day supply of contraceptives.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4816","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4816/cosponsors?format=json","sponsors.0.bioguideId":"U000040","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4816/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4816/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4816/relatedbills?format=json","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 4816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nHealth Care\n[Page H3891]\n","sponsors.0.district":14,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"82","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2614/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"2614","sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2614/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2614/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Working Families Task Force Act of 2023","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2614","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2614/cosponsors?format=json","sponsors.0.bioguideId":"M001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2614/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2614/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2614/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":16,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2614?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MENENDEZ:\nH.R. 2614.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo establish a national task force to expand opportunities\nand improve the standard of living for working families in\nAmerica.\n[Page H1728]\n","sponsors.0.district":8,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"83","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2639/text?format=json","updateDate":"2024-12-21T09:05:23Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"SESSIONS","sponsors.0.isByRequest":"N","request.billNumber":"2639","sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2639/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2639/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Electrodiagnostic Medicine Patient Protection and Fraud Elimination Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2639","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2639/cosponsors?format=json","sponsors.0.bioguideId":"S000250","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2639/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2639/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2639/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","titles.count":3,"introducedDate":"2023-04-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2639?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 63 (Monday, April 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 2639.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 18--Congress\nshall have the power to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nElectrodiagnostic medicine testing accreditation for\nfederal health care agencies.\n[Page H1760]\n","sponsors.0.district":17,"sponsors.0.firstName":"PETE","updateDateIncludingText":"2024-12-21T09:05:23Z"}} +{"type":"node","id":"84","labels":["Bill"],"properties":{"relatedBills.count":11,"congress":118,"sponsors.0.lastName":"McClintock","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Immigration","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"2640","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2640/cosponsors?format=json","sponsors.0.bioguideId":"M001177","actions.url":"https://api.congress.gov/v3/bill/118/hr/2640/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2640/relatedbills?format=json","sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":18,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-47","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2640/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":4,"request.congress":"118","actions.count":18,"request.billNumber":"2640","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2640/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2640/subjects?format=json","title":"Border Security and Enforcement Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/47?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2640/summaries?format=json","introducedDate":"2023-04-17","subjects.count":30,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2640?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 63 (Monday, April 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 2640.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4\nThe single subject of this legislation is:\nTo provide for reform of the asylum system and protection\nof the border.\n[Page H1760]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-02-04T16:38:42Z"}} +{"type":"node","id":"85","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2663/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Courtney","sponsors.0.isByRequest":"N","request.billNumber":"2663","sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2663/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2663/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Workplace Violence Prevention for Health Care and Social Service Workers Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2663","cosponsors.countIncludingWithdrawnCosponsors":173,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2663/cosponsors?format=json","sponsors.0.bioguideId":"C001069","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2663/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2663/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2663/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2663/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","titles.count":3,"introducedDate":"2023-04-18","cosponsors.count":173,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2663?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COURTNEY:\nH.R. 2663.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nworkplace safety and violence prevention\n[Page H1846]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"86","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2667/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T09:05:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"2667","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2667/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2667/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Fighting Trade Cheats Act of 2023","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"2667","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2667/cosponsors?format=json","sponsors.0.bioguideId":"B001295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2667/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2667/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2667/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":3,"introducedDate":"2023-04-18","cosponsors.count":27,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2667?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 2667.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nForeign Trade\n[Page H1846]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-12-21T09:05:46Z"}} +{"type":"node","id":"87","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4827/text?format=json","updateDate":"2024-12-20T09:06:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boyle","sponsors.0.isByRequest":"N","request.billNumber":"4827","sponsors.0.url":"https://api.congress.gov/v3/member/B001296?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4827/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4827/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Labor Market Response Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"4827","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-12-17","summaries.count":1,"sponsors.0.bioguideId":"B001296","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4827/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4827/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4827/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Boyle, Brendan F. [D-PA-2]","titles.count":3,"introducedDate":"2023-07-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4827?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 127 (Monday, July 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOYLE of Pennsylvania:\nH.R. 4827.\nCongress has the power to enact this legislation pursuant\nto the following:\nSpending Clause, Article 1, Section 8, Cl. 1 and the\nNecessary and Proper Clause, Article I, Section 8, Cl. 18.\nThe single subject of this legislation is:\nThis bill requires inclusion of relevant labor market\ninformation in applications for grants that provide low-\nincome individuals education and training for health care\nopportunities.\n[Page H3896]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brendan","updateDateIncludingText":"2024-12-20T09:06:39Z"}} +{"type":"node","id":"88","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2679/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Kuster","sponsors.0.isByRequest":"N","request.billNumber":"2679","sponsors.0.url":"https://api.congress.gov/v3/member/K000382?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2679/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2679/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Pharmacy Benefits Manager Accountability Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2679","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2679/cosponsors?format=json","sponsors.0.bioguideId":"K000382","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2679/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2679/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2679/relatedbills?format=json","sponsors.0.fullName":"Rep. Kuster, Ann M. [D-NH-2]","titles.count":3,"introducedDate":"2023-04-18","cosponsors.count":5,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2679?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KUSTER:\nH.R. 2679.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution, the Taxing and Spending Clause: ``The Congress\nshall have Power To lay and collect Taxes, Duties, Imposts\nand Excises, to pay the Debts and provide for the common\nDefense and general Welfare of the United States...''\nThe single subject of this legislation is:\nThis bill increases oversight of pharmacy benefits\nmanagers.\n[Page H1847]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"89","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2692/text?format=json","relatedBills.count":3,"updateDate":"2024-12-21T09:05:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sánchez","sponsors.0.isByRequest":"N","request.billNumber":"2692","sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2692/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2692/committees?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Addressing SILO Act of 2023","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2692","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-12-17","summaries.count":1,"sponsors.0.bioguideId":"S001156","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2692/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2692/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2692/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2692/relatedbills?format=json","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","titles.count":4,"introducedDate":"2023-04-18","request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2692?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 2692.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHealth\n[Page H1847]\n","sponsors.0.district":38,"sponsors.0.firstName":"Linda","updateDateIncludingText":"2024-12-21T09:05:21Z"}} +{"type":"node","id":"90","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2707/text?format=json","updateDate":"2024-12-21T09:05:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"2707","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2707/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2707/subjects?format=json","policyArea.name":"Health","type":"HR","title":"MADE in America Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2707","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2707/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2707/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2707/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2707/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":4,"introducedDate":"2023-04-19","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2707?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 2707.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\nThe single subject of this legislation is:\nTo mitigate drug shortages and provide incentives for\nmaintaining, expanding, and relocating the manufacturing of\nactive pharmaceutical ingredients, excipients, medical\ndiagnostic devices, pharmaceuticals, and personal protective\nequipment in the United States, and for other purposes.\n[Page H1887]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2024-12-21T09:05:24Z"}} +{"type":"node","id":"91","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2713/text?format=json","relatedBills.count":5,"updateDate":"2024-12-21T09:05:54Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","request.billNumber":"2713","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2713/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2713/committees?format=json","policyArea.name":"Health","type":"HR","title":"I CAN Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2713","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2713/cosponsors?format=json","sponsors.0.bioguideId":"J000295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2713/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2713/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":4,"introducedDate":"2023-04-19","cosponsors.count":35,"request.contentType":"application/json","subjects.count":20,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2713?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 2713.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 and Article I, Section 8,\nClause 1\nThe single subject of this legislation is:\nTo Amend Titles XVIII and XIX of the Social Security Act to\nincrease access to services provided by advanced practice\nregistered nurses under the Medicare and Medicaid programs.\n[Page H1887]\n","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-12-21T09:05:54Z"}} +{"type":"node","id":"92","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2718/text?format=json","relatedBills.count":4,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"NEAL","sponsors.0.isByRequest":"N","request.billNumber":"2718","sponsors.0.url":"https://api.congress.gov/v3/member/N000015?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2718/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2718/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Elder Justice Reauthorization and Modernization Act of 2023","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2718","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2718/cosponsors?format=json","sponsors.0.bioguideId":"N000015","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2718/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2718/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2718/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2718/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Neal, Richard E. [D-MA-1]","titles.count":3,"introducedDate":"2023-04-19","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2718?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEAL:\nH.R. 2718.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nElder Justice Act\n[Page H1887]\n","sponsors.0.district":1,"sponsors.0.firstName":"RICHARD","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"93","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2762/text?format=json","updateDate":"2024-12-21T09:05:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Kamlager-Dove","sponsors.0.isByRequest":"N","request.billNumber":"2762","sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2762/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2762/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Tribal Family Fairness Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2762","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2762/cosponsors?format=json","sponsors.0.bioguideId":"K000400","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2762/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2762/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2762/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","titles.count":3,"introducedDate":"2023-04-20","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2762?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 2762.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 Cl.\n1 ), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8 Cl. 18).\nFurther, this statement of constitutional authority is made\nfor the sole purpose of compliance with clause 7 of Rule XII\nof the Rules of the House of Representatives and shall have\nno bearing on judicial review of the accompanying bill.\nThe single subject of this legislation is:\nThis bill addresses the disproportional representation of\nAmerican Indian and Alaska Native children in foster care by\ninvesting in tribal child welfare systems and providing\nculturally appropriate services to preserve tribal families.\n[Page H1911]\n","sponsors.0.district":37,"sponsors.0.firstName":"Sydney","updateDateIncludingText":"2024-12-21T09:05:43Z"}} +{"type":"node","id":"94","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2764/text?format=json","relatedBills.count":7,"updateDate":"2024-12-21T09:05:24Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Khanna","sponsors.0.isByRequest":"N","request.billNumber":"2764","sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2764/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2764/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Green New Deal for Health Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2764","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2764/cosponsors?format=json","sponsors.0.bioguideId":"K000389","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2764/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2764/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2764/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2764/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","titles.count":3,"introducedDate":"2023-04-20","cosponsors.count":27,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2764?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KHANNA:\nH.R. 2764.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nHealthcare\n[Page H1911]\n","sponsors.0.district":17,"sponsors.0.firstName":"Ro","updateDateIncludingText":"2024-12-21T09:05:24Z"}} +{"type":"node","id":"95","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2769/text?format=json","relatedBills.count":2,"updateDate":"2024-12-21T09:05:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"2769","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2769/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Stop Penalizing Working Seniors Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2769","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2769/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2769/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2769/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2769/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2769/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-04-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2769?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 2769.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3: Congress shall have the\npower . . . ``to regulate Commerce with foreign Nations, and\namong several States, and with the Indian tribes.''\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to allow\nindividuals only enrolled in Medicare Part A to contribute to\nhealth savings accounts.\n[Page H1911]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-12-21T09:05:34Z"}} +{"type":"node","id":"96","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2774/text?format=json","updateDate":"2024-12-21T09:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"2774","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2774/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Accelerating Individuals into the Workforce Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"2774","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2774/cosponsors?format=json","sponsors.0.bioguideId":"M001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2774/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2774/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2774/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":3,"introducedDate":"2023-04-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2774?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 2774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nWorkforce Development\n[Page H1911]\n","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2024-12-21T09:05:18Z"}} +{"type":"node","id":"97","labels":["Bill"],"properties":{"relatedBills.count":8,"congress":118,"sponsors.0.lastName":"Green","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Immigration","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"2794","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2794/cosponsors?format=json","sponsors.0.bioguideId":"G000590","actions.url":"https://api.congress.gov/v3/bill/118/hr/2794/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2794/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Green, Mark E. [R-TN-7]","titles.count":4,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-45","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2794/text?format=json","updateDate":"2024-12-21T09:05:46Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":16,"request.billNumber":"2794","sponsors.0.url":"https://api.congress.gov/v3/member/G000590?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2794/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2794/subjects?format=json","title":"Border Reinforcement Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/45?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2794/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2794/summaries?format=json","introducedDate":"2023-04-24","subjects.count":10,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2794?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GREEN of Tennessee:\nH.R. 2794.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Clause 4 of Section 8 in Article 1 of the U.S.\nConstitution.\nThe single subject of this legislation is:\nThis bill addresses border security and related issues.\n[Page H1915]\n","sponsors.0.district":7,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-12-21T09:05:46Z"}} +{"type":"node","id":"98","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4828/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:34Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Carey","sponsors.0.isByRequest":"N","request.billNumber":"4828","sponsors.0.url":"https://api.congress.gov/v3/member/C001126?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4828/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4828/committees?format=json","policyArea.name":"Health","type":"HR","title":"Imaging Services Price Transparency Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"4828","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"sponsors.0.bioguideId":"C001126","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4828/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4828/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4828/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4828/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Carey, Mike [R-OH-15]","titles.count":3,"introducedDate":"2023-07-24","request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4828?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 127 (Monday, July 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAREY:\nH.R. 4828.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to promote\nprice transparency for imaging tests under the Medicare\nprogram.\n[Page H3896]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-12-20T09:06:34Z"}} +{"type":"node","id":"99","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4829/text?format=json","updateDate":"2024-12-20T09:06:32Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"DEGETTE","sponsors.0.isByRequest":"N","request.billNumber":"4829","sponsors.0.url":"https://api.congress.gov/v3/member/D000197?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4829/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4829/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Physical Therapist Workforce and Patient Access Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4829","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4829/cosponsors?format=json","sponsors.0.bioguideId":"D000197","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4829/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4829/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4829/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. DeGette, Diana [D-CO-1]","titles.count":3,"introducedDate":"2023-07-24","cosponsors.count":23,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4829?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 127 (Monday, July 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeGETTE:\nH.R. 4829.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nExpanding Access to Physical Therapist provided services\n[Page H3896]\n","sponsors.0.district":1,"sponsors.0.firstName":"DIANA","updateDateIncludingText":"2024-12-20T09:06:32Z"}} +{"type":"node","id":"100","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10360/text?format=json","updateDate":"2025-01-15T11:23:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Escobar","sponsors.0.isByRequest":"N","request.billNumber":"10360","sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10360/committees?format=json","type":"HR","title":"Department of Defense Climate Resilience and Readiness Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"10360","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10360/cosponsors?format=json","sponsors.0.bioguideId":"E000299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10360/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10360/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":4,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10360?format=json","sponsors.0.district":16,"sponsors.0.firstName":"Veronica","updateDateIncludingText":"2025-01-15T11:23:17Z"}} +{"type":"node","id":"101","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10357/text?format=json","updateDate":"2025-01-14T01:23:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Castro","sponsors.0.isByRequest":"N","request.billNumber":"10357","sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10357/committees?format=json","type":"HR","title":"Transparency in Former Federal Employees Advising Foreign Governments Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"10357","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"C001091","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10357/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10357/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10357?format=json","sponsors.0.district":20,"sponsors.0.firstName":"Joaquin","updateDateIncludingText":"2025-01-14T01:23:21Z"}} +{"type":"node","id":"102","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10356/text?format=json","updateDate":"2025-01-14T01:23:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Castro","sponsors.0.isByRequest":"N","request.billNumber":"10356","sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10356/committees?format=json","type":"HR","title":"Foreign Service Orientation Support Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"10356","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"C001091","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10356/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10356/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10356?format=json","sponsors.0.district":20,"sponsors.0.firstName":"Joaquin","updateDateIncludingText":"2025-01-14T01:23:20Z"}} +{"type":"node","id":"103","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10351/text?format=json","updateDate":"2025-01-14T01:23:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Flood","sponsors.0.isByRequest":"N","request.billNumber":"10351","sponsors.0.url":"https://api.congress.gov/v3/member/F000474?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10351/committees?format=json","type":"HR","title":"Housing Supply and Innovation Frameworks Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"10351","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10351/cosponsors?format=json","sponsors.0.bioguideId":"F000474","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10351/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10351/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Flood, Mike [R-NE-1]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10351?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T01:23:21Z"}} +{"type":"node","id":"104","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10365/text?format=json","updateDate":"2025-01-16T13:08:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"James","sponsors.0.isByRequest":"N","request.billNumber":"10365","sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10365/committees?format=json","type":"HR","title":"PEPFAR Extension and Reform Act of 2024","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"10365","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"J000307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10365/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10365/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. James, John [R-MI-10]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10365?format=json","sponsors.0.district":10,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-16T13:08:17Z"}} +{"type":"node","id":"105","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10352/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:52:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bacon","sponsors.0.isByRequest":"N","request.billNumber":"10352","sponsors.0.url":"https://api.congress.gov/v3/member/B001298?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10352/committees?format=json","type":"HR","title":"Joint Electromagnetic Spectrum Operations Modeling and Simulation Act of 2024","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"10352","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"B001298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10352/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10352/actions?format=json","latestAction.actionDate":"2024-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10352/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Bacon, Don [R-NE-2]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10352?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Don","updateDateIncludingText":"2025-01-14T17:52:34Z"}} +{"type":"node","id":"106","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10353/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:53:09Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bacon","sponsors.0.isByRequest":"N","request.billNumber":"10353","sponsors.0.url":"https://api.congress.gov/v3/member/B001298?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10353/committees?format=json","type":"HR","title":"Middle East Space and Satellite Security Alliance Act of 2024","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"10353","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"B001298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10353/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10353/actions?format=json","latestAction.actionDate":"2024-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10353/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Bacon, Don [R-NE-2]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10353?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Don","updateDateIncludingText":"2025-01-14T17:53:09Z"}} +{"type":"node","id":"107","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10364/text?format=json","updateDate":"2025-01-16T02:38:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"James","sponsors.0.isByRequest":"N","request.billNumber":"10364","sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10364/committees?format=json","type":"HR","title":"App Store Accountability Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"10364","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"J000307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10364/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10364/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-11","sponsors.0.fullName":"Rep. James, John [R-MI-10]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10364?format=json","sponsors.0.district":10,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-16T02:38:17Z"}} +{"type":"node","id":"108","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10350/text?format=json","updateDate":"2025-01-14T01:23:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"10350","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10350/committees?format=json","type":"HR","title":"Myakka Wild and Scenic River Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"10350","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10350/cosponsors?format=json","sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10350/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10350/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10350?format=json","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2025-01-14T01:23:20Z"}} +{"type":"node","id":"109","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10361/text?format=json","updateDate":"2025-01-15T11:23:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ezell","sponsors.0.isByRequest":"N","request.billNumber":"10361","sponsors.0.url":"https://api.congress.gov/v3/member/E000235?format=json","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10361/committees?format=json","type":"HR","title":"Capacity Building for Business Districts Pilot Program Act of 2024","latestAction.text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"10361","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10361/cosponsors?format=json","sponsors.0.bioguideId":"E000235","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10361/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10361/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Ezell, Mike [R-MS-4]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10361?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-15T11:23:17Z"}} +{"type":"node","id":"110","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10378/text?format=json","updateDate":"2025-01-15T11:23:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"10378","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10378/committees?format=json","type":"HR","title":"SECURE Minerals Act of 2024","latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"10378","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10378/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10378/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10378/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":4,"introducedDate":"2024-12-11","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10378?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T11:23:17Z"}} +{"type":"node","id":"111","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10369/text?format=json","updateDate":"2025-01-16T10:08:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McGarvey","sponsors.0.isByRequest":"N","request.billNumber":"10369","sponsors.0.url":"https://api.congress.gov/v3/member/M001220?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10369/committees?format=json","type":"HR","title":"AVERT Crises Act of 2024","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"10369","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"M001220","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10369/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10369/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. McGarvey, Morgan [D-KY-3]","titles.count":4,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10369?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Morgan","updateDateIncludingText":"2025-01-16T10:08:17Z"}} +{"type":"node","id":"112","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10354/text?format=json","updateDate":"2025-01-14T01:23:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"10354","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10354/committees?format=json","type":"HR","title":"Diversity and Inclusion Data Accountability and Transparency Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"10354","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10354/cosponsors?format=json","sponsors.0.bioguideId":"B001281","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10354/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10354/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10354?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2025-01-14T01:23:20Z"}} +{"type":"node","id":"113","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10376/text?format=json","updateDate":"2025-01-15T11:18:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"10376","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10376/committees?format=json","type":"HR","title":"To amend the Export Control Reform Act of 2018 to prevent the People's Republic of China from exploiting items such as black mass and certain other products produced in the United States.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"10376","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10376/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10376/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10376/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":2,"introducedDate":"2024-12-11","cosponsors.count":7,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10376?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T11:18:20Z"}} +{"type":"node","id":"114","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10371/text?format=json","updateDate":"2025-01-16T11:38:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Norman","sponsors.0.isByRequest":"N","request.billNumber":"10371","sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10371/committees?format=json","type":"HR","title":"No Community Development Block Grants for Sanctuary Cities Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"10371","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10371/cosponsors?format=json","sponsors.0.bioguideId":"N000190","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10371/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10371/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10371?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Ralph","updateDateIncludingText":"2025-01-16T11:38:20Z"}} +{"type":"node","id":"115","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10377/text?format=json","updateDate":"2025-01-15T11:23:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"10377","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10377/committees?format=json","type":"HR","title":"Earth Sciences and Cooperation Enhancement Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"10377","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10377/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10377/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10377/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":7,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10377?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T11:23:17Z"}} +{"type":"node","id":"116","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10375/text?format=json","updateDate":"2025-01-15T11:23:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"10375","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10375/committees?format=json","type":"HR","title":"Critical Minerals Workforce Enhancement Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10375","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10375/cosponsors?format=json","sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10375/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10375/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":5,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10375?format=json","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2025-01-15T11:23:17Z"}} +{"type":"node","id":"117","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10362/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T16:30:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Harshbarger","sponsors.0.isByRequest":"N","request.billNumber":"10362","sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10362/committees?format=json","type":"HR","title":"PBM Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"10362","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10362/cosponsors?format=json","sponsors.0.bioguideId":"H001086","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10362/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10362/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10362/relatedbills?format=json","sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","titles.count":4,"introducedDate":"2024-12-11","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10362?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Diana","updateDateIncludingText":"2025-01-29T16:30:57Z"}} +{"type":"node","id":"118","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10363/text?format=json","updateDate":"2025-01-15T11:23:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hayes","sponsors.0.isByRequest":"N","request.billNumber":"10363","sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10363/committees?format=json","type":"HR","title":"Helping America’s Farmers Act","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"D","number":"10363","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"H001081","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10363/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10363/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10363?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Jahana","updateDateIncludingText":"2025-01-15T11:23:17Z"}} +{"type":"node","id":"119","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10355/text?format=json","updateDate":"2025-01-14T01:23:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bice","sponsors.0.isByRequest":"N","request.billNumber":"10355","sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10355/committees?format=json","type":"HR","title":"Secret Service Recording Accountability Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"10355","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"B000740","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10355/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10355/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-11","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10355?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Stephanie","updateDateIncludingText":"2025-01-14T01:23:20Z"}} +{"type":"node","id":"120","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10210/text?format=json","updateDate":"2024-12-16T19:26:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Costa","sponsors.0.isByRequest":"N","request.billNumber":"10210","sponsors.0.url":"https://api.congress.gov/v3/member/C001059?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10210/committees?format=json","type":"HR","title":"National Plan for Epilepsy Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10210","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10210/cosponsors?format=json","sponsors.0.bioguideId":"C001059","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10210/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10210/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Costa, Jim [D-CA-21]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":6,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10210?format=json","sponsors.0.district":21,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-12-16T19:26:31Z"}} +{"type":"node","id":"121","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10238/text?format=json","updateDate":"2024-12-16T19:26:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schakowsky","sponsors.0.isByRequest":"N","request.billNumber":"10238","sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10238/committees?format=json","type":"HR","title":"Medical Innovation Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10238","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10238/cosponsors?format=json","sponsors.0.bioguideId":"S001145","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10238/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10238/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10238?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Janice","updateDateIncludingText":"2024-12-16T19:26:13Z"}} +{"type":"node","id":"122","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10233/text?format=json","updateDate":"2024-12-16T19:26:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"10233","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10233/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10233/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"To amend title 49, United States Code, to clarify that noise abatement and lead abatement are not unjust discrimination for purposes of project approval for certain airport improvement program project approvals, and for other purposes.","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"10233","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10233/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10233/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":2,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10233?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-12-16T19:26:19Z"}} +{"type":"node","id":"123","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10220/text?format=json","updateDate":"2024-12-16T19:26:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Huffman","sponsors.0.isByRequest":"N","request.billNumber":"10220","sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10220/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"National Institutes of Clean Energy Act of 2024","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"D","number":"10220","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"H001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10220/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10220/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","titles.count":3,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10220?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2024-12-16T19:26:30Z"}} +{"type":"node","id":"124","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10197/text?format=json","updateDate":"2024-12-16T19:26:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"10197","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10197/committees?format=json","type":"HR","title":"Analyzing Kinetic Impact Projectiles Against Americans Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10197","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10197/cosponsors?format=json","sponsors.0.bioguideId":"B001281","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10197/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10197/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10197?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2024-12-16T19:26:26Z"}} +{"type":"node","id":"125","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10232/text?format=json","updateDate":"2024-12-16T19:26:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"10232","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10232/committees?format=json","type":"HR","title":"Investing in Community Resilience Act of 2024","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"10232","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10232/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10232/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10232/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10232?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-12-16T19:26:16Z"}} +{"type":"node","id":"126","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10198/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T19:26:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"10198","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10198/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/10198/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Promoting Diverse Investment Advisers Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"10198","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"B001281","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10198/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10198/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10198/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":3,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10198?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2024-12-16T19:26:10Z"}} +{"type":"node","id":"127","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10191/text?format=json","updateDate":"2024-12-16T19:26:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"10191","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10191/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Nottoway Indian Tribe of Virginia Federal Recognition Act","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"10191","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"M001227","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10191/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-21","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":3,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10191?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-16T19:26:13Z"}} +{"type":"node","id":"128","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10216/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"10216","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10216/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10216/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Ending Racism in Government Contracting Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"10216","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10216/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10216/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10216/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-21","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10216?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"129","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10205/text?format=json","updateDate":"2024-12-16T19:26:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carson","sponsors.0.isByRequest":"N","request.billNumber":"10205","sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10205/committees?format=json","type":"HR","title":"National Amusement Park Ride Safety Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10205","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"C001072","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10205/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10205/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Carson, André [D-IN-7]","titles.count":3,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10205?format=json","sponsors.0.district":7,"sponsors.0.firstName":"André","updateDateIncludingText":"2024-12-16T19:26:17Z"}} +{"type":"node","id":"130","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10218/text?format=json","updateDate":"2024-12-16T19:28:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","request.billNumber":"10218","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10218/committees?format=json","type":"HR","title":"To prohibit the transfer of Army Tactical Missile Systems to Ukraine, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"10218","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10218/cosponsors?format=json","sponsors.0.bioguideId":"H001077","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10218/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10218/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":2,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10218?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2024-12-16T19:28:44Z"}} +{"type":"node","id":"131","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10223/text?format=json","updateDate":"2024-12-16T19:25:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kamlager-Dove","sponsors.0.isByRequest":"N","request.billNumber":"10223","sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10223/committees?format=json","type":"HR","title":"Second Look Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10223","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"K000400","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10223/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10223/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","titles.count":3,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10223?format=json","sponsors.0.district":37,"sponsors.0.firstName":"Sydney","updateDateIncludingText":"2024-12-16T19:25:59Z"}} +{"type":"node","id":"132","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10192/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Waters","sponsors.0.isByRequest":"N","request.billNumber":"10192","sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10192/committees?format=json","type":"HR","title":"Alzheimer’s Caregiver Support Act of 2024","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"10192","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10192/cosponsors?format=json","sponsors.0.bioguideId":"W000187","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10192/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10192/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":20,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10192?format=json","sponsors.0.district":43,"sponsors.0.firstName":"Maxine","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"133","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10226/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Magaziner","sponsors.0.isByRequest":"N","request.billNumber":"10226","sponsors.0.url":"https://api.congress.gov/v3/member/M001223?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10226/committees?format=json","type":"HR","title":"National Guard and Reserve Student Loan Fairness Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"10226","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10226/cosponsors?format=json","sponsors.0.bioguideId":"M001223","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10226/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10226/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Magaziner, Seth [D-RI-2]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10226?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Seth","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"134","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10235/text?format=json","updateDate":"2024-12-16T19:26:03Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Quigley","sponsors.0.isByRequest":"N","request.billNumber":"10235","sponsors.0.url":"https://api.congress.gov/v3/member/Q000023?format=json","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10235/committees?format=json","type":"HR","title":"Flood Mapping Modernization and Homeowner Empowerment Pilot Program Act of 2024","latestAction.text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10235","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"Q000023","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10235/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10235/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Quigley, Mike [D-IL-5]","titles.count":3,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10235?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-12-16T19:26:03Z"}} +{"type":"node","id":"135","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10193/text?format=json","updateDate":"2024-12-16T19:26:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Waters","sponsors.0.isByRequest":"N","request.billNumber":"10193","sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10193/committees?format=json","type":"HR","title":"Minority Diabetes Initiative Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10193","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10193/cosponsors?format=json","sponsors.0.bioguideId":"W000187","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10193/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10193/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":24,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10193?format=json","sponsors.0.district":43,"sponsors.0.firstName":"Maxine","updateDateIncludingText":"2024-12-16T19:26:17Z"}} +{"type":"node","id":"136","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10202/text?format=json","updateDate":"2024-12-16T19:26:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Boyle","sponsors.0.isByRequest":"N","request.billNumber":"10202","sponsors.0.url":"https://api.congress.gov/v3/member/B001296?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10202/committees?format=json","type":"HR","title":"Katherine’s Lung Cancer Early Detection and Survival Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10202","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10202/cosponsors?format=json","sponsors.0.bioguideId":"B001296","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10202/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10202/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Boyle, Brendan F. [D-PA-2]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10202?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Brendan","updateDateIncludingText":"2024-12-16T19:26:32Z"}} +{"type":"node","id":"137","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10214/text?format=json","updateDate":"2024-12-16T19:26:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"10214","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10214/committees?format=json","type":"HR","title":"Dads Matter Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10214","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10214/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10214/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":3,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10214?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-16T19:26:31Z"}} +{"type":"node","id":"138","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10230/text?format=json","updateDate":"2024-12-20T09:05:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meng","sponsors.0.isByRequest":"N","request.billNumber":"10230","sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10230/committees?format=json","type":"HR","title":"Good Samaritan Menstrual Products Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10230","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10230/cosponsors?format=json","sponsors.0.bioguideId":"M001188","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10230/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10230/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":19,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10230?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Grace","updateDateIncludingText":"2024-12-20T09:05:30Z"}} +{"type":"node","id":"139","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10209/text?format=json","updateDate":"2024-12-16T19:26:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"10209","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10209/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10209/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"To amend the Cybersecurity Enhancement Act of 2014 to make improvements to the Federal Cyber Scholarship for Service Program, and for other purposes.","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"D","number":"10209","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10209/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10209/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10209/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":2,"introducedDate":"2024-11-21","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10209?format=json","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-12-16T19:26:10Z"}} +{"type":"node","id":"140","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10028/text?format=json","updateDate":"2024-12-16T19:21:38Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Khanna","sponsors.0.isByRequest":"N","request.billNumber":"10028","sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10028/committees?format=json","type":"HR","title":"Stop Wall Street Landlords Act of 2024","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10028","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10028/cosponsors?format=json","sponsors.0.bioguideId":"K000389","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10028/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10028/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":11,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10028?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Ro","updateDateIncludingText":"2024-12-16T19:21:38Z"}} +{"type":"node","id":"141","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10031/text?format=json","updateDate":"2024-12-16T19:21:25Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Perez","sponsors.0.isByRequest":"N","request.billNumber":"10031","sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10031/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10031/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Performance Life Disclosure Act of 2024","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10031","request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2024-10-22","sponsors.0.bioguideId":"G000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10031/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10031/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","titles.count":3,"introducedDate":"2024-10-22","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10031?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Marie","updateDateIncludingText":"2024-12-16T19:21:25Z"}} +{"type":"node","id":"142","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10021/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Casten","sponsors.0.isByRequest":"N","request.billNumber":"10021","sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Transportation and Infrastructure, Financial Services, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10021/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/10021/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Financial Empowerment and Protection Act","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Transportation and Infrastructure, Financial Services, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"10021","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10021/cosponsors?format=json","sponsors.0.bioguideId":"C001117","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10021/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10021/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10021?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Sean","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"143","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10029/text?format=json","updateDate":"2024-12-16T19:21:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kiley","sponsors.0.isByRequest":"N","request.billNumber":"10029","sponsors.0.url":"https://api.congress.gov/v3/member/K000401?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10029/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10029/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"National Human Trafficking Database Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"10029","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10029/cosponsors?format=json","sponsors.0.bioguideId":"K000401","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10029/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10029/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Kiley, Kevin [R-CA-3]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":3,"subjects.count":14,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10029?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2024-12-16T19:21:35Z"}} +{"type":"node","id":"144","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10032/text?format=json","relatedBills.count":2,"updateDate":"2024-12-16T19:21:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scanlon","sponsors.0.isByRequest":"N","request.billNumber":"10032","sponsors.0.url":"https://api.congress.gov/v3/member/S001205?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10032/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10032/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Dropbox Access Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"10032","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10032/cosponsors?format=json","sponsors.0.bioguideId":"S001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10032/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10032/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10032/relatedbills?format=json","sponsors.0.fullName":"Rep. Scanlon, Mary Gay [D-PA-5]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10032?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-12-16T19:21:33Z"}} +{"type":"node","id":"145","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10020/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T19:21:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"10020","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10020/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10020/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Stop Woke Investing Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"10020","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10020/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10020/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10020/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10020/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10020?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-12-16T19:21:38Z"}} +{"type":"node","id":"146","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10026/text?format=json","updateDate":"2024-12-16T19:21:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Himes","sponsors.0.isByRequest":"N","request.billNumber":"10026","sponsors.0.url":"https://api.congress.gov/v3/member/H001047?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10026/committees?format=json","type":"HR","title":"Multi-State Worker Tax Fairness Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10026","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10026/cosponsors?format=json","sponsors.0.bioguideId":"H001047","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10026/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10026/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Himes, James A. [D-CT-4]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10026?format=json","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-12-16T19:21:22Z"}} +{"type":"node","id":"147","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9773/text?format=json","updateDate":"2024-12-16T19:17:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Underwood","sponsors.0.isByRequest":"N","request.billNumber":"9773","sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9773/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9773/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Copay Fairness for Veterans Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"9773","request.format":"json","latestAction_actionDate":"2024-10-22","sponsors.0.bioguideId":"U000040","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9773/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9773/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-22","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","titles.count":3,"introducedDate":"2024-09-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9773?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 149 (Tuesday, September 24, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 9773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 38, United States Code, eliminate copayments\nby the Department of Veterans Affairs for medicines relating\nto preventive health services, and for other purposes.\n[Page H5747]\n","sponsors.0.district":14,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-12-16T19:17:04Z"}} +{"type":"node","id":"148","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9819/text?format=json","updateDate":"2024-12-18T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Deluzio","sponsors.0.isByRequest":"N","request.billNumber":"9819","sponsors.0.url":"https://api.congress.gov/v3/member/D000530?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9819/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9819/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Saving Our Veterans Lives Act of 2024","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"D","number":"9819","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9819/cosponsors?format=json","sponsors.0.bioguideId":"D000530","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9819/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9819/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Deluzio, Christopher R. [D-PA-17]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9819?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 150 (Wednesday, September 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DELUZIO:\nH.R. 9819.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nVeterans Affairs\n[Page H5831]\n","sponsors.0.district":17,"sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-12-18T09:05:49Z"}} +{"type":"node","id":"149","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9855/text?format=json","updateDate":"2024-12-21T09:05:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Takano","sponsors.0.isByRequest":"N","request.billNumber":"9855","sponsors.0.url":"https://api.congress.gov/v3/member/T000472?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9855/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9855/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Employee Fairness Act of 2024","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"D","number":"9855","cosponsors.countIncludingWithdrawnCosponsors":136,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9855/cosponsors?format=json","sponsors.0.bioguideId":"T000472","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9855/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9855/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Takano, Mark [D-CA-39]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":136,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9855?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 150 (Wednesday, September 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TAKANO:\nH.R. 9855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nThis legislation would ensure VA's Title 38 healthcare\nprofessionals have the same workplace rights currently\ngranted to other VA clinicians and federal employees.\n[Page H5832]\n","sponsors.0.district":39,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-12-21T09:05:38Z"}} +{"type":"node","id":"150","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9806/text?format=json","updateDate":"2024-12-16T19:17:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Budzinski","sponsors.0.isByRequest":"N","request.billNumber":"9806","sponsors.0.url":"https://api.congress.gov/v3/member/B001315?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9806/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9806/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Improving Veterans’ Experience Act of 2024","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"D","number":"9806","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9806/cosponsors?format=json","sponsors.0.bioguideId":"B001315","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9806/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9806/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Budzinski, Nikki [D-IL-13]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9806?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 150 (Wednesday, September 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUDZINSKI:\nH.R. 9806.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nThis bill would codify the Veterans Experience Office\nwithin the VA and allow it to continue providing veteran-\ncentered care and important data collection from veterans\nthemselves to improve all VA services.\n[Page H5830]\n","sponsors.0.district":13,"sponsors.0.firstName":"Nikki","updateDateIncludingText":"2024-12-16T19:17:54Z"}} +{"type":"node","id":"151","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9804/text?format=json","updateDate":"2024-12-16T19:18:06Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"9804","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9804/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9804/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Loved Ones Interment Act","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","sponsors.0.party":"D","number":"9804","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9804/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9804/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9804/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-22","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9804?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 150 (Wednesday, September 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 9804.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nServicemembers\n[Page H5830]\n","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2024-12-16T19:18:06Z"}} +{"type":"node","id":"152","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9725/text?format=json","updateDate":"2024-12-16T19:15:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"9725","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9725/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9725/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"WISER Act of 2024","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","sponsors.0.party":"D","number":"9725","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9725/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9725/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9725/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-22","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":4,"introducedDate":"2024-09-20","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9725?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 147 (Friday, September 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 9725.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nService members\n[Page H5562]\n","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2024-12-16T19:15:05Z"}} +{"type":"node","id":"153","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9870/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"9870","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9870/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9870/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Parity for Public Health Service Ready Reserve Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"9870","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9870/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9870/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9870/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9870/relatedbills?format=json","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":3,"introducedDate":"2024-09-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9870?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 151 (Friday, September 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANDSMAN:\nH.R. 9870.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo improve the provision of benefits and services to\nmembers of the Ready Reserve Corps of the Public Health\nService, and for other purposes.\n[Page H5839]\n","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"154","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9854/text?format=json","updateDate":"2024-12-16T19:17:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Steel","sponsors.0.isByRequest":"N","request.billNumber":"9854","sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9854/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9854/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Education Flexibility for Veteran Parents Act of 2024","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"R","number":"9854","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9854/cosponsors?format=json","sponsors.0.bioguideId":"S001135","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9854/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9854/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9854?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 150 (Wednesday, September 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 9854.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nVeterans' Affairs\n[Page H5832]\n","sponsors.0.district":45,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-12-16T19:17:51Z"}} +{"type":"node","id":"155","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9998/text?format=json","relatedBills.count":1,"updateDate":"2024-12-24T09:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"9998","sponsors.0.url":"https://api.congress.gov/v3/member/L000602?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9998/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9998/committees?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Rail Bridge Safety and Transparency Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"9998","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-10-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9998/cosponsors?format=json","sponsors.0.bioguideId":"L000602","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9998/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9998/actions?format=json","latestAction.actionDate":"2024-10-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9998/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Lee, Summer L. [D-PA-12]","titles.count":3,"introducedDate":"2024-10-18","cosponsors.count":24,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9998?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 157 (Friday, October 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of Pennsylvania:\nH.R. 9998.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nTransportation and Public Works\n[Page H5878]\n","sponsors.0.district":12,"sponsors.0.firstName":"Summer","updateDateIncludingText":"2024-12-24T09:05:29Z"}} +{"type":"node","id":"156","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10019/text?format=json","updateDate":"2024-12-16T19:21:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"10019","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10019/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10019/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to require States to consider prohibiting cost recovery related to smart grid projects, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"10019","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10019/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10019/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10019?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-12-16T19:21:10Z"}} +{"type":"node","id":"157","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10001/text?format=json","updateDate":"2024-12-16T19:21:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"10001","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10001/committees?format=json","type":"HR","title":"Home Lead Safety Tax Credit Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"10001","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"C001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10001/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10001/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":3,"introducedDate":"2024-10-18","request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10001?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-12-16T19:21:11Z"}} +{"type":"node","id":"158","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10018/text?format=json","updateDate":"2024-12-16T19:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"10018","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10018/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10018/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"POWER Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"10018","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10018/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10018/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-18","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":4,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10018?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-12-16T19:21:02Z"}} +{"type":"node","id":"159","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10003/text?format=json","updateDate":"2024-12-16T19:21:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"10003","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10003/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10003/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"National Motor Voter Clarification Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"10003","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10003/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10003/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":3,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10003?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-12-16T19:21:11Z"}} +{"type":"node","id":"160","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9752/text?format=json","updateDate":"2025-02-21T22:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"LaLota","cboCostEstimates.0.pubDate":"2024-11-19T20:01:00Z","sponsors.0.isByRequest":"N","request.billNumber":"9752","sponsors.0.url":"https://api.congress.gov/v3/member/L000598?format=json","latestAction_text":"Ordered to be Reported by Voice Vote.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9752/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9752/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Tren de Aragua Southwest Border Security Threat Assessment Act","latestAction.text":"Ordered to be Reported by Voice Vote.","sponsors.0.party":"R","number":"9752","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61012","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9752/cosponsors?format=json","sponsors.0.bioguideId":"L000598","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9752/titles?format=json","cboCostEstimates.0.title":" H.R. 9752, Tren de Aragua Southwest Border Security Threat Assessment Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/9752/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Rep. LaLota, Nick [R-NY-1]","titles.count":3,"introducedDate":"2024-09-23","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9752?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Nick","updateDateIncludingText":"2025-02-21T22:06:12Z"}} +{"type":"node","id":"161","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Higgins","cboCostEstimates.0.pubDate":"2024-10-17T21:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported by Voice Vote.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","sponsors.0.party":"R","number":"9722","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9722/cosponsors?format=json","sponsors.0.bioguideId":"H001077","actions.url":"https://api.congress.gov/v3/bill/118/hr/9722/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9722/relatedbills?format=json","sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":4,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9722/text?format=json","updateDate":"2024-12-16T19:19:19Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":7,"request.billNumber":"9722","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9722/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9722/subjects?format=json","title":"CATCH Fentanyl Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60837","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-09-25","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9722/titles?format=json","cboCostEstimates.0.title":"H.R. 9722, CATCH Fentanyl Act","introducedDate":"2024-09-20","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9722?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 147 (Friday, September 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 9722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo establish a pilot program to assess the use of\ntechnology to speed up and enhance the cargo inspection\nprocess at land ports of entry along the border.\n[Page H5562]\n","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2024-12-16T19:19:19Z"}} +{"type":"node","id":"162","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9469/text?format=json","updateDate":"2025-02-21T22:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Garcia","cboCostEstimates.0.pubDate":"2024-11-19T19:56:00Z","sponsors.0.isByRequest":"N","request.billNumber":"9469","sponsors.0.url":"https://api.congress.gov/v3/member/G000598?format=json","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9469/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9469/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Pipeline Security Act","latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","sponsors.0.party":"D","number":"9469","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61006","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"G000598","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9469/titles?format=json","cboCostEstimates.0.title":"H.R. 9469, Pipeline Security Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/9469/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Garcia, Robert [D-CA-42]","titles.count":3,"introducedDate":"2024-09-06","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9469?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 138 (Friday, September 6, 2024)]\n[House]\n[Pages H5032-H5033]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROBERT GARCIA of California:\nH.R. 9469.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\n[[Page H5033]]\nThe single subject of this legislation is:\nPipeline security\n","sponsors.0.district":42,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-02-21T22:06:12Z"}} +{"type":"node","id":"163","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8119/text?format=json","updateDate":"2025-02-21T22:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Gonzales","cboCostEstimates.0.pubDate":"2024-11-19T19:56:00Z","sponsors.0.isByRequest":"N","request.billNumber":"8119","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8119/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"PEARL Act","latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","sponsors.0.party":"R","number":"8119","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61005","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8119/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8119/titles?format=json","cboCostEstimates.0.title":"H.R. 8119, PEARL Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/8119/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":4,"introducedDate":"2024-04-23","cosponsors.count":28,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8119?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 71 (Tuesday, April 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 8119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8\nThe single subject of this legislation is:\nTo establish in U.S. Customs and Border Protection a pilot\nprogram to adopt dogs from local animal shelters to be\ntrained as thetapy dogs, and for other purposes.\n[Page H2628]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-02-21T22:06:12Z"}} +{"type":"node","id":"164","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Guest","cboCostEstimates.0.pubDate":"2024-09-19T20:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"9459","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9459/cosponsors?format=json","sponsors.0.bioguideId":"G000591","actions.url":"https://api.congress.gov/v3/bill/118/hr/9459/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9459/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. Guest, Michael [R-MS-3]","titles.count":8,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-687","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9459/text?format=json","updateDate":"2025-01-17T03:11:14Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":17,"request.billNumber":"9459","sponsors.0.url":"https://api.congress.gov/v3/member/G000591?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9459/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9459/subjects?format=json","title":"PATHS Act","cboCostEstimates.0.description":"As reported by the House Committee on Homeland Security on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60729","request.format":"json","latestAction_actionDate":"2024-09-24","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/687?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9459/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9459/summaries?format=json","cboCostEstimates.0.title":"H.R. 9459, PATHS Act","introducedDate":"2024-09-06","subjects.count":6,"sponsors.0.state":"MS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9459?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 138 (Friday, September 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUEST:\nH.R. 9459.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Homeland Security Act of 2002 to enable secure\nand trustworthy technology through other transaction\ncontracting authority, and for other purposes.\n[Page H5032]\n","sponsors.0.district":3,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-17T03:11:14Z"}} +{"type":"node","id":"165","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Miller","cboCostEstimates.0.pubDate":"2024-08-13T20:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"7685","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7685/cosponsors?format=json","sponsors.0.bioguideId":"M001222","actions.url":"https://api.congress.gov/v3/bill/118/hr/7685/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":4,"sponsors.0.fullName":"Rep. Miller, Max L. [R-OH-7]","titles.count":10,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-522","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7685/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":15,"request.billNumber":"7685","sponsors.0.url":"https://api.congress.gov/v3/member/M001222?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7685/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7685/subjects?format=json","title":"IMPACT Act","cboCostEstimates.0.description":"As reported by the House Committee on Science, Space, and Technology on May 23, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60637","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/522?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7685/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7685/summaries?format=json","cboCostEstimates.0.title":"H.R. 7685, IMPACT Act","introducedDate":"2024-03-15","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7685?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 47 (Friday, March 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MILLER of Ohio:\nH.R. 7685.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\n``The Congress shall have Power. . . To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nTo strengthen and enhance the competitiveness of American\nindustry through the research and development of advanced\ntechnologies to improve the efficiency of cement, concrete,\nand asphalt production.\n[Page H1188]\n","sponsors.0.district":7,"sponsors.0.firstName":"Max","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"166","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8108/text?format=json","updateDate":"2025-01-16T07:06:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Kiggans","sponsors.0.isByRequest":"N","request.billNumber":"8108","sponsors.0.url":"https://api.congress.gov/v3/member/K000399?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8108/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8108/committees?format=json","policyArea.name":"Health","type":"HR","title":"To amend title XIX of the Social Security Act to add a Medicaid State plan requirement with respect to the determination of residency of certain individuals serving in the Armed Forces.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"8108","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/697?format=json","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8108/cosponsors?format=json","sponsors.0.bioguideId":"K000399","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8108/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8108/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8108/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. Kiggans, Jennifer A. [R-VA-2]","titles.count":2,"introducedDate":"2024-04-23","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 71 (Tuesday, April 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIGGANS of Virginia:\nH.R. 8108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8. United States Constitution.\nThe single subject of this legislation is:\nProvides Medicaid for dependents with disabilities of\nmembers of the armed services.\n[Page H2628]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-01-16T07:06:17Z","committeeReports.0.citation":"H. Rept. 118-697"}} +{"type":"node","id":"167","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Valadao","cboCostEstimates.0.pubDate":"2024-03-01T18:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"6125","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6125/cosponsors?format=json","sponsors.0.bioguideId":"V000129","actions.url":"https://api.congress.gov/v3/bill/118/hr/6125/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":4,"sponsors.0.fullName":"Rep. Valadao, David G. [R-CA-22]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-623","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6125/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":19,"request.billNumber":"6125","sponsors.0.url":"https://api.congress.gov/v3/member/V000129?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6125/subjects?format=json","title":"Online Dating Safety Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on December 6, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60050","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/623?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6125/summaries?format=json","cboCostEstimates.0.title":"H.R. 6125, Online Dating Safety Act of 2023","introducedDate":"2023-10-30","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VALADAO:\nH.R. 6125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require online dating service providers to provide fraud\nban notifications.\n[Page H5182]\n","sponsors.0.district":22,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"168","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Houlahan","cboCostEstimates.0.pubDate":"2023-05-01T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Education","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1735","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1735/cosponsors?format=json","sponsors.0.bioguideId":"H001085","actions.url":"https://api.congress.gov/v3/bill/118/hr/1735/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1735/relatedbills?format=json","sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-62","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1735/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":15,"request.billNumber":"1735","sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1735/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1735/subjects?format=json","title":"Mathematical and Statistical Modeling Education Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59120","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/62?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1735/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1735/summaries?format=json","cboCostEstimates.0.title":"H.R. 1735, Mathematical and Statistical Modeling Education Act","introducedDate":"2023-03-23","subjects.count":17,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1735?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 1735.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the U.S. Constitution\nThe single subject of this legislation is:\nLegislating\n[Page H1410]\n","sponsors.0.district":6,"sponsors.0.firstName":"Chrissy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"169","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cammack","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2706","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2706/cosponsors?format=json","sponsors.0.bioguideId":"C001039","actions.url":"https://api.congress.gov/v3/bill/118/hr/2706/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2706/relatedbills?format=json","sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","titles.count":6,"cosponsors.count":43,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-507","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2706/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":18,"request.billNumber":"2706","sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2706/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2706/subjects?format=json","title":"Charlotte Woodward Organ Transplant Discrimination Prevention Act","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/507?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2706/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2706/summaries?format=json","introducedDate":"2023-04-19","subjects.count":7,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2706?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAMMACK:\nH.R. 2706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 1, Article I Section 8 Clause 3,\nArticle I Section 8 Clause 18\nThe single subject of this legislation is:\nHealth\n[Page H1887]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kat","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"170","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3433","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3433/cosponsors?format=json","sponsors.0.bioguideId":"M001157","actions.url":"https://api.congress.gov/v3/bill/118/hr/3433/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3433/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":6,"cosponsors.count":235,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-700","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3433/text?format=json","updateDate":"2025-01-16T07:06:17Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":18,"request.billNumber":"3433","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3433/subjects?format=json","title":"Give Kids a Chance Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":235,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/700?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3433/summaries?format=json","introducedDate":"2023-05-17","subjects.count":9,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3433?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 3433.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo expand cancer research for children.\n[Page H2428]\n","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-16T07:06:17Z"}} +{"type":"node","id":"171","labels":["Bill"],"properties":{"relatedBills.count":9,"congress":118,"sponsors.0.lastName":"Lucas","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"8958","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8958/cosponsors?format=json","sponsors.0.bioguideId":"L000491","actions.url":"https://api.congress.gov/v3/bill/118/hr/8958/actions?format=json","latestAction.actionDate":"2024-09-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8958/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-701","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8958/text?format=json","updateDate":"2025-01-17T03:06:28Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"8958","sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8958/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8958/subjects?format=json","title":"NASA Reauthorization Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-09-24","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/701?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8958/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8958/summaries?format=json","introducedDate":"2024-07-09","subjects.count":30,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8958?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 113 (Tuesday, July 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 8958.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\n``The Congress shall have Power . . . To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo reauthorize the National Aeronautics and Space\nAdministration.\n[Page H4528]\n","sponsors.0.district":3,"sponsors.0.firstName":"Frank","updateDateIncludingText":"2025-01-17T03:06:28Z"}} +{"type":"node","id":"172","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Burgess","cboCostEstimates.0.pubDate":"2024-01-03T20:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3884","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3884/cosponsors?format=json","sponsors.0.bioguideId":"B001248","actions.url":"https://api.congress.gov/v3/bill/118/hr/3884/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-166","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3884/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":18,"request.billNumber":"3884","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3884/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3884/committees?format=json","title":"Sickle Cell Disease and Other Heritable Blood Disorders Research, Surveillance, Prevention, and Treatment Act of 2023","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on August 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59857","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-09-24","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/166?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3884/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3884/summaries?format=json","cboCostEstimates.0.title":"H.R. 3884, Sickle Cell Disease and Other Heritable Blood Disorders Research, Surveillance, Prevention, and Treatment Act of 2023","introducedDate":"2023-06-07","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3884?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 99 (Wednesday, June 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 3884.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend title XI of the Pubtic Health Service Act to\nreauthorize the program providing for sickle cell disease and\nother heritable blood disorders research, surveillance, and\nprevention, and treatment.\n[Page H2779]\n","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"173","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5526/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T19:14:45Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":22,"sponsors.0.lastName":"Harshbarger","sponsors.0.isByRequest":"N","request.billNumber":"5526","sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5526/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5526/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Seniors’ Access to Critical Medications Act of 2024","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5526","cosponsors.countIncludingWithdrawnCosponsors":69,"request.format":"json","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/691?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5526/cosponsors?format=json","sponsors.0.bioguideId":"H001086","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5526/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5526/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5526/relatedbills?format=json","sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","titles.count":7,"introducedDate":"2023-09-18","cosponsors.count":69,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5526?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 150 (Monday, September 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARSHBARGER:\nH.R. 5526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nhealthcare\n[Page H4381]\n","sponsors.0.district":1,"sponsors.0.firstName":"Diana","updateDateIncludingText":"2024-12-16T19:14:45Z","committeeReports.0.citation":"H. Rept. 118-691"}} +{"type":"node","id":"174","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Kean","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"6219","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6219/cosponsors?format=json","sponsors.0.bioguideId":"K000398","actions.url":"https://api.congress.gov/v3/bill/118/hr/6219/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6219/relatedbills?format=json","sponsors.0.fullName":"Rep. Kean, Thomas H. [R-NJ-7]","titles.count":10,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-603","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6219/text?format=json","updateDate":"2025-01-16T06:06:28Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":15,"request.billNumber":"6219","sponsors.0.url":"https://api.congress.gov/v3/member/K000398?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6219/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6219/committees?format=json","title":"ASCEND Act","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/603?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6219/summaries?format=json","introducedDate":"2023-11-03","subjects.count":6,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6219?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 182 (Friday, November 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEAN of New Jersey:\nH.R. 6219.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 3\nThe single subject of this legislation is:\nTo require the Administrator of the National Aeronautics\nand Space Administration to establish a program to identify,\nevaluate, acquire, and disseminate commercial Earth remote\nsensing data and imagery in order to satisfy the scientific\noperational, and educational requirements of the\nAdministration, and for other purposes.\n[Page H5404]\n","sponsors.0.district":7,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-16T06:06:28Z"}} +{"type":"node","id":"175","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 526.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 526.","sponsors.0.party":"R","number":"7630","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7630/cosponsors?format=json","sponsors.0.bioguideId":"G000061","actions.url":"https://api.congress.gov/v3/bill/118/hr/7630/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7630/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. Garcia, Mike [R-CA-27]","titles.count":10,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-521","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7630/text?format=json","updateDate":"2025-01-16T05:26:30Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":15,"request.billNumber":"7630","sponsors.0.url":"https://api.congress.gov/v3/member/G000061?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7630/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7630/committees?format=json","title":"ANCHOR Act","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/521?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7630/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7630/summaries?format=json","introducedDate":"2024-03-12","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7630?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 44 (Tuesday, March 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MIKE GARCIA of California:\nH.R. 7630.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: The Congress shall have\npower to make all Laws which shall be necessary and proper\nfor carrying into Execution the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo make improvements to the cybersecurity and\ntelecommunication capabilities of the U.S. Academic Research\nFleet.\n[Page H1148]\n","sponsors.0.district":27,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-16T05:26:30Z"}} +{"type":"node","id":"176","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9756/text?format=json","updateDate":"2024-12-24T09:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"9756","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9756/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9756/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Private Sector Competition in Microtransit Act","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"9756","request.format":"json","latestAction_actionDate":"2024-09-24","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9756/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9756/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2024-09-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9756?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-12-24T09:05:22Z"}} +{"type":"node","id":"177","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9082/text?format=json","updateDate":"2025-02-06T18:53:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Kamlager-Dove","sponsors.0.isByRequest":"N","request.billNumber":"9082","sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9082/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9082/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Summit of the Americas Act","latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","sponsors.0.party":"D","number":"9082","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2024-09-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9082/cosponsors?format=json","sponsors.0.bioguideId":"K000400","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9082/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9082/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","titles.count":3,"introducedDate":"2024-07-22","cosponsors.count":16,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9082?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 9082.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 Cl.\n1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1Sec. 8Cl. 18).\nThe single subject of this legislation is:\nTo direct the Secretary of State to support the\norganization of a Summit of the Americas and the Cities\nSummit of the Americas.\n[Page H4730]\n","sponsors.0.district":37,"sponsors.0.firstName":"Sydney","updateDateIncludingText":"2025-02-06T18:53:57Z"}} +{"type":"node","id":"178","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9172/text?format=json","relatedBills.count":1,"updateDate":"2025-02-06T18:54:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"9172","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Ordered to be Reported by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9172/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"DISPOSE Act","latestAction.text":"Ordered to be Reported by Voice Vote.","sponsors.0.party":"R","number":"9172","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2024-09-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9172/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9172/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9172/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9172/relatedbills?format=json","sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":4,"introducedDate":"2024-07-25","cosponsors.count":22,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 121 (Thursday, July 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 9172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nFentanyl Precursor Destruction\n[Page H4951]\n","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-02-06T18:54:27Z"}} +{"type":"node","id":"179","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9718/text?format=json","updateDate":"2024-12-16T19:18:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Zinke","cboCostEstimates.0.pubDate":"2024-11-04T14:51:00Z","sponsors.0.isByRequest":"N","request.billNumber":"9718","sponsors.0.url":"https://api.congress.gov/v3/member/Z000018?format=json","latestAction_text":"Ordered to be Reported by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9718/committees?format=json","type":"HR","title":"Extending and Enhancing U.S.-U.K. Nuclear Cooperation for Mutual Defense Purposes Act","latestAction.text":"Ordered to be Reported by Voice Vote.","sponsors.0.party":"R","number":"9718","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 24, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60858","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-09-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9718/cosponsors?format=json","sponsors.0.bioguideId":"Z000018","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9718/titles?format=json","cboCostEstimates.0.title":"H.R. 9718, Extending and Enhancing U.S.-U.K. Nuclear Cooperation for Mutual Defense Purposes Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/9718/actions?format=json","latestAction.actionDate":"2024-09-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Zinke, Ryan K. [R-MT-1]","titles.count":3,"introducedDate":"2024-09-20","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9718?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 147 (Friday, September 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ZINKE:\nH.R. 9718.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo provide for the approval of the Amendment to the\nAgreement Between the Government of the United States of\nAmerica and the Government of the United Kingdom of Great\nBritain and Northern Ireland for Cooperation on the Uses of\nAtomic Energy for Mutual Defense Purposes\n[Page H5562]\n","sponsors.0.district":1,"sponsors.0.firstName":"Ryan","updateDateIncludingText":"2024-12-16T19:18:04Z"}} +{"type":"node","id":"180","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9585/text?format=json","updateDate":"2024-12-24T09:05:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Steel","sponsors.0.isByRequest":"N","request.billNumber":"9585","sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9585/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9585/committees?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Secure Our Ports Act of 2024","latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","sponsors.0.party":"R","number":"9585","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-09-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9585/cosponsors?format=json","sponsors.0.bioguideId":"S001135","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9585/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9585/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","titles.count":3,"introducedDate":"2024-09-12","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9585?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 9585.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nTransportation\n[Page H5231]\n","sponsors.0.district":45,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-12-24T09:05:33Z"}} +{"type":"node","id":"181","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9588/text?format=json","updateDate":"2024-12-24T09:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Titus","sponsors.0.isByRequest":"N","request.billNumber":"9588","sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9588/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9588/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Thermal Runaway Reduction Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"9588","request.format":"json","latestAction_actionDate":"2024-09-13","sponsors.0.bioguideId":"T000468","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9588/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9588/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","titles.count":3,"introducedDate":"2024-09-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9588?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Dina","updateDateIncludingText":"2024-12-24T09:05:22Z"}} +{"type":"node","id":"182","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9565/text?format=json","updateDate":"2024-12-24T09:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"9565","sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","latestAction_text":"Referred to the Subcommittee on Aviation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9565/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9565/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Securing Infrastructure from Adversaries Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"R","number":"9565","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-09-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9565/cosponsors?format=json","sponsors.0.bioguideId":"J000301","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9565/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9565/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","titles.count":3,"introducedDate":"2024-09-12","cosponsors.count":9,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9565?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 9565.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo prohibit the Secretary of Transportation from entering\ninto, extending, or renewing a contract wiht or awarding a\ngrant to an entity that uses or procures light detection and\nranging technology from certain foreign entities, and for\nother purposes.\n[Page H5231]\n","sponsors.0.firstName":"Dusty","updateDateIncludingText":"2024-12-24T09:05:18Z"}} +{"type":"node","id":"183","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9552/text?format=json","updateDate":"2024-12-24T09:05:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"9552","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Referred to the Subcommittee on Aviation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9552/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9552/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Flight Refund Fairness Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"R","number":"9552","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2024-09-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9552/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9552/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9552/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":3,"introducedDate":"2024-09-12","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9552?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 9552.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 18\nThe single subject of this legislation is:\nTransportation.\n[Page H5230]\n","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-12-24T09:05:38Z"}} +{"type":"node","id":"184","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9379/text?format=json","updateDate":"2024-09-17T08:05:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Ryan","sponsors.0.isByRequest":"N","request.billNumber":"9379","sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9379/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9379/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Mortgage Rate Reduction Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"9379","request.format":"json","latestAction_actionDate":"2024-09-13","sponsors.0.bioguideId":"R000579","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9379/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9379/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","titles.count":3,"introducedDate":"2024-08-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9379?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 9379\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nHousing\n[Page H4997]\n","sponsors.0.district":18,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-09-17T08:05:17Z"}} +{"type":"node","id":"185","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8998/text?format=json","relatedBills.count":8,"updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":105,"sponsors.0.lastName":"Simpson","sponsors.0.isByRequest":"N","request.billNumber":"8998","sponsors.0.url":"https://api.congress.gov/v3/member/S001148?format=json","latestAction_text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 509.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8998/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8998/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Department of the Interior, Environment, and Related Agencies Appropriations Act, 2025","latestAction.text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 509.","sponsors.0.party":"R","number":"8998","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-09-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/581?format=json","amendments.count":54,"sponsors.0.bioguideId":"S001148","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8998/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8998/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8998/actions?format=json","latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8998/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Simpson, Michael K. [R-ID-2]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8998/amendments?format=json","titles.count":5,"introducedDate":"2024-07-11","request.contentType":"application/json","subjects.count":135,"sponsors.0.state":"ID","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8998?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"H. Rept. 118-581"}} +{"type":"node","id":"186","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8771/text?format=json","relatedBills.count":3,"updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":100,"sponsors.0.lastName":"Diaz-Balart","sponsors.0.isByRequest":"N","request.billNumber":"8771","sponsors.0.url":"https://api.congress.gov/v3/member/D000600?format=json","latestAction_text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 507.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8771/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8771/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Department of State, Foreign Operations, and Related Programs Appropriations Act, 2025","latestAction.text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 507.","sponsors.0.party":"R","number":"8771","request.format":"json","latestAction_actionDate":"2024-09-12","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/554?format=json","amendments.count":38,"sponsors.0.bioguideId":"D000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8771/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8771/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8771/actions?format=json","latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8771/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Diaz-Balart, Mario [R-FL-26]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8771/amendments?format=json","titles.count":5,"introducedDate":"2024-06-14","request.contentType":"application/json","subjects.count":176,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8771?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DIAZ-BALART:\nH.R. 8771.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of State, Foreign Operations, and Related\nPrograms for fiscal year 2025.\n[Page H4114]\n","sponsors.0.district":26,"sponsors.0.firstName":"Mario","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"H. Rept. 118-554"}} +{"type":"node","id":"187","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8774/text?format=json","relatedBills.count":3,"updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":55,"sponsors.0.lastName":"Calvert","sponsors.0.isByRequest":"N","request.billNumber":"8774","sponsors.0.url":"https://api.congress.gov/v3/member/C000059?format=json","latestAction_text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 508.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8774/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Department of Defense Appropriations Act, 2025","latestAction.text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 508.","sponsors.0.party":"R","number":"8774","request.format":"json","latestAction_actionDate":"2024-09-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/557?format=json","summaries.count":3,"amendments.count":15,"sponsors.0.bioguideId":"C000059","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8774/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8774/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8774/actions?format=json","latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8774/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Calvert, Ken [R-CA-41]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8774/amendments?format=json","titles.count":5,"introducedDate":"2024-06-17","request.contentType":"application/json","subjects.count":107,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8774?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CALVERT:\nH.R. 8774.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of Defense, and for other purposes, for fiscal\nyear 2025.\n[Page H4114]\n","sponsors.0.district":41,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"H. Rept. 118-557"}} +{"type":"node","id":"188","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8580/text?format=json","relatedBills.count":4,"updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":76,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"8580","sponsors.0.url":"https://api.congress.gov/v3/member/C001051?format=json","latestAction_text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 506.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8580/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Military Construction, Veterans Affairs, and Related Agencies Appropriations Act, 2025","latestAction.text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 506.","sponsors.0.party":"R","number":"8580","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-09-12","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/528?format=json","amendments.count":31,"sponsors.0.bioguideId":"C001051","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8580/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8580/actions?format=json","latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8580/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Carter, John R. [R-TX-31]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8580/amendments?format=json","titles.count":5,"introducedDate":"2024-05-28","request.contentType":"application/json","subjects.count":74,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8580?format=json","sponsors.0.district":31,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"H. Rept. 118-528"}} +{"type":"node","id":"189","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9456/text?format=json","relatedBills.count":3,"updateDate":"2025-01-16T07:06:15Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":19,"sponsors.0.lastName":"Newhouse","sponsors.0.isByRequest":"N","request.billNumber":"9456","sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9456/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"9456","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2024-09-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9456/cosponsors?format=json","sponsors.0.bioguideId":"N000189","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9456/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9456/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-09-12","sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","titles.count":4,"introducedDate":"2024-09-06","cosponsors.count":24,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9456?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 138 (Friday, September 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 9456.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nCommittee on Foreign Investment in the United States\n(CFIUS)\n[Page H5032]\n","sponsors.0.district":4,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-02-21T17:27:11Z"}} +{"type":"node","id":"190","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-11-17T16:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Education","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1516","amendments.count":6,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1516/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/1516/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1516/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1516/amendments?format=json","titles.count":5,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-319","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1516/text?format=json","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":42,"committeeReports.1.citation":"H. Rept. 118-319,Part 2","request.billNumber":"1516","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1516/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1516/subjects?format=json","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59754","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2024-09-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1516/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1516/summaries?format=json","cboCostEstimates.0.title":"H.R. 1516, DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","introducedDate":"2023-03-09","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1516?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProhibits DHS funds from being awarded to universities that\nhave ties to the Chinese Communist Party.\n[Page H1251]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-03-03T20:01:51Z"}} +{"type":"node","id":"191","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9539/text?format=json","updateDate":"2024-12-24T09:05:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Garbarino","sponsors.0.isByRequest":"N","request.billNumber":"9539","sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9539/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9539/subjects?format=json","policyArea.name":"Emergency Management","type":"HR","title":"To require the Administrator of the Federal Emergency Management Agency to reimburse public employee retirement systems for accidental disability retirements and accidental deaths resulting from the September 11, 2001 attacks on the World Trade Center.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"9539","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9539/cosponsors?format=json","sponsors.0.bioguideId":"G000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9539/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9539/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","titles.count":2,"introducedDate":"2024-09-11","cosponsors.count":20,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9539?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 141 (Wednesday, September 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.R. 9539.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis bill would allow FEMA to reimburse the State and City\npension systems for the loss in pension payments due to the\nunanticipated deaths of those who responded the terrorist\nattacks and who participated in the clean-up in the weeks\nfollowing the attacks.\n[Page H5202]\n","sponsors.0.district":2,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-12-24T09:05:24Z"}} +{"type":"node","id":"192","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9536/text?format=json","updateDate":"2024-12-24T09:05:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"9536","sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9536/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9536/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"To amend title 23, United States Code, and the Infrastructure Investment and Jobs Act with respect to vehicle roadside accidents, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"9536","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9536/cosponsors?format=json","sponsors.0.bioguideId":"C001125","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9536/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9536/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Carter, Troy A. [D-LA-2]","titles.count":2,"introducedDate":"2024-09-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9536?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 141 (Wednesday, September 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 9536.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8\nCl.1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8 Cl. 18). Further,\nthis statement of constitutional authority is made for the\nsole purpose of compliance with clause 7 of Rule XII of the\nRules of the House of Representatives and shall have no\nbearing on judicial review of the accompanying bill.\nThe single subject of this legislation is:\nTransportation and Public Works\n[Page H5202]\n","sponsors.0.district":2,"sponsors.0.firstName":"Troy","updateDateIncludingText":"2024-12-24T09:05:30Z"}} +{"type":"node","id":"193","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Steil","cboCostEstimates.0.pubDate":"2024-12-18T22:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 559.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 559.","sponsors.0.party":"R","number":"8399","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8399/cosponsors?format=json","sponsors.0.bioguideId":"S001213","actions.url":"https://api.congress.gov/v3/bill/118/hr/8399/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8399/relatedbills?format=json","sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-663","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8399/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":11,"request.billNumber":"8399","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8399/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8399/subjects?format=json","title":"Preventing Foreign Interference in American Elections Act","cboCostEstimates.0.description":"As reported by the House Committee on House Administration on September 12, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61143","request.format":"json","latestAction_actionDate":"2024-09-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/663?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8399/titles?format=json","cboCostEstimates.0.title":"H.R. 8399, Preventing Foreign Interference in American Elections Act\t","introducedDate":"2024-05-14","subjects.count":6,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8399?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEIL:\nH.R. 8399.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, Congress has the\nlegislative power ``to make all Laws which shall be necessary\nand proper for carrying into Execution the foregoing Powers,\nand all other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nThis bill prohibits foreign nationals from improperly\ninfluencing American elections.\n[Page H3205]\n","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2025-02-04T17:04:16Z"}} +{"type":"node","id":"194","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9568/text?format=json","updateDate":"2024-12-04T09:05:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","request.billNumber":"9568","sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9568/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9568/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"SAW Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"9568","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9568/cosponsors?format=json","sponsors.0.bioguideId":"M000194","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9568/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9568/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","titles.count":4,"introducedDate":"2024-09-12","cosponsors.count":12,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9568?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MACE:\nH.R. 9568.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo prohibit any person from using a motor vehicle to\nintentionally run over or kill a wild animal on public lands\n[Page H5231]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-12-04T09:05:19Z"}} +{"type":"node","id":"195","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9569/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Matsui","sponsors.0.isByRequest":"N","request.billNumber":"9569","sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9569/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9569/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"PSA Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"9569","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9569/cosponsors?format=json","sponsors.0.bioguideId":"M001163","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9569/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9569/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9569/relatedbills?format=json","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","titles.count":4,"introducedDate":"2024-09-12","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9569?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 9569.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nReauthorizes and modernises the AmeriCorps programs\n[Page H5231]\n","sponsors.0.district":7,"sponsors.0.firstName":"Doris","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"196","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9574/text?format=json","relatedBills.count":1,"updateDate":"2024-09-27T20:38:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Nehls","sponsors.0.isByRequest":"N","request.billNumber":"9574","sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9574/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9574/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Stop CARB Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"9574","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9574/cosponsors?format=json","sponsors.0.bioguideId":"N000026","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9574/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9574/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9574/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-12","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","titles.count":4,"introducedDate":"2024-09-12","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9574?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 9574.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nTo amend the Clean Air Act to eliminate a waiver under that\nAct, to eliminate an authorization for States to use new\nmotor vehicle emission and new motor vehicle engine emissions\nstandard identical to standards adopted in California, and\nfor other purposes.\n[Page H5231]\n","sponsors.0.district":22,"sponsors.0.firstName":"Troy","updateDateIncludingText":"2024-09-27T20:38:19Z"}} +{"type":"node","id":"197","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9586/text?format=json","updateDate":"2024-10-24T15:00:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"9586","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9586/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9586/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"STOP WEIRD Act of 2024","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"9586","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9586/cosponsors?format=json","sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9586/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9586/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":4,"introducedDate":"2024-09-12","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9586?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\n[Pages H5231-H5232]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 9586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1, 4, and 18\nThe single subject of this legislation is:\nTo prohibit federal funds from being used to provide\ncertain gender transition procuedures to individuals in the\ncustody of\n[[Page H5232]]\nthe Department of Homeland Security and the Department of\nHealth and Human Services\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2024-10-24T15:00:27Z"}} +{"type":"node","id":"198","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9556/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Carey","sponsors.0.isByRequest":"N","request.billNumber":"9556","sponsors.0.url":"https://api.congress.gov/v3/member/C001126?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9556/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9556/committees?format=json","policyArea.name":"Education","type":"HR","title":"National STEM Week Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"9556","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-09-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9556/cosponsors?format=json","sponsors.0.bioguideId":"C001126","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9556/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9556/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Carey, Mike [R-OH-15]","titles.count":3,"introducedDate":"2024-09-12","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9556?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAREY:\nH.R. 9556.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo establish a National STEM Week to promote American\ninnovation and enhance STEM education pathways for all\nstudents, including those in rural, urban, and underserved\ncommunities.\n[Page H5230]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"199","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9558/text?format=json","updateDate":"2024-09-23T14:45:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Casten","sponsors.0.isByRequest":"N","request.billNumber":"9558","sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9558/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9558/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Exported Carbon Emissions Report Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"9558","request.format":"json","latestAction_actionDate":"2024-09-12","sponsors.0.bioguideId":"C001117","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9558/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9558/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-12","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","titles.count":3,"introducedDate":"2024-09-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9558?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 9558.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require the Administrator of the Environmental\nProtection Agency to collect, calculate, and publish\ninformation regarding emissions of carbon dioxide and methane\noutside the boundaries of the United States that are\nassociated with exports of fossil fuels, and for other\npurposes.\n[Page H5230]\n","sponsors.0.district":6,"sponsors.0.firstName":"Sean","updateDateIncludingText":"2024-09-23T14:45:45Z"}} +{"type":"node","id":"200","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9441/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moskowitz","sponsors.0.isByRequest":"N","request.billNumber":"9441","sponsors.0.url":"https://api.congress.gov/v3/member/M001217?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9441/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9441/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Student Loan Interest Cap Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"9441","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-08-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9441/cosponsors?format=json","sponsors.0.bioguideId":"M001217","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9441/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9441/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Moskowitz, Jared [D-FL-23]","titles.count":3,"introducedDate":"2024-08-30","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9441?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOSKOWITZ:\nH.R. 9441.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 3(d)(1) of rule X 111 of the Rules of\nthe House of Representatives, the Committee find the\nauthority for this legislation in article I, section 8 of the\nConstitution.\nThe single subject of this legislation is:\nStudent Loan Debt\n[Page H5022]\n","sponsors.0.district":23,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"201","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9425/text?format=json","updateDate":"2024-10-07T14:18:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"9425","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9425/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9425/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Tobacco User Fee Modernization Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"9425","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"M001227","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9425/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9425/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":3,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9425?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. McCLELLAN:\nH.R. 9425.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: To regulate Commerce with\nForeign Nations, and among several States, and with the\nIndian Tribes\nThe single subject of this legislation is:\nFDA User Fees for Tobacco Products\n[Page H5021]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-10-07T14:18:34Z"}} +{"type":"node","id":"202","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9433/text?format=json","updateDate":"2024-12-10T19:58:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"9433","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9433/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To direct the Secretary of Defense to conduct a threat analysis of any potential threats the illicit fentanyl drug trade poses to the defense interests of the United States.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"9433","request.format":"json","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9433/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9433/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":2,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9433?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 9433.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nArmed Services\n[Page H5021]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-10T19:58:16Z"}} +{"type":"node","id":"203","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9442/text?format=json","updateDate":"2024-12-09T16:49:36Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Newhouse","sponsors.0.isByRequest":"N","request.billNumber":"9442","sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Foreign Affairs, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9442/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9442/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","latestAction.text":"Referred to the Committee on Agriculture, and in addition to the Committees on Foreign Affairs, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"9442","request.format":"json","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"N000189","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9442/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9442/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","titles.count":3,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9442?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 9442.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nCommittee on Foreign Investment in the United States\n[Page H5022]\n","sponsors.0.district":4,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-12-09T16:49:36Z"}} +{"type":"node","id":"204","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9444/text?format=json","updateDate":"2024-10-10T13:26:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ruiz","sponsors.0.isByRequest":"N","request.billNumber":"9444","sponsors.0.url":"https://api.congress.gov/v3/member/R000599?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9444/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9444/subjects?format=json","policyArea.name":"Water Resources Development","type":"HR","title":"To amend the Reclamation Projects Authorization and Adjustment Act of 1992 to authorize appropriations for the Salton Sea Research Project.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"9444","request.format":"json","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"R000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9444/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-30","sponsors.0.fullName":"Rep. Ruiz, Raul [D-CA-25]","titles.count":2,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9444?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUIZ:\nH.R. 9444.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8, Clauses 1 and 18 of the United States\nConstitution, to provide for the general welfare and make all\nlaws necessary and proper to carry out the powers of\nCongress.\nThe single subject of this legislation is:\nTo amend the Reclamation Projects Authorization and Ad-\njustment Act of 1992 to authorize appropriations for the\nSalton Sea Research Project.\n[Page H5022]\n","sponsors.0.district":25,"sponsors.0.firstName":"Raul","updateDateIncludingText":"2024-10-10T13:26:47Z"}} +{"type":"node","id":"205","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7264/text?format=json","relatedBills.count":1,"updateDate":"2024-08-30T08:05:16Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Tlaib","sponsors.0.isByRequest":"N","request.billNumber":"7264","sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7264/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7264/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"Stop Politicians Profiting from War Act of 2024","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"D","number":"7264","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-08-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7264/cosponsors?format=json","sponsors.0.bioguideId":"T000481","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7264/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7264/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7264/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7264/relatedbills?format=json","sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-12]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7264?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TLAIB:\nH.R. 7264.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\nThe single subject of this legislation is:\nThis bill prohibits Members of Congress, their spouses, and\ntheir dependent children from owning any financial stake in\nany entity conducting business with the Department of\nDefense.\n[Page H503]\n","sponsors.0.district":12,"sponsors.0.firstName":"Rashida","updateDateIncludingText":"2024-08-30T08:05:16Z"}} +{"type":"node","id":"206","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7211/text?format=json","updateDate":"2025-01-21T22:41:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Ross","sponsors.0.isByRequest":"N","request.billNumber":"7211","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7211/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7211/subjects?format=json","policyArea.name":"Animals","type":"HR","title":"Petfax Act of 2024","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"7211","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7211/cosponsors?format=json","sponsors.0.bioguideId":"R000305","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7211/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7211/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":3,"introducedDate":"2024-02-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7211?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 7211.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis bill addresses the sale of animals as pets, including\nby requiring certain disclosures by a seller to a purchaser,\nprohibiting unfair or deceptive acts with respect to the sale\nof an animal as a pet, and restricting the licensing of\ncertain pet dealers.\n[Page H389]\n","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2025-01-21T22:41:11Z"}} +{"type":"node","id":"207","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7163/text?format=json","updateDate":"2024-08-30T08:05:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"7163","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7163/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7163/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Improving Coordination of Agriculture Research and Data Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7163","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-08-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7163/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7163/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7163/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7163/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7163?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 18 (Wednesday, January 31, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 7163.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nAgriculture\n[Page H365]\n","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2024-08-30T08:05:15Z"}} +{"type":"node","id":"208","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7146/text?format=json","updateDate":"2024-08-30T08:05:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Schrier","sponsors.0.isByRequest":"N","request.billNumber":"7146","sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7146/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7146/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Partnerships for Agricultural Climate Action Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7146","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7146/cosponsors?format=json","sponsors.0.bioguideId":"S001216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7146/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7146/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7146?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 17 (Tuesday, January 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHRIER:\nH.R. 7146.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the United States Constitution.\nThe single subject of this legislation is:\nAgriculture\n[Page H317]\n","sponsors.0.district":8,"sponsors.0.firstName":"Kim","updateDateIncludingText":"2024-08-30T08:05:15Z"}} +{"type":"node","id":"209","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7130/text?format=json","relatedBills.count":1,"updateDate":"2024-08-30T08:05:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Alford","sponsors.0.isByRequest":"N","request.billNumber":"7130","sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7130/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7130/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"FAIR Labels Act of 2024","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"7130","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7130/cosponsors?format=json","sponsors.0.bioguideId":"A000379","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7130/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7130/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7130/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-29","sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7130?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 17 (Tuesday, January 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 7130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend the Federal Meat Inspection Act and the Poultry\nProducts Inspection Act to ensure that consumers can make\ninformed decisions in choosing between meat and poultry\nproducts and imitation meat and imitation poultry products,\nand for other purposes.\n[Page H316]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-08-30T08:05:16Z"}} +{"type":"node","id":"210","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7241/text?format=json","relatedBills.count":1,"updateDate":"2024-08-30T08:05:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stauber","sponsors.0.isByRequest":"N","request.billNumber":"7241","sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7241/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7241/subjects?format=json","policyArea.name":"Emergency Management","type":"HR","title":"Rural Water System Disaster Preparedness and Assistance Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"7241","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7241/cosponsors?format=json","sponsors.0.bioguideId":"S001212","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7241/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7241/actions?format=json","latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7241/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","titles.count":3,"introducedDate":"2024-02-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7241?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 20 (Monday, February 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 7241.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 18\nThe single subject of this legislation is:\nThe purpose of this bill is to establish an emergency\npreparedness and response technical assistance program to\nassist rural water system operators.\n[Page H432]\n","sponsors.0.district":8,"sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-08-30T08:05:19Z"}} +{"type":"node","id":"211","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7221/text?format=json","updateDate":"2024-08-30T08:05:16Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"7221","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7221/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Wildlife Corridors and USDA Conservation Programs Act of 2024","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7221","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7221/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7221/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7221/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":3,"introducedDate":"2024-02-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 20 (Monday, February 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 7221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nEnvironmental Conservation\n[Page H431]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-30T08:05:16Z"}} +{"type":"node","id":"212","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7064/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"7064","sponsors.0.url":"https://api.congress.gov/v3/member/M001212?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7064/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7064/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Farmers’ Market Expansion Act of 2024","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"7064","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7064/cosponsors?format=json","sponsors.0.bioguideId":"M001212","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7064/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7064/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7064/actions?format=json","latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7064/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Moore, Barry [R-AL-2]","titles.count":3,"introducedDate":"2024-01-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7064?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 11 (Monday, January 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Alabama:\nH.R. 7064.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Farm Security and Rural Investment Act of 2002\nto include the provision of tree nuts (including shelled tree\nnuts) under the seniors farmers' market nutrition program,\nand for other purposes.\n[Page H247]\n","sponsors.0.district":2,"sponsors.0.firstName":"Barry","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"213","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7076/text?format=json","relatedBills.count":2,"updateDate":"2024-08-30T08:05:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"7076","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7076/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Innovative Practices for Soil Health Act of 2024","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7076","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7076/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7076/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7076/actions?format=json","latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7076/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":3,"introducedDate":"2024-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 14 (Thursday, January 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 7076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nAgriculture\n[Page H252]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-30T08:05:20Z"}} +{"type":"node","id":"214","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7018/text?format=json","updateDate":"2024-08-30T08:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lieu","sponsors.0.isByRequest":"N","request.billNumber":"7018","sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7018/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7018/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Glue Trap Prohibition Act of 2024","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7018","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7018/cosponsors?format=json","sponsors.0.bioguideId":"L000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7018/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7018/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","titles.count":3,"introducedDate":"2024-01-17","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7018?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 9 (Wednesday, January 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 7018.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nAnimal welfare\n[Page H189]\n","sponsors.0.district":36,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-08-30T08:05:18Z"}} +{"type":"node","id":"215","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7015/text?format=json","relatedBills.count":1,"updateDate":"2024-10-09T08:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Langworthy","sponsors.0.isByRequest":"N","request.billNumber":"7015","sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7015/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7015/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"CAREERS Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"7015","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7015/cosponsors?format=json","sponsors.0.bioguideId":"L000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7015/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7015/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7015/relatedbills?format=json","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","titles.count":4,"introducedDate":"2024-01-17","cosponsors.count":30,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7015?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 9 (Wednesday, January 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGWORTHY:\nH.R. 7015.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nWorkforce\n[Page H189]\n","sponsors.0.district":23,"sponsors.0.firstName":"Nicholas","updateDateIncludingText":"2024-10-09T08:05:29Z"}} +{"type":"node","id":"216","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7001/text?format=json","relatedBills.count":1,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Tiffany","sponsors.0.isByRequest":"N","request.billNumber":"7001","sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","latestAction_text":"Referred to the Subcommittee on Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7001/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7001/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Wabeno Economic Development Act","latestAction.text":"Referred to the Subcommittee on Forestry.","sponsors.0.party":"R","number":"7001","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-08-29","summaries.count":1,"sponsors.0.bioguideId":"T000165","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7001/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7001/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7001/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7001/relatedbills?format=json","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","titles.count":3,"introducedDate":"2024-01-16","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7001?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 7001.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nForest Service land conveyance\n[Page H148]\n","sponsors.0.district":7,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"217","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6937/text?format=json","relatedBills.count":1,"updateDate":"2024-08-30T08:05:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pingree","sponsors.0.isByRequest":"N","request.billNumber":"6937","sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6937/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6937/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"The Organic Dairy Data Collection Act","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"6937","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6937/cosponsors?format=json","sponsors.0.bioguideId":"P000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6937/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6937/actions?format=json","latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6937/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","titles.count":3,"introducedDate":"2024-01-10","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6937?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 5 (Wednesday, January 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PINGREE:\nH.R. 6937.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nData\n[Page H52]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chellie","updateDateIncludingText":"2025-01-31T17:27:13Z"}} +{"type":"node","id":"218","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6925/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Porter","sponsors.0.isByRequest":"N","request.billNumber":"6925","sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","latestAction_text":"Referred to the Subcommittee on Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6925/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6925/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Every Kid Outdoors Reauthorization Act","latestAction.text":"Referred to the Subcommittee on Forestry.","sponsors.0.party":"D","number":"6925","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-08-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6925/cosponsors?format=json","sponsors.0.bioguideId":"P000618","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6925/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6925/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6925/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","titles.count":3,"introducedDate":"2024-01-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6925?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 6925.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nTo amend the John D. Dingell, Jr. Conservation, Management,\nand Recreation Act to permanently authorize the Every Kid\nOutdoors program, and for other purposes.\n[Page H13]\n","sponsors.0.district":47,"sponsors.0.firstName":"Katie","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"219","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6921/text?format=json","updateDate":"2024-08-30T08:05:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"De La Cruz","sponsors.0.isByRequest":"N","request.billNumber":"6921","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6921/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6921/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Southern Border Farmers and Ranchers Protection Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","number":"6921","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6921/cosponsors?format=json","sponsors.0.bioguideId":"D000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6921/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6921/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","titles.count":3,"introducedDate":"2024-01-09","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6921?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DE LA CRUZ:\nH.R. 6921.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo help aid farmers along the southern border.\n[Page H13]\n","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2024-08-30T08:05:21Z"}} +{"type":"node","id":"220","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9224/text?format=json","updateDate":"2024-09-03T13:53:16Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Norton","sponsors.0.isByRequest":"N","request.billNumber":"9224","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9224/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9224/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Department of the Treasury Officer Protection Act of 2024","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"9224","request.format":"json","sponsors.0.middleName":"Holmes","latestAction_actionDate":"2024-07-30","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9224/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9224/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2024-07-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9224?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 9224.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would allow all Treasury Department police\nofficers to carry their government firearms home.\n[Page H4964]\n","sponsors.0.firstName":"Eleanor","updateDateIncludingText":"2024-09-03T13:53:16Z"}} +{"type":"node","id":"221","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9198/text?format=json","updateDate":"2024-09-28T08:05:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"9198","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9198/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"Maximize Risk-Informed, Performance-Based Licensing Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"9198","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9198/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9198/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9198/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9198?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 9198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H4963]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-09-28T08:05:17Z"}} +{"type":"node","id":"222","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9192/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bonamici","sponsors.0.isByRequest":"N","request.billNumber":"9192","sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9192/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9192/committees?format=json","policyArea.name":"Education","type":"HR","title":"SIMPLE Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"9192","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9192/cosponsors?format=json","sponsors.0.bioguideId":"B001278","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9192/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9192/actions?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","titles.count":4,"introducedDate":"2024-07-30","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 9192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nStudent loans\n[Page H4963]\n","sponsors.0.district":1,"sponsors.0.firstName":"Suzanne","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"223","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9183/text?format=json","updateDate":"2024-12-18T09:05:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"9183","sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9183/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"STAR Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"9183","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9183/cosponsors?format=json","sponsors.0.bioguideId":"M001213","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9183/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9183/actions?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","titles.count":4,"introducedDate":"2024-07-30","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9183?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 9183.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTax\n[Page H4963]\n","sponsors.0.district":1,"sponsors.0.firstName":"Blake","updateDateIncludingText":"2024-12-18T09:05:27Z"}} +{"type":"node","id":"224","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9221/text?format=json","relatedBills.count":1,"updateDate":"2024-09-30T15:23:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"9221","sponsors.0.url":"https://api.congress.gov/v3/member/M001224?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9221/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"RESTORE Patent Rights Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"9221","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9221/cosponsors?format=json","sponsors.0.bioguideId":"M001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9221/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9221/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9221/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Rep. Moran, Nathaniel [R-TX-1]","titles.count":4,"introducedDate":"2024-07-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORAN:\nH.R. 9221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 8,\nThe single subject of this legislation is:\n``To amend title 35, United States Code, to establish a\nrebuttable presumption that a permanent injunction should be\ngranted in certain circumstances, and for other purposes.''\n[Page H4964]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nathaniel","updateDateIncludingText":"2024-09-30T15:23:03Z"}} +{"type":"node","id":"225","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9185/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Allred","sponsors.0.isByRequest":"N","request.billNumber":"9185","sponsors.0.url":"https://api.congress.gov/v3/member/A000376?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9185/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9185/committees?format=json","policyArea.name":"Education","type":"HR","title":"Helping Student Parents Succeed Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"9185","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Z.","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9185/cosponsors?format=json","sponsors.0.bioguideId":"A000376","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9185/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9185/actions?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Allred, Colin Z. [D-TX-32]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9185?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALLRED:\nH.R. 9185.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nEducation\n[Page H4963]\n","sponsors.0.district":32,"sponsors.0.firstName":"Colin","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"226","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9191/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bishop","sponsors.0.isByRequest":"N","request.billNumber":"9191","sponsors.0.url":"https://api.congress.gov/v3/member/B001311?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9191/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9191/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"No Union Time on the Taxpayer's Dime Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"9191","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9191/cosponsors?format=json","sponsors.0.bioguideId":"B001311","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9191/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9191/relatedbills?format=json","sponsors.0.fullName":"Rep. Bishop, Dan [R-NC-8]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9191?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BISHOP of North Carolina:\nH.R. 9191.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nEliminates the use of ``official time'' by federal\nemployees.\n[Page H4963]\n","sponsors.0.district":8,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"227","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9203/text?format=json","updateDate":"2024-08-30T13:34:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Edwards","sponsors.0.isByRequest":"N","request.billNumber":"9203","sponsors.0.url":"https://api.congress.gov/v3/member/E000246?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9203/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9203/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Economic Opportunity for Distressed Communities Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"9203","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9203/cosponsors?format=json","sponsors.0.bioguideId":"E000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9203/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9203/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Rep. Edwards, Chuck [R-NC-11]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9203?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EDWARDS:\nH.R. 9203.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nProvides Congress with the power to ``lay and collect\nTaxes, Duties, Imposts, and Excises.''\nThe single subject of this legislation is:\nAmends the Internal Revenue Code of 1986 to establish\nspecial rules for capital gains invested in brownfield and\nSuperfund sites.\n[Page H4964]\n","sponsors.0.district":11,"sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-08-30T13:34:23Z"}} +{"type":"node","id":"228","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9209/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"9209","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9209/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9209/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Workforce Opportunities for Communities in Recovery Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"9209","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9209/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9209/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9209/actions?format=json","latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9209/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9209?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 9209.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nTo amend the Workforce Innovation and Opportunity Act to\naddress the economic and workforce impacts of substance use\ndisorder\n[Page H4964]\n","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"229","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9218/text?format=json","updateDate":"2024-12-20T09:06:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"9218","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9218/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HR","title":"Defining Male and Female Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"9218","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9218/cosponsors?format=json","sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9218/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9218/actions?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":34,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9218?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 9218.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nJudiciary\n[Page H4964]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-12-20T09:06:32Z"}} +{"type":"node","id":"230","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9201/text?format=json","updateDate":"2024-09-28T08:05:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"9201","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9201/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Nuclear USA Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"9201","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9201/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9201/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9201/actions?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2024-07-30","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9201?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\n[Pages H4963-H4964]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 9201.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\n[[Page H4964]]\nEnergy\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-11-08T17:27:12Z"}} +{"type":"node","id":"231","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8645/text?format=json","updateDate":"2025-02-13T01:11:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Thanedar","cboCostEstimates.0.pubDate":"2024-07-25T18:42:00Z","sponsors.0.isByRequest":"N","request.billNumber":"8645","sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8645/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8645/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Improved Screening for Veterans and Passengers with Disabilities Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"8645","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on June 12, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60579","request.format":"json","latestAction_actionDate":"2024-07-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8645/cosponsors?format=json","sponsors.0.bioguideId":"T000488","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8645/titles?format=json","cboCostEstimates.0.title":"H.R. 8645, Improved Screening for Veterans and Passengers with Disabilities Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/8645/actions?format=json","latestAction.actionDate":"2024-07-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":4,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8645?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 8645.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have . . . power to make all laws. Article 1\nSection 8\nThe single subject of this legislation is:\nTo improve airport security screening for certain veterans\nand passengers with disabilities, and for other purposes.\n[Page H3675]\n","sponsors.0.district":13,"sponsors.0.firstName":"Shri","updateDateIncludingText":"2025-02-13T01:11:13Z"}} +{"type":"node","id":"232","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8624/text?format=json","updateDate":"2024-08-08T08:05:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"8624","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8624/committees?format=json","policyArea.name":"Energy","type":"HR","title":"HOUSE Act of 2024","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"R","number":"8624","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-07-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8624/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8624/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8624/actions?format=json","latestAction.actionDate":"2024-07-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8624?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 8624.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to require the Secretary\nof Housing and Urban Developmand and the Secretary of\nAgriculture to withdraw a final determination relating to\nenergy efficiency standards, and for other purposes.\n[Page H3674]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-08-08T08:05:13Z"}} +{"type":"node","id":"233","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9166/text?format=json","updateDate":"2024-12-17T09:05:26Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"9166","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9166/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9166/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"RISE Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"9166","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-07-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9166/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9166/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9166/actions?format=json","latestAction.actionDate":"2024-07-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":4,"introducedDate":"2024-07-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9166?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 121 (Thursday, July 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 9166.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nSmall Business\n[Page H4950]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-12-17T09:05:26Z"}} +{"type":"node","id":"234","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9150/text?format=json","updateDate":"2025-02-06T20:14:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Harder","sponsors.0.isByRequest":"N","request.billNumber":"9150","sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9150/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9150/subjects?format=json","policyArea.name":"Emergency Management","type":"HR","title":"Keeping Families Safe from Wildfire Smoke Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"9150","request.format":"json","latestAction_actionDate":"2024-07-26","summaries.count":1,"sponsors.0.bioguideId":"H001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9150/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9150/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9150/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-26","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","titles.count":3,"introducedDate":"2024-07-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9150?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 121 (Thursday, July 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 9150.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\nThe single subject of this legislation is:\nTo amend the Robert T. Stafford Disaster Relief and\nEmergency Assistance Act to include wildfire smoke in the\ndefinition of major disaster.\n[Page H4950]\n","sponsors.0.district":9,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-02-06T20:14:01Z"}} +{"type":"node","id":"235","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9136/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Foushee","sponsors.0.isByRequest":"N","request.billNumber":"9136","sponsors.0.url":"https://api.congress.gov/v3/member/F000477?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9136/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9136/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"IMPACT Act 2.0","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"9136","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-07-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9136/cosponsors?format=json","sponsors.0.bioguideId":"F000477","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9136/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9136/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9136/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-26","sponsors.0.fullName":"Rep. Foushee, Valerie P. [D-NC-4]","titles.count":3,"introducedDate":"2024-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9136?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 121 (Thursday, July 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FOUSHEE:\nH.R. 9136.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution.\nThe single subject of this legislation is:\nConcrete innovation\n[Page H4949]\n","sponsors.0.district":4,"sponsors.0.firstName":"Valerie","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"236","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9180/text?format=json","relatedBills.count":1,"updateDate":"2024-11-02T08:05:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Caraveo","sponsors.0.isByRequest":"N","request.billNumber":"9180","sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9180/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"EdCOPS Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"9180","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-07-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9180/cosponsors?format=json","sponsors.0.bioguideId":"C001134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9180/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9180/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9180/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-26","sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","titles.count":4,"introducedDate":"2024-07-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9180?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 122 (Friday, July 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 9180.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nThe single subject of this legislation is:\nTo amend the Omnibus Crime Control and Safe Streets Act of\n1968 to provide education assistance to public safety\nofficers and their dependents.\n[Page H4954]\n","sponsors.0.district":8,"sponsors.0.firstName":"Yadira","updateDateIncludingText":"2024-11-02T08:05:37Z"}} +{"type":"node","id":"237","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9181/text?format=json","updateDate":"2024-09-25T16:26:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schakowsky","sponsors.0.isByRequest":"N","request.billNumber":"9181","sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9181/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Eleanor Smith Inclusive Home Design Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"9181","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-07-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9181/cosponsors?format=json","sponsors.0.bioguideId":"S001145","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9181/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9181/actions?format=json","latestAction.actionDate":"2024-07-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","titles.count":3,"introducedDate":"2024-07-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9181?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 122 (Friday, July 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 9181.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\n[The Congress shall have Power . . .] To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.\nThe single subject of this legislation is.\nHousing and accessibility\n[Page H4954]\n","sponsors.0.district":9,"sponsors.0.firstName":"Janice","updateDateIncludingText":"2024-09-25T16:26:56Z"}} +{"type":"node","id":"238","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"McBath","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-71.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-71.","sponsors.0.party":"D","number":"3019","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3019/cosponsors?format=json","sponsors.0.bioguideId":"M001208","laws.0.number":"118-71","actions.url":"https://api.congress.gov/v3/bill/118/hr/3019/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3019/relatedbills?format=json","sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-7]","titles.count":6,"cosponsors.count":39,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3019/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":25,"request.billNumber":"3019","sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3019/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3019/committees?format=json","title":"Federal Prison Oversight Act","cosponsors.countIncludingWithdrawnCosponsors":39,"request.format":"json","latestAction_actionDate":"2024-07-25","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3019/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3019/summaries?format=json","introducedDate":"2023-04-28","subjects.count":12,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3019?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 72 (Friday, April 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 3019.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1 of the U.S. Constitution\nThe single subject of this legislation is:\nfederal prison oversight\n[Page H2120]\n","sponsors.0.district":7,"sponsors.0.firstName":"Lucy","updateDateIncludingText":"2025-02-04T17:04:15Z","laws.0.type":"Public Law"}} +{"type":"node","id":"239","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"LUCAS","cboCostEstimates.0.pubDate":"2024-11-01T20:21:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 510.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 510.","sponsors.0.party":"R","number":"6213","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6213/cosponsors?format=json","sponsors.0.bioguideId":"L000491","actions.url":"https://api.congress.gov/v3/bill/118/hr/6213/actions?format=json","latestAction.actionDate":"2024-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6213/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","titles.count":4,"cosponsors.count":33,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-612","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6213/text?format=json","updateDate":"2025-01-16T07:06:15Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":9,"request.billNumber":"6213","sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6213/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6213/subjects?format=json","title":"National Quantum Initiative Reauthorization Act","cboCostEstimates.0.description":"As reported by the House Committee on Science, Space, and Technology on July 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":33,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60891","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-07-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/612?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6213/titles?format=json","cboCostEstimates.0.title":"H.R. 6213, National Quantum Initiative Reauthorization Act","introducedDate":"2023-11-03","subjects.count":21,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6213?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 182 (Friday, November 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 6213.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8, Clause 18:\n``The Congress shall have Power . . . To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the forgoing Powers, and all other Powers vested by\nthis Constitution in the Government of the United States, or\nin any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo reauthorize and enhance the National Quantum Initiative\nAct and corresponding programs to ensure continued American\nleadership in quantum information science, engineering, and\ntechnology.\n[Page H5404]\n","sponsors.0.district":3,"sponsors.0.firstName":"FRANK","updateDateIncludingText":"2025-01-16T07:06:15Z"}} +{"type":"node","id":"240","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8970/text?format=json","updateDate":"2024-09-24T08:06:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"8970","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8970/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8970/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Illegal Offender Registry Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8970","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-07-09","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8970/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8970/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8970/actions?format=json","latestAction.actionDate":"2024-07-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2024-07-09","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8970?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 113 (Tuesday, July 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 8970.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nImmigration\n[Page H4529]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-09-24T08:06:14Z"}} +{"type":"node","id":"241","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Hageman","cboCostEstimates.0.pubDate":"2024-07-12T16:15:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 478.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 478.","sponsors.0.party":"R","number":"6493","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6493/cosponsors?format=json","sponsors.0.bioguideId":"H001096","actions.url":"https://api.congress.gov/v3/bill/118/hr/6493/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6493/relatedbills?format=json","sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","titles.count":4,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-577","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6493/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"request.congress":"118","actions.count":20,"request.billNumber":"6493","sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6493/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6493/committees?format=json","title":"Promoting Free and Fair Elections Act of 2023","cboCostEstimates.0.description":"As reported by the House Committee on House Administration on\nJuly 8, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60521","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-07-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/577?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6493/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6493/summaries?format=json","cboCostEstimates.0.title":"H.R. 6493, Safeguarding Electoral Integrity Act of 2023","introducedDate":"2023-11-29","subjects.count":5,"sponsors.0.state":"WY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6493?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 196 (Wednesday, November 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 6493.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 ``To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nThis bill strikes Executive Order 14019 and any contracts\nor arrangements made by agencies in connection with its\nimplementation.\n[Page H5983]\n","sponsors.0.firstName":"Harriet","updateDateIncludingText":"2025-02-04T17:04:08Z"}} +{"type":"node","id":"242","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Stanton","cboCostEstimates.0.pubDate":"2023-05-09T12:49:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"2789","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2789/cosponsors?format=json","sponsors.0.bioguideId":"S001211","actions.url":"https://api.congress.gov/v3/bill/118/hr/2789/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":3,"sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-4]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2789/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":15,"request.billNumber":"2789","sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2789/subjects?format=json","title":"American Cooperation with Our Neighbors Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on April 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59122","request.format":"json","latestAction_actionDate":"2024-07-08","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2789/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2789/summaries?format=json","cboCostEstimates.0.title":"H.R. 2789, American Cooperation with Our Neighbors Act","introducedDate":"2023-04-20","subjects.count":13,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2789?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 2789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nto strengthen subnational cooperation between the US and\nCentral America/the Caribbean.\n[Page H1912]\n","sponsors.0.district":4,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"243","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Perry","cboCostEstimates.0.pubDate":"2023-06-28T15:04:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4132","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4132/cosponsors?format=json","sponsors.0.bioguideId":"P000605","actions.url":"https://api.congress.gov/v3/bill/118/hr/4132/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4132/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-07-08","sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":5,"cosponsors.count":18,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4132/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":13,"request.billNumber":"4132","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4132/subjects?format=json","title":"Falun Gong Protection Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on June 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59290","request.format":"json","latestAction_actionDate":"2024-07-08","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4132/summaries?format=json","cboCostEstimates.0.title":"H.R. 4132, Falun Gong Protection Act","introducedDate":"2023-06-14","subjects.count":13,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4132?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 4132.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 9 ``To make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nHFAC\n[Page H2934]\n","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"244","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Burchett","cboCostEstimates.0.pubDate":"2023-12-21T22:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"6586","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6586/cosponsors?format=json","sponsors.0.bioguideId":"B001309","actions.url":"https://api.congress.gov/v3/bill/118/hr/6586/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":3,"sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","titles.count":2,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6586/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":12,"request.billNumber":"6586","sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6586/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6586/subjects?format=json","title":"To require a strategy to oppose financial or material support by foreign countries to the Taliban, and for other purposes.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on December 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59846","request.format":"json","latestAction_actionDate":"2024-07-08","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6586/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6586/summaries?format=json","cboCostEstimates.0.title":"H.R. 6586, A bill to require a strategy to oppose financial or material support by foreign countries to the Taliban, and for other purposes","introducedDate":"2023-12-05","subjects.count":5,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6586?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURCHETT:\nH.R. 6586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nTo require a strategy to oppose financial or material\nsupport by foreign countries to the Taliban, and for other\npurposes\n[Page H6144]\n","sponsors.0.district":2,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"245","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wexton","cboCostEstimates.0.pubDate":"2024-02-15T20:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"7152","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7152/cosponsors?format=json","sponsors.0.bioguideId":"W000825","actions.url":"https://api.congress.gov/v3/bill/118/hr/7152/actions?format=json","latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7152/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Wexton, Jennifer [D-VA-10]","titles.count":5,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7152/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":14,"request.billNumber":"7152","sponsors.0.url":"https://api.congress.gov/v3/member/W000825?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7152/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7152/committees?format=json","title":"Korean American Divided Families National Registry Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59980","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-07-08","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7152/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7152/summaries?format=json","cboCostEstimates.0.title":"H.R. 7152, Divided Families National Registry Act","introducedDate":"2024-01-30","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7152?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 17 (Tuesday, January 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WEXTON:\nH.R. 7152.\nCongress has the power to enact this legislation pursuant\nto the following:\nSpending Clause, Article I, Section 8, Clause 1.\nThe single subject of this legislation is:\nThe bill would create a national registry of separated\nKorean-Americans to facilitate reunification with their\nfamilies in North Korea. The bill also encourages a dialogue\nbetween North Korea and the United States.\n[Page H317]\n","sponsors.0.district":10,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"246","labels":["Bill"],"properties":{"relatedBills.count":44,"congress":118,"sponsors.0.lastName":"Rogers","cboCostEstimates.0.pubDate":"2024-05-29T20:49:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Armed Forces and National Security","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"8070","amendments.count":38,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8070/cosponsors?format=json","sponsors.0.bioguideId":"R000575","actions.url":"https://api.congress.gov/v3/bill/118/hr/8070/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8070/relatedbills?format=json","sponsors.0.fullName":"Rep. Rogers, Mike D. [R-AL-3]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8070/amendments?format=json","titles.count":5,"cosponsors.count":14,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-529","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60397","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8070/text?format=json","updateDate":"2025-01-14T19:19:48Z","originChamber":"House","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2024-06-10T19:58:00Z","actions.count":106,"request.billNumber":"8070","sponsors.0.url":"https://api.congress.gov/v3/member/R000575?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8070/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8070/committees?format=json","title":"Servicemember Quality of Life Improvement and National Defense Authorization Act for Fiscal Year 2025","cboCostEstimates.1.description":"As reported by the House Committee on Armed Services on\nMay 31, 2024\n","cboCostEstimates.0.description":"Letter to the Honorable Mike Rogers\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60333","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-07-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/529?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8070/titles?format=json","cboCostEstimates.0.title":"Direct Spending and Revenue Effects of H.R. 8070, the Servicemember Quality of Life Improvement and National Defense Authorization Act for Fiscal Year 2025","introducedDate":"2024-04-18","subjects.count":161,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8070?format=json","cboCostEstimates.1.title":"H.R. 8070, Servicemember Quality of Life Improvement and National Defense Authorization Act for Fiscal Year 2025","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 68 (Thursday, April 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROGERS of Alabama:\nH.R. 8070.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1, clause 12, clause 13, and clause 14 of section 8\nof article I of the Constitution.\nThe single subject of this legislation is:\nNational defense.\n[Page H2522]\n","sponsors.0.district":3,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-15T00:18:23Z"}} +{"type":"node","id":"247","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8944/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Leger Fernandez","sponsors.0.isByRequest":"N","request.billNumber":"8944","sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8944/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Financial Fitness Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8944","request.format":"json","latestAction_actionDate":"2024-07-08","sponsors.0.bioguideId":"L000273","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8944/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8944/relatedbills?format=json","sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","titles.count":3,"introducedDate":"2024-07-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8944?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 8944.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nEducation\n[Page H4477]\n","sponsors.0.district":3,"sponsors.0.firstName":"Teresa","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"248","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8943/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kamlager-Dove","sponsors.0.isByRequest":"N","request.billNumber":"8943","sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8943/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8943/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Equitable Arts Education Enhancement Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8943","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-07-08","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8943/cosponsors?format=json","sponsors.0.bioguideId":"K000400","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8943/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8943/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-08","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","titles.count":3,"introducedDate":"2024-07-08","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8943?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 8943.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 Cl.\n1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8 Cl. 18). Further,\nthis statement of constitutional authority is made for the\nsole purpose of compliance with clause 7of Rule XII of the\nRules of the House of\nThe single subject of this legislation is:\nThe bill seeks to create art education grants specifically\nfor Minority-Serving Institutions (MSIs) to increase arts\neducation and access.\n[Page H4477]\n","sponsors.0.district":37,"sponsors.0.firstName":"Sydney","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"249","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8947/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McBath","sponsors.0.isByRequest":"N","request.billNumber":"8947","sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8947/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To amend the Workforce Innovation and Opportunity Act to direct the Secretary of Labor to award grants to community colleges for high-quality workforce development programs.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8947","request.format":"json","latestAction_actionDate":"2024-07-08","sponsors.0.bioguideId":"M001208","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8947/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8947/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8947/relatedbills?format=json","sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-7]","titles.count":2,"introducedDate":"2024-07-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8947?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 8947.\nCongress has the power to enact this legislation pursuant\nto the following:\nInterstate Commerce Clause - Article 1, Section 8, Clause 3\nThe single subject of this legislation is:\nto direct the Secretary of Labor to award grants to\ncommunity colleges for high-quality workforce development\nprograms.\n[Page H4477]\n","sponsors.0.district":7,"sponsors.0.firstName":"Lucy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"250","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8941/text?format=json","relatedBills.count":2,"updateDate":"2024-10-25T15:22:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"8941","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8941/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8941/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"No Tax on Tips Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8941","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-07-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8941/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8941/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8941/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8941/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8941/relatedbills?format=json","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2024-07-08","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8941?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 8941.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt 1, Sec 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to eliminate the\napplication of the income tax on cash tips through a\ndeduction allowed to all individual taxpayers.\n[Page H4477]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-10-25T15:22:20Z"}} +{"type":"node","id":"251","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8939/text?format=json","updateDate":"2024-08-14T13:24:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Allen","sponsors.0.isByRequest":"N","request.billNumber":"8939","sponsors.0.url":"https://api.congress.gov/v3/member/A000372?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8939/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"To amend the Communications Act of 1934 to establish technical and procedural standards for artificial or prerecorded voice systems created through generative artificial intelligence, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"8939","request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2024-07-08","sponsors.0.bioguideId":"A000372","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8939/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Allen, Rick W. [R-GA-12]","titles.count":2,"introducedDate":"2024-07-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8939?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALLEN:\nH.R. 8939.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article 1, Section 8, Clause 1 of the\nUnited States Constitution.\nThe single subject of this legislation is:\nThis bill would amend the Communications Act of 1934 to\nestablish technical and procedural standards for artificial\nor prerecorded voice systems created through generative\nartificial intelligence (genAl).\n[Page H4477]\n","sponsors.0.district":12,"sponsors.0.firstName":"Rick","updateDateIncludingText":"2024-08-14T13:24:04Z"}} +{"type":"node","id":"252","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8938/text?format=json","updateDate":"2024-10-05T08:05:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fulcher","sponsors.0.isByRequest":"N","request.billNumber":"8938","sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8938/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Keep Every Extra Penny Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8938","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-07-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8938/cosponsors?format=json","sponsors.0.bioguideId":"F000469","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8938/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8938/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8938/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","titles.count":3,"introducedDate":"2024-07-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8938?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FULCHER:\nH.R. 8938.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 provides Congress with the\npower to `lay and collect Taxes, Duties, Imposts and Excises'\nin order to `provide for the general Welfare of the United\nStates.\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to exclude\novertime compensation from gross income for purposes of\nincome tax.\n[Page H4477]\n","sponsors.0.district":1,"sponsors.0.firstName":"Russ","updateDateIncludingText":"2024-10-05T08:05:52Z"}} +{"type":"node","id":"253","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8948/text?format=json","updateDate":"2024-08-20T16:49:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Norton","sponsors.0.isByRequest":"N","request.billNumber":"8948","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8948/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8948/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Federal Bureau of Prisons Medical Care Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8948","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Holmes","latestAction_actionDate":"2024-07-08","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8948/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8948/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8948/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2024-07-08","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8948?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 8948.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would eliminate the copay the Federal Bureau of\nPrisons imposes on individuals in its custody when they visit\na health care provider.\n[Page H4477]\n","sponsors.0.firstName":"Eleanor","updateDateIncludingText":"2024-08-20T16:49:12Z"}} +{"type":"node","id":"254","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8937/text?format=json","updateDate":"2024-11-14T19:47:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grijalva","sponsors.0.isByRequest":"N","request.billNumber":"8937","sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8937/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"To establish subaccounts in the Indian Water Rights Settlement Completion Fund to satisfy the obligations of the United States with respect to certain Indian water rights settlements, and for other purposes.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"8937","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-07-08","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8937/cosponsors?format=json","sponsors.0.bioguideId":"G000551","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8937/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8937/actions?format=json","latestAction.actionDate":"2024-07-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","titles.count":2,"introducedDate":"2024-07-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8937?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 8937.\nCongress has the power to enact this legislation pursuant\nto the following:--\nU.S. Const. art. I, sec. 8, cl. 3\nU.S. Cont. art. IV, sec. 3, cl. 2, sen. a\nThe single subject of this legislation is:\nTo establish subaccounts in the Indian Water Rights\nSettlement Completion Fund to satisfy the obligations of the\nUnited States with respect to certain Indian water rights\nsettlements.\n[Page H4477]\n","sponsors.0.district":7,"sponsors.0.firstName":"Raúl","updateDateIncludingText":"2024-11-14T19:47:29Z"}} +{"type":"node","id":"255","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8950/text?format=json","updateDate":"2024-08-31T08:05:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"8950","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Referred to the House Committee on Small Business.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8950/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8950/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Made in America Integrity Act of 2024","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"8950","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-07-08","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8950/cosponsors?format=json","sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8950/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8950/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-08","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2024-07-08","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8950?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 8950.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nSmall Business\n[Page H4477]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2024-08-31T08:05:44Z"}} +{"type":"node","id":"256","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8649/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Bean","cboCostEstimates.0.pubDate":"2024-06-18T20:02:00Z","sponsors.0.isByRequest":"N","request.billNumber":"8649","sponsors.0.url":"https://api.congress.gov/v3/member/B001314?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 476.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8649/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8649/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Transparency in Reporting of Adversarial Contributions to Education Act","latestAction.text":"Placed on the Union Calendar, Calendar No. 476.","sponsors.0.party":"R","number":"8649","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60433","request.format":"json","latestAction_actionDate":"2024-07-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/575?format=json","sponsors.0.bioguideId":"B001314","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8649/titles?format=json","cboCostEstimates.0.title":"H.R. 8649, Transparency in Reporting Adversarial Contributions to Education Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/8649/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8649/relatedbills?format=json","sponsors.0.fullName":"Rep. Bean, Aaron [R-FL-4]","titles.count":4,"introducedDate":"2024-06-07","request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8649?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 97 (Friday, June 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEAN of Florida:\nH.R. 8649.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo ensure that parents are aware of foreign influence in\ntheir child's public school.\n[Page H3680]\n","sponsors.0.district":4,"sponsors.0.firstName":"Aaron","updateDateIncludingText":"2025-02-04T16:39:01Z","committeeReports.0.citation":"H. Rept. 118-575"}} +{"type":"node","id":"257","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Hern","cboCostEstimates.0.pubDate":"2024-06-18T20:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 475.","policyArea.name":"Education","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 475.","sponsors.0.party":"R","number":"6816","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6816/cosponsors?format=json","sponsors.0.bioguideId":"H001082","actions.url":"https://api.congress.gov/v3/bill/118/hr/6816/actions?format=json","latestAction.actionDate":"2024-07-05","textVersions.count":2,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":6,"cosponsors.count":37,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-574","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6816/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"6816","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6816/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6816/committees?format=json","title":"PROTECT Our Kids Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60429","request.format":"json","latestAction_actionDate":"2024-07-05","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/574?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6816/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6816/summaries?format=json","cboCostEstimates.0.title":"H.R. 6816, PROTECT Our Kids Act","introducedDate":"2023-12-14","subjects.count":7,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 206 (Thursday, December 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 6816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nEducation\n[Page H6987]\n","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-02-04T16:39:01Z"}} +{"type":"node","id":"258","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Good","cboCostEstimates.0.pubDate":"2024-06-18T20:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 474.","policyArea.name":"Sports and Recreation","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 474.","sponsors.0.party":"R","number":"8534","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8534/cosponsors?format=json","sponsors.0.bioguideId":"G000595","actions.url":"https://api.congress.gov/v3/bill/118/hr/8534/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-05","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"cosponsors.count":10,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-573","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8534/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"8534","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8534/subjects?format=json","title":"Protecting Student Athletes’ Economic Freedom Act of 2024","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60430","request.format":"json","latestAction_actionDate":"2024-07-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/573?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8534/titles?format=json","cboCostEstimates.0.title":"H.R. 8534, Protecting Student Athletes’ Economic Freedom Act","introducedDate":"2024-05-23","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8534?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nProhibiting student athletes from being classified as\nemployees under federal law.\n[Page H3524]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-02-04T16:39:01Z"}} +{"type":"node","id":"259","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Joyce","cboCostEstimates.0.pubDate":"2024-06-18T20:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 473.","policyArea.name":"Education","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 473.","sponsors.0.party":"R","number":"5567","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5567/cosponsors?format=json","sponsors.0.bioguideId":"J000295","actions.url":"https://api.congress.gov/v3/bill/118/hr/5567/actions?format=json","latestAction.actionDate":"2024-07-05","textVersions.count":2,"sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":5,"cosponsors.count":15,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-572","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5567/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"5567","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5567/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5567/subjects?format=json","title":"CLASS Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":15,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60428","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-07-05","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/572?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5567/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5567/summaries?format=json","cboCostEstimates.0.title":"H.R. 5567, CLASS Act","introducedDate":"2023-09-19","subjects.count":5,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5567?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 5567.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo prohibit elementary and secondary schools from accepting\nfunds from or entering into contracts with the Government of\nthe People's Republic of China and the Chinese Communist\nParty.\n[Page H4408]\n","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"260","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8622/text?format=json","relatedBills.count":1,"updateDate":"2024-12-18T09:05:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Balint","sponsors.0.isByRequest":"N","request.billNumber":"8622","sponsors.0.url":"https://api.congress.gov/v3/member/B001318?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8622/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Preventing the Algorithmic Facilitation of Rental Housing Cartels Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8622","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8622/cosponsors?format=json","sponsors.0.bioguideId":"B001318","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8622/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8622/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8622/relatedbills?format=json","sponsors.0.fullName":"Rep. Balint, Becca [D-VT-At Large]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":21,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8622?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BALINT:\nH.R. 8622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nAntitrust\n[Page H3674]\n","sponsors.0.firstName":"Becca","updateDateIncludingText":"2024-12-18T09:05:39Z"}} +{"type":"node","id":"261","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8629/text?format=json","updateDate":"2024-08-29T11:28:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"8629","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8629/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"GAZA Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8629","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8629/cosponsors?format=json","sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8629/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8629/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8629?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 8629.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 4 and Article 1, Section 8,\nClause 18\nThe single subject of this legislation is:\nTo provide that an alien who holds a passport issued by the\nPalestinian Authority may not be admitted or paroled into the\nUnited States or be issued a visa or other documentation to\nenter the United States.\n[Page H3674]\n","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-08-29T11:28:34Z"}} +{"type":"node","id":"262","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8637/text?format=json","updateDate":"2024-08-06T15:37:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"8637","sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8637/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Preventing Environmental Hazards Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"8637","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8637/cosponsors?format=json","sponsors.0.bioguideId":"M001210","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8637/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8637/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Murphy, Gregory F. [R-NC-3]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8637?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY:\nH.R. 8637.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8, clause 18.\nThe single subject of this legislation is:\nTo make protection against damage and loss resulting from\nthe erosion and undermining of shorelines available under the\nNational Flood Insurance Program, and for other purposes.\n[[Page H3675]]\n[Page H3674]\n","sponsors.0.district":3,"sponsors.0.firstName":"Gregory","updateDateIncludingText":"2024-08-06T15:37:52Z"}} +{"type":"node","id":"263","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8620/text?format=json","updateDate":"2024-08-06T15:38:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gosar","sponsors.0.isByRequest":"N","request.billNumber":"8620","sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8620/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8620/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"TRUMP Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"8620","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-06-05","sponsors.0.bioguideId":"G000565","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8620/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8620/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","titles.count":4,"introducedDate":"2024-06-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8620?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 8620.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 5 of the U.S. Constitution\nThe single subject of this legislation is:\nFederal Reserve Notes\n[Page H3674]\n","sponsors.0.district":9,"sponsors.0.firstName":"Paul","updateDateIncludingText":"2024-08-06T15:38:25Z"}} +{"type":"node","id":"264","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8626/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cárdenas","sponsors.0.isByRequest":"N","request.billNumber":"8626","sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8626/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8626/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Prohibiting Detention of Youth Status Offenders Act of 2024","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8626","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8626/cosponsors?format=json","sponsors.0.bioguideId":"C001097","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8626/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8626/actions?format=json","latestAction.actionDate":"2024-06-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8626/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8626?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 8626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\nThe single subject of this legislation is:\nTo amend the Juvenile Justice and Delinquency Prevention\nAct of 1974 to eliminate the use of valid court orders.\n[Page H3674]\n","sponsors.0.district":29,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"265","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8630/text?format=json","updateDate":"2024-08-21T08:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"8630","sponsors.0.url":"https://api.congress.gov/v3/member/G000598?format=json","latestAction_text":"Referred to the House Committee on Homeland Security.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8630/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8630/committees?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"SPEED through Screening Act","latestAction.text":"Referred to the House Committee on Homeland Security.","sponsors.0.party":"D","number":"8630","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8630/cosponsors?format=json","sponsors.0.bioguideId":"G000598","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8630/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8630/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Garcia, Robert [D-CA-42]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8630?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROBERT GARCIA of California:\nH.R. 8630.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nImproving the operations of the Transportation Security\nAdministration\n[Page H3674]\n","sponsors.0.district":42,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-08-21T08:05:22Z"}} +{"type":"node","id":"266","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8621/text?format=json","relatedBills.count":2,"updateDate":"2025-01-17T03:11:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bacon","sponsors.0.isByRequest":"N","request.billNumber":"8621","sponsors.0.url":"https://api.congress.gov/v3/member/B001298?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8621/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Strengthening Tribal Families Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8621","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8621/cosponsors?format=json","sponsors.0.bioguideId":"B001298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8621/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8621/actions?format=json","latestAction.actionDate":"2024-06-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8621/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Bacon, Don [R-NE-2]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8621?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BACON:\nH.R. 8621.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend part B of title IV of the Social Security Act to\nsupport State implementation of Federal standards established\nunder the Indian Child Welfare Act of 1978.\n[Page H3674]\n","sponsors.0.district":2,"sponsors.0.firstName":"Don","updateDateIncludingText":"2025-01-17T03:11:14Z"}} +{"type":"node","id":"267","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8634/text?format=json","updateDate":"2024-08-29T11:27:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luttrell","sponsors.0.isByRequest":"N","request.billNumber":"8634","sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8634/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8634/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Criminal Illegal Alien Report Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8634","request.format":"json","latestAction_actionDate":"2024-06-05","sponsors.0.bioguideId":"L000603","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8634/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8634/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","titles.count":3,"introducedDate":"2024-06-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8634?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 8634.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8. To make laws which shall be necessary\nand proper for carrying into execution the foregoing powers,\nand all other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.\nThe single subject of this legislation is:\nHomeland Secuity\n[Page H3674]\n","sponsors.0.district":8,"sponsors.0.firstName":"Morgan","updateDateIncludingText":"2024-08-29T11:27:31Z"}} +{"type":"node","id":"268","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8639/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Norcross","sponsors.0.isByRequest":"N","request.billNumber":"8639","sponsors.0.url":"https://api.congress.gov/v3/member/N000188?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8639/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8639/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Warehouse Worker Protection Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8639","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8639/cosponsors?format=json","sponsors.0.bioguideId":"N000188","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8639/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8639/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8639/relatedbills?format=json","sponsors.0.fullName":"Rep. Norcross, Donald [D-NJ-1]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8639?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORCROSS:\nH.R. 8639.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Art. 1, Sec. 8, Cl. 18)\nThe single subject of this legislation is:\nWorker Safety\n[Page H3675]\n","sponsors.0.district":1,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"269","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8623/text?format=json","relatedBills.count":1,"updateDate":"2024-09-11T08:05:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"8623","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8623/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8623/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"PROVE Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"8623","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8623/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8623/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8623/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8623/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-05","sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8623?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 8623.\nCongress has the power to enact this legislation pursuant\nto the following:\narticle 1 section 8\nThe single subject of this legislation is:\nvoter registration reform\n[Page H3674]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-09-11T08:05:34Z"}} +{"type":"node","id":"270","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8635/text?format=json","updateDate":"2025-01-01T09:05:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"8635","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8635/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8635/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Affordable Child Care Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8635","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-06-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8635/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8635/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8635/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8635/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8635?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 8635.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nChildcare\n[Page H3674]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2025-01-01T09:05:17Z"}} +{"type":"node","id":"271","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8628/text?format=json","updateDate":"2024-08-06T15:36:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"8628","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8628/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8628/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Examining Consumer Choice in Digital Payments Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"8628","request.format":"json","latestAction_actionDate":"2024-06-05","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8628/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8628/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2024-06-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8628?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 8628.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt 1, Sec 8\nThe single subject of this legislation is:\nTo prohibit the Director of the Bureau of Consumer\nFinancial Protection from issuing new rules or guidance\nrelating to buy now pay later services until the Bureau and\nthe Comptroller General of the United States each conduct a\nstudy on such services, and for other purposes.\n[Page H3674]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-08-09T16:27:11Z"}} +{"type":"node","id":"272","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8642/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stauber","sponsors.0.isByRequest":"N","request.billNumber":"8642","sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8642/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8642/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"MAIL Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"8642","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8642/cosponsors?format=json","sponsors.0.bioguideId":"S001212","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8642/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8642/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8642?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 8642.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 7 of the United\nStates Constitution.\nThe single subject of this legislation is.-\nReprograms funds appropriated to the United States Postal\nService for the acquisition and support of zero-emission\ndelivery vehicles to support the hiring and retention of\nrural employees.-\n[Page H3675]\n","sponsors.0.district":8,"sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"273","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Letlow","cboCostEstimates.0.pubDate":"2024-06-06T19:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 449.","policyArea.name":"Education","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 449.","sponsors.0.party":"R","number":"6418","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6418/cosponsors?format=json","sponsors.0.bioguideId":"L000595","actions.url":"https://api.congress.gov/v3/bill/118/hr/6418/actions?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6418/relatedbills?format=json","sponsors.0.fullName":"Rep. Letlow, Julia [R-LA-5]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-540","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6418/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"6418","sponsors.0.url":"https://api.congress.gov/v3/member/L000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6418/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6418/subjects?format=json","title":"Empower Charter School Educators to Lead Act","cboCostEstimates.0.description":"As reported by the House Committee on Education and the Workforce on June 4, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60387","request.format":"json","latestAction_actionDate":"2024-06-04","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/540?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6418/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6418/summaries?format=json","cboCostEstimates.0.title":"H.R. 6418, Empower Charter School Educators to Lead Act","introducedDate":"2023-11-15","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6418?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LETLOW:\nH.R. 6418.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nexpanding opportunities for charter schools.\n[Page H5893]\n","sponsors.0.district":5,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"274","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Fulcher","cboCostEstimates.0.pubDate":"2024-03-25T14:58:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 445.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 445.","sponsors.0.party":"R","number":"784","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/784/cosponsors?format=json","sponsors.0.bioguideId":"F000469","actions.url":"https://api.congress.gov/v3/bill/118/hr/784/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/784/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-06-04","sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-536","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/784/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"784","sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/784/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/784/committees?format=json","title":"Internet Application I.D. Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60139","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-06-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/536?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/784/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/784/summaries?format=json","cboCostEstimates.0.title":"H.R. 784, Internet Application I.D. Act","introducedDate":"2023-02-02","subjects.count":9,"sponsors.0.state":"ID","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/784?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FULCHER:\nH.R. 784.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution.\nCongress has the authority to enact this legislation\npursuant to the power granted under Article\nThe single subject of this legislation is:\nTo address the regulation of disclosure of websites or\nmobile applications owned and/or located in certain foreign\njurisdictions.\n[Page H681]\n","sponsors.0.district":1,"sponsors.0.firstName":"Russ","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"275","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5034/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Plaskett","cboCostEstimates.0.pubDate":"2023-10-10T20:00:00Z","sponsors.0.isByRequest":"N","request.billNumber":"5034","sponsors.0.url":"https://api.congress.gov/v3/member/P000610?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5034/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5034/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the facility of the United States Postal Service located at 2119 Market Square in Christiansted, St. Croix, United States Virgin Islands, as the \"Lieutenant General Samuel E. Ebbesen Post Office\".","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5034","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 20, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59655","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-06-04","summaries.count":1,"sponsors.0.bioguideId":"P000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5034/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5034/summaries?format=json","cboCostEstimates.0.title":"H.R. 5034, a bill to designate the facility of the United States Postal Service located at 2119 Market Square in Christiansted, St. Croix, United States Virgin Islands, as the “Lieutenant General Samuel E. Ebbesen Post Office","actions.url":"https://api.congress.gov/v3/bill/118/hr/5034/actions?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":3,"sponsors.0.fullName":"Del. Plaskett, Stacey E. [D-VI-At Large]","titles.count":2,"introducedDate":"2023-07-27","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"VI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5034?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PLASKETT:\nH.R. 5034.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo designate a facility of the United States Postal\nService.\n[Page H4145]\n","sponsors.0.firstName":"Stacey","updateDateIncludingText":"2025-02-04T17:04:06Z"}} +{"type":"node","id":"276","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"SCHIFF","cboCostEstimates.0.pubDate":"2023-07-21T17:50:12Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"1687","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1687/cosponsors?format=json","sponsors.0.bioguideId":"S001150","actions.url":"https://api.congress.gov/v3/bill/118/hr/1687/actions?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":3,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":2,"cosponsors.count":50,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1687/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":12,"request.billNumber":"1687","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1687/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1687/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 6444 San Fernando Road in Glendale, California, as the \"Paul Ignatius Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":50,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59413","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-06-04","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1687/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1687/summaries?format=json","cboCostEstimates.0.title":"H.R. 1687, a bill to designate the facility of the United States Postal Service located at 6444 San Fernando Road in Glendale, California, as the “Paul Ignatius Post Office”","introducedDate":"2023-03-21","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1687?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 1687.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 7\nThe single subject of this legislation is:\nPostal\n[Page H1302]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-02-04T17:04:03Z"}} +{"type":"node","id":"277","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-06-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2024-06-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"278","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8619/text?format=json","updateDate":"2024-08-31T08:05:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wenstrup","sponsors.0.isByRequest":"N","request.billNumber":"8619","sponsors.0.url":"https://api.congress.gov/v3/member/W000815?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8619/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8619/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"S Corporation Modernization Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8619","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-06-04","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8619/cosponsors?format=json","sponsors.0.bioguideId":"W000815","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8619/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8619/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-04","sponsors.0.fullName":"Rep. Wenstrup, Brad R. [R-OH-2]","titles.count":3,"introducedDate":"2024-06-04","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8619?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 95 (Tuesday, June 4, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WENSTRUP:\nH.R. 8619.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTax Policy\n[Page H3656]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2024-08-31T08:05:31Z"}} +{"type":"node","id":"279","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8604/text?format=json","relatedBills.count":1,"updateDate":"2024-08-29T12:36:34Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Blunt Rochester","sponsors.0.isByRequest":"N","request.billNumber":"8604","sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8604/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8604/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Reducing Regulatory Barriers to Housing Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"8604","request.format":"json","latestAction_actionDate":"2024-06-04","sponsors.0.bioguideId":"B001303","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8604/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8604/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8604/relatedbills?format=json","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","titles.count":3,"introducedDate":"2024-06-04","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8604?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 95 (Tuesday, June 4, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 8604.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHousing\n[Page H3655]\n","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2024-08-29T12:36:34Z"}} +{"type":"node","id":"280","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8386/text?format=json","updateDate":"2024-08-15T11:36:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luna","sponsors.0.isByRequest":"N","request.billNumber":"8386","sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8386/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"President Donald J. Trump Congressional Gold Medal Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"8386","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8386/cosponsors?format=json","sponsors.0.bioguideId":"L000596","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8386/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8386/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","titles.count":3,"introducedDate":"2024-05-14","cosponsors.count":9,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8386?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 8386.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nThis bill would award a Congressional Gold Medal to\nPresident Donald J. Trump.\n[Page H3204]\n","sponsors.0.district":13,"sponsors.0.firstName":"Anna Paulina","updateDateIncludingText":"2024-08-15T11:36:22Z"}} +{"type":"node","id":"281","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8389/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"8389","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8389/subjects?format=json","policyArea.name":"Education","type":"HR","title":"College Antisemitism Transparency Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"8389","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8389/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8389/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8389/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2024-05-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8389?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 8389.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nEducation\n[Page H3204]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"282","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8378/text?format=json","updateDate":"2024-09-21T08:05:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Castro","sponsors.0.isByRequest":"N","request.billNumber":"8378","sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8378/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Indian Ocean Region Strategic Review Act of 2024","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"8378","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8378/cosponsors?format=json","sponsors.0.bioguideId":"C001091","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8378/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8378/actions?format=json","latestAction.actionDate":"2024-05-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","titles.count":3,"introducedDate":"2024-05-14","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8378?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 8378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, clauses 11-16\nThe single subject of this legislation is:\nTo strengthen the role of the United States with respect\nto the Indian Ocean region.\n[Page H3204]\n","sponsors.0.district":20,"sponsors.0.firstName":"Joaquin","updateDateIncludingText":"2024-09-21T08:05:52Z"}} +{"type":"node","id":"283","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8396/text?format=json","updateDate":"2024-08-14T18:32:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sewell","sponsors.0.isByRequest":"N","request.billNumber":"8396","sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8396/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8396/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"LIFT Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"8396","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-05-14","sponsors.0.bioguideId":"S001185","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8396/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8396/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","titles.count":4,"introducedDate":"2024-05-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8396?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 8396.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the U.S. Constitution\nThe single subject of this legislation is:\nTo provide additional borrowing measures for states and\nmunicipalities.\n[Page H3205]\n","sponsors.0.district":7,"sponsors.0.firstName":"Terri","updateDateIncludingText":"2024-08-14T18:32:05Z"}} +{"type":"node","id":"284","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8377/text?format=json","updateDate":"2024-11-02T08:05:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Caraveo","sponsors.0.isByRequest":"N","request.billNumber":"8377","sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8377/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8377/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Youth Suicide Prevention Research Act","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"D","number":"8377","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8377/cosponsors?format=json","sponsors.0.bioguideId":"C001134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8377/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8377/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","titles.count":3,"introducedDate":"2024-05-14","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8377?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 8377.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause\n(Art. I, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nThe single subject of this legislation is:\nTo amend the Advancing Research to Prevent Suicide Act to\nexpand the areas of focus regarding childhood suicide, and\nfor other purposes.\n[Page H3204]\n","sponsors.0.district":8,"sponsors.0.firstName":"Yadira","updateDateIncludingText":"2024-11-02T08:05:16Z"}} +{"type":"node","id":"285","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8384/text?format=json","relatedBills.count":1,"updateDate":"2024-08-15T12:25:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kilmer","sponsors.0.isByRequest":"N","request.billNumber":"8384","sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8384/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8384/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Protect Elections from Deceptive AI Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"8384","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8384/cosponsors?format=json","sponsors.0.bioguideId":"K000381","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8384/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8384/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8384/relatedbills?format=json","sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","titles.count":3,"introducedDate":"2024-05-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8384?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 83 (Tuesday, May 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 8384.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo prohibit the distribution of materially deceptive AI-\ngenerated content relating to candidates for Federal office.\n[Page H3204]\n","sponsors.0.district":6,"sponsors.0.firstName":"Derek","updateDateIncludingText":"2024-09-18T16:27:12Z"}} +{"type":"node","id":"286","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/593/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":24,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"593","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Became Public Law No: 118-61.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/593/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/593/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To rename the Department of Veterans Affairs community-based outpatient clinic in Hinesville, Georgia, as the \"John Gibson, Dan James, William Sapp, and Frankie Smiley VA Clinic\".","latestAction.text":"Became Public Law No: 118-61.","sponsors.0.party":"R","number":"593","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2024-05-13","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/593/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/593/titles?format=json","laws.0.number":"118-61","summaries.url":"https://api.congress.gov/v3/bill/118/hr/593/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/593/actions?format=json","latestAction.actionDate":"2024-05-13","textVersions.count":5,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":2,"introducedDate":"2023-01-27","cosponsors.count":13,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/593?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 593.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H490]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2025-01-14T17:05:19Z","laws.0.type":"Public Law"}} +{"type":"node","id":"287","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-12-05T16:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-62.","policyArea.name":"Energy","type":"HR","latestAction.text":"Became Public Law No: 118-62.","sponsors.0.party":"R","number":"1042","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1042/cosponsors?format=json","sponsors.0.bioguideId":"M001159","laws.0.number":"118-62","actions.url":"https://api.congress.gov/v3/bill/118/hr/1042/actions?format=json","latestAction.actionDate":"2024-05-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1042/relatedbills?format=json","textVersions.count":6,"sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-296","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1042/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"1042","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1042/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1042/subjects?format=json","title":"Prohibiting Russian Uranium Imports Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on December 1, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59805","request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2024-05-13","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/296?format=json","summaries.count":5,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1042/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1042/summaries?format=json","cboCostEstimates.0.title":"H.R. 1042, Prohibiting Russian Uranium Imports Act","introducedDate":"2023-02-14","subjects.count":6,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1042?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 1042.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 10\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by preventing imports of uranium from Russia.\n[Page H842]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-01-15T18:51:50Z","laws.0.type":"Public Law"}} +{"type":"node","id":"288","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8357/text?format=json","updateDate":"2024-08-16T13:24:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"8357","sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8357/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"BUILD Veterans Businesses Act of 2024","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"8357","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8357/cosponsors?format=json","sponsors.0.bioguideId":"K000394","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8357/actions?format=json","latestAction.actionDate":"2024-05-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","titles.count":4,"introducedDate":"2024-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8357?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 8357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the United States\nConstitution\nThe single subject of this legislation is:\nStrengthening businesses\n[Page H3006]\n","sponsors.0.district":3,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-08-16T13:24:41Z"}} +{"type":"node","id":"289","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8349/text?format=json","relatedBills.count":1,"updateDate":"2024-08-10T08:05:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"8349","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8349/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8349/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"DOT Victim and Survivor Advocate Act","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"8349","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8349/cosponsors?format=json","sponsors.0.bioguideId":"C001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8349/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8349/actions?format=json","latestAction.actionDate":"2024-05-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8349/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8349?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.R. 8349.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTransportation\n[Page H3006]\n","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-08-10T08:05:43Z"}} +{"type":"node","id":"290","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8289/text?format=json","updateDate":"2024-11-18T14:20:31Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":26,"sponsors.0.lastName":"Graves","sponsors.0.isByRequest":"N","request.billNumber":"8289","sponsors.0.url":"https://api.congress.gov/v3/member/G000546?format=json","latestAction_text":"Became Public Law No: 118-60.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8289/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8289/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Airport and Airway Extension Act of 2024, Part II","latestAction.text":"Became Public Law No: 118-60.","sponsors.0.party":"R","number":"8289","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-10","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8289/cosponsors?format=json","sponsors.0.bioguideId":"G000546","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8289/titles?format=json","laws.0.number":"118-60","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8289/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8289/actions?format=json","latestAction.actionDate":"2024-05-10","textVersions.count":4,"sponsors.0.fullName":"Rep. Graves, Sam [R-MO-6]","titles.count":5,"introducedDate":"2024-05-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8289?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 80 (Wednesday, May 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Missouri:\nH.R. 8289.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution,\nclause 1, clause 3, and clause 18.\nThe single subject of this legislation is:\nTo extend authorizations for the airport improvement\nprogram, to extend the funding and expenditure authority of\nthe Airport and Airway Trust Fund, and for other purposes.\n[Page H2998]\n","sponsors.0.district":6,"sponsors.0.firstName":"Sam","updateDateIncludingText":"2024-11-18T14:20:31Z","laws.0.type":"Public Law"}} +{"type":"node","id":"291","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8348/text?format=json","updateDate":"2024-08-06T15:18:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"8348","sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8348/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8348/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"CISA Securing AI Task Force Act","latestAction.text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","sponsors.0.party":"D","number":"8348","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8348/cosponsors?format=json","sponsors.0.bioguideId":"C001125","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8348/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8348/actions?format=json","latestAction.actionDate":"2024-05-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Carter, Troy A. [D-LA-2]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8348?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 8348.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause, Article 1, Section 8, Clause 1, along with the\nNecessary and Proper Clause, Article 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo establish in the Cybersecurity and Infrastructure\nSecurity Agency of the Department of Homeland Security a task\nforce on artificial intelligence, and for other purposes.\n[Page H3006]\n","sponsors.0.district":2,"sponsors.0.firstName":"Troy","updateDateIncludingText":"2024-08-06T15:18:22Z"}} +{"type":"node","id":"292","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8355/text?format=json","relatedBills.count":2,"updateDate":"2024-08-06T12:41:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kilmer","sponsors.0.isByRequest":"N","request.billNumber":"8355","sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8355/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8355/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Tribal Adoption Parity Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"8355","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8355/cosponsors?format=json","sponsors.0.bioguideId":"K000381","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8355/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8355/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-10","sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8355?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 8355.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\nThe single subject of this legislation is:\nTribal adoption tax credit\n[Page H3006]\n","sponsors.0.district":6,"sponsors.0.firstName":"Derek","updateDateIncludingText":"2024-08-06T12:41:52Z"}} +{"type":"node","id":"293","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8363/text?format=json","relatedBills.count":1,"updateDate":"2024-11-20T16:20:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Peltola","sponsors.0.isByRequest":"N","request.billNumber":"8363","sponsors.0.url":"https://api.congress.gov/v3/member/P000619?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8363/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8363/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Chugach Alaska Land Exchange Oil Spill Recovery Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"8363","request.format":"json","sponsors.0.middleName":"Sattler","latestAction_actionDate":"2024-05-10","sponsors.0.bioguideId":"P000619","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8363/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8363/actions?format=json","latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8363/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Peltola, Mary Sattler [D-AK-At Large]","titles.count":3,"introducedDate":"2024-05-10","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8363?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. PELTOLA:\nH.R. 8363.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3.\nThe single subject of this legislation is:\nTo exchange non-Federal land held by the Chugach Alaska\nCorporation for certain Federal Land in the Chugach Region,\nand for other purposes.\n[Page H3006]\n","sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-11-20T16:20:23Z"}} +{"type":"node","id":"294","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8354/text?format=json","relatedBills.count":1,"updateDate":"2024-07-30T14:00:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"8354","sponsors.0.url":"https://api.congress.gov/v3/member/J000309?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8354/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8354/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Blair Holt Firearm Owner Licensing and Record of Sale Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8354","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8354/cosponsors?format=json","sponsors.0.bioguideId":"J000309","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8354/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8354/actions?format=json","latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8354/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson, Jonathan L. [D-IL-1]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8354?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Illinois:\nH.R. 8354.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 8\nThe single subject of this legislation is:\nThis legislation is named after Blair Holt, a Chicago\nJulian High School honor student who was gunned down\nprotecting his friend when a gunman opened fire while they\nwere riding home from school on a crowded public transit bus.\nMay 10, 2024 marks the 17th anniversary of his death.\n[Page H3006]\n","sponsors.0.district":1,"sponsors.0.firstName":"Jonathan","updateDateIncludingText":"2024-07-30T14:00:15Z"}} +{"type":"node","id":"295","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8346/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"8346","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8346/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8346/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Return to Work Awareness Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8346","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8346/cosponsors?format=json","sponsors.0.bioguideId":"B001281","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8346/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8346/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-10","sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8346?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 8346.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the U.S Constitution.\nThe single subject of this legislation is:\nLabor\n[Page H3006]\n","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"296","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8356/text?format=json","relatedBills.count":1,"updateDate":"2025-01-09T12:26:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"8356","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8356/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8356/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Small Dollar Loan Certainty Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"8356","request.format":"json","latestAction_actionDate":"2024-05-10","sponsors.0.bioguideId":"K000397","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8356/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8356/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8356/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-10","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":3,"introducedDate":"2024-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8356?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 8356.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo provide regulatory certainty and clarity in lending for\nconsumers and financial institutions.\n[Page H3006]\n","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-01-09T12:26:13Z"}} +{"type":"node","id":"297","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8364/text?format=json","relatedBills.count":1,"updateDate":"2024-10-02T08:05:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scalise","sponsors.0.isByRequest":"N","request.billNumber":"8364","sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8364/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Firearms Interstate Commerce Reform Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8364","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8364/cosponsors?format=json","sponsors.0.bioguideId":"S001176","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8364/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8364/actions?format=json","latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8364/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":51,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8364?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCALISE:\nH.R. 8364.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution, and Article I, Section 8, Clause 18 of the\nUnited States Constitution.\nThe single subject of this legislation is:\nThis legislation amends current law regarding the\nauthority to conduct interstate firearms transactions.\n[Page H3006]\n","sponsors.0.district":1,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-10-02T08:05:42Z"}} +{"type":"node","id":"298","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8365/text?format=json","updateDate":"2024-08-14T18:06:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"8365","sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8365/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8365/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Sean and David Goldman Act Amendments","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"8365","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2024-05-10","sponsors.0.bioguideId":"S000522","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8365/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8365/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-10","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","titles.count":3,"introducedDate":"2024-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8365?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 8365.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nInternational Child Abduction\n[Page H3006]\n","sponsors.0.district":4,"sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-08-14T18:06:15Z"}} +{"type":"node","id":"299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8336/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:44:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"8336","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8336/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8336/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To amend title 10, United States Code, to establish a counseling pathway in the Transition Assistance Program for members of the reserve components of the Armed Forces.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"8336","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8336/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8336/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8336/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8336/relatedbills?format=json","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2024-05-10","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8336?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. McCLELLAN:\nH.R. 8336.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 12\nThe single subject of this legislation is:\nMilitary Training\n[Page H3005]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-31T18:44:14Z"}} +{"type":"node","id":"300","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7898/text?format=json","relatedBills.count":1,"updateDate":"2024-10-12T08:05:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Deluzio","sponsors.0.isByRequest":"N","request.billNumber":"7898","sponsors.0.url":"https://api.congress.gov/v3/member/D000530?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7898/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7898/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Veterans Housing Stability Act of 2024","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"7898","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7898/cosponsors?format=json","sponsors.0.bioguideId":"D000530","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7898/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7898/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7898/relatedbills?format=json","sponsors.0.fullName":"Rep. Deluzio, Christopher R. [D-PA-17]","titles.count":3,"introducedDate":"2024-04-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7898?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 60 (Tuesday, April 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DELUZIO:\nH.R. 7898.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nVeterans Housing\n[Page H2252]\n","sponsors.0.district":17,"sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-10-12T08:05:31Z"}} +{"type":"node","id":"301","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7738/text?format=json","updateDate":"2024-08-16T17:45:39Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"7738","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7738/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7738/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Toxic Exposure Fund Improvement Act of 2024","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"R","number":"7738","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7738/cosponsors?format=json","sponsors.0.bioguideId":"B001295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7738/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7738/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":3,"introducedDate":"2024-03-20","cosponsors.count":3,"subjects.count":14,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7738?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 49 (Wednesday, March 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 7738.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nwhich states ``[t]he Congress shall have power to lay and\ncollect taxes, duties, imposts and excises, to pay the debts\nand provide for the common defense and general welfare of the\nUnited States; but all duties, imposts and excises shall be\nuniform throughout the United States''\nThe single subject of this legislation is:\nThe structure of the Department of Veterans Affairs budget.\n[Page H1295]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-08-16T17:45:39Z"}} +{"type":"node","id":"302","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7773/text?format=json","updateDate":"2024-07-24T15:18:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Horsford","sponsors.0.isByRequest":"N","request.billNumber":"7773","sponsors.0.url":"https://api.congress.gov/v3/member/H001066?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7773/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7773/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VET Extension Act of 2024","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"7773","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7773/cosponsors?format=json","sponsors.0.bioguideId":"H001066","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7773/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7773/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Rep. Horsford, Steven [D-NV-4]","titles.count":4,"introducedDate":"2024-03-21","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7773?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HORSFORD:\nH.R. 7773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to provide\nadditional entitlement to Post-9/11 Educational Assistance to\ncertain veterans and members of the Armed Forces who require\nextra time to complete remedial and deficiency courses, and\nfor other purposes.\n[Page H1354]\n","sponsors.0.district":4,"sponsors.0.firstName":"Steven","updateDateIncludingText":"2024-07-24T15:18:51Z"}} +{"type":"node","id":"303","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7765/text?format=json","updateDate":"2024-06-11T15:42:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"7765","sponsors.0.url":"https://api.congress.gov/v3/member/W000828?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7765/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7765/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Security Screening Pilot Program Act","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"R","number":"7765","request.format":"json","latestAction_actionDate":"2024-04-19","sponsors.0.bioguideId":"W000828","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7765/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7765/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Brandon [R-NY-22]","titles.count":3,"introducedDate":"2024-03-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7765?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILLIAMS of New York:\nH.R. 7765.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Section 8 of Article 1 of the Constitution.\nThe single subject of this legislation is:\nTo direct the Secretary of Veterans Affairs to carry out a\npilot program to use weapon screening technology at medical\ncenters of the Department of Veterans Affairs.\n[Page H1353]\n","sponsors.0.district":22,"sponsors.0.firstName":"Brandon","updateDateIncludingText":"2024-06-11T15:42:47Z"}} +{"type":"node","id":"304","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8090/text?format=json","updateDate":"2024-11-09T09:05:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Goldman","sponsors.0.isByRequest":"N","request.billNumber":"8090","sponsors.0.url":"https://api.congress.gov/v3/member/G000599?format=json","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8090/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8090/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Homeland Security Climate Change Coordination Act","latestAction.text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","sponsors.0.party":"D","number":"8090","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8090/cosponsors?format=json","sponsors.0.bioguideId":"G000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8090/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8090/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Goldman, Daniel S. [D-NY-10]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8090?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDMAN of New York:\nH.R. 8090.\nCongress has the power to enact this legislation pursuant\nto the following:\n``Under Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into the Execution the foregoing Powers,\nand all other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nTo amend the Homeland Security Act of 2002 to establish a\ncouncil within the Department of Homeland Security to\ncoordinate departmental efforts to identify, address, and\nmitigate cross-functional impacts of global climate change\nwith respect to the Department's programs and operations, and\nfor other purposes.\n[Page H2559]\n","sponsors.0.district":10,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-11-09T09:05:16Z"}} +{"type":"node","id":"305","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8098/text?format=json","relatedBills.count":1,"updateDate":"2024-12-23T20:51:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stansbury","sponsors.0.isByRequest":"N","request.billNumber":"8098","sponsors.0.url":"https://api.congress.gov/v3/member/S001218?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8098/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8098/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Judicial Ethics Enforcement Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8098","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8098/cosponsors?format=json","sponsors.0.bioguideId":"S001218","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8098/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8098/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8098/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Rep. Stansbury, Melanie A. [D-NM-1]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8098?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STANSBURY:\nH.R. 8098.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8.\nThe single subject of this legislation is:\nTo amend title 28, United States Code, to provide an\nInspector General for the judicial branch, and for other\npurposes.\n[Page H2559]\n","sponsors.0.district":1,"sponsors.0.firstName":"Melanie","updateDateIncludingText":"2024-12-23T20:51:41Z"}} +{"type":"node","id":"306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8097/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T20:24:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Maloy","sponsors.0.isByRequest":"N","request.billNumber":"8097","sponsors.0.url":"https://api.congress.gov/v3/member/M001228?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8097/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8097/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"RECA Extension Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8097","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8097/cosponsors?format=json","sponsors.0.bioguideId":"M001228","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8097/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8097/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8097/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8097/relatedbills?format=json","sponsors.0.fullName":"Rep. Maloy, Celeste [R-UT-2]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":20,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8097?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALOY:\nH.R. 8097.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo reauthorize the Radiation Exposure Compensation Act.\n[Page H2559]\n","sponsors.0.district":2,"sponsors.0.firstName":"Celeste","updateDateIncludingText":"2025-02-14T20:24:28Z"}} +{"type":"node","id":"307","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8081/text?format=json","updateDate":"2024-07-24T16:37:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Thompson","sponsors.0.isByRequest":"N","request.billNumber":"8081","sponsors.0.url":"https://api.congress.gov/v3/member/T000193?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8081/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8081/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"DISGRACED Former Protectees Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8081","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2024-04-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8081/cosponsors?format=json","sponsors.0.bioguideId":"T000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8081/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8081/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8081/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Rep. Thompson, Bennie G. [D-MS-2]","titles.count":4,"introducedDate":"2024-04-19","cosponsors.count":8,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8081?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Mississippi:\nH.R. 8081.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTermination of United States Secret Service protection for\nfelons.\n[Page H2558]\n","sponsors.0.district":2,"sponsors.0.firstName":"Bennie","updateDateIncludingText":"2024-07-24T16:37:26Z"}} +{"type":"node","id":"308","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8100/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Walberg","sponsors.0.isByRequest":"N","request.billNumber":"8100","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Transportation and Infrastructure, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8100/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Great Lakes Restoration Semipostal Stamp Act of 2024","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Transportation and Infrastructure, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"8100","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8100/cosponsors?format=json","sponsors.0.bioguideId":"W000798","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8100/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8100/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8100?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 8100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThis bill directs the U.S. Postal Service to issue a\nsemipostal stamp to contribute to funding operations\nsupported by the Great Lakes Restoration Initiative.\n[Page H2559]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"309","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8093/text?format=json","relatedBills.count":1,"updateDate":"2024-12-23T20:52:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson Lee","sponsors.0.isByRequest":"N","request.billNumber":"8093","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8093/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8093/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Countering Threats and Attacks on Our Judges Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8093","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8093/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8093/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8093/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8093/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8093?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 8093.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8, Clauses 1 and 18 of the\nUnited States Constitution.\nThe single subject of this legislation is:\nThe bill will establish a State Judicial Threat\nIntelligence and Resource Center to provide technical\nassistance, training, and monitoring of threats for state and\nlocal judges and court personnel .\n[Page H2559]\n","sponsors.0.district":18,"sponsors.0.firstName":"Sheila","updateDateIncludingText":"2024-12-23T20:52:38Z"}} +{"type":"node","id":"310","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8095/text?format=json","updateDate":"2024-09-20T08:05:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"8095","sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8095/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to extend the energy credit with respect to electrochromic glass.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8095","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8095/cosponsors?format=json","sponsors.0.bioguideId":"K000388","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8095/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8095/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","titles.count":2,"introducedDate":"2024-04-19","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8095?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 8095.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nTax\n[Page H2559]\n","sponsors.0.district":1,"sponsors.0.firstName":"Trent","updateDateIncludingText":"2024-09-20T08:05:58Z"}} +{"type":"node","id":"311","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8099/text?format=json","updateDate":"2024-09-17T11:47:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"8099","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8099/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8099/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"CRED Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"8099","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8099/cosponsors?format=json","sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8099/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8099/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":4,"introducedDate":"2024-04-19","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8099?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 8099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nFinancial Services\n[Page H2559]\n","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-09-17T11:47:50Z"}} +{"type":"node","id":"312","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8088/text?format=json","relatedBills.count":1,"updateDate":"2025-01-08T18:17:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Finstad","sponsors.0.isByRequest":"N","request.billNumber":"8088","sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8088/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8088/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Applicant Medical Reimbursement Act of 2024","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"8088","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8088/cosponsors?format=json","sponsors.0.bioguideId":"F000475","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8088/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8088/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8088/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8088/relatedbills?format=json","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8088?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 8088.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Section 8, US Constitution.\nThe single subject of this legislation is,\nMilitary\n[Page H2559]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2025-01-08T18:17:04Z"}} +{"type":"node","id":"313","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8087/text?format=json","updateDate":"2024-08-01T13:22:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"8087","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8087/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8087/committees?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Solid Waste Infrastructure for Recycling Grant Program Reauthorization Act","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"8087","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8087/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8087/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8087/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8087?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 8087.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nRecycling\n[Page H2559]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2024-08-01T13:22:35Z"}} +{"type":"node","id":"314","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Davidson","cboCostEstimates.0.pubDate":"2023-11-14T16:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Crime and Law Enforcement","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"4639","amendments.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4639/cosponsors?format=json","sponsors.0.bioguideId":"D000626","actions.url":"https://api.congress.gov/v3/bill/118/hr/4639/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4639/relatedbills?format=json","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4639/amendments?format=json","titles.count":5,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-459","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4639/text?format=json","updateDate":"2025-01-28T17:04:01Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":34,"request.billNumber":"4639","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4639/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4639/subjects?format=json","title":"Fourth Amendment Is Not For Sale Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nJuly 19, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59756","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-04-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/459?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4639/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4639/summaries?format=json","cboCostEstimates.0.title":"H.R. 4639, Fourth Amendment Is Not For Sale Act","introducedDate":"2023-07-14","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4639?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4639.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n``To make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\nThe single subject of this legislation is:\nThe single subject is federal governmnet surveillance.\n[Page H3612]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2025-01-28T17:04:01Z"}} +{"type":"node","id":"315","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7737/text?format=json","updateDate":"2024-11-19T17:36:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Cline","sponsors.0.isByRequest":"N","request.billNumber":"7737","sponsors.0.url":"https://api.congress.gov/v3/member/C001118?format=json","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 16 - 7.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7737/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7737/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"One Agency Act","latestAction.text":"Ordered to be Reported (Amended) by the Yeas and Nays: 16 - 7.","sponsors.0.party":"R","number":"7737","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-04-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7737/cosponsors?format=json","sponsors.0.bioguideId":"C001118","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7737/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7737/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7737/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Cline, Ben [R-VA-6]","titles.count":3,"introducedDate":"2024-03-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7737?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 49 (Wednesday, March 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLINE:\nH.R. 7737.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nThis bill transfers antitrust enforcement from the Federal\nTrade Commission to the Attorney General.\n[Page H1295]\n","sponsors.0.district":6,"sponsors.0.firstName":"Ben","updateDateIncludingText":"2024-11-19T17:36:01Z"}} +{"type":"node","id":"316","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Kim","cboCostEstimates.0.pubDate":"2023-12-08T19:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"6323","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6323/cosponsors?format=json","sponsors.0.bioguideId":"K000397","actions.url":"https://api.congress.gov/v3/bill/118/hr/6323/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6323/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/6323/amendments?format=json","titles.count":6,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-458","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6323/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":22,"request.billNumber":"6323","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6323/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6323/committees?format=json","title":"Iran Counterterrorism Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on November 14, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59814","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-04-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/458?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6323/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6323/summaries?format=json","cboCostEstimates.0.title":"H.R. 6323, Iran Counterterrorism Act of 2023","introducedDate":"2023-11-09","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6323?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 6323.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTo limit the use of sanctions exemptions granted by the\nPresident on Iran\n[Page H5669]\n","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"317","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8067/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T09:06:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"8067","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8067/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8067/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Internal Revenue Service Math and Taxpayer Help Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8067","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8067/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8067/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8067/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8067/relatedbills?format=json","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8067?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 68 (Thursday, April 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 8067.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nTax filing\n[Page H2522]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-12-17T09:06:00Z"}} +{"type":"node","id":"318","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8071/text?format=json","relatedBills.count":4,"updateDate":"2024-07-19T16:54:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hill","sponsors.0.isByRequest":"N","request.billNumber":"8071","sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8071/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8071/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Fair Audits and Inspections for Regulators’ Exams Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"8071","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8071/cosponsors?format=json","sponsors.0.bioguideId":"H001072","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8071/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8071/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8071/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8071?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 68 (Thursday, April 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 8071.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo amend the Federal Financial Institutions Examination\nCouncil Act of 1978 to improve the examination of depository\ninstitutions, and for other purposes\n[Page H2522]\n","sponsors.0.district":2,"sponsors.0.firstName":"J.","updateDateIncludingText":"2024-07-19T16:54:07Z"}} +{"type":"node","id":"319","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8062/text?format=json","updateDate":"2024-08-03T08:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"8062","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8062/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8062/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Stream Protection and Vegetation Restoration Act","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"8062","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8062/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8062/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8062/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8062?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 68 (Thursday, April 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 8062.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLegislating\n[Page H2521]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-03T08:05:49Z"}} +{"type":"node","id":"320","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7743/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"DeGette","sponsors.0.isByRequest":"N","request.billNumber":"7743","sponsors.0.url":"https://api.congress.gov/v3/member/D000197?format=json","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7743/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7743/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"Department of Energy Experienced Worker Program Act","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"D","number":"7743","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7743/cosponsors?format=json","sponsors.0.bioguideId":"D000197","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7743/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7743/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. DeGette, Diana [D-CO-1]","titles.count":3,"introducedDate":"2024-03-20","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7743?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 49 (Wednesday, March 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeGETTE:\nH.R. 7743.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nExperienced Worker Program\n[Page H1295]\n","sponsors.0.district":1,"sponsors.0.firstName":"Diana","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"321","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7730/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Spanberger","sponsors.0.isByRequest":"N","request.billNumber":"7730","sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7730/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7730/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Targeting Online Sales of Fentanyl Act","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"D","number":"7730","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7730/cosponsors?format=json","sponsors.0.bioguideId":"S001209","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7730/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7730/actions?format=json","latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7730/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7730?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 48 (Tuesday, March 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 7730.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTarget and address the sale of illicit drugs online,\nincluding fentanyl.\n[Page H1235]\n","sponsors.0.district":7,"sponsors.0.firstName":"Abigail","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"322","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7728/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Perry","sponsors.0.isByRequest":"N","request.billNumber":"7728","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7728/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7728/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Energy Sovereignty Act","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"7728","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7728/cosponsors?format=json","sponsors.0.bioguideId":"P000605","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7728/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7728/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7728?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 48 (Tuesday, March 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 7728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nRepeals section 115 of the Clean Air Act.\n[Page H1235]\n","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"323","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7715/text?format=json","updateDate":"2024-12-16T20:37:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"7715","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7715/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7715/subjects?format=json","policyArea.name":"Health","type":"HR","title":"VAPE Imports Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"7715","request.format":"json","latestAction_actionDate":"2024-03-22","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7715/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7715/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":4,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7715?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 48 (Tuesday, March 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7715.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority to enact this legislation is\nprovided by Article 1, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nTobacco Control\n[Page H1235]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-16T20:37:54Z"}} +{"type":"node","id":"324","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7714/text?format=json","updateDate":"2024-12-16T20:37:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Caraveo","sponsors.0.isByRequest":"N","request.billNumber":"7714","sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7714/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Colorectal Cancer Early Detection Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"7714","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7714/cosponsors?format=json","sponsors.0.bioguideId":"C001134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7714/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7714/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":18,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7714?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 48 (Tuesday, March 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 7714.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe single subject of this legislation is:\nTo authorize the Secretary of Health and Human Services,\nacting through the Director of the Centers for Disease\nControl and Prevention, to make grants to States to increase\nawareness and education for colorectal cancer and improve\nearly detection of colorectal cancer in young individuals,\nand for other purposes.\n[[Page H1235]]\n[Page H1234]\n","sponsors.0.district":8,"sponsors.0.firstName":"Yadira","updateDateIncludingText":"2024-12-16T20:37:50Z"}} +{"type":"node","id":"325","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7709/text?format=json","updateDate":"2024-12-16T20:37:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Spanberger","sponsors.0.isByRequest":"N","request.billNumber":"7709","sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7709/subjects?format=json","policyArea.name":"Health","type":"HR","title":"PREPARE ACT of 2024","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"7709","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7709/cosponsors?format=json","sponsors.0.bioguideId":"S001209","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7709/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7709/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7709/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","titles.count":4,"introducedDate":"2024-03-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7709?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 47 (Friday, March 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 7709.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nCreate an emergency supply of key ingredients used in\nessential generic medicines and incentive domestic\nmanufacturing of these ingredients.\n[Page H1189]\n","sponsors.0.district":7,"sponsors.0.firstName":"Abigail","updateDateIncludingText":"2024-12-16T20:37:15Z"}} +{"type":"node","id":"326","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7706/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"7706","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7706/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7706/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Safe Drinking Water for Disadvantaged Communities Act","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"7706","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7706/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7706/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7706/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":3,"introducedDate":"2024-03-15","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7706?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 47 (Friday, March 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 7706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo provide that funds made available under the\nInfrastructure Investment and Jobs Act for lead service line\nreplacement projects be provided to disadvantaged communities\nin the form of forgivable loans or grants, and\n[Page H1189]\n","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"327","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7688/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T20:37:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"7688","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7688/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7688/committees?format=json","policyArea.name":"Health","type":"HR","title":"AADAPT Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"7688","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7688/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7688/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7688/actions?format=json","latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7688/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":4,"introducedDate":"2024-03-15","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7688?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 47 (Friday, March 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 7688.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to reauthorize the\nProject ECHO Grant Program, to establish grants under such\nprogram to disseminate knowledge and build capacity to\naddress Alzheimer's disease and other dementias, and for\nother purposes.\n[Page H1188]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2024-12-16T20:37:18Z"}} +{"type":"node","id":"328","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Johnson","cboCostEstimates.0.pubDate":"2023-07-20T20:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1836","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1836/cosponsors?format=json","sponsors.0.bioguideId":"J000301","actions.url":"https://api.congress.gov/v3/bill/118/hr/1836/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":4,"sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-218","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1836/text?format=json","updateDate":"2025-02-05T13:26:11Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":19,"request.billNumber":"1836","sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1836/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1836/subjects?format=json","title":"Ocean Shipping Reform Implementation Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59398","request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/218?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1836/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1836/summaries?format=json","cboCostEstimates.0.title":"H.R. 1836, the Ocean Shipping Reform Implementation Act of 2023","introducedDate":"2023-03-28","subjects.count":14,"sponsors.0.state":"SD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1836?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 56 (Tuesday, March 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 1836.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill makes corrections to US cose with respect to\nocean shipping authorities and the Federal Maritime\nCommission.\n[Page H1529]\n","sponsors.0.firstName":"Dusty","updateDateIncludingText":"2025-02-05T13:26:11Z"}} +{"type":"node","id":"329","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1023","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1023/cosponsors?format=json","sponsors.0.bioguideId":"P000609","actions.url":"https://api.congress.gov/v3/bill/118/hr/1023/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1023/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1023/amendments?format=json","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","latestAction_actionTime":"12:00:00","committeeReports.0.citation":"H. Rept. 118-26","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1023/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":24,"request.billNumber":"1023","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1023/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1023/subjects?format=json","title":"Cutting Green Corruption and Taxes Act","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-03-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/26?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1023/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1023/summaries?format=json","latestAction.actionTime":"12:00:00","introducedDate":"2023-02-14","subjects.count":7,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1023?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.R. 1023.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing section 134 of the Clean Air Act,\nregarding the greenhouse gas reduction fund.\n[Page H841]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"330","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7504/text?format=json","relatedBills.count":2,"updateDate":"2024-12-20T09:06:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Perez","sponsors.0.isByRequest":"N","request.billNumber":"7504","sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7504/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7504/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Rural Veterans Transportation to Care Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"7504","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7504/cosponsors?format=json","sponsors.0.bioguideId":"G000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7504/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7504/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7504/relatedbills?format=json","sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","titles.count":3,"introducedDate":"2024-02-29","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7504?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PEREZ:\nH.R. 7504.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans Affairs\n[Page H773]\n","sponsors.0.district":3,"sponsors.0.firstName":"Marie","updateDateIncludingText":"2024-12-20T09:06:15Z"}} +{"type":"node","id":"331","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7514/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Fulcher","sponsors.0.isByRequest":"N","request.billNumber":"7514","sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7514/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7514/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"WAIVER Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"7514","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7514/cosponsors?format=json","sponsors.0.bioguideId":"F000469","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7514/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7514/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7514/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","titles.count":4,"introducedDate":"2024-03-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7514?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FULCHER:\nH.R. 7514.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 allows Congress to make all\nlaws ``which shall be necessary and proper for carrying into\nexecution'' any of Congress' enumerated powers, including\nCongress's powers over appropriations.\nThe single subject of this legislation is:\nTo require the Secretary of Veterans Affairs to waive\ncertain domestic content procurement preferences with respect\nto certain State home projects.\n[Page H781]\n","sponsors.0.district":1,"sponsors.0.firstName":"Russ","updateDateIncludingText":"2024-07-24T15:19:02Z"}} +{"type":"node","id":"332","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7549/text?format=json","updateDate":"2024-06-11T15:44:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mrvan","sponsors.0.isByRequest":"N","request.billNumber":"7549","sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7549/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7549/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Gold Star Family Education Parity Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"7549","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-03-22","sponsors.0.bioguideId":"M001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7549/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7549/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","titles.count":3,"introducedDate":"2024-03-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7549?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 7549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 provides Congress with the\npower to lay and collect taxes, duties, and imposts and\nexcises, to pay the debts and provide for the common defense\nand general welfare of the United States; but all duties,\nimposts and excises shall be uniform throuhgout the United\nStates\nThe single subject of this legislation is:\nThis bill would terminate Chapter 35 Survivors' and\nDependents' Education Assistance (DEA) on August 1, 2028 and\nmake survivors and dependents eligible for Chapter 33 (Post\n9/11 GI Bill) benefits\n[Page H823]\n","sponsors.0.district":1,"sponsors.0.firstName":"Frank","updateDateIncludingText":"2024-06-11T15:44:34Z"}} +{"type":"node","id":"333","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7464/text?format=json","updateDate":"2024-06-11T15:44:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Yakym","sponsors.0.isByRequest":"N","request.billNumber":"7464","sponsors.0.url":"https://api.congress.gov/v3/member/Y000067?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7464/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7464/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Sergeant Ted Grubbs Mental Healthcare for Disabled Veterans Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"7464","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7464/cosponsors?format=json","sponsors.0.bioguideId":"Y000067","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7464/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7464/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Yakym, Rudy [R-IN-2]","titles.count":3,"introducedDate":"2024-02-28","cosponsors.count":2,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7464?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 36 (Wednesday, February 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. YAKYM:\nH.R. 7464.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThis legislation would decrease the VA community care\naccess standards for mental healthcare to five days for\nveterans that are over 50 percent disabled for a mental\nhealth disorder.\n[Page H738]\n","sponsors.0.district":2,"sponsors.0.firstName":"Rudy","updateDateIncludingText":"2024-06-11T15:44:51Z"}} +{"type":"node","id":"334","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7802/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gimenez","sponsors.0.isByRequest":"N","request.billNumber":"7802","sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7802/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7802/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the facility of the United States Postal Service located at 400 Whitehead Street in Key West, Florida, as the \"Jimmy Buffett Post Office Building\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"7802","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7802/cosponsors?format=json","sponsors.0.bioguideId":"G000593","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7802/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7802/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7802/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-28]","titles.count":2,"introducedDate":"2024-03-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7802?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 7802.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution stating\nthat Congress has the authority to ``make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by the\nConstitution''\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 400 Whitehead Street in Key West, Florida,\nas the ``Jimmy Buffet Post Office Building''.\n[Page H1499]\n","sponsors.0.district":28,"sponsors.0.firstName":"Carlos","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"335","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7800/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Courtney","sponsors.0.isByRequest":"N","request.billNumber":"7800","sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7800/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7800/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To direct the United States Postal Service to designate a single, unique ZIP Code for Scotland, Connecticut.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"7800","request.format":"json","latestAction_actionDate":"2024-03-22","sponsors.0.bioguideId":"C001069","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7800/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7800/actions?format=json","latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7800/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","titles.count":2,"introducedDate":"2024-03-22","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7800?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COURTNEY:\nH.R. 7800.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the United States Postal Service to designate a\nsingle, unique ZIP Code for Scotland, Connecticut.\n[Page H1498]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"336","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7795/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:18:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson Lee","sponsors.0.isByRequest":"N","request.billNumber":"7795","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7795/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7795/subjects?format=json","policyArea.name":"Animals","type":"HR","title":"ProTECT Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"7795","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7795/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7795/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7795/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7795/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7795/relatedbills?format=json","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":4,"introducedDate":"2024-03-22","cosponsors.count":14,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7795?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 7795.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt I Section 8\nThe single subject of this legislation is:\nEndangered Species Protection\n[Page H1498]\n","sponsors.0.district":18,"sponsors.0.firstName":"Sheila","updateDateIncludingText":"2024-07-24T15:18:51Z"}} +{"type":"node","id":"337","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7801/text?format=json","relatedBills.count":3,"updateDate":"2024-12-17T09:05:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crawford","sponsors.0.isByRequest":"N","request.billNumber":"7801","sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7801/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7801/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Sultana Steamboat Disaster Commemorative Coin Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"7801","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","sponsors.0.middleName":"A. \"Rick\"","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7801/cosponsors?format=json","sponsors.0.bioguideId":"C001087","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7801/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7801/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7801/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7801/relatedbills?format=json","sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","titles.count":3,"introducedDate":"2024-03-22","cosponsors.count":72,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7801?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\n[Pages H1498-H1499]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRAWFORD:\nH.R. 7801.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H1499]]\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to mint coins to\nhonor and memorialize the tragedy of the Sultana steamboat\nexplosion of 1865.\n","sponsors.0.district":1,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-12-17T09:05:21Z"}} +{"type":"node","id":"338","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7792/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sessions","sponsors.0.isByRequest":"N","request.billNumber":"7792","sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7792/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7792/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Health Care Facility Janitorial Services Classification and Cap Enhancement Act of 2024","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"7792","request.format":"json","latestAction_actionDate":"2024-03-22","sponsors.0.bioguideId":"S000250","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7792/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7792/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","titles.count":3,"introducedDate":"2024-03-22","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7792?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 7792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRelated to Jurisdiction of the Government Reform and\nOversight Committee and Ways and Means Committee Related\n[Page H1498]\n","sponsors.0.district":17,"sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"339","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7813/text?format=json","updateDate":"2024-07-03T17:50:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"7813","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7813/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7813/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Child Tax Credit Integrity Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"7813","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7813/cosponsors?format=json","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7813/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7813/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7813/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":3,"introducedDate":"2024-03-22","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7813?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 7813.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to require an\nindividual to provide a social security number to claim the\nchild tax credit.\n[Page H1499]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-03T17:50:43Z"}} +{"type":"node","id":"340","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7522/text?format=json","updateDate":"2024-06-11T15:47:38Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"7522","sponsors.0.url":"https://api.congress.gov/v3/member/S000185?format=json","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7522/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7522/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"To amend the America's Conservation Enhancement Act to reauthorize the Chesapeake WILD program.","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"D","number":"7522","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C. \"Bobby\"","latestAction_actionDate":"2024-03-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7522/cosponsors?format=json","sponsors.0.bioguideId":"S000185","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7522/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7522/actions?format=json","latestAction.actionDate":"2024-03-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Scott, Robert C. \"Bobby\" [D-VA-3]","titles.count":2,"introducedDate":"2024-03-05","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7522?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT of Virginia:\nH.R. 7522.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 3 of the United\nStates Constitution.\nThe single subject of this legislation is:\nChesapeake Bay Watershed Conservation\n[Page H822]\n","sponsors.0.district":3,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-06-11T15:47:38Z"}} +{"type":"node","id":"341","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"McClintock","cboCostEstimates.0.pubDate":"2024-03-25T14:56:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 13 - 10.","policyArea.name":"Immigration","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 13 - 10.","sponsors.0.party":"R","number":"7334","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7334/cosponsors?format=json","sponsors.0.bioguideId":"M001177","actions.url":"https://api.congress.gov/v3/bill/118/hr/7334/actions?format=json","latestAction.actionDate":"2024-03-06","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7334/relatedbills?format=json","sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7334/text?format=json","updateDate":"2024-10-30T13:52:49Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"7334","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7334/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7334/subjects?format=json","title":"Detain and Deport Illegal Aliens Who Commit Robbery Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nMarch 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60137","request.format":"json","latestAction_actionDate":"2024-03-06","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7334/titles?format=json","cboCostEstimates.0.title":"H.R. 7334, Detain and Deport Illegal Aliens Who Commit Robbery Act","introducedDate":"2024-02-13","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7334?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 28 (Tuesday, February 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 7334.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4\nThe single subject of this legislation is:\nBorder Reporting\n[Page H581]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-10-30T13:52:49Z"}} +{"type":"node","id":"342","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6278/text?format=json","updateDate":"2024-11-09T04:56:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Perry","cboCostEstimates.0.pubDate":"2024-03-05T17:32:00Z","sponsors.0.isByRequest":"N","request.billNumber":"6278","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 335.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6278/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6278/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"MOVE Act of 2023","latestAction.text":"Placed on the Union Calendar, Calendar No. 335.","sponsors.0.party":"R","number":"6278","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on December 6, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60056","request.format":"json","latestAction_actionDate":"2024-03-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/408?format=json","sponsors.0.bioguideId":"P000605","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6278/titles?format=json","cboCostEstimates.0.title":"H.R. 6278, MOVE Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/hr/6278/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":2,"sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":5,"introducedDate":"2023-11-07","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6278?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 184 (Tuesday, November 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 6278.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nDirects GSA to identify two federal agencies to consolidate\ninto the GSA headquarter building.\n[Page H5545]\n","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-11-09T04:56:44Z","committeeReports.0.citation":"H. Rept. 118-408"}} +{"type":"node","id":"343","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4506/text?format=json","updateDate":"2024-07-24T15:21:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"4506","sponsors.0.url":"https://api.congress.gov/v3/member/J000292?format=json","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Weber (TX) asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 4506, a bill originally introduced by Representative Johnson (OH), for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4506/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4506/subjects?format=json","policyArea.name":"Science, Technology, Communications","title":"TEAM TELECOM Act","type":"HR","latestAction.text":"ASSUMING FIRST SPONSORSHIP - Mr. Weber (TX) asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 4506, a bill originally introduced by Representative Johnson (OH), for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","sponsors.0.party":"R","number":"4506","request.format":"json","latestAction_actionDate":"2024-03-05","sponsors.0.bioguideId":"J000292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4506/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4506/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Bill [R-OH-6]","latestAction.actionTime":"19:12:02","titles.count":4,"introducedDate":"2023-07-10","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4506?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 117 (Monday, July 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Ohio:\nH.R. 4506.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nRequires the National Telecommunications and Information\nAdministration (NTIA) to establish an interagency national\nsecurity review process for considering foreign participation\nin the US telecommunications services sector.\n[Page H3177]\n","sponsors.0.district":6,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-07-24T15:21:09Z","latestAction_actionTime":"19:12:02"}} +{"type":"node","id":"344","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Davids","cboCostEstimates.0.pubDate":"2024-02-26T16:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 337.","policyArea.name":"Native Americans","type":"HR","latestAction.text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 337.","sponsors.0.party":"D","number":"7102","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7102/cosponsors?format=json","sponsors.0.bioguideId":"D000629","actions.url":"https://api.congress.gov/v3/bill/118/hr/7102/actions?format=json","latestAction.actionDate":"2024-03-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7102/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Davids, Sharice [D-KS-3]","titles.count":6,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-394","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7102/text?format=json","updateDate":"2024-11-09T04:56:46Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":17,"request.billNumber":"7102","sponsors.0.url":"https://api.congress.gov/v3/member/D000629?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7102/subjects?format=json","title":"Native American Entrepreneurial Opportunity Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60009","request.format":"json","latestAction_actionDate":"2024-03-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/394?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7102/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7102/summaries?format=json","cboCostEstimates.0.title":"H.R. 7102, Native American Entrepreneurial Opportunity Act","introducedDate":"2024-01-29","subjects.count":8,"sponsors.0.state":"KS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7102?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 16 (Monday, January 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DAVIDS of Kansas:\nH.R. 7102.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo establish an Office of Native American Affairs within\nthe Small Business Administration\n[Page H272]\n","sponsors.0.district":3,"sponsors.0.firstName":"Sharice","updateDateIncludingText":"2024-11-09T04:56:46Z"}} +{"type":"node","id":"345","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Maloy","cboCostEstimates.0.pubDate":"2024-02-26T16:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"7128","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7128/cosponsors?format=json","sponsors.0.bioguideId":"M001228","actions.url":"https://api.congress.gov/v3/bill/118/hr/7128/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":4,"sponsors.0.fullName":"Rep. Maloy, Celeste [R-UT-2]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-383","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7128/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"7128","sponsors.0.url":"https://api.congress.gov/v3/member/M001228?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7128/subjects?format=json","title":"The WOSB Integrity Act of 2024","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60011","request.format":"json","latestAction_actionDate":"2024-03-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/383?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7128/summaries?format=json","cboCostEstimates.0.title":"H.R. 7128, WOSB Integrity Act of 2024","introducedDate":"2024-01-30","subjects.count":4,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 17 (Tuesday, January 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALOY:\nH.R. 7128.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nTo establish requirements relating to size standard\ncompliance of small business concerns owned and controlled by\nwomen for certain purposes, and for other purposes.\n[Page H316]\n","sponsors.0.district":2,"sponsors.0.firstName":"Celeste","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"346","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Van Duyne","cboCostEstimates.0.pubDate":"2023-11-21T18:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"5426","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5426/cosponsors?format=json","sponsors.0.bioguideId":"V000134","actions.url":"https://api.congress.gov/v3/bill/118/hr/5426/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-220","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5426/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"5426","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5426/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5426/committees?format=json","title":"To require the Administrator of the Small Business Administration to provide a link to resources for submitting reports on suspected fraud relating to certain COVID-19 loans.","cboCostEstimates.0.description":"As reported by the House Committee on Small Business on September 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59790","request.format":"json","latestAction_actionDate":"2024-03-05","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/220?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5426/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5426/summaries?format=json","cboCostEstimates.0.title":"H.R. 5426, a bill to require the Administrator of the Small Business Administration to provide a link to resources for submitting reports on suspected fraud relating to certain COVID-19 loans","introducedDate":"2023-09-13","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5426?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 148 (Wednesday, September 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 5426.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 ``The Congress shall have\nPower to . . . provide for the . . . general Welfare of the\nUnited States; . . .''\nThe single subject of this legislation is:\nSBA debarment for COVID-19 fraud\n[Page H4297]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"347","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"SMITH","cboCostEstimates.0.pubDate":"2024-02-28T17:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 334.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 334.","sponsors.0.party":"R","number":"7122","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7122/cosponsors?format=json","sponsors.0.bioguideId":"S000522","actions.url":"https://api.congress.gov/v3/bill/118/hr/7122/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7122/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","titles.count":6,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-406","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7122/text?format=json","updateDate":"2024-12-16T20:34:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"7122","sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7122/subjects?format=json","title":"Stop Support for UNRWA Act of 2024","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59994","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2024-03-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/406?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7122/titles?format=json","cboCostEstimates.0.title":"H.R. 7122, Stop Support for United Nations Relief and Works Agency Act of 2024","introducedDate":"2024-01-29","subjects.count":5,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7122?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 16 (Monday, January 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 7122.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nForeign Aid Funding\n[[Page H273]]\n[Page H272]\n","sponsors.0.district":4,"sponsors.0.firstName":"CHRISTOPHER","updateDateIncludingText":"2024-12-16T20:34:50Z"}} +{"type":"node","id":"348","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Graves","cboCostEstimates.0.pubDate":"2024-02-28T15:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 333.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 333.","sponsors.0.party":"R","number":"5616","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5616/cosponsors?format=json","sponsors.0.bioguideId":"G000577","actions.url":"https://api.congress.gov/v3/bill/118/hr/5616/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5616/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Graves, Garret [R-LA-6]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-405","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5616/text?format=json","updateDate":"2024-11-09T04:56:45Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"5616","sponsors.0.url":"https://api.congress.gov/v3/member/G000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5616/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5616/subjects?format=json","title":"BRIDGE Production Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on October 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60017","request.format":"json","latestAction_actionDate":"2024-03-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/405?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5616/titles?format=json","cboCostEstimates.0.title":"H.R. 5616, BRIDGE Production Act of 2023","introducedDate":"2023-09-21","subjects.count":7,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5616?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 153 (Thursday, September 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Louisiana:\nH.R. 5616.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 3 of the United States\nConstitution\nThe single subject of this legislation is:\nTo provide certainty for future offshore oil and gas lease\nsales in the Gulf of Mexico for 2024 and 2025.\n[Page H4457]\n","sponsors.0.district":6,"sponsors.0.firstName":"Garret","updateDateIncludingText":"2024-11-09T04:56:45Z"}} +{"type":"node","id":"349","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7537/text?format=json","updateDate":"2024-10-08T14:07:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Dean","sponsors.0.isByRequest":"N","request.billNumber":"7537","sponsors.0.url":"https://api.congress.gov/v3/member/D000631?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7537/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7537/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Flood History Information Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"7537","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7537/cosponsors?format=json","sponsors.0.bioguideId":"D000631","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7537/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7537/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7537/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Dean, Madeleine [D-PA-4]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7537?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DEAN of Pennsylvania:\nH.R. 7537.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nFlood Risk Awareness\n[Page H822]\n","sponsors.0.district":4,"sponsors.0.firstName":"Madeleine","updateDateIncludingText":"2024-10-08T14:07:40Z"}} +{"type":"node","id":"350","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7547/text?format=json","updateDate":"2024-06-12T18:45:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McGarvey","sponsors.0.isByRequest":"N","request.billNumber":"7547","sponsors.0.url":"https://api.congress.gov/v3/member/M001220?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7547/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7547/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Young Adult Tax Credit Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"7547","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2024-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7547/cosponsors?format=json","sponsors.0.bioguideId":"M001220","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7547/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7547/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7547/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. McGarvey, Morgan [D-KY-3]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7547?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGARVEY:\nH.R. 7547.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTaxes\n[Page H823]\n","sponsors.0.district":3,"sponsors.0.firstName":"Morgan","updateDateIncludingText":"2024-06-12T18:45:53Z"}} +{"type":"node","id":"351","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7531/text?format=json","relatedBills.count":1,"updateDate":"2024-10-08T13:59:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luetkemeyer","sponsors.0.isByRequest":"N","request.billNumber":"7531","sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7531/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7531/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Secure Payments Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"7531","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7531/cosponsors?format=json","sponsors.0.bioguideId":"L000569","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7531/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7531/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7531/actions?format=json","latestAction.actionDate":"2024-03-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7531/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7531?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUETKEMEYER:\nH.R. 7531.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the Board of Governors of the Federal Reserve\nSystem to study the impacts of the Board's Reg II proposed\nrule, to complete a quantitative impact analysis of such\nrule, and to consider the results of such study and analysis\nbefore finalizing such rule, and for other purposes.\n[Page H822]\n","sponsors.0.district":3,"sponsors.0.firstName":"Blaine","updateDateIncludingText":"2024-10-08T13:59:27Z"}} +{"type":"node","id":"352","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7551/text?format=json","updateDate":"2024-07-24T15:19:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Roy","sponsors.0.isByRequest":"N","request.billNumber":"7551","sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7551/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7551/subjects?format=json","policyArea.name":"Law","type":"HR","title":"LIABLE Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"7551","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7551/cosponsors?format=json","sponsors.0.bioguideId":"R000614","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7551/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7551/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7551/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","titles.count":4,"introducedDate":"2024-03-05","cosponsors.count":21,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7551?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 7551.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution--to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof.\nThe single subject of this legislation is:\nTo prohibit any Federal law from making the manufacturer of\na COVID-19 vaccine immune from liability.\n[Page H823]\n","sponsors.0.district":21,"sponsors.0.firstName":"Chip","updateDateIncludingText":"2024-07-24T15:19:01Z"}} +{"type":"node","id":"353","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7541/text?format=json","updateDate":"2024-07-09T18:13:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","request.billNumber":"7541","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7541/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7541/committees?format=json","policyArea.name":"Native Americans","type":"HR","title":"United Houma Recognition Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"7541","request.format":"json","latestAction_actionDate":"2024-03-05","sponsors.0.bioguideId":"H001077","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7541/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7541/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":3,"introducedDate":"2024-03-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7541?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 7541.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nTo extend Federal recognition to the United Houma Nation,\nand for other purposes.\n[Page H822]\n","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2024-07-09T18:13:52Z"}} +{"type":"node","id":"354","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7540/text?format=json","updateDate":"2024-07-09T18:13:35Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Greene","sponsors.0.isByRequest":"N","request.billNumber":"7540","sponsors.0.url":"https://api.congress.gov/v3/member/G000596?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7540/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7540/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Matthew Lawrence Perna Act of 2024","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"7540","request.format":"json","sponsors.0.middleName":"Taylor","latestAction_actionDate":"2024-03-05","sponsors.0.bioguideId":"G000596","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7540/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7540/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Greene, Marjorie Taylor [R-GA-14]","titles.count":3,"introducedDate":"2024-03-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7540?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. GREENE of Georgia:\nH.R. 7540.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, United States Constitution\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to provide\nprotections for nonviolent political protesters, and for\nother purposes.\n[Page H822]\n","sponsors.0.district":14,"sponsors.0.firstName":"Marjorie","updateDateIncludingText":"2024-07-09T18:13:35Z"}} +{"type":"node","id":"355","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7548/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"7548","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7548/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7548/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Small Business Transportation Investment Act of 2024","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"7548","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-03-05","sponsors.0.bioguideId":"M001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7548/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7548/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":3,"introducedDate":"2024-03-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7548?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 7548.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTransportation\n[Page H823]\n","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"356","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7529/text?format=json","updateDate":"2024-06-11T15:52:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sarbanes","sponsors.0.isByRequest":"N","request.billNumber":"7529","sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7529/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Chesapeake Bay Gateways and Watertrails Network Reauthorization Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"7529","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7529/cosponsors?format=json","sponsors.0.bioguideId":"S001168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7529/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7529/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7529/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7529?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 7529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nPublic Lands\n[Page H822]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-06-11T15:52:15Z"}} +{"type":"node","id":"357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7552/text?format=json","updateDate":"2024-07-24T15:19:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"7552","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7552/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7552/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"RECOGNIZING Judea and Samaria Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"7552","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7552/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7552/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7552/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2024-03-05","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7552?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 7552.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis bill requires federal materials to use the term\n``Judea and Samaria'' instead of ``West Bank'' and makes\nconforming changes to existing law.\n[Page H823]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2024-07-24T15:19:01Z"}} +{"type":"node","id":"358","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7553/text?format=json","updateDate":"2024-07-09T18:13:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"7553","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7553/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7553/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Ensuring States Support Law Enforcement Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"7553","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-03-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7553/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7553/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7553/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7553?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 7553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill conditions Byrne JAG grants on state DMVs sharing\ninformation with the Department of Homeland Security\n[Page H823]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2024-07-09T18:13:26Z"}} +{"type":"node","id":"359","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7519/text?format=json","updateDate":"2024-06-11T15:47:53Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Schweikert","sponsors.0.isByRequest":"N","request.billNumber":"7519","sponsors.0.url":"https://api.congress.gov/v3/member/S001183?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7519/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7519/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To authorize a temporary increase in the permitted use of certain homeland security grants, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"7519","request.format":"json","latestAction_actionDate":"2024-03-02","sponsors.0.bioguideId":"S001183","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7519/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7519/actions?format=json","latestAction.actionDate":"2024-03-02","textVersions.count":1,"sponsors.0.fullName":"Rep. Schweikert, David [R-AZ-1]","titles.count":2,"introducedDate":"2024-03-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7519?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHWEIKERT:\nH.R. 7519.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Consititution:\n[The Congress shall have Power . . .] To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo authorize a temporary increase in the permitted use of\ncertain homeland security grants.\n[Page H781]\n","sponsors.0.district":1,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-06-11T15:47:53Z"}} +{"type":"node","id":"360","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"CALVERT","cboCostEstimates.0.pubDate":"2024-02-06T20:07:00Z","sponsors.0.isByRequest":"N","latestAction_text":"On motion to suspend the rules and pass the bill Failed by the Yeas and Nays: (2/3 required): 250 - 180 (Roll no. 38).","policyArea.name":"Economics and Public Finance","type":"HR","latestAction.text":"On motion to suspend the rules and pass the bill Failed by the Yeas and Nays: (2/3 required): 250 - 180 (Roll no. 38).","sponsors.0.party":"R","number":"7217","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7217/cosponsors?format=json","sponsors.0.bioguideId":"C000059","actions.url":"https://api.congress.gov/v3/bill/118/hr/7217/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7217/relatedbills?format=json","sponsors.0.fullName":"Rep. Calvert, Ken [R-CA-41]","titles.count":3,"cosponsors.count":60,"request.contentType":"application/json","latestAction_actionTime":"18:55:23","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7217/text?format=json","updateDate":"2024-07-24T15:19:19Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":11,"request.billNumber":"7217","sponsors.0.url":"https://api.congress.gov/v3/member/C000059?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7217/subjects?format=json","title":"Israel Security Supplemental Appropriations Act, 2024","cboCostEstimates.0.description":"As introduced in the House of Representatives on February 5, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59944","cosponsors.countIncludingWithdrawnCosponsors":60,"request.format":"json","latestAction_actionDate":"2024-02-06","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7217/summaries?format=json","cboCostEstimates.0.title":"H.R. 7217, Israel Security Supplemental Appropriations Act, 2024","latestAction.actionTime":"18:55:23","introducedDate":"2024-02-05","subjects.count":21,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7217?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 20 (Monday, February 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CALVERT:\nH.R. 7217.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 9, Clause 7:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law; and a regular\nStatement and Account of the Receipts and Expenditures of all\npublic Money shall be published from time to time.''\nThe single subject of this legislation is:\nMaking emergency supplemental appropriations to respond to\nthe attacks in Israel.\n[Page H431]\n","sponsors.0.district":41,"sponsors.0.firstName":"KEN","updateDateIncludingText":"2024-07-24T15:19:19Z"}} +{"type":"node","id":"361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7243/text?format=json","updateDate":"2024-10-22T17:13:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"7243","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7243/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7243/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Border Security State Reimbursement Act","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","sponsors.0.party":"R","number":"7243","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7243/cosponsors?format=json","sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7243/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7243/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7243?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 7243.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo ensure reimbursements for states that take measures to\nsecure the border\n[Page H503]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-10-22T17:13:49Z"}} +{"type":"node","id":"362","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7245/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Goldman","sponsors.0.isByRequest":"N","request.billNumber":"7245","sponsors.0.url":"https://api.congress.gov/v3/member/G000599?format=json","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7245/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7245/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"To provide supplemental appropriations for fiscal year 2024, and for other purposes.","latestAction.text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"7245","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7245/cosponsors?format=json","sponsors.0.bioguideId":"G000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7245/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7245/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7245/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7245/relatedbills?format=json","sponsors.0.fullName":"Rep. Goldman, Daniel S. [D-NY-10]","titles.count":2,"introducedDate":"2024-02-06","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7245?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDMAN of New York:\nH.R. 7245.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8\nThe single subject of this legislation is:\nLegislating\n[Page H503]\n","sponsors.0.district":10,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:19:08Z"}} +{"type":"node","id":"363","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7262/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Slotkin","sponsors.0.isByRequest":"N","request.billNumber":"7262","sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7262/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Closing the Workforce Gap Act of 2024","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"7262","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7262/cosponsors?format=json","sponsors.0.bioguideId":"S001208","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7262/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7262/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7262/relatedbills?format=json","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7262?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 7262.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill would strengthen the H-2B guest worker visa\nprogram by updating the H-2B visa cap so that it is tied to\nthe number of labor certifications that the Department of\nLabor approved in the previous fiscal year and exempt\nseasonal and rural locations from the annual H-2B visa cap.\n[Page H503]\n","sponsors.0.district":7,"sponsors.0.firstName":"Elissa","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"364","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7255/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hageman","sponsors.0.isByRequest":"N","request.billNumber":"7255","sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7255/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7255/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"GRANT Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"7255","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7255/cosponsors?format=json","sponsors.0.bioguideId":"H001096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7255/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7255/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7255?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 7255.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nGrant Transparency and Accountability\n[Page H503]\n","sponsors.0.firstName":"Harriet","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7246/text?format=json","updateDate":"2024-11-26T19:51:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Alford","sponsors.0.isByRequest":"N","request.billNumber":"7246","sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7246/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7246/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"American Land and Property Protection Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"7246","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7246/cosponsors?format=json","sponsors.0.bioguideId":"A000379","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7246/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7246/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7246/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7246?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 7246.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8: The Congress shall have Power To lay and collect\nTaxes, Duties, Imposts and Excises, to pay the Debts and\nprovide for the common Defence\nThe single subject of this legislation is:\nProtection of U.S. homeland public and private real estate\n[Page H503]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-11-26T19:51:21Z"}} +{"type":"node","id":"366","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7261/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"7261","sponsors.0.url":"https://api.congress.gov/v3/member/S001157?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7261/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7261/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Reimagining Inclusive Arts Education Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"7261","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7261/cosponsors?format=json","sponsors.0.bioguideId":"S001157","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7261/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7261/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","sponsors.0.fullName":"Rep. Scott, David [D-GA-13]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":18,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7261?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVID SCOTT of Georgia:\nH.R. 7261.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo lay and collect Taxes, Duties, Imposts, and Excises, to\npay the Debts, and provide for the common Defense and general\nWelfare of the United States; but all Duties, Imposts and\nExcises shall be uniform throughout the United States.\nThe single subject of this legislation is:\nArt Education\n[Page H503]\n","sponsors.0.district":13,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"367","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7247/text?format=json","updateDate":"2024-09-25T19:48:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"7247","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7247/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7247/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Ensuring Diverse Leadership Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"7247","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7247/cosponsors?format=json","sponsors.0.bioguideId":"B001281","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7247/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7247/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7247/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7247?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 7247.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution\nThe single subject of this legislation is:\nFinancial Services\n[Page H503]\n","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2024-09-25T19:48:26Z"}} +{"type":"node","id":"368","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7250/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cartwright","sponsors.0.isByRequest":"N","request.billNumber":"7250","sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7250/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7250/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Strengthening Educator Workforce Data Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"7250","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7250/cosponsors?format=json","sponsors.0.bioguideId":"C001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7250/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7250/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7250/relatedbills?format=json","sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7250?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 7250.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 (relating to the power of\nCongress to regulate Commerce with foreign Nations, and among\nthe several States, and with the Indian Tribes.)\nThe single subject of this legislation is:\nTo strengthen Federal data collection regarding the teacher\nand principal workforce.\n[Page H503]\n","sponsors.0.district":8,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"369","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7253/text?format=json","relatedBills.count":1,"updateDate":"2024-07-30T14:44:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Deluzio","sponsors.0.isByRequest":"N","request.billNumber":"7253","sponsors.0.url":"https://api.congress.gov/v3/member/D000530?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7253/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7253/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Best Price for Our Military Act of 2024","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"7253","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7253/cosponsors?format=json","sponsors.0.bioguideId":"D000530","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7253/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7253/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7253/relatedbills?format=json","sponsors.0.fullName":"Rep. Deluzio, Christopher R. [D-PA-17]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7253?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DELUZIO:\nH.R. 7253.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nArmed Services\n[Page H503]\n","sponsors.0.district":17,"sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-07-30T14:44:40Z"}} +{"type":"node","id":"370","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7259/text?format=json","updateDate":"2024-07-24T15:19:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"7259","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7259/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7259/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"SEND THEM BACK Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"7259","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7259/cosponsors?format=json","sponsors.0.bioguideId":"O000175","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7259/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7259/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7259?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 7259.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo deport any illegal alien who entered the United States\non or since January 20, 2021.\n[Page H503]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-07-24T15:19:17Z"}} +{"type":"node","id":"371","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7244/text?format=json","relatedBills.count":1,"updateDate":"2025-02-22T01:21:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Chu","sponsors.0.isByRequest":"N","request.billNumber":"7244","sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7244/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7244/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"End Tax Breaks for Dark Money Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"7244","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7244/cosponsors?format=json","sponsors.0.bioguideId":"C001080","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7244/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7244/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7244/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7244/relatedbills?format=json","sponsors.0.fullName":"Rep. Chu, Judy [D-CA-28]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":20,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7244?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 7244.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nEnd tax breaks for dark money.\n[Page H503]\n","sponsors.0.district":28,"sponsors.0.firstName":"Judy","updateDateIncludingText":"2025-02-22T01:21:13Z"}} +{"type":"node","id":"372","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7249/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T20:38:02Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"7249","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on the Budget, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7249/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7249/committees?format=json","policyArea.name":"Congress","type":"HR","title":"SUBMIT IT Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on the Budget, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"7249","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7249/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7249/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7249/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7249/actions?format=json","latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7249/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7249?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 7249.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 and Article I Section 9, Clause 7\nThe single subject of this legislation is:\nRequires the President to submit the yearly budget and\nNational Security Strategy before being invited to give a\nState of the Union Address.\n[Page H503]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2024-12-16T20:38:02Z"}} +{"type":"node","id":"373","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7252/text?format=json","relatedBills.count":1,"updateDate":"2024-10-26T08:05:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"7252","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7252/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7252/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Child and Dependent Care Tax Credit Enhancement Act of 2024","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"7252","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7252/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7252/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7252/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7252/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7252/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7252?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 7252.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is.\nchild care\n[Page H503]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2024-10-26T08:05:33Z"}} +{"type":"node","id":"374","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7263/text?format=json","updateDate":"2024-07-24T15:19:12Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Titus","sponsors.0.isByRequest":"N","request.billNumber":"7263","sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7263/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7263/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"VISITOR Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"7263","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7263/cosponsors?format=json","sponsors.0.bioguideId":"T000468","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7263/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7263/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7263?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 7263.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo authorize amounts collected in certain visa fees to be\nmade available to reduce visa wait times, and for other\npurposes.\n[Page H503]\n","sponsors.0.district":1,"sponsors.0.firstName":"Dina","updateDateIncludingText":"2024-07-24T15:19:12Z"}} +{"type":"node","id":"375","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7260/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sablan","sponsors.0.isByRequest":"N","request.billNumber":"7260","sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7260/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7260/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Northern Mariana Islands and American Samoa College Access Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"7260","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7260/cosponsors?format=json","sponsors.0.bioguideId":"S001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7260/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7260/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MP","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7260?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 7260.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nExpanding access to postsecondary education\n[Page H503]\n","sponsors.0.firstName":"Gregorio","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"376","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Wittman","cboCostEstimates.0.pubDate":"2023-11-20T19:28:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Animals","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4051","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4051/cosponsors?format=json","sponsors.0.bioguideId":"W000804","actions.url":"https://api.congress.gov/v3/bill/118/hr/4051/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-02-06","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":7,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-368","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4051/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":18,"request.billNumber":"4051","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4051/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4051/committees?format=json","title":"Supporting the Health of Aquatic systems through Research Knowledge and Enhanced Dialogue Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on September 20, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59777","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-02-06","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/368?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4051/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4051/summaries?format=json","cboCostEstimates.0.title":"H.R. 4051, SHARKED Act","introducedDate":"2023-06-12","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4051?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 4051.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProtection of Recreational Fishing from Shark encounters.\n[Page H2811]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"377","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Walberg","cboCostEstimates.0.pubDate":"2024-01-23T21:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"443","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/443/cosponsors?format=json","sponsors.0.bioguideId":"W000798","actions.url":"https://api.congress.gov/v3/bill/118/hr/443/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":4,"sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-355","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/443/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"443","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/443/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/443/committees?format=json","title":"Enhancing Detection of Human Trafficking Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on January 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59912","request.format":"json","latestAction_actionDate":"2024-02-06","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/355?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/443/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/443/summaries?format=json","cboCostEstimates.0.title":"H.R. 443, Enhancing Detection of Human Trafficking Act","introducedDate":"2023-01-20","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/443?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 443.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\n[Page H252]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"378","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6609/text?format=json","updateDate":"2024-12-10T17:47:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Waltz","cboCostEstimates.0.pubDate":"2024-03-29T16:27:00Z","sponsors.0.isByRequest":"N","request.billNumber":"6609","sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6609/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6609/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"TIGER Act","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","sponsors.0.party":"R","number":"6609","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60015","request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6609/cosponsors?format=json","sponsors.0.bioguideId":"W000823","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6609/titles?format=json","cboCostEstimates.0.title":"H.R. 6609, Foreign Military Sales Technical, Industrial, and Governmental Engagement for Readiness Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/6609/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","titles.count":4,"introducedDate":"2023-12-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6609?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 6609.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, ``The Congress Shall have Power . . . To\nregulate Commerce with foreign Nations, and among the several\nStates, and with the Indian Tribes;''\nThe single subject of this legislation is:\nForeign Military Sales\n[Page H6145]\n","sponsors.0.district":6,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-10T17:47:40Z"}} +{"type":"node","id":"379","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6678/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T04:56:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":19,"sponsors.0.lastName":"McClintock","sponsors.0.isByRequest":"N","request.billNumber":"6678","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6678/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6678/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Consequences for Social Security Fraud Act","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"6678","request.format":"json","latestAction_actionDate":"2024-02-05","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/356?format=json","amendments.count":2,"sponsors.0.bioguideId":"M001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6678/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6678/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6678/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6678/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-02-05","sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/6678/amendments?format=json","titles.count":6,"introducedDate":"2023-12-07","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6678?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 202 (Thursday, December 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 6678.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 4\nThe single subject of this legislation is:\nImmigration\n[Page H6741]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-11-09T04:56:51Z","committeeReports.0.citation":"H. Rept. 118-356"}} +{"type":"node","id":"380","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7011/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ciscomani","sponsors.0.isByRequest":"N","request.billNumber":"7011","sponsors.0.url":"https://api.congress.gov/v3/member/C001133?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7011/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7011/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the facility of the United States Postal Service located at 209 Main Street in Duncan, Arizona, as the \"Sandra Day O'Connor Post Office\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"7011","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-01-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7011/cosponsors?format=json","sponsors.0.bioguideId":"C001133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7011/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7011/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7011/actions?format=json","latestAction.actionDate":"2024-01-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Ciscomani, Juan [R-AZ-6]","titles.count":2,"introducedDate":"2024-01-17","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7011?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 9 (Wednesday, January 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CISCOMANI:\nH.R. 7011.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo designate one post office\n[Page H188]\n","sponsors.0.district":6,"sponsors.0.firstName":"Juan","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"381","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Kim","cboCostEstimates.0.pubDate":"2023-03-13T17:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"540","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/540/cosponsors?format=json","sponsors.0.bioguideId":"K000397","actions.url":"https://api.congress.gov/v3/bill/118/hr/540/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-16","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":6,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-293","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/540/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"540","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/540/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/540/subjects?format=json","title":"Taiwan Non-Discrimination Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58991","request.format":"json","latestAction_actionDate":"2024-01-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/293?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/540/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/540/summaries?format=json","cboCostEstimates.0.title":"H.R. 540, Taiwan Non-Discrimination Act of 2023","introducedDate":"2023-01-26","subjects.count":11,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/540?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 540.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to pursue more\nequitable treatment of Taiwan at the international financial\ninstitutions, and for other purposes.\n[Page H429]\n","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"382","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Meuser","cboCostEstimates.0.pubDate":"2023-03-10T21:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"839","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/839/cosponsors?format=json","sponsors.0.bioguideId":"M001204","actions.url":"https://api.congress.gov/v3/bill/118/hr/839/actions?format=json","latestAction.actionDate":"2024-01-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/839/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-291","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/839/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"839","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/839/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/839/subjects?format=json","title":"China Exchange Rate Transparency Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58993","request.format":"json","latestAction_actionDate":"2024-01-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/291?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/839/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/839/summaries?format=json","cboCostEstimates.0.title":"H.R. 839, China Exchange Rate Transparency Act of 2023","introducedDate":"2023-02-06","subjects.count":4,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/839?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 839.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo require the United States Executive Director at the\nInternational Monetary Fund to advocate for increased\ntransparency with respect to exchange rate policies of the\nPeople's Republic of China, and for other purposes.\n[Page H710]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"383","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"WATERS","cboCostEstimates.0.pubDate":"2023-08-07T19:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"4768","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4768/cosponsors?format=json","sponsors.0.bioguideId":"W000187","actions.url":"https://api.congress.gov/v3/bill/118/hr/4768/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-16","sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-327","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4768/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"4768","sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4768/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4768/committees?format=json","title":"No Russian Agriculture Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on July 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59438","request.format":"json","latestAction_actionDate":"2024-01-16","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/327?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4768/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4768/summaries?format=json","cboCostEstimates.0.title":"H.R. 4768, No Russian Agriculture Act","introducedDate":"2023-07-20","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4768?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 4768.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to instruct the\nUnited States Executive Directors at the international\nfinancial institutions to advocate for investment in projects\nthat decrease reliance on Russia for agricultural\ncommodities.\n[Page H3889]\n","sponsors.0.district":43,"sponsors.0.firstName":"MAXINE","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"384","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6370/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":20,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"6370","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6370/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"OFAC Licensure for Investigators Act","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"6370","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-16","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/341?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6370/cosponsors?format=json","sponsors.0.bioguideId":"B001281","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6370/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-16","sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":6,"introducedDate":"2023-11-13","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6370?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 187 (Monday, November 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 6370.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution\nThe single subject of this legislation is:\nNational Security\n[Page H5729]\n","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2025-01-14T18:20:21Z","committeeReports.0.citation":"H. Rept. 118-341"}} +{"type":"node","id":"385","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"LUCAS","cboCostEstimates.0.pubDate":"2023-03-07T17:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"803","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/803/cosponsors?format=json","sponsors.0.bioguideId":"L000491","actions.url":"https://api.congress.gov/v3/bill/118/hr/803/actions?format=json","latestAction.actionDate":"2024-01-16","textVersions.count":4,"sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","titles.count":9,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-286","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/803/text?format=json","updateDate":"2025-01-17T03:06:27Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":20,"request.billNumber":"803","sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/803/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/803/subjects?format=json","title":"PROTECT Taiwan Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58973","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-01-16","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/286?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/803/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/803/summaries?format=json","cboCostEstimates.0.title":"H.R. 803, Pressure Regulatory Organizations to End Chinese Threats to Taiwan Act","introducedDate":"2023-02-02","subjects.count":8,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/803?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 803.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTaiwan relations\n[Page H682]\n","sponsors.0.district":3,"sponsors.0.firstName":"FRANK","updateDateIncludingText":"2025-01-17T03:06:27Z"}} +{"type":"node","id":"386","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Gooden","cboCostEstimates.0.pubDate":"2023-08-24T20:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Law","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"788","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/788/cosponsors?format=json","sponsors.0.bioguideId":"G000589","actions.url":"https://api.congress.gov/v3/bill/118/hr/788/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/788/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-16","sponsors.0.fullName":"Rep. Gooden, Lance [R-TX-5]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/788/amendments?format=json","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-339","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/788/text?format=json","updateDate":"2024-11-09T04:56:53Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":22,"request.billNumber":"788","sponsors.0.url":"https://api.congress.gov/v3/member/G000589?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/788/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/788/committees?format=json","title":"Stop Settlement Slush Funds Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\n June 14, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59520","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2024-01-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/339?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/788/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/788/summaries?format=json","cboCostEstimates.0.title":"H.R. 788, Stop Settlement Slush Funds Act of 2023","introducedDate":"2023-02-02","subjects.count":9,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/788?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOODEN of Texas:\nH.R. 788.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill rests is\nthe power of Congress to lay and collect taxes, duties,\nimposts, and excises to pay the debts and provide for the\ncommon Defefense and general welfare of the United States, as\nenumerated in Article I, Section 8, Clause 1. Thus, Congress\nhas the authority not only to increase taxes, but also, to\nreduce taxes to promote the general welfare of the United\nStates of America and her citizens. Additionally Congress has\nthe\nThe single subject of this legislation is:\nThis bill would codify a prior ban on legal settlements\nfrom the Justice Department that involve payouts to third-\nparty groups, ensuring monies only go to affected parties or\nto the Treasury.\n[Page H682]\n","sponsors.0.district":5,"sponsors.0.firstName":"Lance","updateDateIncludingText":"2024-11-09T04:56:53Z"}} +{"type":"node","id":"387","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6999/text?format=json","updateDate":"2024-06-11T15:46:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"6999","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6999/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6999/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Holding Prosecutors Accountable Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"6999","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-01-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6999/cosponsors?format=json","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6999/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6999/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-16","sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2024-01-16","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6999?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 6999.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution Article 1 Section 8\nThe single subject of this legislation is:\nHolding prosecutors accountable via reporting requirements\nand grant eligibility.\n[Page H148]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-06-11T15:46:42Z"}} +{"type":"node","id":"388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6996/text?format=json","updateDate":"2024-07-24T15:19:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Golden","sponsors.0.isByRequest":"N","request.billNumber":"6996","sponsors.0.url":"https://api.congress.gov/v3/member/G000592?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6996/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6996/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Block Foreign-Funded Political Ads Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"6996","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-01-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6996/cosponsors?format=json","sponsors.0.bioguideId":"G000592","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6996/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6996/actions?format=json","latestAction.actionDate":"2024-01-16","textVersions.count":1,"sponsors.0.fullName":"Rep. Golden, Jared F. [D-ME-2]","titles.count":3,"introducedDate":"2024-01-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6996?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDEN of Maine:\nH.R. 6996.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 1 of section 4 of article I of the Constitution.\nThe single subject of this legislation is:\nTo amend the Federal Election Campaign Act of 1971 to\nrequire broadcasting stations, providers of cable and\nsatellite television, and online platforms to make reasonable\nefforts to ensure that political advertisements are not\npurchased by a foreign national.\n[Page H148]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2024-07-24T15:19:24Z"}} +{"type":"node","id":"389","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7000/text?format=json","relatedBills.count":1,"updateDate":"2024-09-10T14:53:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steil","sponsors.0.isByRequest":"N","request.billNumber":"7000","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7000/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7000/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Business of Insurance Regulatory Reform Act of 2024","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"7000","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7000/cosponsors?format=json","sponsors.0.bioguideId":"S001213","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7000/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7000/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7000/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7000/relatedbills?format=json","sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":3,"introducedDate":"2024-01-16","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7000?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEIL:\nH.R. 7000.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution:\n``To regulate commerce with foreign nations, and among the\nseveral states, and with the Indian tribes . . .''\nThe single subject of this legislation is:\nTo clarify that the Consumer Financial Protection Bureau\nmay not exert its authority over the business of insurance.\n[Page H148]\n","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2024-09-10T14:53:21Z"}} +{"type":"node","id":"390","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6998/text?format=json","updateDate":"2024-07-24T15:19:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mann","sponsors.0.isByRequest":"N","request.billNumber":"6998","sponsors.0.url":"https://api.congress.gov/v3/member/M000871?format=json","latestAction_text":"Referred to the House Committee on Small Business.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6998/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6998/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"FAITH in Small Business Act","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"6998","request.format":"json","latestAction_actionDate":"2024-01-16","sponsors.0.bioguideId":"M000871","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6998/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6998/actions?format=json","latestAction.actionDate":"2024-01-16","textVersions.count":1,"sponsors.0.fullName":"Rep. Mann, Tracey [R-KS-1]","titles.count":4,"introducedDate":"2024-01-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6998?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MANN:\nH.R. 6998.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following--Article 1, Section 8 of the U.S.\nConstitution.\nThe single subject of this legislation is:\nTo ensure equal treatment for certain faith-based\norganizations in certain Small Business Administration\nprograms.\n[Page H148]\n","sponsors.0.district":1,"sponsors.0.firstName":"Tracey","updateDateIncludingText":"2024-07-24T15:19:24Z"}} +{"type":"node","id":"391","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6995/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:19:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"6995","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6995/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6995/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Funding A Secure America Act","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"R","number":"6995","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-01-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6995/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6995/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6995/actions?format=json","latestAction.actionDate":"2024-01-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6995/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2024-01-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6995?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 6995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to make continuing\nappropriations for certain federal personnel in the event of\na Government shutdown during Fiscal Year 2024.\n[Page H148]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:19:26Z"}} +{"type":"node","id":"392","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6982/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:45:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Salinas","sponsors.0.isByRequest":"N","request.billNumber":"6982","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6982/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6982/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Gambling Addiction, Recovery, Investment, and Treatment Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6982","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6982/cosponsors?format=json","sponsors.0.bioguideId":"S001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6982/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6982/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6982/relatedbills?format=json","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":3,"introducedDate":"2024-01-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6982?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 6982.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article 1, Section 8, Clause 3\nThe single subject of this legislation is:\nGambling Addiction\n[Page H108]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2024-09-18T16:27:12Z"}} +{"type":"node","id":"393","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6977/text?format=json","updateDate":"2024-06-11T15:44:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NADLER","sponsors.0.isByRequest":"N","request.billNumber":"6977","sponsors.0.url":"https://api.congress.gov/v3/member/N000002?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6977/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6977/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Independent Drug Value Assessment Act of 2024","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6977","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-01-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6977/cosponsors?format=json","sponsors.0.bioguideId":"N000002","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6977/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6977/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-12","sponsors.0.fullName":"Rep. Nadler, Jerrold [D-NY-12]","titles.count":3,"introducedDate":"2024-01-11","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6977?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NADLER:\nH.R. 6977.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHealth\n[Page H108]\n","sponsors.0.district":12,"sponsors.0.firstName":"JERROLD","updateDateIncludingText":"2024-06-11T15:44:58Z"}} +{"type":"node","id":"394","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6968/text?format=json","updateDate":"2024-06-11T15:45:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Harder","sponsors.0.isByRequest":"N","request.billNumber":"6968","sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6968/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6968/committees?format=json","policyArea.name":"Health","type":"HR","title":"Bringing More Therapists to the Valley Act of 2024","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6968","request.format":"json","latestAction_actionDate":"2024-01-12","sponsors.0.bioguideId":"H001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6968/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6968/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","titles.count":3,"introducedDate":"2024-01-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6968?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 6968.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo direct the Secretary of Health and Human Services to\ngive marriage and family therapists participating in the\nNational Health Service Corps Loan Repayment Program the\noption of completing a postgraduate degree clinical training\nprogram that is accredited by the State in which the program\nis located in lieu of such a program that is accredited by\nthe Commission on Accreditation for Marriage and Family\nTherapy Education.\n[Page H108]\n","sponsors.0.district":9,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2024-06-11T15:45:05Z"}} +{"type":"node","id":"395","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6966/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:45:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Gallagher","sponsors.0.isByRequest":"N","request.billNumber":"6966","sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6966/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6966/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Go Pack Go Act of 2024","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"6966","request.format":"json","latestAction_actionDate":"2024-01-12","sponsors.0.bioguideId":"G000579","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6966/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6966/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6966/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-12","sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","titles.count":3,"introducedDate":"2024-01-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6966?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 6966.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo increase access to local media markets for\nWisconsinites.\n[Page H107]\n","sponsors.0.district":8,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-06-11T15:45:05Z"}} +{"type":"node","id":"396","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6963/text?format=json","updateDate":"2024-06-11T15:44:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"ESHOO","sponsors.0.isByRequest":"N","request.billNumber":"6963","sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6963/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6963/committees?format=json","policyArea.name":"Health","type":"HR","title":"Pediatric Cancer Drug Supply Act of 2024","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6963","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2024-01-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6963/cosponsors?format=json","sponsors.0.bioguideId":"E000215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6963/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6963/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-16]","titles.count":3,"introducedDate":"2024-01-11","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6963?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 6963.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\nThe single subject of this legislation is:\nHealthcare.\n[Page H107]\n","sponsors.0.district":16,"sponsors.0.firstName":"ANNA","updateDateIncludingText":"2024-06-11T15:44:57Z"}} +{"type":"node","id":"397","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6956/text?format=json","updateDate":"2024-06-11T15:45:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"KAPTUR","sponsors.0.isByRequest":"N","request.billNumber":"6956","sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6956/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6956/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Opioid Settlement Accountability Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6956","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6956/cosponsors?format=json","sponsors.0.bioguideId":"K000009","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6956/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6956/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6956/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","titles.count":3,"introducedDate":"2024-01-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6956?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section VIII, to regulate commerce\nThe single subject of this legislation is:\nCommerce\n[Page H107]\n","sponsors.0.district":9,"sponsors.0.firstName":"MARCY","updateDateIncludingText":"2024-06-11T15:45:07Z"}} +{"type":"node","id":"398","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6945/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T08:05:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"6945","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6945/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6945/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Consistent Egg Labels Act of 2024","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"6945","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-01-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6945/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6945/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6945/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6945/relatedbills?format=json","sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":3,"introducedDate":"2024-01-10","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6945?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 5 (Wednesday, January 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 6945.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo require enforcement against misbranded egg alternatives.\n[Page H52]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2024-06-12T08:05:58Z"}} +{"type":"node","id":"399","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6928/text?format=json","updateDate":"2024-10-26T08:05:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Trone","sponsors.0.isByRequest":"N","request.billNumber":"6928","sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6928/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6928/subjects?format=json","policyArea.name":"Health","type":"HR","title":"CONNECT Act of 2024","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6928","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6928/cosponsors?format=json","sponsors.0.bioguideId":"T000483","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6928/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6928/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6928/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","titles.count":4,"introducedDate":"2024-01-09","cosponsors.count":32,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6928?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\n[Pages H13-H14]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 6928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[[Page H14]]\nThe single subject of this legislation is:\nTo improve follow-up crisis care and mental health\noutcomes.\n","sponsors.0.district":6,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-10-26T08:05:39Z"}} +{"type":"node","id":"400","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6725/text?format=json","relatedBills.count":1,"updateDate":"2025-01-02T21:15:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Levin","sponsors.0.isByRequest":"N","request.billNumber":"6725","sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6725/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6725/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"TIER Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"6725","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6725/cosponsors?format=json","sponsors.0.bioguideId":"L000593","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6725/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6725/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6725/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-12","sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","titles.count":4,"introducedDate":"2023-12-12","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6725?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 204 (Tuesday, December 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN:\nH.R. 6725.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nMilitary transition\n[Page H6860]\n","sponsors.0.district":49,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-02T21:15:28Z"}} +{"type":"node","id":"401","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6723/text?format=json","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"6723","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6723/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"To reaffirm the applicability of the Act of June 18, 1934, to the Samish Indian Nation, and for other purposes.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"6723","request.format":"json","latestAction_actionDate":"2023-12-12","summaries.count":1,"sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6723/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6723/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-12","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":2,"introducedDate":"2023-12-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6723?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 204 (Tuesday, December 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 6723.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: ``[The Congress shall have\nthe power . . .] To make all Laws which shall be necessary\nand proper for carrying into Execution the foregoing Powers,\nand all other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nTribal Issues\n[Page H6860]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-07-24T15:19:34Z"}} +{"type":"node","id":"402","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6729/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moylan","sponsors.0.isByRequest":"N","request.billNumber":"6729","sponsors.0.url":"https://api.congress.gov/v3/member/M001219?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6729/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6729/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Allied Partnership and Port Modernization Act","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"R","number":"6729","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2023-12-12","sponsors.0.bioguideId":"M001219","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6729/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6729/actions?format=json","latestAction.actionDate":"2023-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6729/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Del. Moylan, James C. [R-GU-At Large]","titles.count":3,"introducedDate":"2023-12-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GU","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6729?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 204 (Tuesday, December 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOYLAN:\nH.R. 6729.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article one of the United States Constitution\nCongress has the power to enact this legislation.\nThe single subject of this legislation is:\nTo permit the use of NATO and major non-NATO ally dredge\nships in the United States.\n[Page H6860]\n","sponsors.0.firstName":"James","updateDateIncludingText":"2024-07-24T15:19:34Z"}} +{"type":"node","id":"403","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6720/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T20:35:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Budzinski","sponsors.0.isByRequest":"N","request.billNumber":"6720","sponsors.0.url":"https://api.congress.gov/v3/member/B001315?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6720/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6720/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"To direct the Secretary of Agriculture to establish a grocery, farm, and food worker stabilization grant program.","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"D","number":"6720","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6720/cosponsors?format=json","sponsors.0.bioguideId":"B001315","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6720/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6720/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6720/actions?format=json","latestAction.actionDate":"2023-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6720/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Budzinski, Nikki [D-IL-13]","titles.count":2,"introducedDate":"2023-12-12","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6720?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 204 (Tuesday, December 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUDZINSKI:\nH.R. 6720.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo provide a disaster relief program for grocery, farm, and\nfood workers\n[Page H6860]\n","sponsors.0.district":13,"sponsors.0.firstName":"Nikki","updateDateIncludingText":"2024-12-16T20:35:54Z"}} +{"type":"node","id":"404","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6637/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"6637","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H6825)","committees.url":"https://api.congress.gov/v3/bill/118/hr/6637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6637/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Love Them Both Act of 2023","latestAction.text":"Sponsor introductory remarks on measure. (CR H6825)","sponsors.0.party":"R","number":"6637","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6637/cosponsors?format=json","sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6637/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-12","sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":3,"introducedDate":"2023-12-06","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6637?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 201 (Wednesday, December 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 6637.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nLabor\n[Page H6209]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"405","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6636/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:19:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"6636","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H6825)","committees.url":"https://api.congress.gov/v3/bill/118/hr/6636/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6636/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Woman’s Right To Know Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H6825)","sponsors.0.party":"R","number":"6636","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6636/cosponsors?format=json","sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6636/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6636/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6636/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6636/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-12","sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":3,"introducedDate":"2023-12-06","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6636?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 197 (Thursday, November 30, 2023)]\n[House]\n[Pages H6050-H6051]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 6636.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H6051]]\nArticle 1, Section 8, of the United States Constitution.\nThe single subject of this legislation is:\nHOMES energy rebate program.\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-07-24T15:19:33Z"}} +{"type":"node","id":"406","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6635/text?format=json","updateDate":"2024-07-24T15:19:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"6635","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H6825)","committees.url":"https://api.congress.gov/v3/bill/118/hr/6635/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6635/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Pregnancy Is Not an Illness Act of 2023","latestAction.text":"Sponsor introductory remarks on measure. (CR H6825)","sponsors.0.party":"R","number":"6635","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6635/cosponsors?format=json","sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6635/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6635/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-12","sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":3,"introducedDate":"2023-12-06","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6635?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 201 (Wednesday, December 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 6635.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nLabor\n[Page H6209]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-07-24T15:19:33Z"}} +{"type":"node","id":"407","labels":["Bill"],"properties":{"relatedBills.count":10,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-09-14T19:02:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Health","type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"5378","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5378/cosponsors?format=json","sponsors.0.bioguideId":"M001159","actions.url":"https://api.congress.gov/v3/bill/118/hr/5378/actions?format=json","latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5378/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":4,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"19:13:20","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59825","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5378/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"request.congress":"118","cboCostEstimates.1.pubDate":"2023-12-08T17:09:00Z","actions.count":14,"request.billNumber":"5378","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5378/committees?format=json","title":"Lower Costs, More Transparency Act","cboCostEstimates.1.description":"As posted on the website of the Clerk of the House on December 5, 2023\nhttps://tinyurl.com/h2vpjp8a\n","cboCostEstimates.0.description":"As posted on the website of the Clerk of the House on September 13, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59568","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2023-12-11","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5378/summaries?format=json","cboCostEstimates.0.title":"Estimated Direct Spending and Revenue Effects of H.R. 5378, the Lower Costs, More Transparency Act","latestAction.actionTime":"19:13:20","introducedDate":"2023-09-08","subjects.count":22,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5378?format=json","cboCostEstimates.1.title":"Estimated Direct Spending and Revenue Effects of H.R. 5378, the Lower Costs, More Transparency Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 145 (Friday, September 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 5378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTo lower costs for and improve the health of patients.\n[Page H4231]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"408","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6570/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T04:56:56Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"6570","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 248.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6570/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6570/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Protect Liberty and End Warrantless Surveillance Act of 2023","latestAction.text":"Placed on the Union Calendar, Calendar No. 248.","sponsors.0.party":"R","number":"6570","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2023-12-11","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/307?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6570/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6570/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6570/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6570/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2023-12-04","cosponsors.count":33,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6570?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 6570.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to amend the Foreign\nintelligence Surveillance Act of 1978 to reform certain\nauthorities and to provide greater transparency and\noversight.\n[Page H6110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T04:56:56Z","committeeReports.0.citation":"H. Rept. 118-307"}} +{"type":"node","id":"409","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6691/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bonamici","sponsors.0.isByRequest":"N","request.billNumber":"6691","sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6691/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6691/subjects?format=json","policyArea.name":"Education","type":"HR","title":"New Essential Education Discoveries Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"6691","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6691/cosponsors?format=json","sponsors.0.bioguideId":"B001278","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6691/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6691/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6691/relatedbills?format=json","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6691?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\n[Pages H6814-H6815]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 6691.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[[Page H6815]]\nThe single subject of this legislation is:\nEducation\n","sponsors.0.district":1,"sponsors.0.firstName":"Suzanne","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6714/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"6714","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6714/subjects?format=json","policyArea.name":"Law","type":"HR","title":"To provide remote access to court proceedings for victims of the 1988 Bombing of Pan Am Flight 103 over Lockerbie, Scotland.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"6714","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6714/cosponsors?format=json","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6714/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6714/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6714/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2023-12-11","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6714?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 6714.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nAllows remote access to court proceedings of the alleged\nbombmaker in the December 21, 1988, terror attack on Pan Am\nFlight 103.\n[Page H6815]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:19:35Z"}} +{"type":"node","id":"411","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6703/text?format=json","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"6703","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6703/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6703/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow a nonrefundable credit for certain organized sport equipment expenses.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6703","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"sponsors.0.bioguideId":"L000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6703/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6703/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6703/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-12-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6703?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6703.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H6815]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:19:34Z"}} +{"type":"node","id":"412","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6702/text?format=json","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"6702","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6702/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6702/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow a nonrefundable credit for elementary and secondary school supply expenses.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6702","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6702/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6702/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6702/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6702/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-12-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6702?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6702.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H6815]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-04T09:05:25Z"}} +{"type":"node","id":"413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6701/text?format=json","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"6701","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6701/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6701/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase and adjust for inflation the above-the-line deduction for teachers.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6701","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"sponsors.0.bioguideId":"L000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6701/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6701/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6701/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-12-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6701?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6701.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H6815]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:19:34Z"}} +{"type":"node","id":"414","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6699/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Horsford","sponsors.0.isByRequest":"N","request.billNumber":"6699","sponsors.0.url":"https://api.congress.gov/v3/member/H001066?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6699/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6699/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"End Double Taxation of Successful Consumer Claims Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"6699","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"sponsors.0.bioguideId":"H001066","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6699/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6699/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6699/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6699/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. Horsford, Steven [D-NV-4]","titles.count":3,"introducedDate":"2023-12-11","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6699?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HORSFORD:\nH.R. 6699.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution\nThe single subject of this legislation is:\nThe End Double Taxation of Successful Consumer Claims Act\nchanges tax law so that plaintiffs that win consumer fraud\ncases are not liable for taxes on funds awarded to their\nattorney.\n[Page H6815]\n","sponsors.0.district":4,"sponsors.0.firstName":"Steven","updateDateIncludingText":"2024-07-24T15:19:03Z"}} +{"type":"node","id":"415","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6698/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garamendi","sponsors.0.isByRequest":"N","request.billNumber":"6698","sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6698/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6698/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Impact Aid Infrastructure Partnership Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"6698","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6698/cosponsors?format=json","sponsors.0.bioguideId":"G000559","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6698/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6698/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6698/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6698/relatedbills?format=json","sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6698?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 6698.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nThe bill provides federal-local community partnership\nconstruction funding to local educational agencies eligible\nto receive payments under the Impact Aid program.\n[Page H6815]\n","sponsors.0.district":8,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"416","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6713/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Scanlon","sponsors.0.isByRequest":"N","request.billNumber":"6713","sponsors.0.url":"https://api.congress.gov/v3/member/S001205?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6713/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Corporate Crime Database Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"6713","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6713/cosponsors?format=json","sponsors.0.bioguideId":"S001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6713/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6713/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6713/relatedbills?format=json","sponsors.0.fullName":"Rep. Scanlon, Mary Gay [D-PA-5]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6713?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCANLON:\nH.R. 6713.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo direct the Director of the Bureau of Justice Statistics\nto establish a database with respect to corporate offenses.\n[Page H6815]\n","sponsors.0.district":5,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"417","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6695/text?format=json","updateDate":"2024-07-24T16:45:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Davidson","sponsors.0.isByRequest":"N","request.billNumber":"6695","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6695/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6695/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Due Process Restoration Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"6695","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"sponsors.0.bioguideId":"D000626","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6695/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6695/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","titles.count":3,"introducedDate":"2023-12-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6695?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 6695.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo authorize private parties to compel the Securities and\nExchange Commission to seek sanctions by filing civil\nactions.\n[Page H6815]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2024-07-24T16:45:43Z"}} +{"type":"node","id":"418","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6697/text?format=json","updateDate":"2024-10-09T08:05:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"6697","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6697/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6697/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Advancing Gun Safety Technology Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"6697","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6697/cosponsors?format=json","sponsors.0.bioguideId":"D000623","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6697/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6697/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6697?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 6697.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nAdvancing gun safety technology\n[Page H6815]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-10-09T08:05:40Z"}} +{"type":"node","id":"419","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6696/text?format=json","relatedBills.count":1,"updateDate":"2024-09-05T14:52:20Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"DELAURO","sponsors.0.isByRequest":"N","request.billNumber":"6696","sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6696/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6696/committees?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Eviction Prevention Act of 2023","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"6696","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6696/cosponsors?format=json","sponsors.0.bioguideId":"D000216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6696/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6696/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6696/actions?format=json","latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6696/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6696?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 6696.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nto keep individuals and families housed.\n[Page H6815]\n","sponsors.0.district":3,"sponsors.0.firstName":"ROSA","updateDateIncludingText":"2024-09-05T14:52:20Z"}} +{"type":"node","id":"420","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6397/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Adams","sponsors.0.isByRequest":"N","request.billNumber":"6397","sponsors.0.url":"https://api.congress.gov/v3/member/A000370?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6397/committees?format=json","type":"HR","title":"STAR Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"6397","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6397/cosponsors?format=json","sponsors.0.bioguideId":"A000370","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6397/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6397/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6397/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-20","sponsors.0.fullName":"Rep. Adams, Alma S. [D-NC-12]","titles.count":4,"introducedDate":"2023-11-14","cosponsors.count":6,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6397?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 188 (Tuesday, November 14, 2023)]\n[House]\n[Pages H5855-H5856]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ADAMS:\nH.R. 6397.\n[[Page H5856]]\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nThe Saving Transit Art Resources (STAR) Act addresses the\nlimits on the use of Federal Transit Administration (FTA)\nfunds for the incorporation of art into facilities.\n","sponsors.0.district":12,"sponsors.0.firstName":"Alma","updateDateIncludingText":"2024-07-24T15:19:44Z"}} +{"type":"node","id":"421","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6376/text?format=json","updateDate":"2024-11-09T04:56:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Correa","sponsors.0.isByRequest":"N","request.billNumber":"6376","sponsors.0.url":"https://api.congress.gov/v3/member/C001110?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6376/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6376/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Business Uninterrupted Monetary Program Act of 2023","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"6376","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Luis","latestAction_actionDate":"2023-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6376/cosponsors?format=json","sponsors.0.bioguideId":"C001110","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6376/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6376/actions?format=json","latestAction.actionDate":"2023-11-20","textVersions.count":1,"sponsors.0.fullName":"Rep. Correa, J. Luis [D-CA-46]","titles.count":3,"introducedDate":"2023-11-13","cosponsors.count":2,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6376?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 187 (Monday, November 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CORREA:\nH.R. 6376.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTransportation\n[Page H5729]\n","sponsors.0.district":46,"sponsors.0.firstName":"J.","updateDateIncludingText":"2024-11-09T04:56:47Z"}} +{"type":"node","id":"422","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6375/text?format=json","updateDate":"2024-09-09T15:05:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Comer","sponsors.0.isByRequest":"N","request.billNumber":"6375","sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6375/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6375/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"MARINA Act","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"R","number":"6375","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6375/cosponsors?format=json","sponsors.0.bioguideId":"C001108","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6375/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6375/actions?format=json","latestAction.actionDate":"2023-11-20","textVersions.count":1,"sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","titles.count":4,"introducedDate":"2023-11-13","cosponsors.count":8,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6375?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 187 (Monday, November 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 6375.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nOversight of U.S. Army Corps of Engineers administrative\nfees and lease terms\n[Page H5729]\n","sponsors.0.district":1,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-09-09T15:05:27Z"}} +{"type":"node","id":"423","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"GRANGER","cboCostEstimates.0.pubDate":"2023-11-13T19:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-22.","policyArea.name":"Economics and Public Finance","type":"HR","latestAction.text":"Became Public Law No: 118-22.","sponsors.0.party":"R","number":"6363","amendments.count":1,"sponsors.0.bioguideId":"G000377","laws.0.number":"118-22","actions.url":"https://api.congress.gov/v3/bill/118/hr/6363/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2023-11-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6363/relatedbills?format=json","sponsors.0.fullName":"Rep. Granger, Kay [R-TX-12]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/6363/amendments?format=json","titles.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6363/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":28,"request.billNumber":"6363","sponsors.0.url":"https://api.congress.gov/v3/member/G000377?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6363/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6363/subjects?format=json","title":"Further Continuing Appropriations and Other Extensions Act, 2024","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on November 11, 2023\nhttps://rules.house.gov/bill/118/hr-cr\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59755","request.format":"json","latestAction_actionDate":"2023-11-17","summaries.count":4,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6363/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6363/summaries?format=json","cboCostEstimates.0.title":"H.R. 6363, Further Continuing Appropriations and Other Extensions Act, 2024","introducedDate":"2023-11-13","subjects.count":504,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6363?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 187 (Monday, November 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. GRANGER:\nH.R. 6363.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 9, Clause 7:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law; and a regular\nStatement and Account of the Receipts and Expenditures of all\npublic Money shall be published from time to time.''\nThe single subject of this legislation is:\nMaking further continuing appropriations.\n[Page H5729]\n","sponsors.0.district":12,"sponsors.0.firstName":"KAY","updateDateIncludingText":"2025-02-14T02:41:12Z","laws.0.type":"Public Law"}} +{"type":"node","id":"424","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6433/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Perez","sponsors.0.isByRequest":"N","request.billNumber":"6433","sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6433/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6433/committees?format=json","policyArea.name":"Health","type":"HR","title":"PARA–EMT Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6433","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6433/cosponsors?format=json","sponsors.0.bioguideId":"G000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6433/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6433/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","titles.count":4,"introducedDate":"2023-11-15","cosponsors.count":16,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6433?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PEREZ:\nH.R. 6433.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U. S. Constitution\nThe single subject of this legislation is:\nhealth\n[Page H5894]\n","sponsors.0.district":3,"sponsors.0.firstName":"Marie","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"425","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6429/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"6429","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6429/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6429/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"SCREEN Act","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"R","number":"6429","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6429/cosponsors?format=json","sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6429/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6429/actions?format=json","latestAction.actionDate":"2023-11-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6429/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":4,"introducedDate":"2023-11-15","cosponsors.count":8,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6429?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 6429.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nCommerce\n[Page H5893]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"426","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6412/text?format=json","updateDate":"2024-07-24T15:19:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"6412","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6412/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6412/committees?format=json","policyArea.name":"Health","type":"HR","title":"Down Syndrome Diagnosis Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"6412","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6412/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6412/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6412/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-11-14","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6412?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 188 (Tuesday, November 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 6412.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nHealth care\n[Page H5856]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-07-24T15:19:43Z"}} +{"type":"node","id":"427","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6410/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Luna","sponsors.0.isByRequest":"N","request.billNumber":"6410","sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6410/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6410/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"U.S. Data on U.S. Soil Act","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"R","number":"6410","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6410/cosponsors?format=json","sponsors.0.bioguideId":"L000596","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6410/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6410/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","titles.count":3,"introducedDate":"2023-11-14","cosponsors.count":4,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6410?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 188 (Tuesday, November 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 6410.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nWould prohibit U.S. consumer data from being stored by our\nforeign adversaries.\n[Page H5856]\n","sponsors.0.district":13,"sponsors.0.firstName":"Anna Paulina","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"428","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6388/text?format=json","updateDate":"2024-09-24T08:05:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"6388","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6388/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Friendly Calls for Our Seniors Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"6388","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6388/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6388/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6388/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-17","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-11-13","cosponsors.count":8,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6388?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 187 (Monday, November 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 6388.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nSenior mental health\n[Page H5730]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-09-24T08:05:32Z"}} +{"type":"node","id":"429","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6456/text?format=json","updateDate":"2024-07-24T15:19:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"WATERS","sponsors.0.isByRequest":"N","request.billNumber":"6456","sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6456/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Confronting Police Violence Against Children Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"6456","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6456/cosponsors?format=json","sponsors.0.bioguideId":"W000187","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6456/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6456/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","titles.count":3,"introducedDate":"2023-11-17","cosponsors.count":27,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6456?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 6456.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution.\nThe single subject of this legislation is:\nJustice.\n[Page H5900]\n","sponsors.0.district":43,"sponsors.0.firstName":"MAXINE","updateDateIncludingText":"2024-07-24T15:19:46Z"}} +{"type":"node","id":"430","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6454/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T09:05:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"6454","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6454/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Chemical Tax Repeal Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6454","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6454/cosponsors?format=json","sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6454/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6454/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2023-11-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6454?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 6454.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTax\n[Page H5900]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2024-12-17T09:05:23Z"}} +{"type":"node","id":"431","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6455/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:25Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"VELAZQUEZ","sponsors.0.isByRequest":"N","request.billNumber":"6455","sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6455/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6455/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Climate Displaced Persons Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"6455","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-11-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6455/cosponsors?format=json","sponsors.0.bioguideId":"V000081","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6455/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6455/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6455/relatedbills?format=json","sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","titles.count":3,"introducedDate":"2023-11-17","cosponsors.count":20,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6455?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 6455.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe Congress shall have Power to dispose of and make all\nneedful Rules and Regulations respecting the Territory or\nother Property belonging to the United States; . . .\nThe single subject of this legislation is:\nImmigration\n[Page H5900]\n","sponsors.0.district":7,"sponsors.0.firstName":"NYDIA","updateDateIncludingText":"2024-12-20T09:06:25Z"}} +{"type":"node","id":"432","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6449/text?format=json","updateDate":"2024-10-17T14:36:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"6449","sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6449/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6449/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Providing Robust Organics and Diets for Urban Communities Everywhere Act","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"D","number":"6449","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6449/cosponsors?format=json","sponsors.0.bioguideId":"M001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6449/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","titles.count":3,"introducedDate":"2023-11-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6449?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MENENDEZ:\nH.R. 6449.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nincreases discretionary funding for the Office of Urban\nAgriculture and Innovative Production\n[Page H5900]\n","sponsors.0.district":8,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-31T17:27:13Z"}} +{"type":"node","id":"433","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6444/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"6444","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6444/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6444/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"JADC2 Implementation Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"6444","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-11-17","sponsors.0.bioguideId":"I000056","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6444/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6444/relatedbills?format=json","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":3,"introducedDate":"2023-11-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6444?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 6444.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 , Section 8, Clause 18\nThe single subject of this legislation is:\nThe JADC2 Implementation Act is a bill to accelerate the\nidentification of solutions to the challenges of the Joint\nForce by assigning to specific components of the Department\nof Defense certain responsibilities for the delivery of\nessential integrated joint warfighting capabilities, and for\nother purposes.\n[Page H5899]\n","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-07-24T15:19:43Z"}} +{"type":"node","id":"434","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6457/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:48:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"6457","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the House Committee on Small Business.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6457/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Minority Entrepreneurship Grant Program Act of 2023","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"D","number":"6457","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6457/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6457/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6457/relatedbills?format=json","sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":3,"introducedDate":"2023-11-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6457?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 6457.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nThis bill creates a grant program to encourage minority\nentrepreneurship through minority serving institutions.\n[Page H5900]\n","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-06-11T15:48:35Z"}} +{"type":"node","id":"435","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"ADERHOLT","sponsors.0.isByRequest":"N","latestAction_text":"POSTPONED PROCEEDINGS - Pursuant to clause 1(c) of rule XIX, the Chair announced further proceedings on H.R. 5894 would be postponed.","policyArea.name":"Economics and Public Finance","type":"HR","latestAction.text":"POSTPONED PROCEEDINGS - Pursuant to clause 1(c) of rule XIX, the Chair announced further proceedings on H.R. 5894 would be postponed.","sponsors.0.party":"R","number":"5894","amendments.count":86,"sponsors.0.bioguideId":"A000055","actions.url":"https://api.congress.gov/v3/bill/118/hr/5894/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5894/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/5894/amendments?format=json","titles.count":5,"request.contentType":"application/json","latestAction_actionTime":"12:13:45","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5894/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":139,"request.billNumber":"5894","sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5894/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5894/subjects?format=json","title":"Making appropriations for the Departments of Labor, Health and Human Services, and Education, and related agencies for the fiscal year ending September 30, 2024, and for other purposes.","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-11-15","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5894/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5894/summaries?format=json","latestAction.actionTime":"12:13:45","introducedDate":"2023-10-06","subjects.count":161,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5894?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 164 (Friday, October 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ADERHOLT:\nH.R. 5894.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law. . . .'' In\naddition, clause I of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power to pay the Debts and provide for the\ncommon Defence and general\nThe single subject of this legislation is:\nMaking appropriations for the Departments of Labor, Health\nand Human Services, and Education, and related agencies for\nthe fiscal year ending September 30, 2024, and for other\npurposes.\n[Page H4990]\n","sponsors.0.district":4,"sponsors.0.firstName":"ROBERT","updateDateIncludingText":"2025-02-14T02:41:12Z"}} +{"type":"node","id":"436","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6193/text?format=json","updateDate":"2024-08-05T15:34:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Levin","sponsors.0.isByRequest":"N","request.billNumber":"6193","sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6193/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6193/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VALOR Act","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","sponsors.0.party":"D","number":"6193","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-11-15","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6193/cosponsors?format=json","sponsors.0.bioguideId":"L000593","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6193/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6193/actions?format=json","latestAction.actionDate":"2023-11-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","titles.count":4,"introducedDate":"2023-11-02","cosponsors.count":2,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6193?format=json","sponsors.0.district":49,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-08-05T15:34:42Z"}} +{"type":"node","id":"437","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2830/text?format=json","relatedBills.count":1,"updateDate":"2024-12-18T09:05:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Edwards","sponsors.0.isByRequest":"N","request.billNumber":"2830","sponsors.0.url":"https://api.congress.gov/v3/member/E000246?format=json","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2830/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2830/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Veteran Improvement Commercial Driver License Act of 2023","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","sponsors.0.party":"R","number":"2830","cosponsors.countIncludingWithdrawnCosponsors":38,"request.format":"json","latestAction_actionDate":"2023-11-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2830/cosponsors?format=json","sponsors.0.bioguideId":"E000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2830/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2830/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2830/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2830/relatedbills?format=json","sponsors.0.fullName":"Rep. Edwards, Chuck [R-NC-11]","titles.count":3,"introducedDate":"2023-04-25","cosponsors.count":38,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2830?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\n[Pages H1948-H1949]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EDWARDS:\nH.R. 2830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3:\n[The Congress shall have Power . . . ] To regulate Commerce\nwith foreign Nations,\n[[Page H1949]]\nand among the several States, and with the Indian Tribes; . .\n.\nThe single subject of this legislation is:\nTo expand access to commercial driver education programs\nfor veterans using the G.I. Bill.\n","sponsors.0.district":11,"sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-12-18T09:05:40Z"}} +{"type":"node","id":"438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5956/text?format=json","updateDate":"2025-01-07T14:04:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Kiggans","sponsors.0.isByRequest":"N","request.billNumber":"5956","sponsors.0.url":"https://api.congress.gov/v3/member/K000399?format=json","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5956/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5956/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Transparency for Student Veterans Act of 2023","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","sponsors.0.party":"R","number":"5956","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-11-15","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5956/cosponsors?format=json","sponsors.0.bioguideId":"K000399","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5956/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5956/actions?format=json","latestAction.actionDate":"2023-11-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Kiggans, Jennifer A [R-VA-2]","titles.count":3,"introducedDate":"2023-10-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5956?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 168 (Friday, October 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIGGANS of Virginia:\nH.R. 5956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo improve the GI Bill comparison Tool to include more\ninformation relevant to veterans.\n[Page H5013]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-01-07T14:04:31Z"}} +{"type":"node","id":"439","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3601/text?format=json","updateDate":"2024-11-14T09:05:18Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Cartwright","sponsors.0.isByRequest":"N","request.billNumber":"3601","sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3601/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3601/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Student Veteran Work Study Modernization Act","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","sponsors.0.party":"D","number":"3601","cosponsors.countIncludingWithdrawnCosponsors":57,"request.format":"json","latestAction_actionDate":"2023-11-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3601/cosponsors?format=json","sponsors.0.bioguideId":"C001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3601/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3601/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3601/actions?format=json","latestAction.actionDate":"2023-11-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","titles.count":3,"introducedDate":"2023-05-23","cosponsors.count":57,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3601?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 87 (Tuesday, May 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 3601.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nTo create 5 year pilot program that makes half-time student\nveterans eligible for the VA Work-Study Program.\n[Page H2546]\n","sponsors.0.district":8,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-11-14T09:05:18Z"}} +{"type":"node","id":"440","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6153/text?format=json","relatedBills.count":1,"updateDate":"2024-12-05T09:05:16Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"6153","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6153/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6153/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To provide for a review of sanctions with respect to Hong Kong.","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6153","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6153/cosponsors?format=json","sponsors.0.bioguideId":"K000397","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6153/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6153/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6153/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6153/relatedbills?format=json","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":2,"introducedDate":"2023-11-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6153?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 6153.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo provide for a review of sanctions with respect to Hong\nKong.\n[Page H5230]\n","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2024-12-05T09:05:16Z"}} +{"type":"node","id":"441","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6161/text?format=json","updateDate":"2024-10-19T08:05:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"6161","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6161/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6161/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"SAVE Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6161","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6161/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6161/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6161/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":4,"introducedDate":"2023-11-01","cosponsors.count":21,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6161?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 6161.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nHealth care\n[Page H5230]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-10-19T08:05:37Z"}} +{"type":"node","id":"442","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6143/text?format=json","relatedBills.count":4,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gallagher","sponsors.0.isByRequest":"N","request.billNumber":"6143","sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6143/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6143/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"American Security Drone Act of 2023","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6143","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6143/cosponsors?format=json","sponsors.0.bioguideId":"G000579","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6143/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6143/actions?format=json","latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6143/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6143?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 6143.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the Constitution of the United States of\nAmerica\nThe single subject of this legislation is:\nTo restrict the executive agency acquisition of covered\nunmanned aircraft systems\n[Page H5230]\n","sponsors.0.district":8,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"443","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6158/text?format=json","updateDate":"2024-07-24T15:19:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"6158","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6158/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6158/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"21st Century School Protection Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"6158","request.format":"json","latestAction_actionDate":"2023-11-01","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6158/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6158/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-11-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6158?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 6158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nSchool Security\n[Page H5230]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:19:55Z"}} +{"type":"node","id":"444","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6145/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Goldman","sponsors.0.isByRequest":"N","request.billNumber":"6145","sponsors.0.url":"https://api.congress.gov/v3/member/G000599?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6145/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6145/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Immigration Court Efficiency and Children's Court Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"6145","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6145/cosponsors?format=json","sponsors.0.bioguideId":"G000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6145/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6145/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6145/relatedbills?format=json","sponsors.0.fullName":"Rep. Goldman, Daniel S. [D-NY-10]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6145?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDMAN of New York:\nH.R. 6145.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution. It reads\nthat Congress has the legislative power ``to make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo establish the Children's Court to improve the\nadjudication of immigration cases involving unaccompanied\nalien children.\n[Page H5230]\n","sponsors.0.district":10,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-12-20T09:05:41Z"}} +{"type":"node","id":"445","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6146/text?format=json","updateDate":"2024-07-24T15:19:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Green","sponsors.0.isByRequest":"N","request.billNumber":"6146","sponsors.0.url":"https://api.congress.gov/v3/member/G000590?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6146/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6146/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"No CCP Consultants Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"6146","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-11-01","sponsors.0.bioguideId":"G000590","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6146/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6146/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Green, Mark E. [R-TN-7]","titles.count":3,"introducedDate":"2023-11-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6146?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GREEN of Tennessee:\nH.R. 6146.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the Constitution.\nThe single subject of this legislation is:\nTo prohibit contractors from working with the government if\nthey have ties with the People's Republic of China, the\nRussian Federation, or any country the State Department has\ndeemed a sponsor of terrorism. Prohibitions will also be\nplaced on individuals who do not disclose conflicts of\ninterest that relate to national security or the foreign\npolicy of the United States.\n[Page H5230]\n","sponsors.0.district":7,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:19:55Z"}} +{"type":"node","id":"446","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6165/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Owens","sponsors.0.isByRequest":"N","request.billNumber":"6165","sponsors.0.url":"https://api.congress.gov/v3/member/O000086?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6165/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6165/committees?format=json","policyArea.name":"Education","type":"HR","title":"RIFA Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"6165","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6165/cosponsors?format=json","sponsors.0.bioguideId":"O000086","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6165/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6165/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6165/actions?format=json","latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6165/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Owens, Burgess [R-UT-4]","titles.count":4,"introducedDate":"2023-11-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6165?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OWENS:\nH.R. 6165.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nEducation\n[Page H5230]\n","sponsors.0.district":4,"sponsors.0.firstName":"Burgess","updateDateIncludingText":"2025-02-27T17:27:13Z"}} +{"type":"node","id":"447","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6163/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"6163","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6163/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6163/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Words Matter for the District of Columbia Courts Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"6163","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6163/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6163/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6163/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6163/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":24,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6163?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 6163.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 17 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nThe bill would revise references to individuals with\nintellectual disabilities in title 11 of the District of\nColumbia Code\n[Page H5230]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"448","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6135/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Casten","sponsors.0.isByRequest":"N","request.billNumber":"6135","sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6135/committees?format=json","policyArea.name":"Education","type":"HR","title":"Stop Sexual Harassment in K–12 Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"6135","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6135/cosponsors?format=json","sponsors.0.bioguideId":"C001117","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6135?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 6135.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nThis bill elaborates on the role and duties of Title IX\nCoordinators in K-12 schools.\n[Page H5229]\n","sponsors.0.district":6,"sponsors.0.firstName":"Sean","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"449","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6139/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Duarte","sponsors.0.isByRequest":"N","request.billNumber":"6139","sponsors.0.url":"https://api.congress.gov/v3/member/D000633?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6139/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6139/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To direct the Postal Service to establish a post office at 73 West Stewart Road in Lathrop, California, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"6139","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-11-01","sponsors.0.bioguideId":"D000633","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6139/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6139/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Duarte, John S. [R-CA-13]","titles.count":2,"introducedDate":"2023-11-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6139?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\n[Pages H5229-H5230]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUARTE:\nH.R. 6139.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H5230]]\nArticle I, Section 8, Clause 7 of the U.S. Constitution\ngives Congress the authority to establish new post offices\nThe single subject of this legislation is:\nEstablishing a new post office.\n","sponsors.0.district":13,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"450","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6141/text?format=json","updateDate":"2024-07-24T15:19:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fallon","sponsors.0.isByRequest":"N","request.billNumber":"6141","sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6141/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"Insider Trading Prevention Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"6141","request.format":"json","latestAction_actionDate":"2023-11-01","sponsors.0.bioguideId":"F000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6141/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6141/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","titles.count":3,"introducedDate":"2023-11-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 6141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nEthical standards for Members of Congress\n[Page H5230]\n","sponsors.0.district":4,"sponsors.0.firstName":"Pat","updateDateIncludingText":"2024-07-24T15:19:56Z"}} +{"type":"node","id":"451","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6154/text?format=json","relatedBills.count":1,"updateDate":"2024-12-12T21:17:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"6154","sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6154/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6154/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Responsible Gun Ownership Licensing Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"6154","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6154/cosponsors?format=json","sponsors.0.bioguideId":"K000394","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6154/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6154/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6154/relatedbills?format=json","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6154?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nCrime and Law Enforcement\n[Page H5230]\n","sponsors.0.district":3,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-12-12T21:17:37Z"}} +{"type":"node","id":"452","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6113/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:20:01Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"6113","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6113/committees?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Israel Supplemental Appropriations Act of 2023","latestAction.text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6113","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6113/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6113/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6113/relatedbills?format=json","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-10-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6113?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 6113.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nIsrael\n[Page H5181]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:20:01Z"}} +{"type":"node","id":"453","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6120/text?format=json","updateDate":"2024-07-24T15:19:58Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"6120","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6120/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6120/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"NO OIL for Terrorists Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6120","request.format":"json","latestAction_actionDate":"2023-10-30","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6120/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":4,"introducedDate":"2023-10-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6120?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 6120.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nOil Sanctions\n[Page H5181]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:19:58Z"}} +{"type":"node","id":"454","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6118/text?format=json","updateDate":"2024-07-24T15:19:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luna","sponsors.0.isByRequest":"N","request.billNumber":"6118","sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6118/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Stand with Israel Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"6118","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2023-10-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6118/cosponsors?format=json","sponsors.0.bioguideId":"L000596","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6118/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6118/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","titles.count":3,"introducedDate":"2023-10-30","cosponsors.count":21,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 6118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18\nThe single subject of this legislation is:\nThis bill would cease funding to the United Nations Human\nRights Council until it passes a resolution condemning Hamas\nfor its recent terror attack in Israel.\n[Page H5181]\n","sponsors.0.district":13,"sponsors.0.firstName":"Anna Paulina","updateDateIncludingText":"2024-07-24T15:19:58Z"}} +{"type":"node","id":"455","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6123/text?format=json","updateDate":"2024-11-19T15:16:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"6123","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6123/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6123/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Bring Americans Home Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"6123","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6123/cosponsors?format=json","sponsors.0.bioguideId":"P000609","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6123/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":3,"introducedDate":"2023-10-30","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6123?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.R. 6123.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo prohibit the State Department from charging Americans\nfor the cost associated with evacuation or govenement\nassisted departure from a crisis situation.\n[Page H5182]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-11-19T15:16:18Z"}} +{"type":"node","id":"456","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6115/text?format=json","relatedBills.count":1,"updateDate":"2024-11-29T13:48:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Dunn","sponsors.0.isByRequest":"N","request.billNumber":"6115","sponsors.0.url":"https://api.congress.gov/v3/member/D000628?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6115/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6115/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To authorize the waiver of costs of activities relating to evacuation of United States citizens when their lives are endangered by war or acts of terrorism.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"6115","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6115/cosponsors?format=json","sponsors.0.bioguideId":"D000628","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6115/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6115/relatedbills?format=json","sponsors.0.fullName":"Rep. Dunn, Neal P. [R-FL-2]","titles.count":2,"introducedDate":"2023-10-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6115?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNN of Florida:\nH.R. 6115.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo waive costs for fleeing terrorism.\n[Page H5181]\n","sponsors.0.district":2,"sponsors.0.firstName":"Neal","updateDateIncludingText":"2024-11-29T13:48:28Z"}} +{"type":"node","id":"457","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6124/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Thompson","sponsors.0.isByRequest":"N","request.billNumber":"6124","sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6124/committees?format=json","policyArea.name":"Education","type":"HR","title":"Cybersecurity Skills Integration Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"6124","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6124/cosponsors?format=json","sponsors.0.bioguideId":"T000467","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6124/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","titles.count":3,"introducedDate":"2023-10-30","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6124?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 6124.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto establish a pilot program at the Department of Education\nto integrate cybersecurity education into career and\ntechnical education programs.\n[Page H5182]\n","sponsors.0.district":15,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"458","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6111/text?format=json","updateDate":"2024-11-15T17:11:07Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"6111","sponsors.0.url":"https://api.congress.gov/v3/member/T000474?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6111/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6111/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"PHASE Act of 2023","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"6111","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-10-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6111/cosponsors?format=json","sponsors.0.bioguideId":"T000474","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6111/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6111/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6111/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-27","sponsors.0.fullName":"Rep. Torres, Norma J. [D-CA-35]","titles.count":4,"introducedDate":"2023-10-26","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6111?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. TORRES of California:\nH.R. 6111.\nCongress has the power to enact this legislation pursuant\nto the following:\nAccording to Article 1: Section 8: Clause 18: of the United\nStates Constitution, seen below, this bin falls within the\nConstitutional Authority of the United States Congress.\nArticle 1: Section 8: Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by this\nConstitution in\nThe single subject of this legislation is:\nPedestrian safety\n[Page H5176]\n","sponsors.0.district":35,"sponsors.0.firstName":"Norma","updateDateIncludingText":"2024-11-15T17:11:07Z"}} +{"type":"node","id":"459","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6108/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"6108","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6108/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6108/subjects?format=json","policyArea.name":"Emergency Management","type":"HR","title":"Clean Up DEBRIS Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"6108","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2023-10-27","sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6108/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6108/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6108/relatedbills?format=json","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":4,"introducedDate":"2023-10-26","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 6108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 1\nThe single subject of this legislation is:\nTo amend the Robert T. Stafford Disaster Relief and\nEmergency Assistance Act to provide assistance for common\ninterest communities, condominiums, and housing co-operatives\ndamaged by a major disaster, and for other purposes.\n[Page H5176]\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2024-07-24T15:20:05Z"}} +{"type":"node","id":"460","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5784/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bowman","sponsors.0.isByRequest":"N","request.billNumber":"5784","sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5784/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5784/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Green New Deal for Public Schools Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5784","cosponsors.countIncludingWithdrawnCosponsors":82,"request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5784/cosponsors?format=json","sponsors.0.bioguideId":"B001223","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5784/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5784/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5784/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5784/relatedbills?format=json","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":82,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5784?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOWMAN:\nH.R. 5784.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nInvesting in public schools\n[Page H4855]\n","sponsors.0.district":16,"sponsors.0.firstName":"Jamaal","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"461","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5811/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ryan","sponsors.0.isByRequest":"N","request.billNumber":"5811","sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5811/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Public Safety and Community Support Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"5811","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5811/cosponsors?format=json","sponsors.0.bioguideId":"R000579","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5811/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5811/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5811?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 5811.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nLaw Enforcement\n[Page H4856]\n","sponsors.0.district":18,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:20:13Z"}} +{"type":"node","id":"462","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5793/text?format=json","updateDate":"2024-10-19T08:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"5793","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5793/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5793/subjects?format=json","policyArea.name":"Water Resources Development","type":"HR","title":"Water Access Act","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"D","number":"5793","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5793/cosponsors?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5793/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5793?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 5793.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact\nlegislation provided by Article 1, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nClean water\n[Page H4856]\n","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-10-19T08:05:29Z"}} +{"type":"node","id":"463","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5815/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5815","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5815/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5815/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Head Start Expansion and Improvement Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5815","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5815/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5815/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5815/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5815/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5815?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5815.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V of the United States Constitution\nThe single subject of this legislation is:\nHead Start and Early Head Start\n[Page H4856]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"464","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5786/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:57:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Carbajal","sponsors.0.isByRequest":"N","request.billNumber":"5786","sponsors.0.url":"https://api.congress.gov/v3/member/C001112?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5786/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5786/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To establish in the National Nuclear Security Administration a Cybersecurity Risk Inventory, Assessment, and Mitigation Working Group.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"5786","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5786/cosponsors?format=json","sponsors.0.bioguideId":"C001112","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5786/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5786/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5786/relatedbills?format=json","sponsors.0.fullName":"Rep. Carbajal, Salud O. [D-CA-24]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5786?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARBAJAL:\nH.R. 5786.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article 1, section 8 of the United\nStates Constitution which provides Congress with the power to\nlay and collect Taxes, Duties, Imposts and Excises in order\nto provide for the general Welfare of the United States.\nThe single subject of this legislation is:\nThe bill subject is nuclear cybersecurity.\n[Page H4855]\n","sponsors.0.district":24,"sponsors.0.firstName":"Salud","updateDateIncludingText":"2024-06-11T15:57:33Z"}} +{"type":"node","id":"465","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5783/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Blunt Rochester","sponsors.0.isByRequest":"N","request.billNumber":"5783","sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5783/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Blue Collar and Green Collar Jobs Development Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5783","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5783/cosponsors?format=json","sponsors.0.bioguideId":"B001303","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5783/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5783/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":17,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5783?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 5783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H4855]\n","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"466","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5824/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"5824","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5824/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5824/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"To provide for continued operation of the Federal Aviation Administration in the event of a lapse in appropriation.","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"R","number":"5824","request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5824/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5824/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5824/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5824?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 5824.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3\nThe single subject of this legislation is:\nExtending funding for the FAA\n[Page H4857]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:20:13Z"}} +{"type":"node","id":"467","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5823/text?format=json","updateDate":"2024-07-24T15:20:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"5823","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5823/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5823/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"To provide for continued operation of the Coast Guard in the event of a lapse in appropriation.","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"R","number":"5823","request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5823/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5823/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5823/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5823?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 5823.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3\nThe single subject of this legislation is:\nExtending funding for the Coast Guard\n[Page H4857]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:20:12Z"}} +{"type":"node","id":"468","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5813/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sarbanes","sponsors.0.isByRequest":"N","request.billNumber":"5813","sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5813/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5813/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HR","title":"Websites and Software Applications Accessibility Act of 2023","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5813","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5813/cosponsors?format=json","sponsors.0.bioguideId":"S001168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5813/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5813/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5813/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":36,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5813?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 5813.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 1 and Clause 3\nThe single subject of this legislation is:\nWebsite & Software Accessibility\n[Page H4856]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"469","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5821/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"THOMPSON","sponsors.0.isByRequest":"N","request.billNumber":"5821","sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5821/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5821/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Mental Health Research Accelerator Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"5821","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5821/cosponsors?format=json","sponsors.0.bioguideId":"T000460","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5821/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5821/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5821/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5821?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 5821.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nTo accelerate mental health research.\n[Page H4857]\n","sponsors.0.district":4,"sponsors.0.firstName":"MIKE","updateDateIncludingText":"2024-07-24T15:20:13Z"}} +{"type":"node","id":"470","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5781/text?format=json","updateDate":"2024-07-24T15:20:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"5781","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5781/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5781/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend title 18, United States Code, to permit payments to be made to the law firms of court-appointed attorneys, and for other purposes.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5781","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5781/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5781/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5781/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5781?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 5781.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to permit payments\nto be made to the law firms of court appointed attorneys, and\nfor other purposes abides by the single subject requirement\nin that the provisions are limited to payments made to court\nappointed attorneys and law firms.\n[Page H4855]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2024-07-24T15:20:12Z"}} +{"type":"node","id":"471","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5810/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pressley","sponsors.0.isByRequest":"N","request.billNumber":"5810","sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5810/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Fair Pay for Federal Contractors Act of 2023","latestAction.text":"Referred to the Committee on Appropriations, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5810","cosponsors.countIncludingWithdrawnCosponsors":94,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5810/cosponsors?format=json","sponsors.0.bioguideId":"P000617","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5810/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5810/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5810/relatedbills?format=json","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":94,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5810?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PRESSLEY:\nH.R. 5810.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nThe bill will ensure federal contract workers receive back\npay in the event of a government shutdown.\n[Page H4856]\n","sponsors.0.district":7,"sponsors.0.firstName":"Ayanna","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"472","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5806/text?format=json","updateDate":"2024-09-28T08:05:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"5806","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5806/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5806/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Ending Chemical Abortions Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5806","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5806/cosponsors?format=json","sponsors.0.bioguideId":"O000175","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5806/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5806/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":28,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5806?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 5806.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution.\nThe single subject of this legislation is:\nAmending title 18, United States Code, to prohibit chemical\nabortions.\n[Page H4856]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-09-28T08:05:37Z"}} +{"type":"node","id":"473","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5791/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Davidson","sponsors.0.isByRequest":"N","request.billNumber":"5791","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5791/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5791/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Define the Mission Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"5791","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5791/cosponsors?format=json","sponsors.0.bioguideId":"D000626","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5791/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5791/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5791/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":55,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5791?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 5791.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nForeign Affairs\n[Page H4856]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2024-07-24T15:20:13Z"}} +{"type":"node","id":"474","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5797/text?format=json","updateDate":"2024-07-24T15:20:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Foster","sponsors.0.isByRequest":"N","request.billNumber":"5797","sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5797/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5797/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Protecting Immigrants From Legal Exploitation Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"5797","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5797/cosponsors?format=json","sponsors.0.bioguideId":"F000454","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5797/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5797/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":20,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5797?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 5797.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nProtecting immigrants who are defrauded when seeking out\nlegal services.\n[Page H4856]\n","sponsors.0.district":11,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-07-24T15:20:16Z"}} +{"type":"node","id":"475","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5802/text?format=json","updateDate":"2024-07-24T15:20:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"5802","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5802/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5802/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Employee Business Expense Deduction Reinstatement Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"5802","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5802/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5802/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5802/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5802/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5802?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 5802.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8.\nThe single subject of this legislation is:\nReinstating the employee business expense deduction tax\nprovision.\n[Page H4856]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2024-07-24T15:20:16Z"}} +{"type":"node","id":"476","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5816/text?format=json","updateDate":"2024-06-11T16:02:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5816","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5816/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5816/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Eviction Protection Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"5816","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5816/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5816/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5816/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H4856]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-06-11T16:02:39Z"}} +{"type":"node","id":"477","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5814/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5814","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5814/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5814/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Affordable Housing Stability During Shutdowns Act of 2023","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"D","number":"5814","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5814/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5814/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5814/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5814?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5814.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H4856]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-07-24T15:20:13Z"}} +{"type":"node","id":"478","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5792/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"5792","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5792/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5792/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Offshore Oil and Gas Worker Whistleblower Protection Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5792","request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"sponsors.0.bioguideId":"D000623","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5792/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5792/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5792/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":3,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5792?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 5792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is;\nTo provide whistleblower protections to workers in the\noffshore oil and gas industry.\n[Page H4856]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"479","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5808/text?format=json","updateDate":"2024-10-02T08:06:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pettersen","sponsors.0.isByRequest":"N","request.billNumber":"5808","sponsors.0.url":"https://api.congress.gov/v3/member/P000620?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5808/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5808/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Preventing Deep Fake Scams Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"5808","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5808/cosponsors?format=json","sponsors.0.bioguideId":"P000620","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5808/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5808/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5808/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Pettersen, Brittany [D-CO-7]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5808?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PETTERSEN:\nH.R. 5808.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1\nThe single subject of this legislation is:\nArtificial Intelligence\n[Page H4856]\n","sponsors.0.district":7,"sponsors.0.firstName":"Brittany","updateDateIncludingText":"2024-10-02T08:06:36Z"}} +{"type":"node","id":"480","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5570/text?format=json","relatedBills.count":1,"updateDate":"2024-11-25T22:42:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mills","sponsors.0.isByRequest":"N","request.billNumber":"5570","sponsors.0.url":"https://api.congress.gov/v3/member/M001216?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5570/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5570/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"United States Legal Gold and Mining Partnership Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"5570","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5570/cosponsors?format=json","sponsors.0.bioguideId":"M001216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5570/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5570/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5570/actions?format=json","latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5570/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Mills, Cory [R-FL-7]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5570?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MILLS:\nH.R. 5570.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo establish and implement a multi-year Legal Gold and\nMining Partnership Strategy to reduce the negative\nenvironmental and social impacts of illicit gold mining in\nthe Western Hemisphere, and for other purposes.\n[[Page H4409]]\n[Page H4408]\n","sponsors.0.district":7,"sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-11-25T22:42:14Z"}} +{"type":"node","id":"481","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5579/text?format=json","updateDate":"2024-07-24T15:20:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"5579","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5579/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5579/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Preserve Military Recognition Act of 2023","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"5579","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2023-09-19","sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5579/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5579/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":3,"introducedDate":"2023-09-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5579?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 5579.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo provide that certain changes to the Manual of Military\nDecorations and Awards shall have no force or effect.\n[Page H4409]\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2024-07-24T15:20:21Z"}} +{"type":"node","id":"482","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5565/text?format=json","updateDate":"2024-11-25T22:31:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzgerald","sponsors.0.isByRequest":"N","request.billNumber":"5565","sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5565/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5565/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"BRIDGE Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"5565","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5565/cosponsors?format=json","sponsors.0.bioguideId":"F000471","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5565/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5565/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5565/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","titles.count":4,"introducedDate":"2023-09-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5565?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 5565.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nThis bill requires a report on the Chinese Communist\nParty's use of the Belt and Road Initiative to undermine\nU.S.-led international order.\n[Page H4408]\n","sponsors.0.district":5,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-11-25T22:31:40Z"}} +{"type":"node","id":"483","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5571/text?format=json","updateDate":"2024-08-13T18:41:23Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Norman","sponsors.0.isByRequest":"N","request.billNumber":"5571","sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","latestAction_text":"Referred to the Committee on the Budget, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5571/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5571/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Fair-Value Accounting and Budget Act","latestAction.text":"Referred to the Committee on the Budget, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"5571","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5571/cosponsors?format=json","sponsors.0.bioguideId":"N000190","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5571/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5571/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5571/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5571?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 5571.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo amend the Congressional Budget and Impoundment Control\nAct of 1974 to provide for fair-value credit estimates, and\nfor other purposes.\n[Page H4409]\n","sponsors.0.district":5,"sponsors.0.firstName":"Ralph","updateDateIncludingText":"2024-08-13T18:41:23Z"}} +{"type":"node","id":"484","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5562/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"5562","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5562/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5562/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Fostering Success in Higher Education Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5562","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5562/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5562/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5562/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5562/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5562/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5562?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 5562.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nEducation\n[Page H4408]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"485","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5558/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"5558","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5558/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5558/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To establish the Prairie du Rocher French Colonial National Historical Park in the State of Illinois, and for other purposes.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"5558","request.format":"json","latestAction_actionDate":"2023-09-19","sponsors.0.bioguideId":"B001295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5558/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5558/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5558/relatedbills?format=json","sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":2,"introducedDate":"2023-09-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5558?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 5558.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe single subject of this legislation is:\nEstablishing Prairie du Rocher French Colonial National\nPark in Illinois\n[Page H4408]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:20:24Z"}} +{"type":"node","id":"486","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5580/text?format=json","updateDate":"2024-06-11T16:07:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"5580","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5580/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Saving Our Mainstreet American Locations for Leisure and Shopping Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"5580","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5580/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5580/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5580/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5580?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5580.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIt would amend Section 108 of the Tax Code to provide tax\nrelief for the cancellation of commercial and retail\nindebtedness.\n[Page H4409]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2024-06-11T16:07:20Z"}} +{"type":"node","id":"487","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5578/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"SCHAKOWSKY","sponsors.0.isByRequest":"N","request.billNumber":"5578","sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on House Administration, Oversight and Accountability, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5578/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5578/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Part-Time Worker Bill of Rights Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on House Administration, Oversight and Accountability, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5578","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5578/cosponsors?format=json","sponsors.0.bioguideId":"S001145","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5578/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5578/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5578/relatedbills?format=json","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5578?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 5578.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power . . . To regulate Commerce\nwith foreign Nations, and among the several States, and with\nthe Indian Tribes.\nThe single subject of this legislation is:\nThis Part-Time Worker Bill of Rights Act modifies various\nemployment and leave rules with respect to part-time workers\nto ensure their fair treatment.\n[Page H4409]\n","sponsors.0.district":9,"sponsors.0.firstName":"JANICE","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"488","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5563/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"DELAURO","sponsors.0.isByRequest":"N","request.billNumber":"5563","sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on House Administration, Oversight and Accountability, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5563/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5563/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Schedules That Work Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on House Administration, Oversight and Accountability, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5563","cosponsors.countIncludingWithdrawnCosponsors":39,"request.format":"json","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5563/cosponsors?format=json","sponsors.0.bioguideId":"D000216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5563/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5563/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5563/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":39,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5563?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 5563.\nCongress has the power to enact this legislation pursuant\nto the following:\nArtlcle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nThis bill will provide stability and predictability for\nworking people and their families, remedying many of the\nproblems facing workers by promoting employee input into work\nscheules.\n[Page H4408]\n","sponsors.0.district":3,"sponsors.0.firstName":"ROSA","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"489","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5574/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pettersen","sponsors.0.isByRequest":"N","request.billNumber":"5574","sponsors.0.url":"https://api.congress.gov/v3/member/P000620?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5574/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5574/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Natural Disaster Property Protection Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"5574","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5574/cosponsors?format=json","sponsors.0.bioguideId":"P000620","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5574/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5574/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5574/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","sponsors.0.fullName":"Rep. Pettersen, Brittany [D-CO-7]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5574?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PETTERSEN:\nH.R. 5574.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTax\n[Page H4409]\n","sponsors.0.district":7,"sponsors.0.firstName":"Brittany","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"490","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5566/text?format=json","updateDate":"2024-12-04T09:06:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"5566","sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5566/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5566/committees?format=json","policyArea.name":"Law","type":"HR","title":"Supreme Court Tenure Establishment and Retirement Modernization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"5566","cosponsors.countIncludingWithdrawnCosponsors":67,"request.format":"json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5566/cosponsors?format=json","sponsors.0.bioguideId":"J000288","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5566/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5566/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":67,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5566?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Georgia:\nH.R. 5566.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 1.\nThe single subject of this legislation is:\nThis bill amends Title 28, United States Code, to provide\nfor 18-year terms of active service for justices of the\nSupreme Court, to regularize the nomination of justices, and\nfor other purposes.\n[Page H4408]\n","sponsors.0.district":4,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-12-04T09:06:01Z"}} +{"type":"node","id":"491","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5577/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T09:05:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Roy","sponsors.0.isByRequest":"N","request.billNumber":"5577","sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5577/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5577/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"FACE Act Repeal Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5577","cosponsors.countIncludingWithdrawnCosponsors":48,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5577/cosponsors?format=json","sponsors.0.bioguideId":"R000614","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5577/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5577/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5577/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5577/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":48,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5577?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 5577.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nCriminal Code\n[Page H4409]\n","sponsors.0.district":21,"sponsors.0.firstName":"Chip","updateDateIncludingText":"2024-12-21T09:05:45Z"}} +{"type":"node","id":"492","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5572/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ocasio-Cortez","sponsors.0.isByRequest":"N","request.billNumber":"5572","sponsors.0.url":"https://api.congress.gov/v3/member/O000172?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5572/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5572/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Civilian Climate Corps for Jobs and Justice Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5572","cosponsors.countIncludingWithdrawnCosponsors":54,"request.format":"json","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5572/cosponsors?format=json","sponsors.0.bioguideId":"O000172","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5572/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5572/actions?format=json","latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5572/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Ocasio-Cortez, Alexandria [D-NY-14]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":54,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5572?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OCASIO-CORTEZ:\nH.R. 5572.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 , Section 8\nThe single subject of this legislation is:\nTo amend the National and Community Service Act of 1990 to\nestablish a Civilian Climate Corps to help communities\nrespond to climate change and transition to a clean economy,\nand for other purposes.\n[Page H4409]\n","sponsors.0.district":14,"sponsors.0.firstName":"Alexandria","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"493","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5560/text?format=json","updateDate":"2024-09-18T08:06:06Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Chu","sponsors.0.isByRequest":"N","request.billNumber":"5560","sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5560/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5560/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Reuniting Families Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"5560","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5560/cosponsors?format=json","sponsors.0.bioguideId":"C001080","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5560/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5560/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Chu, Judy [D-CA-28]","titles.count":4,"introducedDate":"2023-09-19","cosponsors.count":41,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5560?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 5560.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend the Immigration and Nationality Act to promote\nfamily unity by recapturing unused visas, and for other\npurposes.\n[Page H4408]\n","sponsors.0.district":28,"sponsors.0.firstName":"Judy","updateDateIncludingText":"2024-09-18T08:06:06Z"}} +{"type":"node","id":"494","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5576/text?format=json","updateDate":"2024-06-11T16:15:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ross","sponsors.0.isByRequest":"N","request.billNumber":"5576","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5576/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5576/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"Protect Working Musicians Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"5576","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5576/cosponsors?format=json","sponsors.0.bioguideId":"R000305","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5576/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5576/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5576?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 5576.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the United States\nConstitution; Article 1, Section 8, Clause 8 of the United\nStates Constitution; and Article 1 Section 8 Clause 18 of\nThe single subject of this legislation is:\nTo empower independent music creator owners to collectively\nnegotiate with dominant online platforms and generative\nartificial intelligence developers regarding the terms on\nwhich their music may be distributed.\n[Page H4409]\n","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2024-06-11T16:15:17Z"}} +{"type":"node","id":"495","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5569/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"5569","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5569/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5569/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Child Care Nutrition Enhancement Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5569","cosponsors.countIncludingWithdrawnCosponsors":52,"request.format":"json","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5569/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5569/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5569/actions?format=json","latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5569/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":52,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5569?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANDSMAN:\nH.R. 5569.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nThis bill increases reimbursements for meals under the\nChild and Adult Care Food Program.\n[Page H4408]\n","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"496","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/14/text?format=json","relatedBills.count":1,"updateDate":"2024-12-13T09:05:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sewell","sponsors.0.isByRequest":"N","request.billNumber":"14","sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/14/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/14/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"John R. Lewis Voting Rights Advancement Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"14","cosponsors.countIncludingWithdrawnCosponsors":218,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/14/cosponsors?format=json","sponsors.0.bioguideId":"S001185","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/14/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/14/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/14/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/14/relatedbills?format=json","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":218,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/14?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 14.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 5 of the Fourteenth Amendment to the Constitution.\nSection 2 of the Fifteenth Amendment, and\nArticle I, Section 4, Clause 1 of the United States\nConstitution\nThe single subject of this legislation is:\nThis bill advances the accesiblity of voting rights for all\nAmericans.\n[Page H4408]\n","sponsors.0.district":7,"sponsors.0.firstName":"Terri","updateDateIncludingText":"2024-12-20T17:27:13Z"}} +{"type":"node","id":"497","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5548/text?format=json","updateDate":"2024-07-24T15:20:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"5548","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR E856-857)","committees.url":"https://api.congress.gov/v3/bill/118/hr/5548/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5548/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"To provide for interim appropriations for the District of Columbia courts and related agencies with respect to any fiscal year for which appropriations are not otherwise provided for such courts and agencies.","latestAction.text":"Sponsor introductory remarks on measure. (CR E856-857)","sponsors.0.party":"D","number":"5548","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-09-19","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5548/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5548/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5548/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2023-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5548?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 150 (Monday, September 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 5548.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would exempt from federal government shutdowns\nthe federal and independent agencies that are exclusively or\nprimarily federally funded but have jurisdiction over local\nDistrict of Columbia civil and criminal justice matters.\n[Page H4382]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-07-24T15:20:25Z"}} +{"type":"node","id":"498","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fulcher","cboCostEstimates.0.pubDate":"2023-08-10T19:57:56Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","policyArea.name":"Agriculture and Food","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1450","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1450/cosponsors?format=json","sponsors.0.bioguideId":"F000469","actions.url":"https://api.congress.gov/v3/bill/118/hr/1450/actions?format=json","latestAction.actionDate":"2023-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1450/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","titles.count":6,"cosponsors.count":9,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-168,Part 1","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59470","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1450/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":3,"request.congress":"118","cboCostEstimates.1.pubDate":"2023-08-10T19:59:00Z","actions.count":27,"committeeReports.1.citation":"H. Rept. 118-168,Part 2","request.billNumber":"1450","sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1450/subjects?format=json","title":"Treating Tribes and Counties as Good Neighbors Act","cboCostEstimates.1.description":"As ordered reported by the House Committee on Natural Resources on June 13, 2023\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Agriculture\non May 11, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59469","request.format":"json","latestAction_actionDate":"2023-09-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/168?format=json","summaries.count":4,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1450/summaries?format=json","cboCostEstimates.0.title":"H.R 1450, Treating Tribes and Counties as Good Neighbors Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/168?format=json","introducedDate":"2023-03-08","subjects.count":9,"sponsors.0.state":"ID","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1450?format=json","cboCostEstimates.1.title":"H.R. 1450, Treating Tribes and Counties as Good Neighbors Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FULCHER:\nH.R. 1450.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, providing Congress to ``make all Laws\nwhich shall be necessary and proper for carrying into\nExecution'' the power enumerated in Article 1 and ``all other\nPowers vested by [the] Constitution of the Government of the\nUnited States, or in any Department or Officer therof.''\nThe single subject of this legislation is:\nRelated to Good Neighbor Authority to provide shared\nreceipts for entities like counties and Tribes through the\nauthority.\n[Page H1207]\n","sponsors.0.district":1,"sponsors.0.firstName":"Russ","updateDateIncludingText":"2025-01-24T18:07:05Z"}} +{"type":"node","id":"499","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"1435","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1435/cosponsors?format=json","sponsors.0.bioguideId":"J000302","actions.url":"https://api.congress.gov/v3/bill/118/hr/1435/actions?format=json","latestAction.actionDate":"2023-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1435/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","titles.count":6,"cosponsors.count":83,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-169","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1435/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":25,"request.billNumber":"1435","sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1435/subjects?format=json","title":"Preserving Choice in Vehicle Purchases Act","cosponsors.countIncludingWithdrawnCosponsors":83,"request.format":"json","latestAction_actionDate":"2023-09-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/169?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1435/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1435/summaries?format=json","introducedDate":"2023-03-08","subjects.count":7,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1435?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1435.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nTo amend the Clean Air Act to prevent the elimination of\nthe sale or use of internal combustion engines.\n[Page H1207]\n","sponsors.0.district":13,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"500","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4944/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"4944","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4944/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Military Families and Surviving Spouses Benefits Enhancement Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"R","number":"4944","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4944/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4944/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":3,"introducedDate":"2023-07-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4944?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 4944.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nTo defer loans for certain military spouses and restore\nnon-monetary benefits to surviving spouses.\n[Page H4032]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"501","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4949/text?format=json","relatedBills.count":1,"updateDate":"2024-06-21T16:18:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Soto","sponsors.0.isByRequest":"N","request.billNumber":"4949","sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4949/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4949/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Don Young Veterans Advancing Conservation Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"4949","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4949/cosponsors?format=json","sponsors.0.bioguideId":"S001200","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4949/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4949/actions?format=json","latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4949/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","titles.count":3,"introducedDate":"2023-07-26","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4949?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 4949.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution.\nThe single subject of this legislation is:\nVeteran conservation grant training program.\n[Page H4033]\n","sponsors.0.district":9,"sponsors.0.firstName":"Darren","updateDateIncludingText":"2024-06-21T16:18:59Z"}} +{"type":"node","id":"502","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4764/text?format=json","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"4764","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4764/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4764/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Honey Identification Verification and Enforcement Act","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"4764","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4764/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4764/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4764/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4764/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":7,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4764?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 4764.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3: [The Congress shall\nhave Power] To regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes.\nThe single subject of this legislation is:\nDevelops an identity and labeling standard for agriculture\nproduct known as ``honey''.\n[Page H3889]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"503","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4805/text?format=json","updateDate":"2024-07-24T15:20:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Santos","sponsors.0.isByRequest":"N","request.billNumber":"4805","sponsors.0.url":"https://api.congress.gov/v3/member/S001222?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4805/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4805/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"American Meat Industry Protection Act of 2023","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"4805","request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"sponsors.0.bioguideId":"S001222","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4805/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4805/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4805/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Santos, George [R-NY-3]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4805?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\n[Pages H3890-H3891]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SANTOS:\nH.R. 4805.\n[[Page H3891]]\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution, Article 1 Section 8\nThe single subject of this legislation is:\nTo prohibit the use of Federal funds to support lab-grown\nmeat, and for other purposes.\n","sponsors.0.district":3,"sponsors.0.firstName":"George","updateDateIncludingText":"2024-07-24T15:20:56Z"}} +{"type":"node","id":"504","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4804/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Salinas","sponsors.0.isByRequest":"N","request.billNumber":"4804","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4804/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4804/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Insuring Fairness for Family Farmers Act of 2023","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"D","number":"4804","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4804/cosponsors?format=json","sponsors.0.bioguideId":"S001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4804/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4804/actions?format=json","latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4804/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4804?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 4804.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article 1, Section 8, clause 3 of the U.S.\nConstitution\nThe single subject of this legislation is:\nFederal Crop Insurance\n[Page H3890]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2024-07-24T15:20:56Z"}} +{"type":"node","id":"505","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4800/text?format=json","relatedBills.count":2,"updateDate":"2024-08-07T08:05:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Panetta","sponsors.0.isByRequest":"N","request.billNumber":"4800","sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4800/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4800/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"GATES Act","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"D","number":"4800","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4800/cosponsors?format=json","sponsors.0.bioguideId":"P000613","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4800/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4800/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4800/relatedbills?format=json","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","titles.count":4,"introducedDate":"2023-07-20","cosponsors.count":12,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4800?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 4800.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nAgriculture\n[Page H3890]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jimmy","updateDateIncludingText":"2024-08-07T08:05:39Z"}} +{"type":"node","id":"506","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4789/text?format=json","relatedBills.count":12,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Hinson","sponsors.0.isByRequest":"N","request.billNumber":"4789","sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4789/subjects?format=json","policyArea.name":"Families","type":"HR","title":"Providing for Life Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"4789","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4789/cosponsors?format=json","sponsors.0.bioguideId":"H001091","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4789/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4789/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4789/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-2]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":38,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4789?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 4789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nThis bill provides support and assistance to unborn\nchildren, pregnant women, parents, and families.\n[Page H3890]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ashley","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"507","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4745/text?format=json","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"4745","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4745/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4745/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Delivering for Rural Seniors Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"4745","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4745/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4745/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4745/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4745/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-07-19","cosponsors.count":33,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4745?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 124 (Wednesday, July 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 4745.\nCongress has the power to enact this legislation pursuant\nto the following:\nAritcle 1 Section 8\nThe single subject of this legislation is:\nRural nutrtition\n[Page H3859]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4736/text?format=json","updateDate":"2024-07-23T13:50:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Fischbach","sponsors.0.isByRequest":"N","request.billNumber":"4736","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4736/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4736/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Investing in Rural America Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"4736","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4736/cosponsors?format=json","sponsors.0.bioguideId":"F000470","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4736/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4736/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4736/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","titles.count":3,"introducedDate":"2023-07-19","cosponsors.count":22,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4736?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 124 (Wednesday, July 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 4736.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAmends USDA Rural Development authorities and requires\nreporting of activities authorized therein.\n[Page H3858]\n","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-07-23T13:50:31Z"}} +{"type":"node","id":"509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4713/text?format=json","updateDate":"2024-10-23T08:05:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"4713","sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4713/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Rural Hospital Technical Assistance Program Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"4713","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4713/cosponsors?format=json","sponsors.0.bioguideId":"J000304","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4713/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":49,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4713?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 4713.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nRural Health Care\n[Page H3701]\n","sponsors.0.district":13,"sponsors.0.firstName":"Ronny","updateDateIncludingText":"2024-10-23T08:05:24Z"}} +{"type":"node","id":"510","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4698/text?format=json","updateDate":"2024-07-24T15:20:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Bera","sponsors.0.isByRequest":"N","request.billNumber":"4698","sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4698/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4698/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"To provide for a study on food animal microbiomes, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"4698","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4698/cosponsors?format=json","sponsors.0.bioguideId":"B001287","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4698/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4698/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4698/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","titles.count":2,"introducedDate":"2023-07-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4698?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 4698.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nAnimal Health\n[Page H3700]\n","sponsors.0.district":6,"sponsors.0.firstName":"Ami","updateDateIncludingText":"2024-07-24T15:20:58Z"}} +{"type":"node","id":"511","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4689/text?format=json","relatedBills.count":1,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4689","sponsors.0.url":"https://api.congress.gov/v3/member/P000608?format=json","latestAction_text":"Referred to the Subcommittee on Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4689/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"FASTER Act of 2023","latestAction.text":"Referred to the Subcommittee on Forestry.","sponsors.0.party":"D","number":"4689","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4689/cosponsors?format=json","sponsors.0.bioguideId":"P000608","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4689/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4689/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4689/relatedbills?format=json","sponsors.0.fullName":"Rep. Peters, Scott H. [D-CA-50]","titles.count":4,"introducedDate":"2023-07-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4689?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PETERS:\nH.R. 4689.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nElectric transmission\n[Page H3641]\n","sponsors.0.district":50,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"512","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4617/text?format=json","updateDate":"2024-07-24T15:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Harder","sponsors.0.isByRequest":"N","request.billNumber":"4617","sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4617/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4617/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Pyrolysis Innovation Grants Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"4617","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4617/cosponsors?format=json","sponsors.0.bioguideId":"H001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4617/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4617/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4617/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","titles.count":3,"introducedDate":"2023-07-13","cosponsors.count":2,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4617?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 4617.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\nThe single subject of this legislation is:\nTo direct the Secretary of Agriculture to carry out a\nprogram to award grants to eligible to carryout projects with\nthe potential to reduce or sequester greenhouse emissions\nthat convert and valorize tree nut harvest by-products into\nmultiple higher value biocarbon products.\n[Page H3576]\n","sponsors.0.district":9,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2024-07-24T15:21:02Z"}} +{"type":"node","id":"513","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4603/text?format=json","updateDate":"2024-08-12T18:36:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Caraveo","sponsors.0.isByRequest":"N","request.billNumber":"4603","sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4603/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4603/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Rural Wellness Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"D","number":"4603","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4603/cosponsors?format=json","sponsors.0.bioguideId":"C001134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4603/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4603/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4603/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","titles.count":3,"introducedDate":"2023-07-13","cosponsors.count":12,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4603?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\n[Pages H3575-H3576]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 4603.\n[[Page H3576]]\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nThe single subject of this legislation is:\nPrioritize behavioral and mental health treatment and\nsubstance use disorder treatment in certain Rural Development\nprograms\n","sponsors.0.district":8,"sponsors.0.firstName":"Yadira","updateDateIncludingText":"2024-08-12T18:36:50Z"}} +{"type":"node","id":"514","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4593/text?format=json","updateDate":"2024-07-24T15:21:06Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"VELAZQUEZ","sponsors.0.isByRequest":"N","request.billNumber":"4593","sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4593/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4593/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Agricultural Representation for the United States Territories Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"4593","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4593/cosponsors?format=json","sponsors.0.bioguideId":"V000081","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4593/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4593/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4593/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","titles.count":3,"introducedDate":"2023-07-12","cosponsors.count":9,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4593?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 119 (Wednesday, July 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 4593.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe Congress shall have Power to dispose of and make all\nneedful Rules and Regulations respecting the Territory or\nother Property belonging to the United States; . . .\nThe single subject of this legislation is:\nAgriculture.\n[Page H3478]\n","sponsors.0.district":7,"sponsors.0.firstName":"NYDIA","updateDateIncludingText":"2024-07-24T15:21:06Z"}} +{"type":"node","id":"515","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4586/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"4586","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4586/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4586/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"ThinkDIFFERENTLY Agriculture Accessibility Act of 2023","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","number":"4586","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4586/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4586/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4586/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4586/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-07-12","cosponsors.count":5,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4586?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 119 (Wednesday, July 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 4586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nAgriculture\n[Page H3478]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"516","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4559/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:21:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pocan","sponsors.0.isByRequest":"N","request.billNumber":"4559","sponsors.0.url":"https://api.congress.gov/v3/member/P000607?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4559/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4559/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Food Worker Pay Standards Act","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"4559","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4559/cosponsors?format=json","sponsors.0.bioguideId":"P000607","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4559/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4559/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4559/actions?format=json","latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4559/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Pocan, Mark [D-WI-2]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4559?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 118 (Tuesday, July 11, 2023)]\n[House]\n[Pages H3207-H3208]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POCAN:\nH.R. 4559.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nfood worker pay standards\n[[Page H3208]]\n","sponsors.0.district":2,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:21:05Z"}} +{"type":"node","id":"517","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4547/text?format=json","updateDate":"2024-08-16T16:19:33Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Graves","sponsors.0.isByRequest":"N","request.billNumber":"4547","sponsors.0.url":"https://api.congress.gov/v3/member/G000577?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4547/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4547/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Laws Ensuring Safe Shrimp Act","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"4547","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4547/cosponsors?format=json","sponsors.0.bioguideId":"G000577","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4547/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4547/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4547/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Graves, Garret [R-LA-6]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":14,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4547?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 118 (Tuesday, July 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Louisiana:\nH.R. 4547.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nProviding resources to the Food and Drug Administration and\nthe U.S. Department of Agriculture to inspect shrimp at high\nrisk of antibiotics and purchase healthy shrimp to distribute\nto schools, food banks, and disaster relief programs.\n[Page H3207]\n","sponsors.0.district":6,"sponsors.0.firstName":"Garret","updateDateIncludingText":"2024-08-16T16:19:33Z"}} +{"type":"node","id":"518","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Foster","cboCostEstimates.0.pubDate":"2023-04-17T20:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 32.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the House Calendar, Calendar No. 32.","sponsors.0.party":"D","number":"783","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/783/cosponsors?format=json","sponsors.0.bioguideId":"F000454","actions.url":"https://api.congress.gov/v3/bill/118/hr/783/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-08-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/783/relatedbills?format=json","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-163","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/783/text?format=json","updateDate":"2024-11-09T04:42:18Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":10,"request.billNumber":"783","sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/783/subjects?format=json","title":"To designate the Department of Energy Integrated Engineering Research Center Federal Building located at the Fermi National Accelerator Laboratory in Batavia, Illinois, as the \"Helen Edwards Engineering Research Center\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59080","request.format":"json","latestAction_actionDate":"2023-08-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/163?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/783/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/783/summaries?format=json","cboCostEstimates.0.title":"H.R. 783, a bill to designate the Department of Energy Integrated Engineering Research Center Federal Building located at the Fermi National Accelerator Laboratory in Batavia, Illinois, as the ‘‘Helen Edwards Engineering Research Center’’","introducedDate":"2023-02-02","subjects.count":5,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/783?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 783.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nLegislating.\n[Page H681]\n","sponsors.0.district":11,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-11-09T04:42:18Z"}} +{"type":"node","id":"519","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5262/text?format=json","relatedBills.count":2,"updateDate":"2024-06-28T08:05:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Slotkin","sponsors.0.isByRequest":"N","request.billNumber":"5262","sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5262/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"DoD PFAS Cleanup Transparency Act of 2023","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"5262","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-08-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5262/cosponsors?format=json","sponsors.0.bioguideId":"S001208","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5262/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5262/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5262/relatedbills?format=json","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","titles.count":3,"introducedDate":"2023-08-22","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5262?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 138 (Tuesday, August 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 5262.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nRequires the Department of Defense to post on a publicly\navailable website timely and regularly updated information on\nthe status of cleanup at sites for which the Secretary has\nobligated funding for environmental restoration activities.\n[Page H4198]\n","sponsors.0.district":7,"sponsors.0.firstName":"Elissa","updateDateIncludingText":"2024-06-28T08:05:28Z"}} +{"type":"node","id":"520","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5032/text?format=json","updateDate":"2024-07-24T15:20:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"5032","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5032/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5032/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Cease Orwellian Surveillance and Targeting Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"5032","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5032/cosponsors?format=json","sponsors.0.bioguideId":"O000175","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5032/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5032/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5032/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5032?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 5032.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo forbid the Federal Reserve from launching a Central Bank\nDigital Currency (CBDC).\n[Page H4145]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-07-24T15:20:47Z"}} +{"type":"node","id":"521","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4992/text?format=json","relatedBills.count":2,"updateDate":"2024-07-11T08:05:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"4992","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4992/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4992/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Ghost Guns and Untraceable Firearms Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4992","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4992/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4992/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4992/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4992/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":27,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4992?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 4992.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nFirearms\n[Page H4144]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2024-07-11T08:05:46Z"}} +{"type":"node","id":"522","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5060/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Underwood","sponsors.0.isByRequest":"N","request.billNumber":"5060","sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5060/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5060/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Women's Retirement Protection Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5060","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5060/cosponsors?format=json","sponsors.0.bioguideId":"U000040","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5060/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5060/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5060/relatedbills?format=json","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5060?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 5060.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nRetirement\n[Page H4146]\n","sponsors.0.district":14,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"523","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5053/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"5053","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5053/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5053/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Wage Equity Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"5053","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5053/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5053/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5053/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5053?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 5053.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nModifies the Fair Labor Standards Act to address workplace\nwage discrimination based on sex.\n[Page H4146]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"524","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4965/text?format=json","relatedBills.count":1,"updateDate":"2024-11-13T15:36:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"4965","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4965/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4965/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Kimberly Vaughan Firearm Safe Storage Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4965","cosponsors.countIncludingWithdrawnCosponsors":94,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4965/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4965/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4965/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4965/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":94,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4965?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 4965.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article I, Section 8, clause 18 which allows Congress to\nmake all laws ``which shall be necessary and proper for\ncarrying into execution'' any ``other'' powers vested by the\nConstitution in the Government of the United States.\nThe single subject of this legislation is:\nThe Kimberly Vaughan Firearm Safe Storage Act will protect\nagainst harms caused by improperly stored firearms by\nestablishing best practices for firearm storage, requiring\nlabeling on firearm packaging, and providing grants to help\nimplement best practices and distribute firearm storage\ndevices.\n[Page H4143]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-11-13T15:36:13Z"}} +{"type":"node","id":"525","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4970/text?format=json","relatedBills.count":2,"updateDate":"2024-08-10T08:05:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LaMalfa","sponsors.0.isByRequest":"N","request.billNumber":"4970","sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4970/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4970/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Protect Innocent Victims Of Taxation After Fire Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"4970","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4970/cosponsors?format=json","sponsors.0.bioguideId":"L000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4970/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4970/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4970/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4970/relatedbills?format=json","sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4970?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 4970.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo exclude from gross income payments made to compensate\nwildfire survivors for losses and damages.\n[Page H4143]\n","sponsors.0.district":1,"sponsors.0.firstName":"Doug","updateDateIncludingText":"2024-08-10T08:05:37Z"}} +{"type":"node","id":"526","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5005/text?format=json","relatedBills.count":1,"updateDate":"2024-11-21T09:05:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hunt","sponsors.0.isByRequest":"N","request.billNumber":"5005","sponsors.0.url":"https://api.congress.gov/v3/member/H001095?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5005/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5005/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Safer Supervision Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5005","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5005/cosponsors?format=json","sponsors.0.bioguideId":"H001095","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5005/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5005/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5005/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Rep. Hunt, Wesley [R-TX-38]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5005?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUNT:\nH.R. 5005.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nCrime and Law Enforcement\n[Page H4144]\n","sponsors.0.district":38,"sponsors.0.firstName":"Wesley","updateDateIncludingText":"2024-11-21T09:05:23Z"}} +{"type":"node","id":"527","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5046/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:20:45Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sarbanes","sponsors.0.isByRequest":"N","request.billNumber":"5046","sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5046/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5046/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Preventing Election Subversion Act of 2023","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5046","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5046/cosponsors?format=json","sponsors.0.bioguideId":"S001168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5046/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5046/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5046/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5046/relatedbills?format=json","sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5046?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 5046.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 4, clause 1\nThe single subject of this legislation is:\nElection Administration\n[Page H4146]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:45Z"}} +{"type":"node","id":"528","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5063/text?format=json","updateDate":"2024-11-09T04:56:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"VELAZQUEZ","sponsors.0.isByRequest":"N","request.billNumber":"5063","sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","latestAction_text":"Referred to the House Committee on Small Business.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5063/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5063/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Small Business Contracting Credit Act","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"D","number":"5063","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5063/cosponsors?format=json","sponsors.0.bioguideId":"V000081","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5063/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5063/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5063?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\n[Pages H4146-H4147]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELZQUEZ:\nH.R. 5063.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe Congress shall have power. . . to regulate Commerce\nwith foreign Nations, and\n[[Page H4147]]\namong the several States, and with the Indian Tribes.\nThe single subject of this legislation is:\nTo amend the Small Business Act to extend the period during\nwhich credit for contracting with Puerto Rico businesses and\ncovered territory businesses are double counted.\n","sponsors.0.district":7,"sponsors.0.firstName":"NYDIA","updateDateIncludingText":"2024-11-09T04:56:53Z"}} +{"type":"node","id":"529","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5023/text?format=json","updateDate":"2024-07-24T15:20:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"5023","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5023/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5023/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"PLANT Act","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"D","number":"5023","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5023/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5023/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5023/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5023?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 5023.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nPlant-based food production.\n[Page H4145]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-07-24T15:20:46Z"}} +{"type":"node","id":"530","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4973/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cárdenas","sponsors.0.isByRequest":"N","request.billNumber":"4973","sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4973/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4973/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Community-Based Gang Intervention Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"4973","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4973/cosponsors?format=json","sponsors.0.bioguideId":"C001097","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4973/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4973/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4973/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4973?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 4973.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\nThe single subject of this legislation is:\nGang Intervention\n[Page H4143]\n","sponsors.0.district":29,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"531","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4976/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T09:05:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cárdenas","sponsors.0.isByRequest":"N","request.billNumber":"4976","sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4976/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4976/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Miranda Rights for Kids Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4976","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4976/cosponsors?format=json","sponsors.0.bioguideId":"C001097","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4976/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4976/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4976/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4976?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 4976.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\nThe single subject of this legislation is:\nMiranda Rights for Kids.\n[Page H4143]\n","sponsors.0.district":29,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-12-04T09:05:25Z"}} +{"type":"node","id":"532","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5028/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"5028","sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5028/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5028/committees?format=json","policyArea.name":"Families","type":"HR","title":"Family Poverty is Not Child Neglect Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5028","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5028/cosponsors?format=json","sponsors.0.bioguideId":"M001160","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5028/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5028/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5028/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5028?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 5028.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Taxing and Spending Clause\nThe single subject of this legislation is:\nThis bill would ensure that federal funds provided to\nsupport state child protective service systems are not being\ninappropriately used to separate children from their parents\nsolely due to poverty.\n[Page H4145]\n","sponsors.0.district":4,"sponsors.0.firstName":"Gwen","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"533","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5011/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"5011","sponsors.0.url":"https://api.congress.gov/v3/member/K000376?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Small Business, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5011/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5011/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Promotion and Expansion of Private Employee Ownership Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Small Business, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"5011","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5011/cosponsors?format=json","sponsors.0.bioguideId":"K000376","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5011/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5011/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5011/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5011/relatedbills?format=json","sponsors.0.fullName":"Rep. Kelly, Mike [R-PA-16]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5011?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Pennsylvania:\nH.R. 5011.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 and the Small\nBusiness Act to expand the availability of employee stock\nownership plans in S corporations, and for other purposes.\nBy Mrs. KIM of California\nH.R. 5012.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8.\nThe single subject of this legislation is:\nTo improve research and data collection on stillbirths, and\nfor other purposes.\n[Page H4145]\n","sponsors.0.district":16,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"534","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5001/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grijalva","sponsors.0.isByRequest":"N","request.billNumber":"5001","sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5001/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5001/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Special Advisors for Insular Areas Act","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"5001","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5001/cosponsors?format=json","sponsors.0.bioguideId":"G000551","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5001/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5001/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5001?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 5001.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article IV Section 3 Clause 2\nThe single subject of this legislation is:\nTo establish a position of Special Advisor for Insular\nAreas in each Executive department, and for other purposes.\n[Page H4144]\n","sponsors.0.district":7,"sponsors.0.firstName":"Raúl","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"535","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4995/text?format=json","relatedBills.count":1,"updateDate":"2024-11-13T15:46:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzpatrick","sponsors.0.isByRequest":"N","request.billNumber":"4995","sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4995/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4995/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Kangaroo Protection Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4995","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4995/cosponsors?format=json","sponsors.0.bioguideId":"F000466","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4995/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4995/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4995/relatedbills?format=json","sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4995?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZPATRICK:\nH.R. 4995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, Clause 18\nThe single subject of this legislation is:\nAnimal Welfare\n[Page H4144]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-13T15:46:19Z"}} +{"type":"node","id":"536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5029/text?format=json","relatedBills.count":1,"updateDate":"2024-11-15T09:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"5029","sponsors.0.url":"https://api.congress.gov/v3/member/M001224?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5029/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5029/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Strong Communities Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5029","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5029/cosponsors?format=json","sponsors.0.bioguideId":"M001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5029/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5029/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5029/relatedbills?format=json","sponsors.0.fullName":"Rep. Moran, Nathaniel [R-TX-1]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5029?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORAN:\nH.R. 5029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Omnibus Crime Control and Safe Streets Act of\n1968 to provide that COPS grant funds may be used for local\nlaw enforcement recruits to attend schools or academies if\nthe recruits agree to serve in precincts of law enforcement\nagencies in their communities.\n[Page H4145]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nathaniel","updateDateIncludingText":"2024-11-15T09:05:22Z"}} +{"type":"node","id":"537","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4975/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T09:05:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cárdenas","sponsors.0.isByRequest":"N","request.billNumber":"4975","sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4975/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Eliminating Debtor’s Prison for Kids Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4975","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4975/cosponsors?format=json","sponsors.0.bioguideId":"C001097","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4975/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4975/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4975/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4975?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 4975.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\nThe single subject of this legislation is:\nDebtor's Prison for Kids.\n[Page H4143]\n","sponsors.0.district":29,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-12-04T09:05:54Z"}} +{"type":"node","id":"538","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4971/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burlison","sponsors.0.isByRequest":"N","request.billNumber":"4971","sponsors.0.url":"https://api.congress.gov/v3/member/B001316?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4971/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4971/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Paycheck Protection Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"4971","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4971/cosponsors?format=json","sponsors.0.bioguideId":"B001316","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4971/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4971/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4971/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Rep. Burlison, Eric [R-MO-7]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4971?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURLISON:\nH.R. 4971.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nThis bill relates to labor policy and union member dues for\nfederal employees.\n[Page H4143]\n","sponsors.0.district":7,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"539","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5006/text?format=json","updateDate":"2024-08-02T16:40:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"5006","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5006/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5006/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To direct the Secretary of State to take certain actions for the declassification and publication of materials relating to the Afghanistan withdrawal, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"5006","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5006/cosponsors?format=json","sponsors.0.bioguideId":"I000056","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5006/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5006/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5006/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":2,"introducedDate":"2023-07-27","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5006?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 5006.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nDeclassifies State Department documents related to the\nAfghanistan withdrawal\n[Page H4144]\n","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-08-02T16:40:49Z"}} +{"type":"node","id":"540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4709/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gottheimer","sponsors.0.isByRequest":"N","request.billNumber":"4709","sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4709/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"U.S.-Israel Anti-Killer Drone Act of 2023","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4709","cosponsors.countIncludingWithdrawnCosponsors":48,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4709/cosponsors?format=json","sponsors.0.bioguideId":"G000583","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4709/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4709/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4709/actions?format=json","latestAction.actionDate":"2023-07-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":48,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4709?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 4709.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all laws that\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all powers vested by this Constitution\nin the government of the United States, or in any department\nor officer thereof.\nThe single subject of this legislation is:\nForeign Affairs\n[Page H3701]\n","sponsors.0.district":5,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2024-11-09T01:57:48Z"}} +{"type":"node","id":"541","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4708/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"4708","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4708/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4708/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"H–2 Improvements to Relieve Employers Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"4708","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4708/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4708/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4708/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4708/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":37,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4708?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 4708.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Sec. 8 To make all laws which shall be necessary\nand proper for carrying into execution the foregoing powers,\nand all other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.\nThe single subject of this legislation is:\nTo streamline the issuance of nonimmigrant temporary work\nvisas, and for other purposes.\n[Page H3701]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"542","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4719/text?format=json","updateDate":"2024-07-24T15:20:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Panetta","sponsors.0.isByRequest":"N","request.billNumber":"4719","sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4719/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4719/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Advanced Air Mobility Tax Exemption Parity Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"4719","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4719/cosponsors?format=json","sponsors.0.bioguideId":"P000613","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4719/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4719/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4719?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 4719.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\nThe single subject of this legislation is:\nTax\n[Page H3701]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jimmy","updateDateIncludingText":"2024-07-24T15:20:58Z"}} +{"type":"node","id":"543","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4565/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Thompson","sponsors.0.isByRequest":"N","request.billNumber":"4565","sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H3649)","committees.url":"https://api.congress.gov/v3/bill/118/hr/4565/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4565/subjects?format=json","policyArea.name":"Education","type":"HR","title":"ACE Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H3649)","sponsors.0.party":"R","number":"4565","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4565/cosponsors?format=json","sponsors.0.bioguideId":"T000467","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4565/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4565/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4565/actions?format=json","latestAction.actionDate":"2023-07-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","titles.count":4,"introducedDate":"2023-07-11","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4565?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 118 (Tuesday, July 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 4565.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto amend the formula for Title I grants under the\nElementary and Secondary Education Act.\n[Page H3208]\n","sponsors.0.district":15,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"544","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3357/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:05Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Strong","sponsors.0.isByRequest":"N","request.billNumber":"3357","sponsors.0.url":"https://api.congress.gov/v3/member/S001220?format=json","latestAction_text":"Referred to the Subcommittee on the National Intelligence Enterprise.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3357/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3357/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Protecting America’s Agricultural Land from Foreign Harm Act of 2023","latestAction.text":"Referred to the Subcommittee on the National Intelligence Enterprise.","sponsors.0.party":"R","number":"3357","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3357/cosponsors?format=json","sponsors.0.bioguideId":"S001220","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3357/actions?format=json","latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3357/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Strong, Dale W. [R-AL-5]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":33,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3357?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 82 (Tuesday, May 16, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STRONG:\nH.R. 3357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution\nThe single subject of this legislation is:\nTo prohibit the purchase or lease of agricultural land in\nthe United States by persons associated with certain foreign\ngovernments, and to address gaps in the Agriculture Foreign\nInvestment Disclosure Act, and for other purposes.\n[Page H2377]\n","sponsors.0.district":5,"sponsors.0.firstName":"Dale","updateDateIncludingText":"2024-07-24T15:22:05Z"}} +{"type":"node","id":"545","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4643/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:20:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Grijalva","sponsors.0.isByRequest":"N","request.billNumber":"4643","sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4643/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4643/committees?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Nogales Wastewater Improvement Act of 2023","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"D","number":"4643","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4643/cosponsors?format=json","sponsors.0.bioguideId":"G000551","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4643/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4643/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4643/actions?format=json","latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4643/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","titles.count":3,"introducedDate":"2023-07-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4643?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 4643.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. I, Sec. Sec. 1 and 8.\nThe single subject of this legislation is:\nThis bill establishes requirements to address wastewater\nfrom the International Outfall Interceptor, which is a\npipeline that carries wastewater from the United States-\nMexico border to the Nogales International Wastewater\nTreatment Plant.\n[Page H3613]\n","sponsors.0.district":7,"sponsors.0.firstName":"Raúl","updateDateIncludingText":"2024-07-24T15:20:54Z"}} +{"type":"node","id":"546","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4047/text?format=json","relatedBills.count":1,"updateDate":"2024-06-29T08:05:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sorensen","sponsors.0.isByRequest":"N","request.billNumber":"4047","sponsors.0.url":"https://api.congress.gov/v3/member/S001225?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4047/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4047/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Autonomy for All Disabled Veterans Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4047","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4047/cosponsors?format=json","sponsors.0.bioguideId":"S001225","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4047/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4047/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4047/relatedbills?format=json","sponsors.0.fullName":"Rep. Sorensen, Eric [D-IL-17]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":5,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4047?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SORENSEN:\nH.R. 4047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Commerce Clause\nThe single subject of this legislation is:\nDisabled veterans benefits\n[Page H2811]\n","sponsors.0.district":17,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-06-29T08:05:40Z"}} +{"type":"node","id":"547","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3952/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"3952","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3952/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3952/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To limit the flags that may be flown over a facility of the Department of Veterans Affairs.","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"R","number":"3952","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2023-07-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3952/cosponsors?format=json","sponsors.0.bioguideId":"B001295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3952/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3952/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":2,"introducedDate":"2023-06-09","cosponsors.count":21,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3952?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 101 (Friday, June 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 3952.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nLimiting the flags that may be flown over the Department of\nVeterans Affairs to: the flag of the United States, the flag\nof a State, the flag of a Indian Tribal government, the flag\nof the Department, the flag of an Armed Force, and the POW/\nMIA flag.\n[Page H2789]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"548","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3895/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Chavez-DeRemer","sponsors.0.isByRequest":"N","request.billNumber":"3895","sponsors.0.url":"https://api.congress.gov/v3/member/C001135?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3895/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3895/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Fiscal Year 2023 Veterans Affairs Major Medical Facility Authorization Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"3895","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3895/cosponsors?format=json","sponsors.0.bioguideId":"C001135","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3895/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3895/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3895/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3895/relatedbills?format=json","sponsors.0.fullName":"Rep. Chavez-DeRemer, Lori [R-OR-5]","titles.count":3,"introducedDate":"2023-06-07","cosponsors.count":1,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3895?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 99 (Wednesday, June 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CHAVEZ-DeREMER:\nH.R. 3895.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo authorize major medical facility projects for the\nDepartment of Veterans Affairs for fiscal year 2023, and for\nother purposes\n[Page H2780]\n","sponsors.0.district":5,"sponsors.0.firstName":"Lori","updateDateIncludingText":"2024-07-24T15:21:41Z"}} +{"type":"node","id":"549","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4679/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:21:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"4679","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4679/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Ghost Guns and Untraceable Firearms Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4679","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4679/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4679/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4679/actions?format=json","latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4679/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4679?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 4679.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 5 of Amendment XIV to the Constitution.\nThe single subject of this legislation is:\nTo amend chapter 44 of title 18, United States Code, to\nensure that all firearms are traceable, and for other\npurposes.\n[Page H3641]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2024-07-24T15:21:00Z"}} +{"type":"node","id":"550","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4686/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luna","sponsors.0.isByRequest":"N","request.billNumber":"4686","sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4686/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4686/subjects?format=json","policyArea.name":"Emergency Management","type":"HR","title":"Flood Insurance Affordability Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"4686","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-07-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4686/cosponsors?format=json","sponsors.0.bioguideId":"L000596","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4686/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4686/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4686/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-17","sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4686?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 4686.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8, cl. 1 in conjunction with cl. 18.\nThe single subject of this legislation is:\nRequire FEMA to offer a monthly payment option to National\nFlood Insurance Premium holders.\n[Page H3641]\n","sponsors.0.district":13,"sponsors.0.firstName":"Anna Paulina","updateDateIncludingText":"2024-07-24T15:21:01Z"}} +{"type":"node","id":"551","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4684/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:58:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kiley","sponsors.0.isByRequest":"N","request.billNumber":"4684","sponsors.0.url":"https://api.congress.gov/v3/member/K000401?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4684/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4684/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"No Sanctuary for Criminals Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4684","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4684/cosponsors?format=json","sponsors.0.bioguideId":"K000401","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4684/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4684/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4684/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4684/relatedbills?format=json","sponsors.0.fullName":"Rep. Kiley, Kevin [R-CA-3]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4684?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILEY:\nH.R. 4684.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAmends the Illegal Immigration Reform and Immigrant\nResponsibility Act of 1996 to expand the prohibition on State\nnoncompliance with enforcement of the immigration laws.\n[Page H3641]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-03-04T17:27:13Z"}} +{"type":"node","id":"552","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4685/text?format=json","updateDate":"2024-07-25T19:09:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kuster","sponsors.0.isByRequest":"N","request.billNumber":"4685","sponsors.0.url":"https://api.congress.gov/v3/member/K000382?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4685/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4685/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Workforce Development Investment Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"4685","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-17","summaries.count":1,"sponsors.0.bioguideId":"K000382","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4685/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4685/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4685/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Kuster, Ann M. [D-NH-2]","titles.count":3,"introducedDate":"2023-07-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4685?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KUSTER:\nH.R. 4685.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof.''\nThe single subject of this legislation is:\nWorkforce\n[Page H3641]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2024-07-25T19:09:51Z"}} +{"type":"node","id":"553","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4683/text?format=json","updateDate":"2024-07-09T18:14:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"4683","sponsors.0.url":"https://api.congress.gov/v3/member/J000308?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4683/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4683/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Closing Loopholes for the Overseas Use and Development of Artificial Intelligence Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"4683","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4683/cosponsors?format=json","sponsors.0.bioguideId":"J000308","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4683/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson, Jeff [D-NC-14]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4683?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of North Carolina:\nH.R. 4683.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: To regulate Commerce with\nforeign Nations\nThe single subject of this legislation is:\nExport Controls\n[Page H3641]\n","sponsors.0.district":14,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-07-09T18:14:31Z"}} +{"type":"node","id":"554","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4682/text?format=json","updateDate":"2024-10-05T08:05:44Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Houlahan","sponsors.0.isByRequest":"N","request.billNumber":"4682","sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4682/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4682/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Mercury 13 Congressional Gold Medal Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4682","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4682/cosponsors?format=json","sponsors.0.bioguideId":"H001085","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4682/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4682/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4682/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":27,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4682?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 4682.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nTo award a Congressional Gold Medal to the Mercury 13 for\ntheir trailblazing accomplishments.\n[Page H3641]\n","sponsors.0.district":6,"sponsors.0.firstName":"Chrissy","updateDateIncludingText":"2024-10-05T08:05:44Z"}} +{"type":"node","id":"555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4690/text?format=json","updateDate":"2025-02-11T13:22:38Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","request.billNumber":"4690","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4690/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Gray Zone Defense Assessment Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"4690","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4690/cosponsors?format=json","sponsors.0.bioguideId":"P000048","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4690/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4690/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4690/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4690?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 4690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec 8\nThe single subject of this legislation is:\nThis bill requires DOD, State, and DNI to coordinate a\nstrategy to combat gray zone aggression.\n[Page H3641]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-11T13:22:38Z"}} +{"type":"node","id":"556","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4687/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"4687","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4687/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4687/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To require the Director of the Court Services and Offender Supervision Agency for the District of Columbia and the Director of the Pretrial Services Agency for the District of Columbia to reside in the District of Columbia.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"4687","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-07-17","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4687/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4687/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4687/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2023-07-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4687?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 4687.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would require the Directors of the Court Services\nand Offender Supervision Agency for the District of Columbia\nand the District of Columbia Pretrial Services Agency to\nreside in the District of Columbia during their terms.\n[Page H3641]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4626/text?format=json","updateDate":"2024-08-20T20:14:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"4626","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4626/subjects?format=json","policyArea.name":"Health","type":"HR","title":"OTC Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"4626","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-07-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4626/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4626/actions?format=json","latestAction.actionDate":"2023-07-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":4,"introducedDate":"2023-07-13","cosponsors.count":10,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4626?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 4626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLegislation that requires FDA to issue guidance on over-\nthe-counter oral contraceptives.\n[Page H3576]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-08-20T20:14:32Z"}} +{"type":"node","id":"558","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4624/text?format=json","relatedBills.count":1,"updateDate":"2024-10-30T08:05:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Matsui","sponsors.0.isByRequest":"N","request.billNumber":"4624","sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4624/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4624/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Algorithmic Justice and Online Platform Transparency Act","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"D","number":"4624","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2023-07-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4624/cosponsors?format=json","sponsors.0.bioguideId":"M001163","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4624/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4624/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4624/relatedbills?format=json","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","titles.count":3,"introducedDate":"2023-07-13","cosponsors.count":14,"request.contentType":"application/json","subjects.count":23,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4624?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 4624.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo prohibit the discriminatory use of personal information\nby online platforms in any algorithmic process, to require\ntransparency in the use of algorithmic processes and content\nmoderation, and for other purposes.\n[Page H3576]\n","sponsors.0.district":7,"sponsors.0.firstName":"Doris","updateDateIncludingText":"2024-10-30T08:05:23Z"}} +{"type":"node","id":"559","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4623/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lieu","sponsors.0.isByRequest":"N","request.billNumber":"4623","sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4623/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4623/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Cyber Shield Act of 2023","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"D","number":"4623","request.format":"json","latestAction_actionDate":"2023-07-14","summaries.count":1,"sponsors.0.bioguideId":"L000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4623/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4623/actions?format=json","latestAction.actionDate":"2023-07-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","titles.count":3,"introducedDate":"2023-07-13","subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4623?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 4623.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nCybersecurity\n[Page H3576]\n","sponsors.0.district":36,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"560","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4369/text?format=json","updateDate":"2024-07-24T15:21:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"4369","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4369/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4369/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"PANELS Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"4369","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4369/cosponsors?format=json","sponsors.0.bioguideId":"B001295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4369/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4369/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":4,"introducedDate":"2023-06-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4369?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 4369.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nSolar tax credit on prime and unique farmland\n[Page H3152]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:21:12Z"}} +{"type":"node","id":"561","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4383/text?format=json","relatedBills.count":3,"updateDate":"2024-08-30T10:38:08Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"4383","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4383/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4383/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Military Families Mental Health Services Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"4383","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4383/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4383/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4383/relatedbills?format=json","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4383?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 4383.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 , Section 8\nThe single subject of this legislation is:\nTo amend title 10, United States Code, to waive cost-\nsharing under the TRICARE program for three mental health\noutpatient visits per year for certain beneficiaries.\n[Page H3152]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-08-30T10:38:08Z"}} +{"type":"node","id":"562","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4379/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Levin","sponsors.0.isByRequest":"N","request.billNumber":"4379","sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4379/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4379/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Stop Child Hunger Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"4379","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4379/cosponsors?format=json","sponsors.0.bioguideId":"L000593","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4379/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4379?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN:\nH.R. 4379.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nChild Hunger\n[Page H3152]\n","sponsors.0.district":49,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"563","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4388/text?format=json","updateDate":"2024-09-28T08:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Reschenthaler","sponsors.0.isByRequest":"N","request.billNumber":"4388","sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4388/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Marc Fogel Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"4388","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4388/cosponsors?format=json","sponsors.0.bioguideId":"R000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4388/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4388?format=json","sponsors.0.district":14,"sponsors.0.firstName":"Guy","updateDateIncludingText":"2024-09-28T08:05:22Z"}} +{"type":"node","id":"564","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4384/text?format=json","relatedBills.count":1,"updateDate":"2024-09-25T19:32:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"4384","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4384/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4384/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Project Safe Neighborhoods Reauthorization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4384","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4384/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4384/actions?format=json","latestAction.actionDate":"2023-06-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4384/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4384?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 4384.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo reauthorize the Project Safe Neighborhoods Grant Program\nAuthorization Act of 2018, and for other purposes.\n[Page H3152]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-09-25T19:32:05Z"}} +{"type":"node","id":"565","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4386/text?format=json","updateDate":"2024-10-02T13:36:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"4386","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4386/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4386/committees?format=json","policyArea.name":"Law","type":"HR","title":"District of Columbia Federal Judicial Officials Residency Equality Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4386","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-06-27","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4386/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-06-27","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4386?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 4386.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would would require certain federal judicial\nofficials who serve the District of Columbia to live within\nits boundaries.\n[Page H3152]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-10-02T13:36:53Z"}} +{"type":"node","id":"566","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4372/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ciscomani","sponsors.0.isByRequest":"N","request.billNumber":"4372","sponsors.0.url":"https://api.congress.gov/v3/member/C001133?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4372/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the facility of the United States Postal Service located at 100 North Taylor Lane in Patagonia, Arizona, as the \"Jim Kolbe Memorial Post Office\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"4372","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4372/cosponsors?format=json","sponsors.0.bioguideId":"C001133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4372/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4372/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4372/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4372/relatedbills?format=json","sponsors.0.fullName":"Rep. Ciscomani, Juan [R-AZ-6]","titles.count":2,"introducedDate":"2023-06-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4372?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CISCOMANI:\nH.R. 4372.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRename a post office.\n[Page H3152]\n","sponsors.0.district":6,"sponsors.0.firstName":"Juan","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"567","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4373/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T15:26:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","request.billNumber":"4373","sponsors.0.url":"https://api.congress.gov/v3/member/C001129?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4373/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4373/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Weather Information for Agriculture Act.","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"R","number":"4373","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4373/cosponsors?format=json","sponsors.0.bioguideId":"C001129","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4373/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4373/relatedbills?format=json","sponsors.0.fullName":"Rep. Collins, Mike [R-GA-10]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4373?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COLLINS:\nH.R. 4373.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\n``The Congress shall have Power . . . To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo reauthorize and improve the National Integrated Drought\nInformation System.\n[Page H3152]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-14T15:26:13Z"}} +{"type":"node","id":"568","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4393/text?format=json","relatedBills.count":3,"updateDate":"2024-06-26T08:05:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Watson Coleman","sponsors.0.isByRequest":"N","request.billNumber":"4393","sponsors.0.url":"https://api.congress.gov/v3/member/W000822?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4393/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4393/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HR","title":"Customer Non-Discrimination Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4393","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4393/cosponsors?format=json","sponsors.0.bioguideId":"W000822","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4393/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4393/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4393/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4393/relatedbills?format=json","sponsors.0.fullName":"Rep. Watson Coleman, Bonnie [D-NJ-12]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":34,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4393?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WATSON COLEMAN:\nH.R. 4393.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: [The Congress shall have\nPower . . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nProhibit discrimination in public accommodations on the\nbasis of sex, gender identity, and sexual orientation.\n[Page H3153]\n","sponsors.0.district":12,"sponsors.0.firstName":"Bonnie","updateDateIncludingText":"2024-06-26T08:05:19Z"}} +{"type":"node","id":"569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4390/text?format=json","updateDate":"2025-01-14T20:56:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"4390","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4390/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4390/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Housing Navigators Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"4390","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-06-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4390/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4390/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4390/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":18,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4390?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 4390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H3153]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-01-14T20:56:18Z"}} +{"type":"node","id":"570","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4370/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T14:27:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"4370","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4370/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"PREVAIL Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4370","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4370/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4370/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4370/relatedbills?format=json","sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":4,"introducedDate":"2023-06-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4370?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCK:\nH.R. 4370.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 8\nThe single subject of this legislation is:\nintellectual property\n[Page H3152]\n","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-12-16T14:27:25Z"}} +{"type":"node","id":"571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4391/text?format=json","updateDate":"2024-07-25T08:05:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"4391","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4391/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4391/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Equal Access to Reproductive Care Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"4391","cosponsors.countIncludingWithdrawnCosponsors":54,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4391/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4391/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4391/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4391/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":54,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4391?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 4391.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTax\n[Page H3153]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-07-25T08:05:39Z"}} +{"type":"node","id":"572","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4380/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"4380","sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4380/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4380/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Protecting Endowments from Our Adversaries Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"4380","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-06-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4380/cosponsors?format=json","sponsors.0.bioguideId":"M001210","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4380/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4380/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4380/relatedbills?format=json","sponsors.0.fullName":"Rep. Murphy, Gregory F. [R-NC-3]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4380?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY:\nH.R. 4380.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nEndowments\n[Page H3152]\n","sponsors.0.district":3,"sponsors.0.firstName":"Gregory","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"573","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4362/text?format=json","updateDate":"2024-06-11T15:57:30Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"4362","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Referred to the Subcommittee on Aviation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4362/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4362/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Saving Organs One Flight at a Time Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"R","number":"4362","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","latestAction_actionDate":"2023-06-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4362/cosponsors?format=json","sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4362/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4362/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4362/actions?format=json","latestAction.actionDate":"2023-06-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2023-06-23","cosponsors.count":34,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4362?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\n[Pages H3144-H3145]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 4362.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[[Page H3145]]\nThe single subject of this legislation is:\nHomeland Security\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2024-06-11T15:57:30Z"}} +{"type":"node","id":"574","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4349/text?format=json","relatedBills.count":1,"updateDate":"2024-07-09T18:14:48Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"PALLONE","sponsors.0.isByRequest":"N","request.billNumber":"4349","sponsors.0.url":"https://api.congress.gov/v3/member/P000034?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4349/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4349/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"National Flood Insurance Program Reauthorization and Reform Act of 2023","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"4349","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-06-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4349/cosponsors?format=json","sponsors.0.bioguideId":"P000034","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4349/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4349/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4349/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4349/relatedbills?format=json","sponsors.0.fullName":"Rep. Pallone, Frank, Jr. [D-NJ-6]","titles.count":3,"introducedDate":"2023-06-23","cosponsors.count":14,"request.contentType":"application/json","subjects.count":43,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4349?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALLONE:\nH.R. 4349.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 2(d)(1) of rule XIII of the Rules of the\nHouse of Representatives, the Committee finds the authority\nfor the legislation 1, section 8 of the Constitution.\nThe single subject of this legislation is:\nNational Flood Insurance Program\n[Page H3144]\n","sponsors.0.district":6,"sponsors.0.firstName":"FRANK","updateDateIncludingText":"2024-07-09T18:14:48Z"}} +{"type":"node","id":"575","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4323/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T16:00:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"4323","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4323/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4323/subjects?format=json","policyArea.name":"Animals","type":"HR","title":"Protecting Whales, Human Safety and the Economy Act of 2023","latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","sponsors.0.party":"R","number":"4323","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2023-06-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4323/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4323/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4323/actions?format=json","latestAction.actionDate":"2023-06-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4323/relatedbills?format=json","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":3,"introducedDate":"2023-06-23","cosponsors.count":21,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4323?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 4323.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of article I of the U.S. Constitution\nprovides Congress with the power to regulate commerce.\nThe single subject of this legislation is:\nThe single subject of the bill is to prohibit NOAA from\nfurther developing a rule to restrict vessel speeds that\nwould damage coastal economies.\n[Page H3143]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2024-10-03T16:27:13Z"}} +{"type":"node","id":"576","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4279/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"4279","sponsors.0.url":"https://api.congress.gov/v3/member/B001313?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4279/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4279/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Critical Supply Chains Commission Act","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"D","number":"4279","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4279/cosponsors?format=json","sponsors.0.bioguideId":"B001313","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4279/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4279/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4279/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","sponsors.0.fullName":"Rep. Brown, Shontel M. [D-OH-11]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":9,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4279?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 109 (Thursday, June 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWN:\nH.R. 4279.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nTo recommend improvements to the supply chain\n[Page H3110]\n","sponsors.0.district":11,"sponsors.0.firstName":"Shontel","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"577","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3756/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tlaib","sponsors.0.isByRequest":"N","request.billNumber":"3756","sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","latestAction_text":"Referred to the Subcommittee on Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3756/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3756/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Environmental Justice in Recreation Permitting Act","latestAction.text":"Referred to the Subcommittee on Forestry.","sponsors.0.party":"D","number":"3756","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3756/cosponsors?format=json","sponsors.0.bioguideId":"T000481","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3756/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3756/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3756/actions?format=json","latestAction.actionDate":"2023-06-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-12]","titles.count":3,"introducedDate":"2023-05-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3756?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 92 (Tuesday, May 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TLAIB:\nH.R. 3756.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nTo require the Secretary of the Interior and the Secretary\nof Agriculture to complete an interagency report on the\neffects of special recreation permits on environmental\njustice communities,\n[Page H2665]\n","sponsors.0.district":12,"sponsors.0.firstName":"Rashida","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"578","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3755/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"3755","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3755/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3755/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Industrial Hemp Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"3755","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3755/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3755/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3755/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3755/actions?format=json","latestAction.actionDate":"2023-06-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3755/relatedbills?format=json","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":3,"introducedDate":"2023-05-30","cosponsors.count":13,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3755?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 92 (Tuesday, May 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 3755.\nCongress has the power to enact this legislation pursuant\nto the following:\nAct. I Sec. 8\nThe single subject of this legislation is:\nThe legislation amends the Agricultural Marketing Act of\n1946 to exempt industrial hemp from certain requirements\nunder the hemp production program.\n[Page H2665]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"579","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3709/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lieu","sponsors.0.isByRequest":"N","request.billNumber":"3709","sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3709/subjects?format=json","policyArea.name":"Animals","type":"HR","title":"Keeping Pets and Families Together Act","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"3709","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3709/cosponsors?format=json","sponsors.0.bioguideId":"L000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3709/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3709/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3709/actions?format=json","latestAction.actionDate":"2023-06-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","titles.count":3,"introducedDate":"2023-05-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3709?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 89 (Thursday, May 25, 2023)]\n[House]\n[Pages H2640-H2641]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 3709.\n[[Page H2641]]\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nAnimal welfare\n","sponsors.0.district":36,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"580","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lawler","cboCostEstimates.0.pubDate":"2023-05-24T17:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3099","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3099/cosponsors?format=json","sponsors.0.bioguideId":"L000599","actions.url":"https://api.congress.gov/v3/bill/118/hr/3099/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3099/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":5,"cosponsors.count":38,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3099/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":14,"request.billNumber":"3099","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3099/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3099/committees?format=json","title":"Special Envoy for the Abraham Accords Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on May 16, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59192","cosponsors.countIncludingWithdrawnCosponsors":38,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3099/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3099/summaries?format=json","cboCostEstimates.0.title":"H.R. 3099, Special Envoy for the Abraham Accords Act","introducedDate":"2023-05-05","subjects.count":13,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3099?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo establish in the Department of State the position of\nSpecial Envoy for the Abraham Accords, and for other\npurposes.\n[Page H2137]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"581","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/491/text?format=json","updateDate":"2024-12-04T09:05:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"491","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Subcommittee Hearings Held","subjects.url":"https://api.congress.gov/v3/bill/118/hr/491/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/491/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Return Home to Housing Act","latestAction.text":"Subcommittee Hearings Held","sponsors.0.party":"D","number":"491","cosponsors.countIncludingWithdrawnCosponsors":73,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/491/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/491/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/491/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/491/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":73,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/491?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-12-04T09:05:54Z"}} +{"type":"node","id":"582","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4131/text?format=json","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Perry","sponsors.0.isByRequest":"N","request.billNumber":"4131","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4131/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"NO TOD Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"R","number":"4131","request.format":"json","latestAction_actionDate":"2023-06-14","sponsors.0.bioguideId":"P000605","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4131/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4131/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":4,"introducedDate":"2023-06-14","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4131?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 4131.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nFederal transportation funding eligibility\n[Page H2934]\n","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-07-24T15:21:31Z"}} +{"type":"node","id":"583","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4130/text?format=json","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Perry","sponsors.0.isByRequest":"N","request.billNumber":"4130","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4130/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4130/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"No Desire for Streetcars Act","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"4130","request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"sponsors.0.bioguideId":"P000605","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":3,"introducedDate":"2023-06-14","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4130?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 4130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nFederal transportation funding\n[Page H2934]\n","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-07-24T15:21:31Z"}} +{"type":"node","id":"584","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4129/text?format=json","updateDate":"2024-07-24T15:21:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Perry","sponsors.0.isByRequest":"N","request.billNumber":"4129","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4129/committees?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"No Electric Ferries Act","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"4129","request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"sponsors.0.bioguideId":"P000605","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4129/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":3,"introducedDate":"2023-06-14","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4129?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 4129.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nFederal transportation funding eligibility\n[Page H2934]\n","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-07-24T15:21:33Z"}} +{"type":"node","id":"585","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4126/text?format=json","relatedBills.count":1,"updateDate":"2024-11-01T16:28:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"4126","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Aviation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4126/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4126/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Future of Aviation Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"R","number":"4126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4126/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4126/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4126/relatedbills?format=json","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4126?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 4126.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAviation\n[Page H2934]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-11-01T16:28:46Z"}} +{"type":"node","id":"586","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3554/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T08:06:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Zinke","sponsors.0.isByRequest":"N","request.billNumber":"3554","sponsors.0.url":"https://api.congress.gov/v3/member/Z000018?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3554/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3554/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Protecting Veteran Community Care Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"3554","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3554/cosponsors?format=json","sponsors.0.bioguideId":"Z000018","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3554/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3554/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3554/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3554/relatedbills?format=json","sponsors.0.fullName":"Rep. Zinke, Ryan K. [R-MT-1]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":21,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3554?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ZINKE:\nH.R. 3554.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to expand access to\nthe Veterans Community Care Program of the Department of\nVeterans Affairs to include certain veterans seeking mental\nhealth or substance-use services, and for other purposes.\n[Page H2460]\n","sponsors.0.district":1,"sponsors.0.firstName":"Ryan","updateDateIncludingText":"2024-07-23T08:06:38Z"}} +{"type":"node","id":"587","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4140/text?format=json","updateDate":"2024-07-24T15:21:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Soto","sponsors.0.isByRequest":"N","request.billNumber":"4140","sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4140/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4140/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To authorize the President to award the Purple Heart to Louis Boria, Jr., for injuries incurred during World War II and the Korean War while a member of the Marine Corps.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"4140","request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"sponsors.0.bioguideId":"S001200","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4140/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4140/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4140/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","titles.count":2,"introducedDate":"2023-06-14","subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4140?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 4140.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution.\nThe single subject of this legislation is:\nThe bill authorizes the President to award a Purple Heart\nto Louis Boria, Jr.\n[Page H2934]\n","sponsors.0.district":9,"sponsors.0.firstName":"Darren","updateDateIncludingText":"2024-07-24T15:21:55Z"}} +{"type":"node","id":"588","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4118/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"LARSEN","sponsors.0.isByRequest":"N","request.billNumber":"4118","sponsors.0.url":"https://api.congress.gov/v3/member/L000560?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4118/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4118/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Department of Defense Student Financial Literacy Act","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4118","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2023-06-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4118/cosponsors?format=json","sponsors.0.bioguideId":"L000560","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4118/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4118/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Larsen, Rick [D-WA-2]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":21,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LARSEN of Washington:\nH.R. 4118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nEducation\n[Page H2933]\n","sponsors.0.district":2,"sponsors.0.firstName":"RICK","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"589","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4122/text?format=json","relatedBills.count":1,"updateDate":"2024-10-19T08:05:33Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"MFUME","sponsors.0.isByRequest":"N","request.billNumber":"4122","sponsors.0.url":"https://api.congress.gov/v3/member/M000687?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4122/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Henrietta Lacks Congressional Gold Medal Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4122","cosponsors.countIncludingWithdrawnCosponsors":57,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4122/cosponsors?format=json","sponsors.0.bioguideId":"M000687","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4122/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Mfume, Kweisi [D-MD-7]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":57,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4122?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MFUME:\nH.R. 4122.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 6\nThe single subject of this legislation is:\nCongressional Recognition for Henrietta Lacks\n[Page H2934]\n","sponsors.0.district":7,"sponsors.0.firstName":"KWEISI","updateDateIncludingText":"2024-10-19T08:05:33Z"}} +{"type":"node","id":"590","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4117/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"4117","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on the Budget, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4117/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4117/subjects?format=json","policyArea.name":"Education","type":"HR","title":"College for All Act of 2023","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on the Budget, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4117","cosponsors.countIncludingWithdrawnCosponsors":67,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4117/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4117/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4117/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":67,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 4117.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nEducation\n[Page H2933]\n","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"591","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4114/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"4114","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4114/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4114/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Agency Accountability through Appropriations Act","latestAction.text":"Referred to the Committee on Rules, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"4114","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4114/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4114/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4114/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4114?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 4114.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nGovernment Operations\n[Page H2933]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"592","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4112/text?format=json","updateDate":"2024-07-24T15:21:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"4112","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4112/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4112/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Symmetry in Rules Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"4112","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4112/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4112/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4112/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4112/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4112?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 4112.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nAgency Rulemaking\n[Page H2933]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-07-24T15:21:33Z"}} +{"type":"node","id":"593","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4113/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"4113","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4113/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"No Altering Public Comments Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"4113","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4113/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4113/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4113/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4113?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 4113.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nGovernment Transparency\n[Page H2933]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"594","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4108/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:40Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Davidson","sponsors.0.isByRequest":"N","request.billNumber":"4108","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4108/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4108/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Protecting Americans' Data From Foreign Surveillance Act of 2023","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"4108","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4108/cosponsors?format=json","sponsors.0.bioguideId":"D000626","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4108/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4108/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4108/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4108/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution, including Clause\n18 of that Section.\nThe single subject of this legislation is:\nTo amend the Export Control Reform Act of 2018\n[Page H2933]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2025-01-06T17:27:14Z"}} +{"type":"node","id":"595","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4107/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T04:56:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Davidson","sponsors.0.isByRequest":"N","request.billNumber":"4107","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4107/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4107/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Civil Liberties Protection Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"4107","request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"sponsors.0.bioguideId":"D000626","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4107/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4107/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4107/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4107/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","titles.count":3,"introducedDate":"2023-06-14","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4107?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThe Financial Crimes Enforcement Network\n[Page H2933]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2024-11-09T04:56:55Z"}} +{"type":"node","id":"596","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4138/text?format=json","relatedBills.count":1,"updateDate":"2024-10-02T08:06:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Thompson","sponsors.0.isByRequest":"N","request.billNumber":"4138","sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4138/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4138/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Federal Prisons Accountability Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4138","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4138/cosponsors?format=json","sponsors.0.bioguideId":"T000467","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4138/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4138/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4138/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4138/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4138?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 4138.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto amend the process for selecting a Director of the Bureau\nof Prisons.\n[Page H2934]\n","sponsors.0.district":15,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2024-10-02T08:06:38Z"}} +{"type":"node","id":"597","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4123/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"4123","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4123/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4123/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Parental Notification and Intervention Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4123","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4123/cosponsors?format=json","sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4123/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4123/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4123?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 4123.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nJudiciary\n[Page H2934]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-07-24T15:21:31Z"}} +{"type":"node","id":"598","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4124/text?format=json","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"4124","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4124/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Flag Standardization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4124","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4124/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4124/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4124/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4124?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 4124.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8.\nThe single subject of this legislation is:\nSpecifying which flags may be displayed at federal\nbuildings.\n[Page H2934]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-07-24T15:21:31Z"}} +{"type":"node","id":"599","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4133/text?format=json","relatedBills.count":1,"updateDate":"2024-10-02T12:22:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Raskin","sponsors.0.isByRequest":"N","request.billNumber":"4133","sponsors.0.url":"https://api.congress.gov/v3/member/R000606?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4133/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Private Prison Information Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4133","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4133/cosponsors?format=json","sponsors.0.bioguideId":"R000606","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4133/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4133/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4133/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Raskin, Jamie [D-MD-8]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4133?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RASKIN:\nH.R. 4133.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nto require non-Federal prison, correctional, and detention\nfacilities holding Federal prisoners or detainees under a\ncontract with the Federal Government be subject to the\nFreedom of Information Act.\n[Page H2934]\n","sponsors.0.district":8,"sponsors.0.firstName":"Jamie","updateDateIncludingText":"2024-10-02T12:22:49Z"}} +{"type":"node","id":"600","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3787/text?format=json","relatedBills.count":2,"updateDate":"2024-06-11T15:11:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LaHood","sponsors.0.isByRequest":"N","request.billNumber":"3787","sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3787/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3787/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Modernizing Agricultural and Manufacturing Bonds Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"3787","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3787/cosponsors?format=json","sponsors.0.bioguideId":"L000585","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3787/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3787/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3787/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3787/relatedbills?format=json","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","titles.count":3,"introducedDate":"2023-06-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3787?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 3787.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 1: ``The\nCongress shall have Power to lay and collect Taxes . . .''\nThe single subject of this legislation is:\nThis bill modifies certain rules applicable to qualified\nsmall issue manufacturing bonds and expands certain\nexceptions to the private activity bond rules for first-time\nfarmers.\n[Page H2713]\n","sponsors.0.district":16,"sponsors.0.firstName":"Darin","updateDateIncludingText":"2024-06-11T15:11:24Z"}} +{"type":"node","id":"601","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3792/text?format=json","updateDate":"2024-11-12T17:39:15Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wilson","sponsors.0.isByRequest":"N","request.billNumber":"3792","sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3792/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3792/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"U.S.-Israel Partnership and Abraham Accords Enhancement Act of 2023","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"3792","cosponsors.countIncludingWithdrawnCosponsors":163,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3792/cosponsors?format=json","sponsors.0.bioguideId":"W000795","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3792/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3792/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3792/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","titles.count":3,"introducedDate":"2023-06-01","cosponsors.count":163,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3792?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 3792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo modify authorities relating to cooperation between the\nUnited States and Israel, expand and strengthen the Abraham\nAccords, and for other purposes.\n[Page H2713]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-11-12T17:39:15Z"}} +{"type":"node","id":"602","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3788/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T04:52:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bacon","sponsors.0.isByRequest":"N","request.billNumber":"3788","sponsors.0.url":"https://api.congress.gov/v3/member/B001298?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3788/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3788/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Hammers' Law","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3788","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3788/cosponsors?format=json","sponsors.0.bioguideId":"B001298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3788/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3788/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3788/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3788/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Bacon, Don [R-NE-2]","titles.count":3,"introducedDate":"2023-06-01","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3788?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 3788.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nTo provide authorization for nonpecuniary damages in an\naction resulting from a cruise ship voyage occurring on the\nhigh seas.\n[Page H2713]\n","sponsors.0.district":2,"sponsors.0.firstName":"Don","updateDateIncludingText":"2024-11-09T04:52:10Z"}} +{"type":"node","id":"603","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3789/text?format=json","updateDate":"2024-07-24T15:21:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"3789","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3789/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"CLEAR Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"3789","request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3789/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3789/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3789/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":4,"introducedDate":"2023-06-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3789?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 3789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to give the\nNational Taxpayer Advocate the authority to comment on\nTreasury regulations.\n[Page H2713]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-07-24T15:21:47Z"}} +{"type":"node","id":"604","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3786/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Harder","sponsors.0.isByRequest":"N","request.billNumber":"3786","sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3786/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3786/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Apprenticeships to College Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3786","request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"sponsors.0.bioguideId":"H001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3786/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3786/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3786/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3786/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","titles.count":3,"introducedDate":"2023-06-01","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3786?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 3786.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill supports the establishment of an apprenticeship\ncollege consortium.\n[Page H2713]\n","sponsors.0.district":9,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"605","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3307/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"3307","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3307/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3307/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Rural Broadband Permitting Efficiency Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3307","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-06-01","sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3307/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3307/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2023-05-15","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3307?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 3307.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo streamline the permitting process by delegating select\nauthorities back to the states\n[Page H2348]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:22:08Z"}} +{"type":"node","id":"606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3306/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"3306","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3306/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3306/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Federal Broadband Permit Coordination Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3306","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-06-01","summaries.count":1,"sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3306/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3306/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3306/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2023-05-15","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3306?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 3306.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo streamline the federal permitting process\n[Page H2348]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:22:08Z"}} +{"type":"node","id":"607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3294/text?format=json","updateDate":"2024-07-24T15:22:07Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"3294","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3294/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3294/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Enhancing Administrative Reviews for Broadband Deployment Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3294","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3294/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3294/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3294/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3294/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":3,"introducedDate":"2023-05-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3294?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 3294.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nSingle Subject Statement\nThe single subject of this legislation is:\nThe single subject of this legislation is to require a\nstudy of timely reviews and improved processes for\ncommunications use authorizations for communications\nfacilities\n[Page H2348]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2024-07-24T15:22:07Z"}} +{"type":"node","id":"608","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3204/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Omar","sponsors.0.isByRequest":"N","request.billNumber":"3204","sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3204/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3204/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Universal School Meals Program Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3204","cosponsors.countIncludingWithdrawnCosponsors":109,"request.format":"json","latestAction_actionDate":"2023-06-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3204/cosponsors?format=json","sponsors.0.bioguideId":"O000173","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3204/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3204/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3204/relatedbills?format=json","sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":109,"request.contentType":"application/json","subjects.count":23,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3204?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 3204.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nNutrition\n[Page H2311]\n","sponsors.0.district":5,"sponsors.0.firstName":"Ilhan","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"609","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3216/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cammack","sponsors.0.isByRequest":"N","request.billNumber":"3216","sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3216/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3216/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3216","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3216/cosponsors?format=json","sponsors.0.bioguideId":"C001039","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3216/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3216/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3216/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3216/relatedbills?format=json","sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":13,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3216?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAMMACK:\nH.R. 3216.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nThis bill amends the Rural Electrification Act of 1936 to\nreauthorize and improve the ReConnect loan and grant program.\n[Page H2311]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kat","updateDateIncludingText":"2024-07-24T15:22:14Z"}} +{"type":"node","id":"610","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3183/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gomez","sponsors.0.isByRequest":"N","request.billNumber":"3183","sponsors.0.url":"https://api.congress.gov/v3/member/G000585?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3183/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"EATS Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3183","cosponsors.countIncludingWithdrawnCosponsors":178,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3183/cosponsors?format=json","sponsors.0.bioguideId":"G000585","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3183/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3183/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3183/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3183/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Gomez, Jimmy [D-CA-34]","titles.count":4,"introducedDate":"2023-05-10","cosponsors.count":178,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3183?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOMEZ:\nH.R. 3183.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nAgriculture/Food\n[Page H2245]\n","sponsors.0.district":34,"sponsors.0.firstName":"Jimmy","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"611","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3174/text?format=json","relatedBills.count":1,"updateDate":"2024-10-02T08:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Balint","sponsors.0.isByRequest":"N","request.billNumber":"3174","sponsors.0.url":"https://api.congress.gov/v3/member/B001318?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3174/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3174/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Invasive Species Prevention and Forest Restoration Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"3174","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3174/cosponsors?format=json","sponsors.0.bioguideId":"B001318","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3174/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3174/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3174/actions?format=json","latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3174/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Balint, Becca [D-VT-At Large]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":10,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"VT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3174?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BALINT:\nH.R. 3174.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nInvasive Species Prevention and Forest Restoration\n[Page H2245]\n","sponsors.0.firstName":"Becca","updateDateIncludingText":"2024-10-02T08:05:41Z"}} +{"type":"node","id":"612","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3159/text?format=json","relatedBills.count":3,"updateDate":"2024-09-28T08:05:31Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Pingree","sponsors.0.isByRequest":"N","request.billNumber":"3159","sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3159/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3159/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Food Date Labeling Act of 2023","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"3159","cosponsors.countIncludingWithdrawnCosponsors":42,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3159/cosponsors?format=json","sponsors.0.bioguideId":"P000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3159/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3159/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3159/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3159/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":42,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3159?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PINGREE:\nH.R. 3159.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nFood labels\n[Page H2173]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chellie","updateDateIncludingText":"2025-02-20T17:27:12Z"}} +{"type":"node","id":"613","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Crockett","sponsors.0.isByRequest":"N","request.billNumber":"3127","sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3127/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"SHOPP Act","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3127","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3127/cosponsors?format=json","sponsors.0.bioguideId":"C001130","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3127/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3127/relatedbills?format=json","sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":30,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3127?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CROCKETT:\nH.R. 3127.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFTo Support all Healhty Options when Purchasing Produce by\namending 7 USC 7517.\n[Page H2172]\n","sponsors.0.district":30,"sponsors.0.firstName":"Jasmine","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"614","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3126/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Tokuda","sponsors.0.isByRequest":"N","request.billNumber":"3126","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3126/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3126/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Keep Kupuna Fed Act","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3126/cosponsors?format=json","sponsors.0.bioguideId":"T000487","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3126/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3126/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3126?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3126.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nAmending the Food and Nutrition Act of 2008 to exclude from\nincomes certain funds received under the Social Security Act.\n[Page H2138]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"615","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3087/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"3087","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3087/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3087/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Training and Nutrition Stability","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3087","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3087/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3087/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3087/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3087/relatedbills?format=json","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":12,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3087?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 3087.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nTo amend the Food and Nutrition Act of 2008 to exempt\nworkforce training dollars as income for supplemental\nnutrition assistance program beneficiaries.\n[Page H2136]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"616","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3037/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Adams","sponsors.0.isByRequest":"N","request.billNumber":"3037","sponsors.0.url":"https://api.congress.gov/v3/member/A000370?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3037/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3037/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Closing the Meal Gap Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3037","cosponsors.countIncludingWithdrawnCosponsors":105,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3037/cosponsors?format=json","sponsors.0.bioguideId":"A000370","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3037/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3037/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3037/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3037/relatedbills?format=json","sponsors.0.fullName":"Rep. Adams, Alma S. [D-NC-12]","titles.count":3,"introducedDate":"2023-05-02","cosponsors.count":105,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3037?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 74 (Tuesday, May 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ADAMS:\nH.R. 3037.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nto expand access to Supplemental Nutrition Assistance\nProgram (SNAP) benefits.\n[Page H2127]\n","sponsors.0.district":12,"sponsors.0.firstName":"Alma","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"617","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3036/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T09:05:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"3036","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3036/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3036/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Increased TSP Access Act of 2023","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","number":"3036","cosponsors.countIncludingWithdrawnCosponsors":66,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3036/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3036/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3036/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3036/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3036/relatedbills?format=json","sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"introducedDate":"2023-05-02","cosponsors.count":66,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3036?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 74 (Tuesday, May 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 3036.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nThe Increased TSP Access Act would address the TSP shortage\nby expanding on the framework first envisioned in the 2018\nFarm Bill.\n[Page H2127]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-12-21T09:05:55Z"}} +{"type":"node","id":"618","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2975/text?format=json","updateDate":"2024-08-16T13:46:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Schrier","sponsors.0.isByRequest":"N","request.billNumber":"2975","sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2975/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"ENABLE Conservation Act of 2023","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"2975","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2975/cosponsors?format=json","sponsors.0.bioguideId":"S001216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2975/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2975/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2975/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2975?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHRIER:\nH.R. 2975.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the United States Constitution.\nThe single subject of this legislation is:\nConservation\n[Page H2088]\n","sponsors.0.district":8,"sponsors.0.firstName":"Kim","updateDateIncludingText":"2024-08-16T13:46:50Z"}} +{"type":"node","id":"619","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2942/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Franklin","sponsors.0.isByRequest":"N","request.billNumber":"2942","sponsors.0.url":"https://api.congress.gov/v3/member/F000472?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2942/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2942/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Conservation Reserve Program Amendments Act of 2023","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","number":"2942","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"Scott","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2942/cosponsors?format=json","sponsors.0.bioguideId":"F000472","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2942/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2942/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2942/actions?format=json","latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2942/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Franklin, C. Scott [R-FL-18]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2942?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. C. SCOTT FRANKLIN of Florida:\nH.R. 2942.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress is granted the authority to introduce and enact\nthis legislation pursuant to Article 1, Section 8 of the U.S.\nCcnstitution\nThe single subject of this legislation is:\nTo amend the Food Security Act of 1985 to provide for the\nenrollment of citrus land in the conservation reserve\nprogram, and for other purposes\n[Page H2086]\n","sponsors.0.district":18,"sponsors.0.firstName":"C.","updateDateIncludingText":"2024-07-24T15:22:26Z"}} +{"type":"node","id":"620","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Garbarino","cboCostEstimates.0.pubDate":"2023-05-11T20:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Immigration","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"2494","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2494/cosponsors?format=json","sponsors.0.bioguideId":"G000597","actions.url":"https://api.congress.gov/v3/bill/118/hr/2494/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2494/relatedbills?format=json","sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/2494/amendments?format=json","titles.count":10,"cosponsors.count":16,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-55","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2494/text?format=json","updateDate":"2024-11-09T05:06:27Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":30,"request.billNumber":"2494","sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2494/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2494/committees?format=json","title":"POLICE Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on May 10, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59155","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-05-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/55?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2494/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2494/summaries?format=json","cboCostEstimates.0.title":"H.R. 2494, POLICE Act of 2023","introducedDate":"2023-04-06","subjects.count":5,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2494?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 60 (Thursday, April 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.R. 2494.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto section 8 of Article 1 of the United States Constitution.\nThe single subject of this legislation is:\nThis bill would amend the Immigration and Nationality Act\nto explicitly state that assaulting a law enforcement officer\nis a deportable offense.\n[Page H1710]\n","sponsors.0.district":2,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-11-09T05:06:27Z"}} +{"type":"node","id":"621","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3467/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Barr","sponsors.0.isByRequest":"N","request.billNumber":"3467","sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3467/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3467/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To enhance Federal Reserve transparency.","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"3467","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3467/cosponsors?format=json","sponsors.0.bioguideId":"B001282","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3467/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3467/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3467/actions?format=json","latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3467/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","titles.count":2,"introducedDate":"2023-05-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3467?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 3467.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3:\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes;\nThe single subject of this legislation is:\nTo enhance the transparency of the Federal Reserve's\nactivities.\n[Page H2457]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"622","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3465/text?format=json","relatedBills.count":1,"updateDate":"2025-01-11T16:06:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Barr","sponsors.0.isByRequest":"N","request.billNumber":"3465","sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3465/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3465/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To enhance Federal Deposit Insurance Corporation transparency.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"3465","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3465/cosponsors?format=json","sponsors.0.bioguideId":"B001282","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3465/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3465/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3465/actions?format=json","latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3465/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","titles.count":2,"introducedDate":"2023-05-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3465?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 3465.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3:\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes;\nThe single subject of this legislation is:\nTo enhance the transparency of the FDIC's activities.\n[Page H2457]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-01-11T16:06:11Z"}} +{"type":"node","id":"623","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3492/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gosar","sponsors.0.isByRequest":"N","request.billNumber":"3492","sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3492/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3492/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Gun Owner Registration Information Protection Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3492","cosponsors.countIncludingWithdrawnCosponsors":53,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3492/cosponsors?format=json","sponsors.0.bioguideId":"G000565","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3492/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3492/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3492/actions?format=json","latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3492/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":53,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3492?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 3492.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof'' and the Second Amendment\nof the U.S. Constitution, which states that the ``A well\nregulated militia being necessary to the security of a free\nstate the right of the people to\nThe single subject of this legislation is:\nThe purpose of this bill is to prohibit funding of state\nand local registries of gun owners by federal agencies.\n[Page H2458]\n","sponsors.0.district":9,"sponsors.0.firstName":"Paul","updateDateIncludingText":"2024-07-24T15:21:59Z"}} +{"type":"node","id":"624","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3530/text?format=json","updateDate":"2024-07-24T15:21:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pappas","sponsors.0.isByRequest":"N","request.billNumber":"3530","sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3530/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3530/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Cut Red Tape For Online Sales Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"3530","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3530/cosponsors?format=json","sponsors.0.bioguideId":"P000614","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3530/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3530/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3530/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3530?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 3530.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution states that ``Congress shall have the authority\nto make all Laws which shall be necessary and proper for\ncarrying into the Execution the foregoing Powers, and all\nother Powers vested by the Constitution in the Government of\nthe United States, or in any Department or Office thereof.''\nThe single subject of this legislation is:\nTax\n[Page H2459]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:21:58Z"}} +{"type":"node","id":"625","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3466/text?format=json","relatedBills.count":1,"updateDate":"2025-01-11T16:06:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Barr","sponsors.0.isByRequest":"N","request.billNumber":"3466","sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3466/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3466/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To enhance Financial Stability Oversight Council transparency.","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"3466","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3466/cosponsors?format=json","sponsors.0.bioguideId":"B001282","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3466/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3466/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3466/actions?format=json","latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3466/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","titles.count":2,"introducedDate":"2023-05-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3466?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 3466.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3:\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes;\nThe single subject of this legislation is:\nTo enhance the transparency of FSOC's activities.\n[Page H2457]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-01-11T16:06:11Z"}} +{"type":"node","id":"626","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3486/text?format=json","relatedBills.count":2,"updateDate":"2024-06-15T08:05:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"3486","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3486/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3486/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Recoup American Nuclear Global Leadership Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"3486","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-05-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3486/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3486/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3486/actions?format=json","latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3486/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3486?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 3486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H2458]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-06-15T08:05:38Z"}} +{"type":"node","id":"627","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3485/text?format=json","relatedBills.count":2,"updateDate":"2024-09-20T20:01:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"3485","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3485/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3485/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Avoid Our Adversaries and Buy American Nuclear Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"3485","request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3485/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3485/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3485/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3485/relatedbills?format=json","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-05-18","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3485?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 3485.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H2458]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-09-20T20:01:55Z"}} +{"type":"node","id":"628","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3463/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:22:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"3463","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3463/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Protecting Ballot Measures From Foreign Influence Act of 2023","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"3463","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3463/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3463/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3463/relatedbills?format=json","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3463?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 3463.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution, especially clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nnational security\n[Page H2457]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:22:03Z"}} +{"type":"node","id":"629","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3484/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"3484","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3484/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3484/committees?format=json","policyArea.name":"Energy","type":"HR","title":"ARC Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"3484","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3484/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3484/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3484/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3484/actions?format=json","latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3484/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":4,"introducedDate":"2023-05-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3484?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\n[Pages H2457-H2458]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 3484.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H2458]]\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-07-24T15:22:01Z"}} +{"type":"node","id":"630","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3483/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"3483","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3483/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3483/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"Strategic Nuclear Infrastructure Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"3483","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3483/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3483/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3483/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3483/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3483/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3483?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 3483.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H2457]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-07-24T15:22:01Z"}} +{"type":"node","id":"631","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3550/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wild","sponsors.0.isByRequest":"N","request.billNumber":"3550","sponsors.0.url":"https://api.congress.gov/v3/member/W000826?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3550/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3550/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Safe Interactions Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"3550","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3550/cosponsors?format=json","sponsors.0.bioguideId":"W000826","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3550/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3550/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3550/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3550/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","sponsors.0.fullName":"Rep. Wild, Susan [D-PA-7]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3550?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILD:\nH.R. 3550.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nProvide grants to enable nonprofit disability organizations\nto develop training programs that support safe interactions\nbetween law enforcement officers and individuals with\ndisabilities and older individuals.\n[Page H2460]\n","sponsors.0.district":7,"sponsors.0.firstName":"Susan","updateDateIncludingText":"2024-07-24T15:21:58Z"}} +{"type":"node","id":"632","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3472/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"3472","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3472/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3472/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Smarter Approaches to Nuclear Expenditures Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"3472","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3472/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3472/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3472/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3472/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3472/relatedbills?format=json","sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3472?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 3472.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8, Clause 12\nThe single subject of this legislation is:\nDefense\n[Page H2457]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2024-07-24T15:22:03Z"}} +{"type":"node","id":"633","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3476/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burchett","sponsors.0.isByRequest":"N","request.billNumber":"3476","sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3476/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3476/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Easy Access to Mail Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"3476","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3476/cosponsors?format=json","sponsors.0.bioguideId":"B001309","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3476/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3476/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3476/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3476?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURCHETT:\nH.R. 3476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish rules and procedures for the United States\nPostal Service regarding the use of centralized delivery of\nmail to residential housing units.\n[Page H2457]\n","sponsors.0.district":2,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"634","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3540/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"3540","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3540/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3540/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"INFANT Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"3540","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3540/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3540/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3540/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3540/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":4,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3540?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 3540.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nIncreasing the amount of state formula manufacturing\ncontracts available in the WIC program\n[Page H2460]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"635","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3480/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"3480","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3480/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3480/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Restore the Partnership Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"3480","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3480/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3480/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3480/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3480/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3480?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 3480.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nImproving intergovernmental relations\n[Page H2457]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"636","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3545/text?format=json","updateDate":"2024-06-13T08:05:22Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Trone","sponsors.0.isByRequest":"N","request.billNumber":"3545","sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3545/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3545/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Ritchie Boys Congressional Gold Medal Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"3545","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3545/cosponsors?format=json","sponsors.0.bioguideId":"T000483","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3545/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3545/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3545/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3545?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 3545.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nA bill to honor veterans.\n[Page H2460]\n","sponsors.0.district":6,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-06-13T08:05:22Z"}} +{"type":"node","id":"637","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3546/text?format=json","updateDate":"2024-07-24T15:21:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Waltz","sponsors.0.isByRequest":"N","request.billNumber":"3546","sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3546/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Study To Observe and Prevent (STOP) Human Trafficking Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3546","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3546/cosponsors?format=json","sponsors.0.bioguideId":"W000823","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3546/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3546/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3546?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 3546.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo direct the Attorney General, in coordination with the\nPresident's Interagency Task Force to Monitor and Combat\nTrafficking in Persons, to study the prevalence and instances\nof human trafficking at adult entertainment clubs in the\nUnited States, and for other purposes.\n[Page H2460]\n","sponsors.0.district":6,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:21:57Z"}} +{"type":"node","id":"638","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3477/text?format=json","updateDate":"2024-07-24T15:22:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carson","sponsors.0.isByRequest":"N","request.billNumber":"3477","sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3477/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3477/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To require a report on the death of Shireen Abu Akleh.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"3477","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3477/cosponsors?format=json","sponsors.0.bioguideId":"C001072","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3477/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3477/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3477/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Carson, Andre [D-IN-7]","titles.count":2,"introducedDate":"2023-05-18","cosponsors.count":21,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3477?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARSON:\nH.R. 3477.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe Justice for Shireen Act is bill to seek justice for the\ndeath of an American journalist killed abroad.\n[Page H2457]\n","sponsors.0.district":7,"sponsors.0.firstName":"André","updateDateIncludingText":"2024-07-24T15:22:02Z"}} +{"type":"node","id":"639","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3524/text?format=json","relatedBills.count":1,"updateDate":"2024-11-20T09:05:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"3524","sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3524/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3524/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow for payments to certain individuals who dye fuel, and for other purposes.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"3524","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-05-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3524/cosponsors?format=json","sponsors.0.bioguideId":"M001160","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3524/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3524/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3524/relatedbills?format=json","sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","titles.count":2,"introducedDate":"2023-05-18","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3524?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 3524.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Sections 7 & 8 of\nArticle I of the United States Constitution and Amendment XVI\nof the United States Constitution.\nThe single subject of this legislation is:\nFederal taxation\n[Page H2459]\n","sponsors.0.district":4,"sponsors.0.firstName":"Gwen","updateDateIncludingText":"2024-11-20T09:05:36Z"}} +{"type":"node","id":"640","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3191/text?format=json","updateDate":"2024-08-20T15:13:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"3191","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3191/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3191/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Defund the OTF Act of 2023","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"3191","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3191/cosponsors?format=json","sponsors.0.bioguideId":"O000175","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3191/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3191/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3191?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 3191.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo prohibit the availability of federal funds for the Open\nTechnology Fund\n[Page H2246]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-08-20T15:13:50Z"}} +{"type":"node","id":"641","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3193/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sablan","sponsors.0.isByRequest":"N","request.billNumber":"3193","sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3193/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3193/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Employment Services and Jobs Parity Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3193","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2023-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3193/cosponsors?format=json","sponsors.0.bioguideId":"S001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3193/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3193/actions?format=json","latestAction.actionDate":"2023-05-10","textVersions.count":1,"sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MP","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3193?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 3193.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo include for the purposes of the Wagner-Peyser Federal\nEmployment Service, the Commonwealth of the Northern Mariana\nIslands and American Samoa.\n[Page H2246]\n","sponsors.0.firstName":"Gregorio","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"642","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3190/text?format=json","updateDate":"2024-08-20T15:28:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mooney","sponsors.0.isByRequest":"N","request.billNumber":"3190","sponsors.0.url":"https://api.congress.gov/v3/member/M001195?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3190/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3190/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To limit the availability of certain funds for Mexico until the President makes a certification to Congress regarding cooperation by Mexico with respect to fentanyl, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"3190","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"X.","latestAction_actionDate":"2023-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3190/cosponsors?format=json","sponsors.0.bioguideId":"M001195","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3190/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3190/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3190/actions?format=json","latestAction.actionDate":"2023-05-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Mooney, Alexander X. [R-WV-2]","titles.count":2,"introducedDate":"2023-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3190?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOONEY:\nH.R. 3190.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nForeign Aid\n[Page H2246]\n","sponsors.0.district":2,"sponsors.0.firstName":"Alexander","updateDateIncludingText":"2024-08-20T15:28:32Z"}} +{"type":"node","id":"643","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3188/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meng","sponsors.0.isByRequest":"N","request.billNumber":"3188","sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3188/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3188/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Teaching Asian Pacific American History Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3188","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3188/cosponsors?format=json","sponsors.0.bioguideId":"M001188","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3188/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3188/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3188/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3188?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 3188.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution [page H10170]\nThe single subject of this legislation is:\nEducation\n[Page H2246]\n","sponsors.0.district":6,"sponsors.0.firstName":"Grace","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"644","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3181/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Evans","sponsors.0.isByRequest":"N","request.billNumber":"3181","sponsors.0.url":"https://api.congress.gov/v3/member/E000296?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3181/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Rehabilitation of Historic Schools Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"3181","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3181/cosponsors?format=json","sponsors.0.bioguideId":"E000296","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3181/actions?format=json","latestAction.actionDate":"2023-05-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3181/relatedbills?format=json","sponsors.0.fullName":"Rep. Evans, Dwight [D-PA-3]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3181?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EVANS:\nH.R. 3181.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 1 of section 8 of article I of the Constitution, to\n``provide for the common Defence and general Welfare of the\nUnited States.''\nThe single subject of this legislation is:\nTaxation\n[Page H2245]\n","sponsors.0.district":3,"sponsors.0.firstName":"Dwight","updateDateIncludingText":"2024-07-24T15:22:15Z"}} +{"type":"node","id":"645","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3166/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"3166","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3166/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3166/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Building Cyber Resilience After SolarWinds Act of 2023","latestAction.text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","sponsors.0.party":"D","number":"3166","request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3166/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3166/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3166/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":3,"introducedDate":"2023-05-09","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3166?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 3166.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nCybersecurity\n[Page H2174]\n","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"646","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3155/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:22:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moskowitz","sponsors.0.isByRequest":"N","request.billNumber":"3155","sponsors.0.url":"https://api.congress.gov/v3/member/M001217?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3155/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3155/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting the Second Amendment through Responsible Gun Ownership Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"3155","request.format":"json","latestAction_actionDate":"2023-05-09","sponsors.0.bioguideId":"M001217","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3155/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3155/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3155/relatedbills?format=json","sponsors.0.fullName":"Rep. Moskowitz, Jared [D-FL-23]","titles.count":3,"introducedDate":"2023-05-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3155?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOSKOWITZ:\nH.R. 3155.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 3(d)(1) of rule XIII of the Rules of the\nHouse of Representatives, the Committee find the authority\nfor this legislation in article I, section 8 of the\nConstitution.\nThe single subject of this legislation is:\nGun Violence Prevention\n[Page H2173]\n","sponsors.0.district":23,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2024-07-24T15:22:17Z"}} +{"type":"node","id":"647","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3130/text?format=json","relatedBills.count":4,"updateDate":"2024-12-16T19:15:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Allred","sponsors.0.isByRequest":"N","request.billNumber":"3130","sponsors.0.url":"https://api.congress.gov/v3/member/A000376?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3130/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3130/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Protecting Election Administration from Interference Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"3130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"Z.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3130/cosponsors?format=json","sponsors.0.bioguideId":"A000376","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3130/relatedbills?format=json","sponsors.0.fullName":"Rep. Allred, Colin Z. [D-TX-32]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3130?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALLRED:\nH.R. 3130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution\nThe single subject of this legislation is:\nElections\n[Page H2172]\n","sponsors.0.district":32,"sponsors.0.firstName":"Colin","updateDateIncludingText":"2024-12-16T19:15:28Z"}} +{"type":"node","id":"648","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3158/text?format=json","updateDate":"2024-07-24T15:22:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Peltola","sponsors.0.isByRequest":"N","request.billNumber":"3158","sponsors.0.url":"https://api.congress.gov/v3/member/P000619?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3158/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3158/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Explore America Act of 2023","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"3158","request.format":"json","sponsors.0.middleName":"Sattler","latestAction_actionDate":"2023-05-09","summaries.count":1,"sponsors.0.bioguideId":"P000619","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3158/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3158/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3158/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. Peltola, Mary Sattler [D-AK-At Large]","titles.count":3,"introducedDate":"2023-05-09","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3158?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. PELTOLA:\nH.R. 3158\nCongress has the power to enact this legislation pursuant\nto Article IV, Section 3, Clause 2\nThe single subject of this legislation is:\nPreserve America Program and Gateway Communities\n[Page H2173]\n","sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-07-24T15:22:15Z"}} +{"type":"node","id":"649","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3144/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"3144","sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3144/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3144/committees?format=json","policyArea.name":"Native Americans","type":"HR","title":"Prairie Band Potawatomi Nation Shab-eh-nay Band Reservation Settlement Act of 2023","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"3144","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3144/cosponsors?format=json","sponsors.0.bioguideId":"G000586","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3144/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3144/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3144/actions?format=json","latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3144/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3144?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 3144.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo provide for the settlement of claims relating to the\nShab-eh-nay Band Reservation in Illinois.\n[Page H2173]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jesus","updateDateIncludingText":"2024-07-24T15:22:21Z"}} +{"type":"node","id":"650","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3147/text?format=json","relatedBills.count":3,"updateDate":"2024-08-02T14:54:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Houlahan","sponsors.0.isByRequest":"N","request.billNumber":"3147","sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3147/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3147/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To establish a defense industrial base advanced capabilities pilot program.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"3147","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3147/cosponsors?format=json","sponsors.0.bioguideId":"H001085","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3147/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3147/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3147/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3147/relatedbills?format=json","sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3147?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 3147.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following:\nThe ``neccessary and proper'' clause of Article 1, Section\n1 of the United States Constitution\nThe single subject of this legislation is:\nlegislating\n[Page H2173]\n","sponsors.0.district":6,"sponsors.0.firstName":"Chrissy","updateDateIncludingText":"2024-08-02T14:54:41Z"}} +{"type":"node","id":"651","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3138/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"3138","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3138/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3138/subjects?format=json","policyArea.name":"Education","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to provide for additional activities, resources, and data collection with respect to English learners, and for other purposes.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3138","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3138/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3138/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3138/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3138/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3138?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 3138.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\nThe single subject of this legislation is:\nThis legislation would allow ESSA funds to be used to\nprovide educators and administrators with culturally\ncompetent educational training to support immigrants students\nand multi-language learners.\n[Page H2172]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"652","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3153/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"3153","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3153/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3153/committees?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Grandfamily Housing Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"3153","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3153/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3153/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3153/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3153/actions?format=json","latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3153/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3153?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 3153.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nto support grandfamilies.\n[Page H2173]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-07-24T15:20:45Z"}} +{"type":"node","id":"653","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3154/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T04:51:59Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"3154","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3154/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3154/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"HALT Act of 2023","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"3154","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3154/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3154/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3154/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3154/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3154/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3154?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 3154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 and clause 18\nThe single subject of this legislation is:\nTo reduce and eliminate threats posed by nuclear weapons to\nthe United States by leading and revitalizing international\narms control agreements.\n[Page H2173]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-11-09T04:51:59Z"}} +{"type":"node","id":"654","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3168/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"3168","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3168/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To establish a Joint Autonomy Office in the Department of Defense, and for other purposes.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"3168","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3168/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3168/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3168/relatedbills?format=json","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 3168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1: ``The Congress shall have\npower to lay and collect taxes, duties, imposts and excises,\nto pay the debts and provide for the common defense and\ngeneral welfare of the United States; but all duties, imposts\nand excises shall be uniform throughout the United States.''\nThe single subject of this legislation is:\nTo establish a Joint Autonomy Office in the Department of\nDefense, and for other purposes.\n[Page H2174]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:22:15Z"}} +{"type":"node","id":"655","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3146/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gonzalez-Colon","sponsors.0.isByRequest":"N","request.billNumber":"3146","sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3146/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3146/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to modify the cover over of certain distilled spirits taxes.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"3146","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3146/cosponsors?format=json","sponsors.0.bioguideId":"G000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3146/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3146/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3146/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3146/relatedbills?format=json","sponsors.0.fullName":"Rescom. González-Colón, Jenniffer [R-PR-At Large]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3146?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. GONZALEZ-COLON:\nH.R. 3146.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defense and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States; [. . .]--And To make all laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to modify the\ncover over of certain distilled spirits taxes.\n[Page H2173]\n","sponsors.0.firstName":"Jenniffer","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"656","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3143/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"3143","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3143/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3143/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Teachers LEAD Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3143","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3143/cosponsors?format=json","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3143/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3143/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3143/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3143/relatedbills?format=json","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3143?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 3143.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 allows Congress to make all\nlaws ``which shall be necessary and proper for carrying into\nexecution'' any of Congress's enumerated powers.\nThe single subject of this legislation is\nTeacher leadership\n[Page H2173]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"657","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3141/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fry","sponsors.0.isByRequest":"N","request.billNumber":"3141","sponsors.0.url":"https://api.congress.gov/v3/member/F000478?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3141/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Targeting Child Predators Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3141","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3141/cosponsors?format=json","sponsors.0.bioguideId":"F000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3141/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3141/relatedbills?format=json","sponsors.0.fullName":"Rep. Fry, Russell [R-SC-7]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FRY:\nH.R. 3141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nPreventing child exploitation\n[Page H2173]\n","sponsors.0.district":7,"sponsors.0.firstName":"Russell","updateDateIncludingText":"2024-07-24T15:22:17Z"}} +{"type":"node","id":"658","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3139/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T09:06:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"3139","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3139/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3139/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"ACRE Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"3139","cosponsors.countIncludingWithdrawnCosponsors":68,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3139/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3139/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3139/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3139/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3139/relatedbills?format=json","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":68,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3139?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\n[Pages H2172-H2173]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 3139.\n[[Page H2173]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to exclude from\ngross income interest received on certain loans secured by\nrural or agricultural real property.\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-12-17T09:06:00Z"}} +{"type":"node","id":"659","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3148/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","request.billNumber":"3148","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3148/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3148/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"POWER Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3148","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3148/cosponsors?format=json","sponsors.0.bioguideId":"J000295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3148/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3148/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3148/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3148/relatedbills?format=json","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":23,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3148?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 3148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo provide grants to State, local, territorial, and tribal\nlaw enforcement agencies to pruchase chemical screening\ndevices and train personnel to use chemical screening devices\nin order to enhance law enforcement efficiency and protect\nlaw enforcement officers.\n[Page H2173]\n","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-07-24T15:22:15Z"}} +{"type":"node","id":"660","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2919/text?format=json","updateDate":"2024-12-04T09:05:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Watson Coleman","sponsors.0.isByRequest":"N","request.billNumber":"2919","sponsors.0.url":"https://api.congress.gov/v3/member/W000822?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2919/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2919/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"New Pathways Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2919","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2919/cosponsors?format=json","sponsors.0.bioguideId":"W000822","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2919/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2919/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2919/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Watson Coleman, Bonnie [D-NJ-12]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2919?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Bonnie","updateDateIncludingText":"2024-12-04T09:05:43Z"}} +{"type":"node","id":"661","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2918/text?format=json","relatedBills.count":1,"updateDate":"2024-11-14T09:05:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wasserman Schultz","sponsors.0.isByRequest":"N","request.billNumber":"2918","sponsors.0.url":"https://api.congress.gov/v3/member/W000797?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2918/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2918/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Fair Housing for Survivors Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2918","cosponsors.countIncludingWithdrawnCosponsors":64,"request.format":"json","latestAction_actionDate":"2023-04-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2918/cosponsors?format=json","sponsors.0.bioguideId":"W000797","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2918/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2918/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2918/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","sponsors.0.fullName":"Rep. Wasserman Schultz, Debbie [D-FL-25]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":64,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2918?format=json","sponsors.0.district":25,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-11-14T09:05:17Z"}} +{"type":"node","id":"662","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2890/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:53:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"2890","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2890/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2890/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Stop Anticompetitive Healthcare Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2890","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2890/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2890/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2890/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2890/relatedbills?format=json","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2890?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2024-06-11T15:53:58Z"}} +{"type":"node","id":"663","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2870/text?format=json","updateDate":"2024-07-31T08:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ivey","sponsors.0.isByRequest":"N","request.billNumber":"2870","sponsors.0.url":"https://api.congress.gov/v3/member/I000058?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2870/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2870/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Raise the Age Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2870","cosponsors.countIncludingWithdrawnCosponsors":153,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2870/cosponsors?format=json","sponsors.0.bioguideId":"I000058","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2870/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2870/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Ivey, Glenn [D-MD-4]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":153,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2870?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2024-07-31T08:05:18Z"}} +{"type":"node","id":"664","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2900/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Norcross","sponsors.0.isByRequest":"N","request.billNumber":"2900","sponsors.0.url":"https://api.congress.gov/v3/member/N000188?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2900/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2900/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Apprenticeship Hubs Across America Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"2900","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2900/cosponsors?format=json","sponsors.0.bioguideId":"N000188","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2900/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2900/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2900/actions?format=json","latestAction.actionDate":"2023-04-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2900/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Norcross, Donald [D-NJ-1]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":27,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2900?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"665","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2913/text?format=json","updateDate":"2024-07-24T15:22:29Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Tlaib","sponsors.0.isByRequest":"N","request.billNumber":"2913","sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2913/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2913/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Lebanon TPS Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"2913","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2913/cosponsors?format=json","sponsors.0.bioguideId":"T000481","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2913/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2913/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2913/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-12]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2913?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Rashida","updateDateIncludingText":"2024-07-24T15:22:29Z"}} +{"type":"node","id":"666","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2885/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Fallon","sponsors.0.isByRequest":"N","request.billNumber":"2885","sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2885/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2885/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Ukraine Human Rights Policy Act of 2023","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"2885","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2885/cosponsors?format=json","sponsors.0.bioguideId":"F000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2885/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2885/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2885/actions?format=json","latestAction.actionDate":"2023-04-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2885/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":15,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2885?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Pat","updateDateIncludingText":"2024-07-24T15:22:27Z"}} +{"type":"node","id":"667","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2871/text?format=json","relatedBills.count":1,"updateDate":"2024-09-27T15:22:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buchanan","sponsors.0.isByRequest":"N","request.billNumber":"2871","sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2871/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2871/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Performing Artist Tax Parity Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"2871","cosponsors.countIncludingWithdrawnCosponsors":102,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2871/cosponsors?format=json","sponsors.0.bioguideId":"B001260","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2871/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2871/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2871/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2871/relatedbills?format=json","sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":102,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2871?format=json","sponsors.0.district":16,"sponsors.0.firstName":"Vern","updateDateIncludingText":"2024-09-27T15:22:56Z"}} +{"type":"node","id":"668","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2905/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ross","sponsors.0.isByRequest":"N","request.billNumber":"2905","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2905/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2905/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"End Prison Gerrymandering Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"2905","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2905/cosponsors?format=json","sponsors.0.bioguideId":"R000305","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2905/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2905/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2905/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2905?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"669","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2634/text?format=json","updateDate":"2024-07-24T15:22:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Santos","sponsors.0.isByRequest":"N","request.billNumber":"2634","sponsors.0.url":"https://api.congress.gov/v3/member/S001222?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H2044)","committees.url":"https://api.congress.gov/v3/bill/118/hr/2634/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2634/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to make alimony deductible.","latestAction.text":"Sponsor introductory remarks on measure. (CR H2044)","sponsors.0.party":"R","number":"2634","request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"sponsors.0.bioguideId":"S001222","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2634/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2634/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2634/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Santos, George [R-NY-3]","titles.count":2,"introducedDate":"2023-04-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2634?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 63 (Monday, April 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SANTOS:\nH.R. 2634.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to make alimony\ndeductible.\n[Page H1759]\n","sponsors.0.district":3,"sponsors.0.firstName":"George","updateDateIncludingText":"2024-07-24T15:22:40Z"}} +{"type":"node","id":"670","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2631/text?format=json","updateDate":"2024-11-09T01:58:08Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Santos","sponsors.0.isByRequest":"N","request.billNumber":"2631","sponsors.0.url":"https://api.congress.gov/v3/member/S001222?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H2044)","committees.url":"https://api.congress.gov/v3/bill/118/hr/2631/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2631/subjects?format=json","policyArea.name":"Health","type":"HR","title":"MINAJ Act of 2023","latestAction.text":"Sponsor introductory remarks on measure. (CR H2044)","sponsors.0.party":"R","number":"2631","request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"sponsors.0.bioguideId":"S001222","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2631/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2631/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2631/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Santos, George [R-NY-3]","titles.count":4,"introducedDate":"2023-04-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2631?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 63 (Monday, April 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SANTOS:\nH.R. 2631.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution, Article 1 Section 8\nThe single subject of this legislation is:\nTo prohibit the Federal Government from imposing any\nmandate requiring an individual to receive a vaccine that has\nnot been authorized for marketing for at least 10 years, and\nfor other purposes.\n[Page H1759]\n","sponsors.0.district":3,"sponsors.0.firstName":"George","updateDateIncludingText":"2024-11-09T01:58:08Z"}} +{"type":"node","id":"671","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2370/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cherfilus-McCormick","sponsors.0.isByRequest":"N","request.billNumber":"2370","sponsors.0.url":"https://api.congress.gov/v3/member/C001127?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H2042)","committees.url":"https://api.congress.gov/v3/bill/118/hr/2370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2370/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Access to AEDs Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H2042)","sponsors.0.party":"D","number":"2370","cosponsors.countIncludingWithdrawnCosponsors":116,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2370/cosponsors?format=json","sponsors.0.bioguideId":"C001127","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2370/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2370/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","sponsors.0.fullName":"Rep. Cherfilus-McCormick, Sheila [D-FL-20]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":116,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2370?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CHERFILUS-McCORMICK:\nH.R. 2370.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nAutomated External Defibrillators\n[Page H1659]\n","sponsors.0.district":20,"sponsors.0.firstName":"Sheila","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"672","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Steube","cboCostEstimates.0.pubDate":"2023-04-06T18:49:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Education","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"734","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/734/cosponsors?format=json","sponsors.0.bioguideId":"S001214","actions.url":"https://api.congress.gov/v3/bill/118/hr/734/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/734/relatedbills?format=json","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/734/amendments?format=json","titles.count":5,"cosponsors.count":93,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-35","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/734/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":38,"request.billNumber":"734","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/734/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/734/subjects?format=json","title":"Protection of Women and Girls in Sports Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on March 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59050","cosponsors.countIncludingWithdrawnCosponsors":93,"request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2023-04-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/35?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/734/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/734/summaries?format=json","cboCostEstimates.0.title":"H.R. 734, Protection of Women and Girls in Sports Act of 2023","introducedDate":"2023-02-01","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/734?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 734.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nExpanding protections for women in sports under Title IX.\n[Page H630]\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2025-02-04T16:38:58Z"}} +{"type":"node","id":"673","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2810/text?format=json","updateDate":"2024-07-24T15:22:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Thanedar","sponsors.0.isByRequest":"N","request.billNumber":"2810","sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2810/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the Federal building located at 985 Michigan Avenue in Detroit, Michigan, as the \"John Conyers Federal Building\".","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"2810","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2810/cosponsors?format=json","sponsors.0.bioguideId":"T000488","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2810/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2810/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2810/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","titles.count":2,"introducedDate":"2023-04-24","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2810?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 2810.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\nThe single subject of this legislation is:\nBuilding\n[Page H1915]\n","sponsors.0.district":13,"sponsors.0.firstName":"Shri","updateDateIncludingText":"2024-07-24T15:22:34Z"}} +{"type":"node","id":"674","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2807/text?format=json","updateDate":"2024-06-11T15:57:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"2807","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2807/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2807/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Train Noise and Vibrations Reduction Act of 2023","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"2807","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2807/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2807/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2807/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2807/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-04-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2807?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 2807.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nto direct the Department of Transportation to develop and\nsubmit to Congress a report containing recommendations to\nreduce train noise and vibrations near homes and estimates of\nthe costs and benefits of such recommendations.\n[Page H1915]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-06-11T15:57:59Z"}} +{"type":"node","id":"675","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2866/text?format=json","updateDate":"2024-07-24T15:22:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"2866","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the Subcommittee on Emergency Management and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2866/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2866/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Critical Technology Security Centers Act of 2023","latestAction.text":"Referred to the Subcommittee on Emergency Management and Technology.","sponsors.0.party":"D","number":"2866","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2866/cosponsors?format=json","sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2866/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2866/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2866/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":3,"introducedDate":"2023-04-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2866?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 2866.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nCybersecurity\n[Page H1950]\n","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-07-24T15:22:32Z"}} +{"type":"node","id":"676","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2845/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Matsui","sponsors.0.isByRequest":"N","request.billNumber":"2845","sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2845/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2845/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Enhancing K–12 Cybersecurity Act","latestAction.text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","sponsors.0.party":"D","number":"2845","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2845/cosponsors?format=json","sponsors.0.bioguideId":"M001163","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2845/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2845/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2845/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2845/relatedbills?format=json","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","titles.count":3,"introducedDate":"2023-04-25","cosponsors.count":35,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2845?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 2845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo direct the Director of the Cybersecurity and\nInfrastructure Security Agency to establish a School\nCybersecurity Improvement Program, and for other purposes.\n[Page H1949]\n","sponsors.0.district":7,"sponsors.0.firstName":"Doris","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"677","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2843/text?format=json","relatedBills.count":2,"updateDate":"2024-12-04T00:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"2843","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the Subcommittee on Transportation and Maritime Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2843/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2843/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Crime Doesn’t Fly Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"2843","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2843/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2843/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2843/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2843/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2843/relatedbills?format=json","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":3,"introducedDate":"2023-04-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2843?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 2843.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo prohibit the Administrator of the Transportation\nSecurity Administration from accepting warrants for the\narrest of aliens as valid proof of identification at aviation\nsecurity checkpoints, and for other purposes.\n[Page H1949]\n","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2024-12-04T00:06:12Z"}} +{"type":"node","id":"678","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"PALLONE","cboCostEstimates.0.pubDate":"2023-04-20T15:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 27.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 27.","sponsors.0.party":"D","number":"675","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/675/cosponsors?format=json","sponsors.0.bioguideId":"P000034","actions.url":"https://api.congress.gov/v3/bill/118/hr/675/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-25","sponsors.0.fullName":"Rep. Pallone, Frank, Jr. [D-NJ-6]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-41","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/675/text?format=json","updateDate":"2024-11-09T04:56:44Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"675","sponsors.0.url":"https://api.congress.gov/v3/member/P000034?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/675/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/675/committees?format=json","title":"Secure Space Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 24, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59092","request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/41?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/675/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/675/summaries?format=json","cboCostEstimates.0.title":"H.R. 675, Secure Space Act of 2023","introducedDate":"2023-01-31","subjects.count":6,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/675?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALLONE:\nH.R. 675.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3: [The Congress shall\nhave Power] To regulate Commerce with foreign Nations, and\namong the several States, and with the India Tribes\nThe single subject of this legislation is:\nCommercial satellites.\n[Page H578]\n","sponsors.0.district":6,"sponsors.0.firstName":"FRANK","updateDateIncludingText":"2024-11-09T04:56:44Z"}} +{"type":"node","id":"679","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2423/text?format=json","relatedBills.count":1,"updateDate":"2024-08-17T08:05:33Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Finstad","sponsors.0.isByRequest":"N","request.billNumber":"2423","sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2423/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Farm Credit Administration Independent Authority Act","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"R","number":"2423","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2423/cosponsors?format=json","sponsors.0.bioguideId":"F000475","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2423/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2423/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2423/actions?format=json","latestAction.actionDate":"2023-04-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2423/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2423?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 2423.\nCongress has the power to enact this legislation pursuant\nto the following:\nLaws which shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nAffirms the Farm Credit Administration as the sole and\nindependent regulator of the Farm Credit System.\n[Page H1694]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2024-11-26T17:27:12Z"}} +{"type":"node","id":"680","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2431/text?format=json","updateDate":"2024-12-25T09:05:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mast","sponsors.0.isByRequest":"N","request.billNumber":"2431","sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2431/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2431/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Veterans Equal Access Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2431","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2431/cosponsors?format=json","sponsors.0.bioguideId":"M001199","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2431/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2431/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2431/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-21]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":29,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2431?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 2431.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power . . . To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill allows VA physicians' consultation and\nrecommendation of cannabis as a treatment option for their\npatients in states that have legal medical marijuana\nprograms.\n[Page H1694]\n","sponsors.0.district":21,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-25T09:05:20Z"}} +{"type":"node","id":"681","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2472/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ruiz","sponsors.0.isByRequest":"N","request.billNumber":"2472","sponsors.0.url":"https://api.congress.gov/v3/member/R000599?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2472/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2472/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Burn Pit Registry Enhancement Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2472","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2472/cosponsors?format=json","sponsors.0.bioguideId":"R000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2472/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2472/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2472/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2472/relatedbills?format=json","sponsors.0.fullName":"Rep. Ruiz, Raul [D-CA-25]","titles.count":3,"introducedDate":"2023-04-03","cosponsors.count":2,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2472?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 59 (Monday, April 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUIZ:\nH.R. 2472.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, Clauses 1 and 18 of the United States\nConstitution, to provide for the general welfare and make all\nlaws necessary and proper to carry out the powers of\nCongress.\nThe single subject of this legislation is:\nThis bill authorizes specified individuals to update the\nAirborne Hazards and Open Burn Pit Registry with the cause of\ndeath of a registered individual.\n[Page H1699]\n","sponsors.0.district":25,"sponsors.0.firstName":"Raul","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"682","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2441/text?format=json","relatedBills.count":1,"updateDate":"2024-12-12T09:05:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Pingree","sponsors.0.isByRequest":"N","request.billNumber":"2441","sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2441/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2441/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Servicemembers and Veterans Empowerment and Support Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2441","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2441/cosponsors?format=json","sponsors.0.bioguideId":"P000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2441/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2441/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2441/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2441/relatedbills?format=json","sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2441?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PINGREE:\nH.R. 2441.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nImproving provision of benefits to veterans who have\nexperienced military sexual trauma.\n[Page H1695]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chellie","updateDateIncludingText":"2024-12-12T09:05:50Z"}} +{"type":"node","id":"683","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1822/text?format=json","relatedBills.count":3,"updateDate":"2024-09-18T08:05:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bergman","sponsors.0.isByRequest":"N","request.billNumber":"1822","sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1822/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1822/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"PLUS for Veterans Act of 2023","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","sponsors.0.party":"R","number":"1822","cosponsors.countIncludingWithdrawnCosponsors":42,"request.format":"json","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1822/cosponsors?format=json","sponsors.0.bioguideId":"B001301","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1822/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1822/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1822/actions?format=json","latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1822/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","titles.count":4,"introducedDate":"2023-03-28","cosponsors.count":41,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1822?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 56 (Tuesday, March 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 1822.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nRestores criminal penalties on individuals who attempt to\ntake advantage of Veterans, while preserving the right for\nVeterans to seek assistance from the private sector when\npreparing their claim to VA.\n[Page H1528]\n","sponsors.0.district":1,"sponsors.0.firstName":"Jack","updateDateIncludingText":"2024-09-18T08:05:57Z"}} +{"type":"node","id":"684","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2447/text?format=json","updateDate":"2024-12-19T09:06:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"2447","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2447/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2447/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Panama Canal Zone Veterans Act of 2023","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","sponsors.0.party":"R","number":"2447","cosponsors.countIncludingWithdrawnCosponsors":52,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2447/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2447/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2447/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2447/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":52,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2447?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 2447.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nProviding Veterans Benefits\n[Page H1695]\n","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-12-19T09:06:57Z"}} +{"type":"node","id":"685","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2413/text?format=json","updateDate":"2024-11-15T09:05:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"2413","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2413/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2413/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Dental Care for Veterans Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2413","cosponsors.countIncludingWithdrawnCosponsors":69,"request.format":"json","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2413/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2413/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2413/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2413/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":69,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2413?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2413.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans\n[Page H1694]\n","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2024-11-15T09:05:16Z"}} +{"type":"node","id":"686","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2410/text?format=json","updateDate":"2024-11-09T04:56:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bilirakis","sponsors.0.isByRequest":"N","request.billNumber":"2410","sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2410/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2410/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VET CARE Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2410","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2410/cosponsors?format=json","sponsors.0.bioguideId":"B001257","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2410/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2410/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2410/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2410?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 2410.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nTo authorize a pilot program and study for the provision of\ndental care to certain veterans\n[Page H1694]\n","sponsors.0.district":12,"sponsors.0.firstName":"Gus","updateDateIncludingText":"2024-11-09T04:56:50Z"}} +{"type":"node","id":"687","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2414/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T09:05:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"2414","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2414/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2414/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"CHAMPVA Children’s Care Protection Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2414","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2414/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2414/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2414/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2414/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2414/relatedbills?format=json","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":28,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2414?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2414.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans\n[Page H1694]\n","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2024-12-06T09:05:20Z"}} +{"type":"node","id":"688","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2398/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wenstrup","sponsors.0.isByRequest":"N","request.billNumber":"2398","sponsors.0.url":"https://api.congress.gov/v3/member/W000815?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2398/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2398/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To amend title 38, United States Code, to prohibit smoking on the premises of any facility of the Veterans Health Administration, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2398","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2398/cosponsors?format=json","sponsors.0.bioguideId":"W000815","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2398/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2398/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2398/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2398/relatedbills?format=json","sponsors.0.fullName":"Rep. Wenstrup, Brad R. [R-OH-2]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2398?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WENSTRUP:\nH.R. 2398.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans Health\n[Page H1660]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2024-07-24T15:23:09Z"}} +{"type":"node","id":"689","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2599/text?format=json","relatedBills.count":5,"updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kilmer","sponsors.0.isByRequest":"N","request.billNumber":"2599","sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2599/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2599/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Honest Ads Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"2599","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2599/cosponsors?format=json","sponsors.0.bioguideId":"K000381","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2599/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2599/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2599/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2599/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":4,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2599?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 2599.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnhancing transparency and disclosure requirements for\nonline political advertisements.\n[Page H1727]\n","sponsors.0.district":6,"sponsors.0.firstName":"Derek","updateDateIncludingText":"2024-07-24T15:22:51Z"}} +{"type":"node","id":"690","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2619/text?format=json","updateDate":"2024-07-24T15:22:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Porter","sponsors.0.isByRequest":"N","request.billNumber":"2619","sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2619/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2619/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Tax Fairness for Disaster Victims Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"2619","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2619/cosponsors?format=json","sponsors.0.bioguideId":"P000618","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2619/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2619/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2619?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 2619.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to provide a\nlookback rule in the case of certain Federally declared\ndisasters for amounts related to earned income for purposes\nof determining certain tax credits.\n[Page H1728]\n","sponsors.0.district":47,"sponsors.0.firstName":"Katie","updateDateIncludingText":"2024-07-24T15:22:36Z"}} +{"type":"node","id":"691","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2620/text?format=json","relatedBills.count":1,"updateDate":"2024-09-24T08:05:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Rutherford","sponsors.0.isByRequest":"N","request.billNumber":"2620","sponsors.0.url":"https://api.congress.gov/v3/member/R000609?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2620/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2620/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Federal Firearms Licensee Protection Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"2620","cosponsors.countIncludingWithdrawnCosponsors":87,"request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2620/cosponsors?format=json","sponsors.0.bioguideId":"R000609","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2620/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2620/actions?format=json","latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2620/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Rutherford, John H. [R-FL-5]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":87,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2620?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUTHERFORD:\nH.R. 2620.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nIncreasing penalties for robbing or burglarizing a firearm\nstore.\n[Page H1728]\n","sponsors.0.district":5,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-09-24T08:05:35Z"}} +{"type":"node","id":"692","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2616/text?format=json","updateDate":"2024-07-24T15:22:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pettersen","sponsors.0.isByRequest":"N","request.billNumber":"2616","sponsors.0.url":"https://api.congress.gov/v3/member/P000620?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2616/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2616/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Stop the Import of Fentanyl Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2616","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2616/cosponsors?format=json","sponsors.0.bioguideId":"P000620","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2616/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2616/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2616/actions?format=json","latestAction.actionDate":"2023-04-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Pettersen, Brittany [D-CO-7]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2616?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PETTERSEN:\nH.R. 2616.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18, Section 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nDrug control\n[Page H1728]\n","sponsors.0.district":7,"sponsors.0.firstName":"Brittany","updateDateIncludingText":"2024-07-24T15:22:48Z"}} +{"type":"node","id":"693","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2581/text?format=json","updateDate":"2024-12-10T09:05:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2581","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2581/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2581/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"ALVIN Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"2581","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2581/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2581/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2581/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2581/actions?format=json","latestAction.actionDate":"2023-04-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2023-04-13","cosponsors.count":11,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2581?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2581.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to prohibit federal\nfunds from being awarded to the Manhattan District Attorney's\nOffice.\n[Page H1726]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-12-10T09:05:25Z"}} +{"type":"node","id":"694","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2575/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"2575","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2575/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2575/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Restaurant Revitalization Tax Credit Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"2575","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2575/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2575/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2575/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2575/actions?format=json","latestAction.actionDate":"2023-04-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2575/relatedbills?format=json","sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2575?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 2575.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the U.S. Constitution\nThe single subject of this legislation is:\nTaxation\n[Page H1726]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2024-07-24T15:22:50Z"}} +{"type":"node","id":"695","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2597/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"2597","sponsors.0.url":"https://api.congress.gov/v3/member/J000308?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2597/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2597/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Reserve Component Parental Leave Parity Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"2597","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2597/cosponsors?format=json","sponsors.0.bioguideId":"J000308","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2597/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2597/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2597/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2597/relatedbills?format=json","sponsors.0.fullName":"Rep. Jackson, Jeff [D-NC-14]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2597?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of North Carolina:\nH.R. 2597.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 14\nThe single subject of this legislation is:\nparental leave for reserve component servicemembers\n[Page H1727]\n","sponsors.0.district":14,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-07-24T15:22:51Z"}} +{"type":"node","id":"696","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2625/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steil","sponsors.0.isByRequest":"N","request.billNumber":"2625","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2625/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2625/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To lower the aggregate market value of voting and non-voting common equity necessary for an issuer to qualify as a well-known seasoned issuer.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"2625","request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"sponsors.0.bioguideId":"S001213","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2625/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2625/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2625/actions?format=json","latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2625/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":2,"introducedDate":"2023-04-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2625?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2024-07-24T15:22:49Z"}} +{"type":"node","id":"697","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2591/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"2591","sponsors.0.url":"https://api.congress.gov/v3/member/G000061?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2591/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2591/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"RAISE Minimum Base Pay Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"2591","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2591/cosponsors?format=json","sponsors.0.bioguideId":"G000061","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2591/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2591/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2591/actions?format=json","latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2591/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Garcia, Mike [R-CA-27]","titles.count":4,"introducedDate":"2023-04-13","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2591?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MIKE GARCIA of California:\nH.R. 2591.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nIncreasing military base pay.\n[Page H1727]\n","sponsors.0.district":27,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:22:51Z"}} +{"type":"node","id":"698","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2624/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steil","sponsors.0.isByRequest":"N","request.billNumber":"2624","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2624/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2624/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Helping Startups Continue To Grow Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"2624","request.format":"json","latestAction_actionDate":"2023-04-13","summaries.count":1,"sponsors.0.bioguideId":"S001213","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2624/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2624/actions?format=json","latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2624/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":3,"introducedDate":"2023-04-13","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2624?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEIL:\nH.R. 2624.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution: To make all laws which shall be necessary and\nproper for carrying into execution the foregoing powers, and\nall other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.\nThe single subject of this legislation is:\nThis bill will broaden the criteria determining issuers'\nstatus as Emerging Growth Companies.\n[Page H1728]\n","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2024-07-24T15:22:49Z"}} +{"type":"node","id":"699","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2621/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scholten","sponsors.0.isByRequest":"N","request.billNumber":"2621","sponsors.0.url":"https://api.congress.gov/v3/member/S001221?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2621/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Honoring Vocational Education Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"2621","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2621/cosponsors?format=json","sponsors.0.bioguideId":"S001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2621/actions?format=json","latestAction.actionDate":"2023-04-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Scholten, Hillary J. [D-MI-3]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2621?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHOLTEN:\nH.R. 2621.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''.\nThe single subject of this legislation is:\nWorkforce\n[Page H1728]\n","sponsors.0.district":3,"sponsors.0.firstName":"Hillary","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"700","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1689/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Spanberger","sponsors.0.isByRequest":"N","request.billNumber":"1689","sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1689/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Connecting Students with Mental Health Services Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1689/cosponsors?format=json","sponsors.0.bioguideId":"S001209","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1689/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1689/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1689/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","titles.count":3,"introducedDate":"2023-03-21","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1689?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 1689.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nTo support students' access to mental health services\nthrough telehealth programs.\n[Page H1302]\n","sponsors.0.district":7,"sponsors.0.firstName":"Abigail","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"701","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1686/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"SCHAKOWSKY","sponsors.0.isByRequest":"N","request.billNumber":"1686","sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1686/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1686/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Sunshine in Product Safety Act","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"D","number":"1686","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1686/cosponsors?format=json","sponsors.0.bioguideId":"S001145","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1686/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1686/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1686/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1686/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","titles.count":3,"introducedDate":"2023-03-21","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1686?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 1686.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 3 and 18.\nThe single subject of this legislation is:\nConsumer protection\n[Page H1302]\n","sponsors.0.district":9,"sponsors.0.firstName":"JANICE","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"702","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1683/text?format=json","updateDate":"2024-07-24T15:23:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","request.billNumber":"1683","sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1683/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1683/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Generic Animal Drug Advancement Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1683","request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"sponsors.0.bioguideId":"M000194","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1683/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","titles.count":3,"introducedDate":"2023-03-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1683?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MACE:\nH.R. 1683.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nWould expand consumer choices for FDA-approved generic\nanimal drugs for the care and treatment of both pets and\nlivestock.\n[Page H1302]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-07-24T15:23:16Z"}} +{"type":"node","id":"703","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1677/text?format=json","updateDate":"2024-07-24T15:23:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Guthrie","sponsors.0.isByRequest":"N","request.billNumber":"1677","sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1677/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"SMART Spectrum Act","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"1677","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1677/cosponsors?format=json","sponsors.0.bioguideId":"G000558","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1677/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1677/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1677/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","titles.count":4,"introducedDate":"2023-03-21","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1677?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 1677.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation would improve federal spectrum management\nby creating a new tool used by the National\nTelecommunications and Information Administration to improve\nthe coordination of federal spectrum and mitigate harmful\ninterference.\n[[Page H1302]]\n[Page H1301]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brett","updateDateIncludingText":"2024-07-24T15:23:15Z"}} +{"type":"node","id":"704","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1672/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"1672","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1672/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1672/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Sickle Cell Disease Comprehensive Care Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1672","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1672/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1672/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1672/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1672/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1672/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":3,"introducedDate":"2023-03-21","cosponsors.count":4,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1672?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 1672.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nHealthcare\n[Page H1301]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2024-07-24T15:23:17Z"}} +{"type":"node","id":"705","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1671/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T09:05:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"1671","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1671/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1671/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Increasing Access to Dental Insurance Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1671","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1671/cosponsors?format=json","sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1671/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1671/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1671/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1671/relatedbills?format=json","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2023-03-21","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1671?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 1671.\nCongress has the power to enact this legislation pursuant\nto the following:\nCommerce clause--Article 1, Section 8, Clause 3 of the U.S.\nConstitution\nThe single subject of this legislation is:\nDental insurance availability by interstate commerce\n[Page H1301]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-06T09:05:37Z"}} +{"type":"node","id":"706","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1790/text?format=json","updateDate":"2024-07-24T15:23:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"1790","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1790/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1790/committees?format=json","policyArea.name":"Health","type":"HR","title":"Biologics Competition Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1790","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1790/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1790/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1790/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1790/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1790?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 1790.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nStudy to determine whether there are impediments to the\napproval process for interchangeable biologics.\n[Page H1438]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-07-24T15:23:12Z"}} +{"type":"node","id":"707","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1784/text?format=json","relatedBills.count":1,"updateDate":"2024-12-13T09:05:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Hudson","sponsors.0.isByRequest":"N","request.billNumber":"1784","sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1784/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1784/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Next Generation 9–1–1 Act of 2023","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"1784","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1784/cosponsors?format=json","sponsors.0.bioguideId":"H001067","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1784/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1784/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1784/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1784/relatedbills?format=json","sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-9]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1784?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 1784.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTelecommunications\n[Page H1438]\n","sponsors.0.district":9,"sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-12-13T09:05:28Z"}} +{"type":"node","id":"708","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1781/text?format=json","relatedBills.count":1,"updateDate":"2024-12-18T09:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bucshon","sponsors.0.isByRequest":"N","request.billNumber":"1781","sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1781/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1781/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Ensuring Access to General Surgery Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1781","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1781/cosponsors?format=json","sponsors.0.bioguideId":"B001275","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1781/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1781/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1781/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1781/relatedbills?format=json","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1781?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 1781.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHealth\n[Page H1438]\n","sponsors.0.district":8,"sponsors.0.firstName":"Larry","updateDateIncludingText":"2024-12-18T09:05:41Z"}} +{"type":"node","id":"709","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1768/text?format=json","relatedBills.count":1,"updateDate":"2024-11-19T09:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Roy","sponsors.0.isByRequest":"N","request.billNumber":"1768","sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1768/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1768/subjects?format=json","policyArea.name":"Health","type":"HR","title":"NIH Reform Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1768","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1768/cosponsors?format=json","sponsors.0.bioguideId":"R000614","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1768/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1768/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1768/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1768/relatedbills?format=json","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","titles.count":3,"introducedDate":"2023-03-23","cosponsors.count":17,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1768?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 1768.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nComposition of Executive Agencies\n[Page H1411]\n","sponsors.0.district":21,"sponsors.0.firstName":"Chip","updateDateIncludingText":"2024-11-19T09:05:29Z"}} +{"type":"node","id":"710","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2394/text?format=json","relatedBills.count":1,"updateDate":"2024-09-21T08:05:26Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Swalwell","sponsors.0.isByRequest":"N","request.billNumber":"2394","sponsors.0.url":"https://api.congress.gov/v3/member/S001193?format=json","latestAction_text":"Referred to the Subcommittee on Aviation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2394/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2394/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Protection from Abusive Passengers Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"D","number":"2394","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2394/cosponsors?format=json","sponsors.0.bioguideId":"S001193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2394/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2394/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2394/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2394/relatedbills?format=json","sponsors.0.fullName":"Rep. Swalwell, Eric [D-CA-14]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":50,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2394?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SWALWELL:\nH.R. 2394.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution,\nspecifically clause 18 (relating to the power to make laws\nnecessary and proper for carrying out the powers vested in\nCongress).\nThe single subject of this legislation is:\nCreates a banned fliers list through the Transportation\nSecurity Administrative to limit individuals who physically\nor sexually assault members of in-flight crew.\n[Page H1660]\n","sponsors.0.district":14,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-09-21T08:05:26Z"}} +{"type":"node","id":"711","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2373/text?format=json","updateDate":"2024-07-24T15:23:09Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Garamendi","sponsors.0.isByRequest":"N","request.billNumber":"2373","sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2373/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2373/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Rebuilding the United States-Flag International Fleet Act","latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","sponsors.0.party":"D","number":"2373","request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"sponsors.0.bioguideId":"G000559","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2373/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","titles.count":3,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2373?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 2373.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo reinstate certain laws relating to minimum tonnage of\nagricultural commodities and products, and for other\npurposes.\n[Page H1659]\n","sponsors.0.district":8,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:23:09Z"}} +{"type":"node","id":"712","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2366/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T15:33:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"2366","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2366/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"90-Day Review Act","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"2366","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2366/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2366/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2366/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2366?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 2366.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nThis bill simply shortens the timetable to file a petition\nfor judicial review of a permit, license, or approval of a\nmajor infrastructure project, such as a highway or public\ntransit project, from 150 days to 90 days.\n[Page H1659]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-01-14T15:33:10Z"}} +{"type":"node","id":"713","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2221/text?format=json","updateDate":"2024-07-24T15:22:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2221","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2221/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, John F. Kennedy Center for the Performing Arts, Operations and Maintenance for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2221","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2221/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2221/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2221/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2221/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:44Z"}} +{"type":"node","id":"714","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2220/text?format=json","updateDate":"2024-07-24T15:22:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2220","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2220/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, National Gallery of Art, Repair, Restoration and Renovation of Buildings for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2220","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2220/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2220/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2220/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2220/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2220?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2220.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:44Z"}} +{"type":"node","id":"715","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2218/text?format=json","updateDate":"2024-07-24T15:22:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2218","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2218/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, Smithsonian Institution: Facilities Capital for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2218","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2218/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2218/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2218?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2218.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:44Z"}} +{"type":"node","id":"716","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2214/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2214","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2214/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2214/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, John F. Kennedy Center for the Performing Arts, Capital Repair and Restoration for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2214","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2214/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2214/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2214?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2214.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:45Z"}} +{"type":"node","id":"717","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2196/text?format=json","updateDate":"2024-07-24T15:22:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2196","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2196/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2196/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"To provide for a limitation on availability of funds for Environmental Protection Agency, Inland Oil Spill Programs for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"R","number":"2196","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2196/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2196/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2196/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2196/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2196?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2196.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1653]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:41Z"}} +{"type":"node","id":"718","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2122/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2122","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2122/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Asset Proceeds and Space Management Fund for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2122","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2122/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2122/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2122?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2122.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"719","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2119/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2119","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2119/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, General Services Administration, Office of Inspector General for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2119","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2119/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2119/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2119?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"720","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2135/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2135","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2135/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2135/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Office of Personnel Management, Office of Inspector General vehicles for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2135","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2135/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2135/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2135?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2135.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"721","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2134/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2134","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2134/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2134/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Office of Personnel Management, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2134","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2134/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2134/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2134/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2134?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2134.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"722","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2147/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2147","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Small Business.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2147/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2147/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration, Business Loans Program Account for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2147","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2147/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2147/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2147/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2147/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2147?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2147.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:45Z"}} +{"type":"node","id":"723","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2146/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2146","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Small Business.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2146/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2146/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration,Office of Advocacy for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2146","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2146/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2146/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2146/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2146/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2146?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2146.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"724","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2111/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2111","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2111/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2111/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Federal Election Commission for fiscal year 2024.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"2111","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2111/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2111/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2111/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2111/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2111?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2111.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:45Z"}} +{"type":"node","id":"725","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2133/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2133","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2133/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Office of Government Ethics for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2133","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2133/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2133/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2133/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2133?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2133.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"726","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2132/text?format=json","updateDate":"2024-07-24T15:22:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2132","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2132/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Credit Union Administration, Community Development Revolving Loan Fund for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"2132","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2132/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2132/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2132?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2132.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1. Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:47Z"}} +{"type":"node","id":"727","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2145/text?format=json","updateDate":"2024-07-24T15:22:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2145","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Small Business.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2145/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2145/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration, Office of Inspector General for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2145","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2145/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2145/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2145/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2145/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2145?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2145.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:47Z"}} +{"type":"node","id":"728","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2131/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2131","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2131/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Historical Publications and Records Commission, Grants Program for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2131","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2131/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2131/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2131/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2131?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2131.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is,\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"729","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2144/text?format=json","updateDate":"2024-07-24T15:22:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2144","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Small Business.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2144/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2144/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration, Entrepreneurial Development Programs for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2144","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2144/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2144/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2144/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2144/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2144?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2144.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:47Z"}} +{"type":"node","id":"730","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2027/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2027","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2027/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2027/committees?format=json","policyArea.name":"Education","type":"HR","title":"To provide for a limitation on availability of funds for Department of Education, Student Aid Administration for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"2027","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2027/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2027/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2027/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2027/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2027?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2027.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1647]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"731","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2130/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2130","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2130/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2130/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Archives and Records Administration, Repairs and Restoration for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2130/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2130/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2130?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"732","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2109/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2109","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2109/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2109/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Election Assistance Commission, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"2109","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2109/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2109/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2109/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2109?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2109.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"733","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2129/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2129","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2129/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Archives and Records Administration, Office of Inspector General for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2129","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2129/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2129/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2129?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2129.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"734","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2128/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2128","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2128/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Archives and Records Administration, Operating Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2128","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2128/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2128/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2128.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"735","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2106/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2106","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2106/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2106/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Administrative Conference of the US for fiscal year 2024.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"2106","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2106/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2106/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2106?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:45Z"}} +{"type":"node","id":"736","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2127/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2127","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2127/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Morris K. Udall and Stewart L. Udall Foundation, Environmental Dispute Resolution Fund for fiscal year 2024.","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"2127","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2127/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2127/actions?format=json","latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2127/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2127?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2127.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"737","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2105/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2105","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2105/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for District of Columbia, Federal Payment to the DC Water and Sewer Authority for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2105/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2105/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2105?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2105.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"738","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2126/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2126","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2126/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2126/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Morris K Udall and Stewart L Udall Foundation, Trust Fund for fiscal year 2024.","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"2126","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2126/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2126/actions?format=json","latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2126/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2126?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2126.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"739","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2104/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2104","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2104/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2104/committees?format=json","policyArea.name":"Health","type":"HR","title":"To provide for a limitation on availability of funds for District of Columbia, Federal Payment for Testing and Treatment of HIV/AIDS for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2104","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-03-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2104/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2104/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2104/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2104?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2104.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"740","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1793/text?format=json","updateDate":"2024-07-24T15:21:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Self","sponsors.0.isByRequest":"N","request.billNumber":"1793","sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1793/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1793/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"EL CHAPO Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1793","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1793/cosponsors?format=json","sponsors.0.bioguideId":"S001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1793/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","titles.count":4,"introducedDate":"2023-03-24","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1793?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SELF:\nH.R. 1793.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Seciton 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo seize forfeited assets receovered by the United States\nto support border secuirty efforts.\n[Page H1438]\n","sponsors.0.district":3,"sponsors.0.firstName":"Keith","updateDateIncludingText":"2024-07-24T15:21:54Z"}} +{"type":"node","id":"741","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1791/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Quigley","sponsors.0.isByRequest":"N","request.billNumber":"1791","sponsors.0.url":"https://api.congress.gov/v3/member/Q000023?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1791/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1791/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Classified Documents Accountability Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1791","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1791/cosponsors?format=json","sponsors.0.bioguideId":"Q000023","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1791/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1791/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1791/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Quigley, Mike [D-IL-5]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1791?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. QUIGLEY:\nH.R. 1791.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\nThe single subject of this legislation is:\nClassified Documents\n[Page H1438]\n","sponsors.0.district":5,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"742","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1800/text?format=json","updateDate":"2024-07-24T15:22:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"1800","sponsors.0.url":"https://api.congress.gov/v3/member/W000828?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1800/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1800/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Stop Funding Our Adversaries Act of 2023","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"R","number":"1800","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1800/cosponsors?format=json","sponsors.0.bioguideId":"W000828","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1800/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1800/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1800/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Brandon [R-NY-22]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1800?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILLIAMS of New York:\nH.R. 1800.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmong other powers, those vested in Congress pursuant to\nArticle I, Section 8 to: Provide for the common defense and\ngeneral welfare of the United States; Regulate commerce, and\nMake all laws which shall be necessary and proper for\ncarrying into execution Congress's other powers as provided\nunder that Article.\nThe single subject of this legislation is:\nThis bill prohibits federal agencies from conducting or\nsupporting, either directly or indirectly, research that will\nbe conducted by China's government, the Chinese Communist\nParty, or any agent, instrumentality, or entity belonging to\nor controlled by either entity.\n[Page H1439]\n","sponsors.0.district":22,"sponsors.0.firstName":"Brandon","updateDateIncludingText":"2024-07-24T15:22:42Z"}} +{"type":"node","id":"743","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1777/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T09:05:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wilson","sponsors.0.isByRequest":"N","request.billNumber":"1777","sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1777/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1777/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"United States-Israel Future of Warfare Act of 2023","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1777","cosponsors.countIncludingWithdrawnCosponsors":144,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1777/cosponsors?format=json","sponsors.0.bioguideId":"W000795","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1777/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1777/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1777/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1777/relatedbills?format=json","sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":144,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1777?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 1777.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nEstablishes a fund for joint collaborative defense projects\nbetween the United States and Israel\n[Page H1438]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-12-04T09:05:24Z"}} +{"type":"node","id":"744","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1787/text?format=json","updateDate":"2024-12-06T09:05:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LOFGREN","sponsors.0.isByRequest":"N","request.billNumber":"1787","sponsors.0.url":"https://api.congress.gov/v3/member/L000397?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1787/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1787/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Carnivals are Real Entertainment Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1787","cosponsors.countIncludingWithdrawnCosponsors":77,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1787/cosponsors?format=json","sponsors.0.bioguideId":"L000397","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1787/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1787/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1787/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Lofgren, Zoe [D-CA-18]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":77,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1787?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LOFGREN:\nH.R. 1787.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 4 provides Congress with the\npower to establish a ``uniform rule of Naturalization.''\nThe single subject of this legislation is:\nimmigration\n[Page H1438]\n","sponsors.0.district":18,"sponsors.0.firstName":"ZOE","updateDateIncludingText":"2024-12-06T09:05:21Z"}} +{"type":"node","id":"745","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1785/text?format=json","relatedBills.count":1,"updateDate":"2024-10-05T08:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LaHood","sponsors.0.isByRequest":"N","request.billNumber":"1785","sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1785/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1785/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Historic Tax Credit Growth and Opportunity Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1785","cosponsors.countIncludingWithdrawnCosponsors":68,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1785/cosponsors?format=json","sponsors.0.bioguideId":"L000585","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1785/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1785/relatedbills?format=json","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":68,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1785?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 1785.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article 1, Section 8, Clause 1: ``The\nCongress shall have Power To lay and collect Taxes . . .''\nThe single subject of this legislation is:\nThis bill temporarily increases the rehabilitation credit,\nmodifies the rehabilitation credit for certain small\nprojects, and eliminates the requirement that the taxpayer's\nbasis in a building be reduced by the amount of the\nrehabilitation credit determined with respect to such\nbuilding.\n[Page H1438]\n","sponsors.0.district":16,"sponsors.0.firstName":"Darin","updateDateIncludingText":"2024-10-05T08:05:29Z"}} +{"type":"node","id":"746","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1775/text?format=json","updateDate":"2024-07-24T15:23:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McCormick","sponsors.0.isByRequest":"N","request.billNumber":"1775","sponsors.0.url":"https://api.congress.gov/v3/member/M001218?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1775/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1775/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"AUDIT Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1775","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1775/cosponsors?format=json","sponsors.0.bioguideId":"M001218","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1775/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1775/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1775/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. McCormick, Richard [R-GA-6]","titles.count":4,"introducedDate":"2023-03-24","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1775?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCORMICK:\nH.R. 1775.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1 of the Constitution.\nThe single subject of this legislation is:\nForeign affairs\n[Page H1438]\n","sponsors.0.district":6,"sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:23:12Z"}} +{"type":"node","id":"747","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1789/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"1789","sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1789/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to increase the minimum amount of a civil penalty imposed for violating such Act, and for other purposes.","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"R","number":"1789","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-24","summaries.count":1,"sponsors.0.bioguideId":"M001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1789/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1789/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1789/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-24","sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","titles.count":2,"introducedDate":"2023-03-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1789?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 1789.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nAgriculture\n[Page H1438]\n","sponsors.0.district":15,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"748","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1778/text?format=json","updateDate":"2024-07-24T15:23:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Allen","sponsors.0.isByRequest":"N","request.billNumber":"1778","sponsors.0.url":"https://api.congress.gov/v3/member/A000372?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1778/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1778/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"BARN Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1778","request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-03-24","summaries.count":1,"sponsors.0.bioguideId":"A000372","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1778/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1778/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1778/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-24","sponsors.0.fullName":"Rep. Allen, Rick W. [R-GA-12]","titles.count":4,"introducedDate":"2023-03-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1778?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALLEN:\nH.R. 1778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend the H2A visa program.\n[Page H1438]\n","sponsors.0.district":12,"sponsors.0.firstName":"Rick","updateDateIncludingText":"2024-07-24T15:23:12Z"}} +{"type":"node","id":"749","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1794/text?format=json","relatedBills.count":1,"updateDate":"2024-09-24T08:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SHERMAN","sponsors.0.isByRequest":"N","request.billNumber":"1794","sponsors.0.url":"https://api.congress.gov/v3/member/S000344?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1794/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1794/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"LA28 Olympic and Paralympic Games Commemorative Coin Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"1794","cosponsors.countIncludingWithdrawnCosponsors":97,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1794/cosponsors?format=json","sponsors.0.bioguideId":"S000344","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1794/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1794/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1794/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1794/relatedbills?format=json","sponsors.0.fullName":"Rep. Sherman, Brad [D-CA-32]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":97,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1794?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SHERMAN:\nH.R. 1794.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe power granted to Congress under Article I, Section 8,\nClauses 1 and 18 of the United States Constitution.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to mint coins in\ncommemoration of the 2028 Olympic and Paralympic Games in Los\nAngeles, California.\n[Page H1438]\n","sponsors.0.district":32,"sponsors.0.firstName":"BRAD","updateDateIncludingText":"2024-09-24T08:05:49Z"}} +{"type":"node","id":"750","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1168/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Alford","sponsors.0.isByRequest":"N","request.billNumber":"1168","sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H1427)","committees.url":"https://api.congress.gov/v3/bill/118/hr/1168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1168/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"School Lunch Affordability Act of 2023","latestAction.text":"Sponsor introductory remarks on measure. (CR H1427)","sponsors.0.party":"R","number":"1168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1168/cosponsors?format=json","sponsors.0.bioguideId":"A000379","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1168/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","titles.count":3,"introducedDate":"2023-02-24","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 1168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend the Richard B. Russell National School Lunch Act\nto require that only a school food authority that had a\nnegative balance in the nonprofit school food service account\non June 30th of the year preceding the previous school year\nshall be required to establish a price, for paid lunches.\n[Page H876]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"751","labels":["Bill"],"properties":{"relatedBills.count":20,"congress":118,"sponsors.0.lastName":"Westerman","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 18.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 18.","sponsors.0.party":"R","number":"1335","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1335/cosponsors?format=json","sponsors.0.bioguideId":"W000821","actions.url":"https://api.congress.gov/v3/bill/118/hr/1335/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1335/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","titles.count":6,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-28","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1335/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":15,"request.billNumber":"1335","sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1335/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1335/subjects?format=json","title":"TAPP American Resources Act","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-03-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/28?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1335/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1335/summaries?format=json","introducedDate":"2023-03-03","subjects.count":32,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1335?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 1335.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, article I, section 8, clause 18.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by restarting the leasing process and streamlining\nthe permitting process for all forms of energy and mineral\ndevelopment on federal lands and waters and reforming the\nNational Environmental Policy Act (NEPA) to establish\ntimelines for an clarify the scope of federal environmental\nreviews.\n[Page H1114]\n","sponsors.0.district":4,"sponsors.0.firstName":"Bruce","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"752","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1266/text?format=json","updateDate":"2024-07-24T15:23:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Timmons","sponsors.0.isByRequest":"N","request.billNumber":"1266","sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1266/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1266/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Building Credit Access for Veterans Act of 2023","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"R","number":"1266","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1266/cosponsors?format=json","sponsors.0.bioguideId":"T000480","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1266/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1266/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1266/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","titles.count":3,"introducedDate":"2023-02-28","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1266?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 38 (Tuesday, February 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 1266.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nArmed Forces and National Security\n[Page H972]\n","sponsors.0.district":4,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-11-08T17:27:12Z"}} +{"type":"node","id":"753","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1344/text?format=json","updateDate":"2024-11-20T09:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Crockett","sponsors.0.isByRequest":"N","request.billNumber":"1344","sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1344/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1344/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To rename the Dallas Veterans Affairs Medical Center in Dallas, Texas, as the \"Eddie Bernice Johnson VA Medical Center\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1344","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1344/cosponsors?format=json","sponsors.0.bioguideId":"C001130","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1344/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1344/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1344/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","titles.count":2,"introducedDate":"2023-03-03","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1344?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CROCKETT:\nH.R. 1344.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection I, Article 8\nThe single subject of this legislation is:\nVeterans Affairs\n[Page H1114]\n","sponsors.0.district":30,"sponsors.0.firstName":"Jasmine","updateDateIncludingText":"2024-11-20T09:05:29Z"}} +{"type":"node","id":"754","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1716/text?format=json","relatedBills.count":2,"updateDate":"2024-12-19T09:05:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"1716","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Subcommittee on Aviation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1716/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1716/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Global Aircraft Maintenance Safety Improvement Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"R","number":"1716","cosponsors.countIncludingWithdrawnCosponsors":57,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1716/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1716/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1716/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1716/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1716/relatedbills?format=json","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-03-22","cosponsors.count":57,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1716?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 1716.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe Constitution\nThe single subject of this legislation is:\nTransportation\n[Page H1329]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-12-19T09:05:59Z"}} +{"type":"node","id":"755","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1058/text?format=json","relatedBills.count":7,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":18,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"1058","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 16.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1058/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1058/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"Promoting Cross-border Energy Infrastructure Act","latestAction.text":"Placed on the Union Calendar, Calendar No. 16.","sponsors.0.party":"R","number":"1058","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-03-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/24?format=json","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1058/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1058/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1058/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1058/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1058/relatedbills?format=json","sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":4,"introducedDate":"2023-02-17","cosponsors.count":17,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1058?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 1058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by streamlining the permitting process of cross-\nborder pipelines and electric transmission lines.\n[Page H854]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-15T18:51:50Z","committeeReports.0.citation":"H. Rept. 118-24"}} +{"type":"node","id":"756","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 15.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 15.","sponsors.0.party":"R","number":"1115","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1115/cosponsors?format=json","sponsors.0.bioguideId":"B001248","actions.url":"https://api.congress.gov/v3/bill/118/hr/1115/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1115/relatedbills?format=json","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-23","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1115/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1115","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1115/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1115/subjects?format=json","title":"Promoting Interagency Coordination for Review of Natural Gas Pipelines Act","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2023-03-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/23?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1115/summaries?format=json","introducedDate":"2023-02-21","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1115?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 1115.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article I of Section 8 Congress has the power\nto enact this legislation.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by improving coordination among Federal and state\nagencies reviewing applications for the construction of\ninterstate natural gas pipelines.\n[Page H867]\n","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"757","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Bucshon","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 14.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 14.","sponsors.0.party":"R","number":"1068","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1068/cosponsors?format=json","sponsors.0.bioguideId":"B001275","actions.url":"https://api.congress.gov/v3/bill/118/hr/1068/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1068/relatedbills?format=json","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-22","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1068/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1068","sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1068/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1068/subjects?format=json","title":"Securing America’s Critical Minerals Supply Act","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-03-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/22?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1068/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1068/summaries?format=json","introducedDate":"2023-02-17","subjects.count":8,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1068?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 1068\nCongress has the power to enact this legislation pursuant\nto the following:\nThis resolution is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 3 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by requiring the DOE to assess and strengthen our\ncritical energy resource supply chain.\n[Page H855]\n","sponsors.0.district":8,"sponsors.0.firstName":"Larry","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"758","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 13.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 13.","sponsors.0.party":"R","number":"1070","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1070/cosponsors?format=json","sponsors.0.bioguideId":"C001103","actions.url":"https://api.congress.gov/v3/bill/118/hr/1070/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1070/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":2,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-21","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1070/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1070","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1070/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1070/subjects?format=json","title":"To amend the Solid Waste Disposal Act to provide the owner or operator of a critical energy resource facility an interim permit under subtitle C that is subject to final approval by the Administrator of the Environmental Protection Agency, and for other purposes.","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2023-03-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/21?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1070/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1070/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1070?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 1070\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of article I of the U.S. Constitution\nprovides Congress with the power to regulate commerce.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by providing the owner or operator of a critical\nenergy resource facility an interim permit under subtitle C\nof the Solid Waste Disposal Act that is subject to final\napproval by the Administrator of the Environmental Protection\nAgency.\n[Page H855]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"759","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 12.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 12.","sponsors.0.party":"R","number":"1085","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1085/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1085/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1085/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-20","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1085/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1085","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1085/subjects?format=json","title":"REFINER Act","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/20?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1085/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1085?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by directing the National Petroleum Council to\nissue a report examining the importance of petrochemical\nrefineries to energy security\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"760","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1518/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Rodgers","sponsors.0.isByRequest":"N","request.billNumber":"1518","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Rules, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1518/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1518/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Unauthorized Spending Accountability Act of 2023","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Rules, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1518","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2023-03-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1518/cosponsors?format=json","sponsors.0.bioguideId":"M001159","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1518/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1518/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1518/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1518/relatedbills?format=json","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1518?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 1518.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article I, Section 7, Clause 1: ``All Bills\nfor raising Revenue shall originate in the House of\nRepresentatives; but the Senate may propose or concur with\namendments as on other Bills.''\nThe single subject of this legislation is:\nBudget Process\n[Page H1251]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"761","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1491/text?format=json","updateDate":"2024-12-12T09:05:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crow","sponsors.0.isByRequest":"N","request.billNumber":"1491","sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","latestAction_text":"Referred to the House Committee on Small Business.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1491/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1491/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Small Business Energy Loan Enhancement Act","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"D","number":"1491","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-03-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1491/cosponsors?format=json","sponsors.0.bioguideId":"C001121","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1491/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1491/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1491/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1491?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 1491.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend the Small Business Investment Act of 1958 to\nincrease the maximum loan amount for certain loans.\n[Page H1250]\n","sponsors.0.district":6,"sponsors.0.firstName":"Jason","updateDateIncludingText":"2024-12-12T09:05:52Z"}} +{"type":"node","id":"762","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1494/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"1494","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1494/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1494/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Hurricane Tax Relief Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1494","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-03-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1494/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1494/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1494/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1494/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1494/relatedbills?format=json","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1494?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 1494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt 1, Sec 8\nThe single subject of this legislation is:\nProvides tax relief for victims of Hurricanes Ian, Nicole\nand Fiona.\n[Page H1250]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2025-01-29T17:27:13Z"}} +{"type":"node","id":"763","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1478/text?format=json","updateDate":"2024-12-04T09:05:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1478","sponsors.0.url":"https://api.congress.gov/v3/member/K000385?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1478/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1478/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Federal Firearm Licensee Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1478","cosponsors.countIncludingWithdrawnCosponsors":114,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2023-03-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1478/cosponsors?format=json","sponsors.0.bioguideId":"K000385","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1478/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1478/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1478/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Rep. Kelly, Robin L. [D-IL-2]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":114,"request.contentType":"application/json","subjects.count":23,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1478?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KELLY of Illinois:\nH.R. 1478.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nFirearms\n[Page H1249]\n","sponsors.0.district":2,"sponsors.0.firstName":"Robin","updateDateIncludingText":"2024-12-04T09:05:47Z"}} +{"type":"node","id":"764","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1269/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"1269","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H1218)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1269/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1269/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Healthy Meals Help Kids Learn Act of 2023","latestAction.text":"Sponsor introductory remarks on measure. (CR H1218)","sponsors.0.party":"D","number":"1269","cosponsors.countIncludingWithdrawnCosponsors":53,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-03-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1269/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1269/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1269/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1269/actions?format=json","latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1269/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":53,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1269?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 1269.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\neducation\n[Page H1050]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"765","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1464/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Lesko","sponsors.0.isByRequest":"N","request.billNumber":"1464","sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1464/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1464/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"EXIT Act of 2023","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","sponsors.0.party":"R","number":"1464","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1464/cosponsors?format=json","sponsors.0.bioguideId":"L000589","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1464/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1464/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1464/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","titles.count":4,"introducedDate":"2023-03-08","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1464?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 1464.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nBorder Security\n[Page H1208]\n","sponsors.0.district":8,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"766","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1123/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"ESHOO","sponsors.0.isByRequest":"N","request.billNumber":"1123","sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1123/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Understanding Cybersecurity of Mobile Networks Act","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1123","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2023-03-08","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1123/cosponsors?format=json","sponsors.0.bioguideId":"E000215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1123/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":3,"sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-16]","titles.count":5,"introducedDate":"2023-02-21","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1123?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 1123.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nUnderstanding Cybersecurity of Mobile Networks\n[Page H867]\n","sponsors.0.district":16,"sponsors.0.firstName":"ANNA","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"767","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1440/text?format=json","relatedBills.count":1,"updateDate":"2024-09-11T08:05:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LaMalfa","sponsors.0.isByRequest":"N","request.billNumber":"1440","sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1440/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1440/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Modern, Clean, and Safe Trucks Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1440","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1440/cosponsors?format=json","sponsors.0.bioguideId":"L000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1440/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1440/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1440/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1440/relatedbills?format=json","sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1440?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 1440.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the U.S.\nConstitution: ``The Congress shall have power to lay and\ncollect taxes, duties, imposts and excises, to pay the debts\nand provide for the common defense and general welfare of the\nUnited States; but all duties, imposts and excises shall be\nuniform throughout the United States.''\nThe single subject of this legislation is:\nTo repeal the Federal excise tax on heavy trucks and\ntrailers.\n[Page H1207]\n","sponsors.0.district":1,"sponsors.0.firstName":"Doug","updateDateIncludingText":"2024-09-11T08:05:36Z"}} +{"type":"node","id":"768","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1448/text?format=json","updateDate":"2024-11-09T01:57:21Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1448","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1448/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1448/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"DARE Act of 2023","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1448","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1448/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1448/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1448/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1448/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-03-08","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1448?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1448.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 4 of the Constitution\nThe single subject of this legislation is:\nTo prohibit investment by foreign adversaries in United\nStates real estate suitable for renewable energy or renewable\nfuels production.\n[Page H1207]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-11-09T01:57:21Z"}} +{"type":"node","id":"769","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1475/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Smucker","sponsors.0.isByRequest":"N","request.billNumber":"1475","sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1475/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1475/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Hospital Adoption Education Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1475","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1475/cosponsors?format=json","sponsors.0.bioguideId":"S001199","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1475/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1475/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1475/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1475?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 1475.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I of the U.S. Constitution\n(the Spending Clause)\nThe single subject of this legislation is:\nTo establish a grant program to fund adoption education for\nhospitals and establish a committee of adoption experts to\ndisseminate nationally best practices in adoption sensitivity\nprocedures.\n[Page H1208]\n","sponsors.0.district":11,"sponsors.0.firstName":"Lloyd","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"770","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1468/text?format=json","updateDate":"2024-07-24T15:23:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"1468","sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1468/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1468/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"WRCR Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"1468","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1468/cosponsors?format=json","sponsors.0.bioguideId":"M001160","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1468/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1468/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1468/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","titles.count":4,"introducedDate":"2023-03-08","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1468?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 1468.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Sections 7 & 8 of\nArticle I of the United States Constitution and Amendment XVI\nof the United States Constitution.\nThe single subject of this legislation is:\nFederal taxation\n[Page H1208]\n","sponsors.0.district":4,"sponsors.0.firstName":"Gwen","updateDateIncludingText":"2024-07-24T15:23:23Z"}} +{"type":"node","id":"771","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1476/text?format=json","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Timmons","sponsors.0.isByRequest":"N","request.billNumber":"1476","sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1476/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1476/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"PPP Shell Company Discovery Act","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1476","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1476/cosponsors?format=json","sponsors.0.bioguideId":"T000480","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1476/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1476/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1476/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1476?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 1476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nA Bill to identify and report fraudulent PPP Reciepients.\n[Page H1208]\n","sponsors.0.district":4,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:23:24Z"}} +{"type":"node","id":"772","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1469/text?format=json","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Norman","sponsors.0.isByRequest":"N","request.billNumber":"1469","sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1469/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1469/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To prohibit a mask mandate to prevent the spread of COVID-19 on a military installation in the United States.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1469","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1469/cosponsors?format=json","sponsors.0.bioguideId":"N000190","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1469/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1469/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1469/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1469?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 1469.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo prohibit the Secretary of Defense from imposing any\nfederal mask mandate policies pertaining to COVID-19 on\nmilitary installations located in the United States.\n[Page H1208]\n","sponsors.0.district":5,"sponsors.0.firstName":"Ralph","updateDateIncludingText":"2024-07-24T15:23:25Z"}} +{"type":"node","id":"773","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1447/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Deluzio","sponsors.0.isByRequest":"N","request.billNumber":"1447","sponsors.0.url":"https://api.congress.gov/v3/member/D000530?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1447/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1447/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Striking and Locked Out Workers Healthcare Protection Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"1447","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1447/cosponsors?format=json","sponsors.0.bioguideId":"D000530","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1447/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1447/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1447/actions?format=json","latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1447/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Deluzio, Christopher R. [D-PA-17]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":44,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1447?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DELUZIO:\nH.R. 1447.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nLabor\n[Page H1207]\n","sponsors.0.district":17,"sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"774","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1463/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":6,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"1463","sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Agriculture, Oversight and Accountability, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1463/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1463/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Restoring Trust in Public Servants Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Agriculture, Oversight and Accountability, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1463","request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"sponsors.0.bioguideId":"K000394","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1463/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1463/relatedbills?format=json","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","titles.count":3,"introducedDate":"2023-03-08","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1463?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 1463.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nStock Trading\n[Page H1208]\n","sponsors.0.district":3,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"775","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1434/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luna","sponsors.0.isByRequest":"N","request.billNumber":"1434","sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1434/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Stop Our Sexual Assault in the Military Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1434","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1434/cosponsors?format=json","sponsors.0.bioguideId":"L000596","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1434/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":19,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1434?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 1434.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 cl. 14\nThe single subject of this legislation is:\nSelf defense/combat training for active duty service\nmembers\n[Page H1207]\n","sponsors.0.district":13,"sponsors.0.firstName":"Anna Paulina","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"776","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1451/text?format=json","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"1451","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1451/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1451/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Fight for the American Dream Act","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1451","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1451/cosponsors?format=json","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1451/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1451?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 1451.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: ``[The Congress shall have\nthe power. . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nArmed Services\n[Page H1207]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-07-24T15:23:25Z"}} +{"type":"node","id":"777","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1442/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Carl","sponsors.0.isByRequest":"N","request.billNumber":"1442","sponsors.0.url":"https://api.congress.gov/v3/member/C001054?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1442/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1442/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"No Pensions for Lying Bureaucrats Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1442","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2023-03-08","summaries.count":1,"sponsors.0.bioguideId":"C001054","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1442/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1442/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1442/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","sponsors.0.fullName":"Rep. Carl, Jerry L. [R-AL-1]","titles.count":3,"introducedDate":"2023-03-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1442?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARL:\nH.R. 1442.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article 1, Section 8.\nThe single subject of this legislation is:\nThis bill would strip federal employees of their pension\nbenefits if they are convicted of lying to Congress about\ntheir official duties while employed.\n[Page H1207]\n","sponsors.0.district":1,"sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"778","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1438/text?format=json","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bergman","sponsors.0.isByRequest":"N","request.billNumber":"1438","sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1438/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Think Tank Transparency Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1438","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1438/cosponsors?format=json","sponsors.0.bioguideId":"B001301","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1438/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1438?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 1438.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 18, necessary and proper\nThe single subject of this legislation is:\nForeign Government Accountability\n[Page H1207]\n","sponsors.0.district":1,"sponsors.0.firstName":"Jack","updateDateIncludingText":"2024-07-24T15:23:25Z"}} +{"type":"node","id":"779","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1453/text?format=json","relatedBills.count":2,"updateDate":"2024-10-26T08:05:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garbarino","sponsors.0.isByRequest":"N","request.billNumber":"1453","sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1453/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1453/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Customs Business Fairness Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1453","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1453/cosponsors?format=json","sponsors.0.bioguideId":"G000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1453/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1453/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1453/actions?format=json","latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1453/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":29,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1453?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.R. 1453.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title 11 of the United States Code, to allow full\nsubrogation, including subrogation to the priority rights of\nthe United States, of claims for the payment of customs\nduties.\n[Page H1207]\n","sponsors.0.district":2,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-10-26T08:05:36Z"}} +{"type":"node","id":"780","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1132/text?format=json","updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"1132","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1132/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Transparent and Accessible Sanctions Coordinating Office Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1132","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1132/cosponsors?format=json","sponsors.0.bioguideId":"K000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1132/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":3,"introducedDate":"2023-02-21","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1132?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:22:51Z"}} +{"type":"node","id":"781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1125/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1125","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1125/committees?format=json","policyArea.name":"Education","type":"HR","title":"STUDENT Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1125","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1125/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1125/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1125/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-02-21","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require disclosure of the total amount of interest that\nwould be paid over the life of a loan for certain Federal\nstudent loans.\n[Page H867]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"782","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1122/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Emmer","sponsors.0.isByRequest":"N","request.billNumber":"1122","sponsors.0.url":"https://api.congress.gov/v3/member/E000294?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1122/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"CBDC Anti-Surveillance State Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"1122","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1122/cosponsors?format=json","sponsors.0.bioguideId":"E000294","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1122/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Emmer, Tom [R-MN-6]","titles.count":3,"introducedDate":"2023-02-21","cosponsors.count":46,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1122?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EMMER:\nH.R. 1122.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill concerns central bank digital currencies.\n[Page H867]\n","sponsors.0.district":6,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:37Z"}} +{"type":"node","id":"783","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/258/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Gonzalez-Colon","sponsors.0.isByRequest":"N","request.billNumber":"258","sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","latestAction_text":"Referred to the Subcommittee on Indian and Insular Affairs .","committees.url":"https://api.congress.gov/v3/bill/118/hr/258/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/258/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Puerto Rico Data Collection Equality Act","latestAction.text":"Referred to the Subcommittee on Indian and Insular Affairs .","sponsors.0.party":"R","number":"258","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/258/cosponsors?format=json","sponsors.0.bioguideId":"G000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/258/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/258/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/258/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rescom. González-Colón, Jenniffer [R-PR-At Large]","titles.count":3,"introducedDate":"2023-01-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"PR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/258?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 8 (Tuesday, January 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss GONZALEZ-COLON:\nH.R. 258.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1 of the U.S. Constitution\n``All legislative Powers herein granted shall be vested in\na Congress of the United States, which shall consist of a\nSenate and House of Representatives.''\nArticle I. Section 8, Clause 18 of the U.S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\nArticle IV, Section 3, Clause 2 of the U.S. Constitution\n``The Congress shall have Power to dispose of and make all\nneedful Rules and Regulations respecting the Territory or\nother Property belonging to the United States; and nothing in\nthis Constitution shall be so construed as to Prejudice any\nClaims of the United States, or of any particular State.''\n[Page H152]\n","sponsors.0.firstName":"Jenniffer","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"784","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/941/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"941","sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/941/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/941/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Down East Remembrance Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"941","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/941/cosponsors?format=json","sponsors.0.bioguideId":"M001210","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/941/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/941/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/941/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/941/relatedbills?format=json","sponsors.0.fullName":"Rep. Murphy, Gregory F. [R-NC-3]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/941?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY:\nH.R. 941.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII.\nThe single subject of this legislation is:\nThis bill names 6 creeks in NC in honor of 6 North\nCarolinians who tragically lost their lives in a plane crash.\n[Page H828]\n","sponsors.0.district":3,"sponsors.0.firstName":"Gregory","updateDateIncludingText":"2024-11-09T01:28:27Z"}} +{"type":"node","id":"785","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/933/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"933","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/933/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Senator James L. Buckley Seashore Designation Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"933","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/933/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/933/relatedbills?format=json","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/933?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe single subject of this legislation is:\nThis legislation will name the Staten Island Unit of Gatway\nNational Recreation Area the ``Senator James L. Buckley\nSeashore''\n[Page H828]\n","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"786","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/879/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"879","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/879/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/879/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Andrew Jackson Statue Removal Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"879","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/879/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/879/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/879/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/879/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/879/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/879?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 879.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nto require the Secretary of the Interior to remove the\nAndrew Jackson statue and marble base in Lafayette Square in\nthe District of Columbia.\n[Page H782]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"787","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/848/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Titus","sponsors.0.isByRequest":"N","request.billNumber":"848","sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/848/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/848/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To designate a peak in the State of Nevada as Maude Frazier Mountain, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"848","request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"sponsors.0.bioguideId":"T000468","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/848/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/848/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/848/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","titles.count":2,"introducedDate":"2023-02-06","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/848?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 848.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 18 of\nSection 8 of Article I of the United States Constitution.\nThe single subject of this legislation is:\nPublic Lands and Natural Resources\n[Page H710]\n","sponsors.0.district":1,"sponsors.0.firstName":"Dina","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"788","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/836/text?format=json","updateDate":"2024-07-24T15:23:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"836","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/836/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/836/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To redesignate Gravelly Point Park, located along the George Washington Memorial Parkway in Arlington County, Virginia, as the Nancy Reagan Memorial Park, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"836","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/836/cosponsors?format=json","sponsors.0.bioguideId":"I000056","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/836/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/836/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/836/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":2,"introducedDate":"2023-02-06","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/836?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 836.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article I, Section 8,\nClause 18 of the Constitution of the United States.\nThe single subject of this legislation is:\nThis bill would redesignate Gravelly Point Park, located\nalong the George Washington Memorial Parkway in Arlington\nCounty, Virginia, as the Nancy Reagan Memorial Park.\n[Page H710]\n","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-07-24T15:23:47Z"}} +{"type":"node","id":"789","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/737/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T09:05:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"737","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/737/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/737/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Ralph David Abernathy, Sr. National Historic Site Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"737","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/737/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/737/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/737/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/737/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/737/relatedbills?format=json","sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":3,"introducedDate":"2023-02-01","cosponsors.count":43,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/737?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 737.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nEstablishing an unit of the National Park System to\npreserve, protect, and interpret for the benefit of present\nand future generations through legislation.\n[Page H630]\n","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-11-09T09:05:32Z"}} +{"type":"node","id":"790","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/729/text?format=json","updateDate":"2024-06-11T16:14:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"729","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/729/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/729/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Emancipation Statue Removal Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"729","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/729/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/729/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/729/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/729/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-02-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/729?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 729.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nto require the Secretary of the Interior to remove the\nEmancipation Memorial in Lincoln Park in the District of\nColumbia.\n[Page H630]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-06-11T16:14:57Z"}} +{"type":"node","id":"791","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/726/text?format=json","updateDate":"2025-03-14T13:55:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"726","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/726/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/726/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Veterans for Mustangs Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"726","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/726/cosponsors?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/726/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/726/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/726/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":3,"introducedDate":"2023-02-01","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/726?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 726.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Wild Free-Roaming Horses and Burros Act to\ndirect the Secretary of the Interior to implement fertility\ncontrols to manage populations of wild free-roaming horses\nand burros.\n[Page H630]\n","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-03-14T13:55:59Z"}} +{"type":"node","id":"792","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/567/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Obernolte","sponsors.0.isByRequest":"N","request.billNumber":"567","sponsors.0.url":"https://api.congress.gov/v3/member/O000019?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/567/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/567/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"SALVAGE Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"567","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/567/cosponsors?format=json","sponsors.0.bioguideId":"O000019","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/567/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/567/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/567/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Obernolte, Jay [R-CA-23]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/567?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OBERNOLTE:\nH.R. 567.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H430]\n","sponsors.0.district":23,"sponsors.0.firstName":"Jay","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"793","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/519/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McClintock","sponsors.0.isByRequest":"N","request.billNumber":"519","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/519/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/519/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Yosemite National Park Equal Access and Fairness Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"519","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/519/cosponsors?format=json","sponsors.0.bioguideId":"M001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/519/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/519/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/519/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/519?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nArticle IV, Section 3, Clause 2\nThe single subject of this legislation is:\nUses of Hetch Hetchy reservoir.\n[Page H325]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"794","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/482/text?format=json","relatedBills.count":1,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"482","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/482/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/482/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Western Wildfire Support Act of 2023","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"482","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/482/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/482/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/482/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/482/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/482/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":5,"request.contentType":"application/json","subjects.count":31,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/482?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"795","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/439/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"439","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/439/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/439/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Public Land Search and Rescue Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"439","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/439/cosponsors?format=json","sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/439/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/439/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","titles.count":3,"introducedDate":"2023-01-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/439?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 439.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article I, Section 8, Clause 1\n[Page H252]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"796","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/365/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"365","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/365/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/365/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To release the reversionary interest of the United States in certain non-Federal land in Salt Lake City, Utah, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"365","request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/365/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/365/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/365/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/365/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","titles.count":2,"introducedDate":"2023-01-13","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/365?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 11 (Friday, January 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 365.\nCongress has the power to enact this legislation pursuant\nto the following:\nTenth Amendment, United States Constitution Article IV,\nsection 3, clause 2, United States Constitution Article 1,\nsection 8, clause 18\n[Page H238]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:24:07Z"}} +{"type":"node","id":"797","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/247/text?format=json","updateDate":"2024-06-12T18:21:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Estes","sponsors.0.isByRequest":"N","request.billNumber":"247","sponsors.0.url":"https://api.congress.gov/v3/member/E000298?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/247/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/247/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Chisholm National Historic Trail and Western National Historic Trail Designation Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"247","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/247/cosponsors?format=json","sponsors.0.bioguideId":"E000298","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/247/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/247/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/247/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Estes, Ron [R-KS-4]","titles.count":3,"introducedDate":"2023-01-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"KS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/247?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 8 (Tuesday, January 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESTES:\nH.R. 247.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe Congress shall have power to dispose of and make all\nneedful rules and regulations the territory or other property\nbelonging to the United States.\n[Page H151]\n","sponsors.0.district":4,"sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-06-12T18:21:00Z"}} +{"type":"node","id":"798","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/189/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"McClintock","sponsors.0.isByRequest":"N","request.billNumber":"189","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/189/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Action Versus No Action Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"189","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/189/cosponsors?format=json","sponsors.0.bioguideId":"M001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/189/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/189?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 189.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 (the Property Clause),\nwhich confers on Congress the power to make all needful Rules\nand Regulations respecting the property belonging to the\nUnited States.\n[Page H112]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"799","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/172/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"172","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/172/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Acre In, Acre Out Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"172","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-02-21","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/172/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/172/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/172/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\n[Pages H111-H112]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 172.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H112]]\nArticle I, Section 8 of the United States Consitution.\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"800","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/867/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"867","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/867/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/867/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"National Commission on Renaming the J. Edgar Hoover FBI Headquarters Building Act of 2023","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"867","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-02-08","summaries.count":1,"sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/867/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/867?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 867.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo establish a commission to redesignate the J. Edgar\nHoover F.B.I. Building.\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"801","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/866/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"866","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/866/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/866/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Equal COLA Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"866","cosponsors.countIncludingWithdrawnCosponsors":95,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-02-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/866/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/866/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/866/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/866/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/866/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":95,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/866?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 866.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFederal retirement benefits\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"802","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H746)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"PISTOL Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-02-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"803","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/832/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"832","sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/832/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/832/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"832","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/832/cosponsors?format=json","sponsors.0.bioguideId":"G000586","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/832/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/832/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/832/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","titles.count":3,"introducedDate":"2023-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/832?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 832.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation will strengthen and advance certain\ndisadvantaged businesses\n[Page H710]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jesus","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"804","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/302/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":14,"sponsors.0.lastName":"Ross","sponsors.0.isByRequest":"N","request.billNumber":"302","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/302/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/302/committees?format=json","policyArea.name":"Energy","type":"HR","title":"Energy Cybersecurity University Leadership Act of 2023","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"302","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-02-07","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/302/cosponsors?format=json","sponsors.0.bioguideId":"R000305","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/302/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/302/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/302/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":3,"sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":6,"introducedDate":"2023-01-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/302?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 9 (Wednesday, January 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts, and Excises shall be uniform\nthroughout the United States;\nRequirement with respect to single-subject bills:\nThe bill is focused on a single subject: energy sector\ncybersecurity.\n[Page H205]\n","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"805","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/278/text?format=json","updateDate":"2024-07-24T15:24:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"278","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Referred to the Subcommittee on the National Intelligence Enterprise.","committees.url":"https://api.congress.gov/v3/bill/118/hr/278/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/278/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Cyber Defense National Guard Act","latestAction.text":"Referred to the Subcommittee on the National Intelligence Enterprise.","sponsors.0.party":"D","number":"278","request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/278/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/278/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/278/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-01-11","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/278?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 9 (Wednesday, January 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 278.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 1 and Clause 12,\nClause 15, Clause 16, Clause 18 of the United States\nConstitution.\n[Page H205]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:09Z"}} +{"type":"node","id":"806","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/548/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T05:26:32Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Fleischmann","sponsors.0.isByRequest":"N","request.billNumber":"548","sponsors.0.url":"https://api.congress.gov/v3/member/F000459?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Indian Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/548/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/548/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Eastern Band of Cherokee Historic Lands Reacquisition Act","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"R","number":"548","request.format":"json","sponsors.0.middleName":"J. \"Chuck\"","latestAction_actionDate":"2023-02-07","summaries.count":2,"sponsors.0.bioguideId":"F000459","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/548/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/548/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/548/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/548/relatedbills?format=json","sponsors.0.fullName":"Rep. Fleischmann, Charles J. \"Chuck\" [R-TN-3]","titles.count":5,"introducedDate":"2023-01-26","request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/548?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FLEISCHMANN:\nH.R. 548.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18, which states the Congress\nhall have the power ``to make all laws which shall be\nnecessary and proper for carrying into execution the\nforegoing pwers, and all other powers vested by this\nConstitution in the government of the Unoted States, or in\nany department or office therof.''\n[Page H429]\n","sponsors.0.district":3,"sponsors.0.firstName":"Charles","updateDateIncludingText":"2025-01-16T05:26:32Z"}} +{"type":"node","id":"807","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/237/text?format=json","updateDate":"2024-07-24T15:24:10Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"237","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the National Security Agency and Cyber.","committees.url":"https://api.congress.gov/v3/bill/118/hr/237/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/237/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Fourth Amendment Restoration Act","latestAction.text":"Referred to the Subcommittee on the National Security Agency and Cyber.","sponsors.0.party":"R","number":"237","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/237/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/237/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/237/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/237/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/237?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 8 (Tuesday, January 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 237.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H151]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:10Z"}} +{"type":"node","id":"808","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/852/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"852","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/852/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/852/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Investing in Safer Traffic Stops Act of 2023","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"852","request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/852/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/852/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/852/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":3,"introducedDate":"2023-02-06","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/852?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 852.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nPublic Safety\n[Page H710]\n","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"809","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/863/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mills","sponsors.0.isByRequest":"N","request.billNumber":"863","sponsors.0.url":"https://api.congress.gov/v3/member/M001216?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/863/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/863/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend title 18, United States Code, to prohibit a publishing house from knowingly furnishing sexually explicit material to a school or an educational agency, to prohibit Federal funds from being provided to a school that obtains or an educational agency that distributes sexually explicit material, and for other purposes.","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"863","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/863/cosponsors?format=json","sponsors.0.bioguideId":"M001216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/863/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/863/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/863/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Mills, Cory [R-FL-7]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/863?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MILLS:\nH.R. 863.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution.\nThe single subject of this legislation is:\nThis bill amends title 18, U.S.C., to prohibit a publishing\nhouse from knowingly furnishing sexually explicit material to\na school or an educational agency, and to prohibit federal\nfunds from being provided to a school that obtains or an\neducational agency that distributes sexually explicit\nmaterial.\n[Page H738]\n","sponsors.0.district":7,"sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"810","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/858/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"858","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/858/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/858/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"PAYSTUB Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"858","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/858/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/858/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/858/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/858/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/858/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":4,"introducedDate":"2023-02-07","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/858?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 858.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 and Article I Section 9, Clause 7\nThe single subject of this legislation is:\nThe bill creates statutory consequences for the President\nfailing to submit a budget to Congress in a timely manner\nconsistent with the Congressional Budget Act of 1974.\n[Page H738]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"811","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/857/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"857","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/857/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/857/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Presidential Budget Accountability Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"857","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/857/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/857/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/857/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/857/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/857/relatedbills?format=json","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/857?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 857.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 and Article I Section 9, Clause 7\nThe single subject of this legislation is:\nThe bill creates statutory consequences for the President\nfailing to submit a budget to Congress in a timely manner\nconsistent with the Congressional Budget Act of 1974.\n[Page H738]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"812","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/859/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crawford","sponsors.0.isByRequest":"N","request.billNumber":"859","sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/859/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/859/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"National Cold War Center Act of 2023","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"859","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A. \"Rick\"","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/859/cosponsors?format=json","sponsors.0.bioguideId":"C001087","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/859/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/859/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/859/actions?format=json","latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/859/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/859?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRAWFORD:\nH.R. 859.\nCongress has the power to enact this legislation pursuant\nto the following:\nCommerce Clause--Article I, Section 8 of the U.S.\nConstitution\nThe single subject of this legislation is:\nThe bill authorizes the museum located at Blytheville/Eaker\nAir Force Base in Blytheville, AR as the ``National Cold War\nCenter.''\n[Page H738]\n","sponsors.0.district":1,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"813","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/856/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"856","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Veterans' Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/856/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/856/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Comprehensive Paid Leave for Federal Employees Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Veterans' Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"856","cosponsors.countIncludingWithdrawnCosponsors":56,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/856/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/856/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/856/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/856/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/856/relatedbills?format=json","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":56,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/856?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 856.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nFederal Government Reform\n[Page H738]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"814","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/860/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Diaz-Balart","sponsors.0.isByRequest":"N","request.billNumber":"860","sponsors.0.url":"https://api.congress.gov/v3/member/D000600?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/860/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/860/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To establish new ZIP Codes for certain communities, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"860","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/860/cosponsors?format=json","sponsors.0.bioguideId":"D000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/860/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/860/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/860/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/860/relatedbills?format=json","sponsors.0.fullName":"Rep. Diaz-Balart, Mario [R-FL-26]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":10,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/860?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DIAZ-BALART:\nH.R. 860.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill directs the U.S. Postal Service, by 270 days\nafter its enactment, to designate a single, unique ZIP code\nfor each of: Miami Lakes, Florida; Hollywood, Florida;\nVillage of Somers, Wisconsin; Village of Mount Pleasant,\nWisconsin; Village of Caledonia, Wisconsin; Eastvale,\nCalifornia; Castle Pines, Colorado.\n[Page H738]\n","sponsors.0.district":26,"sponsors.0.firstName":"Mario","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"815","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/862/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lesko","sponsors.0.isByRequest":"N","request.billNumber":"862","sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/862/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/862/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Dismemberment Abortion Ban Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"862","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/862/cosponsors?format=json","sponsors.0.bioguideId":"L000589","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/862/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/862/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/862/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":25,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/862?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 862.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nAbortion\n[Page H738]\n","sponsors.0.district":8,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"816","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/861/text?format=json","updateDate":"2024-06-11T15:44:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LARSEN","sponsors.0.isByRequest":"N","request.billNumber":"861","sponsors.0.url":"https://api.congress.gov/v3/member/L000560?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/861/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/861/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"America Votes Act of 2023","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"861","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/861/cosponsors?format=json","sponsors.0.bioguideId":"L000560","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/861/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/861/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/861/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Larsen, Rick [D-WA-2]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/861?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LARSEN of Washington:\nH.R. 861.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8.\nThe single subject of this legislation is:\nElections\n[Page H738]\n","sponsors.0.district":2,"sponsors.0.firstName":"RICK","updateDateIncludingText":"2024-06-11T15:44:44Z"}} +{"type":"node","id":"817","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/865/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T16:11:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"865","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/865/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/865/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"United States Colored Troops Congressional Gold Medal Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"865","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/865/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/865/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/865/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/865/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/865/relatedbills?format=json","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":8,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/865?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 865.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nTo posthumously award the Congressional Gold Medal to the\nAfrican Americans who served with Union forces during the\nCivil War.\n[Page H738]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-06-11T16:11:11Z"}} +{"type":"node","id":"818","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/828/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Dunn","sponsors.0.isByRequest":"N","request.billNumber":"828","sponsors.0.url":"https://api.congress.gov/v3/member/D000628?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/828/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/828/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"TROOP Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"828","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/828/cosponsors?format=json","sponsors.0.bioguideId":"D000628","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/828/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/828/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/828/actions?format=json","latestAction.actionDate":"2023-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Dunn, Neal P. [R-FL-2]","titles.count":4,"introducedDate":"2023-02-06","cosponsors.count":24,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/828?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNN of Florida:\nH.R. 828.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 14.\nThe single subject of this legislation is:\nUnited States Armed Forces Troop Back Pay.\n[Page H710]\n","sponsors.0.district":2,"sponsors.0.firstName":"Neal","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"819","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/851/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"851","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/851/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/851/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Iron Pipeline Review Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"851","request.format":"json","latestAction_actionDate":"2023-02-06","summaries.count":1,"sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/851/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/851/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/851/actions?format=json","latestAction.actionDate":"2023-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":3,"introducedDate":"2023-02-06","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/851?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 851.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nReport on firerarm trafficking.\n[Page H710]\n","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"820","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/496/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"496","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/496/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/496/committees?format=json","policyArea.name":"Education","type":"HR","title":"PELL Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"496","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/496/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/496/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/496/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/496/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/496/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/496?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 496.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nFederal student aid for postsecondary education\n[Page H324]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"821","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/505/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"505","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/505/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/505/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Living Wage Now Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"505","request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"sponsors.0.bioguideId":"C001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/505/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/505/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/505/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":3,"introducedDate":"2023-01-25","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/505?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"822","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/494/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Reschenthaler","sponsors.0.isByRequest":"N","request.billNumber":"494","sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/494/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/494/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund EcoHealth Alliance Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"494","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/494/cosponsors?format=json","sponsors.0.bioguideId":"R000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/494/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/494/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/494/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/494/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":34,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/494?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution\nThe single subject of this legislation is:\nProviding oversight of federal funding for the EcoHealth\nAlliance.\n[Page H324]\n","sponsors.0.district":14,"sponsors.0.firstName":"Guy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"823","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/499/text?format=json","updateDate":"2024-07-24T15:23:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fallon","sponsors.0.isByRequest":"N","request.billNumber":"499","sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/499/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/499/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"SAFE from PRC Investments Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"499","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/499/cosponsors?format=json","sponsors.0.bioguideId":"F000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/499/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/499/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/499/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/499?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThe Securities and Exchange Commission shall require\nChinese-based companies listed on US exchanges to disclose\ninformation regarding their business opertaions.\n[Page H324]\n","sponsors.0.district":4,"sponsors.0.firstName":"Pat","updateDateIncludingText":"2024-07-24T15:23:42Z"}} +{"type":"node","id":"824","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/528/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wagner","sponsors.0.isByRequest":"N","request.billNumber":"528","sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/528/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/528/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Put Trafficking Victims First Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"528","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/528/cosponsors?format=json","sponsors.0.bioguideId":"W000812","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/528/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/528/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/528/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/528/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":7,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/528?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 528.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThirteenth Amendment to the US Constitution\n[Page H325]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"825","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/495/text?format=json","updateDate":"2024-07-24T15:23:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"CALVERT","sponsors.0.isByRequest":"N","request.billNumber":"495","sponsors.0.url":"https://api.congress.gov/v3/member/C000059?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/495/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/495/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"REBUILD Act of 2023","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"495","request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"sponsors.0.bioguideId":"C000059","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/495/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/495/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/495/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Calvert, Ken [R-CA-41]","titles.count":4,"introducedDate":"2023-01-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/495?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CALVERT:\nH.R. 495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution,\nspecifically clause 18 (relating to power to make all laws\nnecessary and proper for carrying out the powers vested in\nCongress).\n[Page H324]\n","sponsors.0.district":41,"sponsors.0.firstName":"KEN","updateDateIncludingText":"2024-07-24T15:23:27Z"}} +{"type":"node","id":"826","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/512/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"512","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/512/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/512/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"One Citizen One Vote Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"512","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/512/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/512/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/512/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/512/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/512?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nElection Integrity\n[Page H325]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"827","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/525/text?format=json","relatedBills.count":1,"updateDate":"2025-02-20T23:26:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHAKOWSKY","sponsors.0.isByRequest":"N","request.billNumber":"525","sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/525/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/525/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Mentoring to Succeed Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"525","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/525/cosponsors?format=json","sponsors.0.bioguideId":"S001145","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/525/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/525/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/525/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/525/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":12,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/525?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 525.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 3 and 18.\nThe Congress shall have Power . . .\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes.\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof\n[Page H325]\n","sponsors.0.district":9,"sponsors.0.firstName":"JANICE","updateDateIncludingText":"2025-02-20T23:26:12Z"}} +{"type":"node","id":"828","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/508/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crenshaw","sponsors.0.isByRequest":"N","request.billNumber":"508","sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/508/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/508/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"ATF Accountability Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"508","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/508/cosponsors?format=json","sponsors.0.bioguideId":"C001120","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/508/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/508/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/508/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/508/relatedbills?format=json","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":10,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/508?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 508.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8: To make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nProtect the Second Amendment by creating an appeals process\nto ATF rulings.\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/507/text?format=json","relatedBills.count":6,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"507","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on the Judiciary, Ethics, Rules, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/507/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"HUMBLE Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on the Judiciary, Ethics, Rules, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"507","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/507/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/507/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/507/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/507/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/507/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/507?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nGovernment ethics.\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"830","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/506/text?format=json","relatedBills.count":1,"updateDate":"2024-08-30T15:33:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"506","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/506/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/506/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"HARM Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"506","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/506/cosponsors?format=json","sponsors.0.bioguideId":"C001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/506/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/506/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/506/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/506/relatedbills?format=json","sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":50,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/506?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.R. 506.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H324]\n","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-08-30T15:33:18Z"}} +{"type":"node","id":"831","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/515/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kustoff","sponsors.0.isByRequest":"N","request.billNumber":"515","sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/515/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/515/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Protecting American Savers and Retirees Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"515","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/515/cosponsors?format=json","sponsors.0.bioguideId":"K000392","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/515/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/515/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/515/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/515?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KUSTOFF:\nH.R. 515.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, SectIon 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof.\nThe single subject of this legislation is:\nThis legislation pertains to the excise tax on the\nrepurchase of certain corporate stock.\n[Page H325]\n","sponsors.0.district":8,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"832","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/509/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Davidson","sponsors.0.isByRequest":"N","request.billNumber":"509","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/509/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/509/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Debt Cancellation Accountability Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"509","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/509/cosponsors?format=json","sponsors.0.bioguideId":"D000626","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/509/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/509/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/509/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/509/relatedbills?format=json","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/509?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 509.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nEducation\n[Page H324]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"833","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/484/text?format=json","relatedBills.count":5,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","request.billNumber":"484","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/484/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/484/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Natural Gas Tax Repeal Act","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"484","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/484/cosponsors?format=json","sponsors.0.bioguideId":"P000048","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/484/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/484/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/484/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/484/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":35,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/484?format=json","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"834","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/487/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Self","sponsors.0.isByRequest":"N","request.billNumber":"487","sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/487/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/487/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Ensuring American Voters Act of 2023","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"487","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/487/cosponsors?format=json","sponsors.0.bioguideId":"S001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/487/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/487/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/487/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/487/relatedbills?format=json","sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/487?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Keith","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"835","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/450/text?format=json","updateDate":"2024-06-11T16:14:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burlison","sponsors.0.isByRequest":"N","request.billNumber":"450","sponsors.0.url":"https://api.congress.gov/v3/member/B001316?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/450/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Repeal the NFA Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"450","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/450/cosponsors?format=json","sponsors.0.bioguideId":"B001316","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/450/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Burlison, Eric [R-MO-7]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/450?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-06-11T16:14:44Z"}} +{"type":"node","id":"836","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/451/text?format=json","updateDate":"2024-12-21T09:05:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bice","sponsors.0.isByRequest":"N","request.billNumber":"451","sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/451/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Families from Fertility Fraud Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"451","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/451/cosponsors?format=json","sponsors.0.bioguideId":"B000740","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/451/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":55,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/451?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Stephanie","updateDateIncludingText":"2024-12-21T09:05:46Z"}} +{"type":"node","id":"837","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/469/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hern","sponsors.0.isByRequest":"N","request.billNumber":"469","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/469/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/469/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Asylum Abuse Reduction Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"469","request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"sponsors.0.bioguideId":"H001082","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/469/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/469/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/469/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/469/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/469?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"838","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/457/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:23:42Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"457","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/457/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Combating Global Corruption Act of 2023","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"457","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/457/cosponsors?format=json","sponsors.0.bioguideId":"C001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/457/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/457/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":6,"request.contentType":"application/json","subjects.count":26,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/457?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:23:42Z"}} +{"type":"node","id":"839","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/465/text?format=json","updateDate":"2024-07-24T15:23:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gosar","sponsors.0.isByRequest":"N","request.billNumber":"465","sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/465/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/465/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Protect U.S. Investments Act of 2023","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"465","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/465/cosponsors?format=json","sponsors.0.bioguideId":"G000565","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/465/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/465/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/465/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/465?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Paul","updateDateIncludingText":"2024-07-24T15:23:38Z"}} +{"type":"node","id":"840","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"No Vaccine Passports Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"841","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/69/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"69","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/69/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/69/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"NOSHA Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"69","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/69/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/69/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/69/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/69/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/69?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 69.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"842","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/75/text?format=json","updateDate":"2025-02-15T18:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"75","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/75/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/75/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Prescription Freedom Act of 2023","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"75","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/75/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/75/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/75/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/75?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 75.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-15T18:41:12Z"}} +{"type":"node","id":"843","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/74/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"74","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/74/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/74/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to propose, establish, implement, or enforce any requirement that an individual wear a mask or other face covering, or be vaccinated, to prevent the spread of COVID-19, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"74","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/74/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/74/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/74/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/74?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 74.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"844","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/168/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"168","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/168/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend chapter 44 of title 18, United States Code, to more comprehensively address the interstate transportation of firearms or ammunition.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/168/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/168/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"845","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/173/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:04Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"173","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/173/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/173/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Home Defense and Competitive Shooting Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"173","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/173/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/173/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/173/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/173/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/173/relatedbills?format=json","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/173?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 173.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H112]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-06-12T18:21:04Z"}} +{"type":"node","id":"846","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/81/text?format=json","updateDate":"2024-06-11T15:57:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"81","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/81/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/81/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Stop Imposing Woke Ideology Abroad Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"81","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/81/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/81/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/81/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/81/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/81?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 81.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-11T15:57:41Z"}} +{"type":"node","id":"847","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/102/text?format=json","updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"102","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/102/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Space Research Innovation Act","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"R","number":"102","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/102/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/102/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/102/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/102?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 102.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"848","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/73/text?format=json","updateDate":"2024-06-12T18:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"73","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/73/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/73/subjects?format=json","policyArea.name":"Health","type":"HR","title":"No Pro-Abortion Task Force Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"73","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/73/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/73/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/73/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/73/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/73?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 73.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-12T18:21:02Z"}} +{"type":"node","id":"849","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/108/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"108","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/108/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/108/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Small Business Prosperity Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"108","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/108/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/108/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/108/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"850","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/67/text?format=json","updateDate":"2025-02-07T21:53:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"67","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/67/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/67/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Small Business Flexibility Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"67","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/67/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/67/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/67/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/67?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 67.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-07T21:53:44Z"}} +{"type":"node","id":"851","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/225/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"225","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/225/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/225/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"No Budget, No Pay Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"225","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/225/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/225/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/225/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/225/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/225/relatedbills?format=json","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/225?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 225.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 6 of the Constitution\n[Page H113]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"852","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/80/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"80","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/80/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/80/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To terminate the designation of the Islamic Republic of Pakistan as a major non-NATO ally, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"80","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/80/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/80/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/80/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/80?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"853","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/72/text?format=json","updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"72","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/72/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/72/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to maintain or collect information that can be used to identify any individual to whom a COVID-19 vaccine is administered, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"72","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/72/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/72/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/72/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/72?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 72.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"854","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/224/text?format=json","updateDate":"2024-07-24T15:24:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"224","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/224/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/224/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Inaction Has Consequences Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"224","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/224/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/224/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/224/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/224?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 224.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 6 of the Constitution\n[Page H113]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:24:10Z"}} +{"type":"node","id":"855","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/93/text?format=json","updateDate":"2024-07-24T15:23:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"93","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/93/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/93/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Protecting Businesses From Frivolous COVID Lawsuits Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"93","request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/93/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/93/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/93/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/93?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 93.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:23:22Z"}} +{"type":"node","id":"856","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"857","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/154/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzpatrick","sponsors.0.isByRequest":"N","request.billNumber":"154","sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/154/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/154/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Securing our Elections Act of 2023","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"154","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-01-09","summaries.count":1,"sponsors.0.bioguideId":"F000466","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/154/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/154/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/154/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/154?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZPATRICK:\nH.R. 154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, Clause XVIII of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-02-14T02:41:12Z"}} +{"type":"node","id":"858","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/158/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Fitzpatrick","sponsors.0.isByRequest":"N","request.billNumber":"158","sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/158/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/158/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"CLEAN Public Service Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"158","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/158/cosponsors?format=json","sponsors.0.bioguideId":"F000466","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/158/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/158/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/158/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/158/relatedbills?format=json","sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/158?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZPATRICK:\nH.R. 158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, Clause XVIII of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"859","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/153/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fallon","sponsors.0.isByRequest":"N","request.billNumber":"153","sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/153/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/153/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"FIRE Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"153","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/153/cosponsors?format=json","sponsors.0.bioguideId":"F000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/153/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/153/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/153/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/153/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/153?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 153.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H111]\n","sponsors.0.district":4,"sponsors.0.firstName":"Pat","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"860","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5319/text?format=json","relatedBills.count":2,"updateDate":"2025-02-21T19:41:15Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"5319","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Star Print ordered on the reported bill.","committees.url":"https://api.congress.gov/v3/bill/118/s/5319/committees?format=json","type":"S","title":"DHS Intelligence and Analysis Oversight and Transparency Act","latestAction.text":"Star Print ordered on the reported bill.","sponsors.0.party":"D","number":"5319","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/330?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5319/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5319/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5319/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2025-01-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5319/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"introducedDate":"2024-11-14","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5319?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-21T19:41:15Z","committeeReports.0.citation":"S. Rept. 118-330"}} +{"type":"node","id":"861","labels":["Bill"],"properties":{"relatedBills.count":9,"congress":118,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-272.","policyArea.name":"Emergency Management","type":"HR","latestAction.text":"The Clerk was authorized to correct section numbers, punctuation, and cross references, and to make other necessary technical and conforming corrections in the engrossment of H.R. 4367.","sponsors.0.party":"R","number":"4367","amendments.count":48,"sponsors.0.bioguideId":"J000295","actions.url":"https://api.congress.gov/v3/bill/118/hr/4367/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4367/relatedbills?format=json","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4367/amendments?format=json","titles.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-123","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4367/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":105,"request.billNumber":"4367","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4367/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4367/subjects?format=json","title":"Department of Homeland Security Appropriations Act, 2024","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-01-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/123?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4367/summaries?format=json","latestAction.actionTime":"23:30:18","introducedDate":"2023-06-27","subjects.count":36,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4367?format=json","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-14T02:41:12Z"}} +{"type":"node","id":"862","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2181/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":26,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2181","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Became Public Law No: 118-271.","committees.url":"https://api.congress.gov/v3/bill/118/s/2181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2181/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Keeping Military Families Together Act of 2024","latestAction.text":"Became Public Law No: 118-271.","sponsors.0.party":"D","number":"2181","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2181/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2181/titles?format=json","laws.0.number":"118-271","summaries.url":"https://api.congress.gov/v3/bill/118/s/2181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2181/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2181/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":8,"introducedDate":"2023-06-22","cosponsors.count":6,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2181?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-16T12:03:17Z","laws.0.type":"Public Law"}} +{"type":"node","id":"863","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4199/text?format=json","relatedBills.count":5,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":25,"sponsors.0.lastName":"Young","cboCostEstimates.0.pubDate":"2024-08-16T21:22:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4199","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Veto message received in Senate. Ordered held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/4199/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4199/subjects?format=json","policyArea.name":"Law","type":"S","title":"JUDGES Act of 2024","latestAction.text":"Veto message received in Senate. Ordered held at the desk.","sponsors.0.party":"R","number":"4199","cboCostEstimates.0.description":"As passed by the Senate on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60650","request.format":"json","latestAction_actionDate":"2025-01-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4199/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4199/titles?format=json","cboCostEstimates.0.title":"S. 4199, JUDGES Act of 2024","actions.url":"https://api.congress.gov/v3/bill/118/s/4199/actions?format=json","latestAction.actionDate":"2025-01-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4199/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":10,"introducedDate":"2024-04-19","cosponsors.count":17,"request.contentType":"application/json","subjects.count":21,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4199?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2025-01-16T12:03:17Z"}} +{"type":"node","id":"864","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Became Public Law No: 118-210.","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","policyArea.name":"Congress","title":"No Pay for Disarray Act","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","request.format":"json","latestAction_actionDate":"2025-01-02","summaries.count":1,"sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"865","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5649/text?format=json","updateDate":"2025-01-07T17:10:41Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"5649","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5649/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Save Our Seas 2.0 Amendments Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"5649","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5649/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5649/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5649/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":2,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","latestAction.actionTime":"10:13:00","titles.count":3,"introducedDate":"2024-12-21","cosponsors.count":1,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5649?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-07T17:10:41Z","latestAction_actionTime":"10:13:00"}} +{"type":"node","id":"866","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5639/text?format=json","updateDate":"2024-12-25T09:05:20Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"5639","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Held at the desk.","type":"S","title":"Counter-UAS Authority Extension Act","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"5639","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5639/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5639/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5639/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","latestAction.actionTime":"10:13:00","titles.count":3,"introducedDate":"2024-12-20","cosponsors.count":3,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5639?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-31T01:48:19Z","latestAction_actionTime":"10:13:00"}} +{"type":"node","id":"867","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5098/text?format=json","updateDate":"2025-01-31T01:26:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Lankford","cboCostEstimates.0.pubDate":"2024-12-11T19:46:00Z","sponsors.0.isByRequest":"N","request.billNumber":"5098","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/5098/committees?format=json","type":"S","title":"Taxpayer Resources Used in Emergencies Accountability Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"5098","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61106","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/282?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5098/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5098/titles?format=json","cboCostEstimates.0.title":"S. 5098, TRUE Accountability Act","actions.url":"https://api.congress.gov/v3/bill/118/s/5098/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"10:13:00","titles.count":6,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5098?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-31T01:26:13Z","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-282"}} +{"type":"node","id":"868","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3658","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/3658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3658/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"SAFE Orbit Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3658","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-12-24","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3658/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3658/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3658/actions?format=json","latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3658/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/118/s/3658/amendments?format=json","latestAction.actionTime":"10:13:00","titles.count":6,"introducedDate":"2024-01-25","cosponsors.count":6,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3658?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:57:03Z","latestAction_actionTime":"10:13:00"}} +{"type":"node","id":"869","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3195/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"3195","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/3195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3195/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to designate the General George C. Marshall House, in the Commonwealth of Virginia, as an affiliated area of the National Park System, and for other purposes.","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"3195","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3195/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3195/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3195/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3195/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","latestAction.actionTime":"10:13:00","titles.count":2,"introducedDate":"2023-11-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3195?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T17:20:42Z","latestAction_actionTime":"10:13:00"}} +{"type":"node","id":"870","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Wyden","cboCostEstimates.0.pubDate":"2024-12-04T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1890","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1890/cosponsors?format=json","sponsors.0.bioguideId":"W000779","actions.url":"https://api.congress.gov/v3/bill/118/s/1890/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-222","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1890/text?format=json","updateDate":"2025-01-17T03:11:18Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1890","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1890/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1890/subjects?format=json","title":"Malheur Community Empowerment for the Owyhee Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61052","request.format":"json","latestAction_actionDate":"2024-12-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/222?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1890/summaries?format=json","cboCostEstimates.0.title":"S. 1890, Malheur Community Empowerment for the Owyhee Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-06-08","subjects.count":16,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1890?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-17T03:11:18Z"}} +{"type":"node","id":"871","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2024-02-20T18:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1723","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1723/cosponsors?format=json","sponsors.0.bioguideId":"W000817","actions.url":"https://api.congress.gov/v3/bill/118/s/1723/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1723/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/1723/amendments?format=json","titles.count":5,"cosponsors.count":32,"request.contentType":"application/json","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-187","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1723/text?format=json","updateDate":"2025-01-16T06:06:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"1723","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1723/subjects?format=json","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nJune 7, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":32,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59993","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-24","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/187?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1723/summaries?format=json","cboCostEstimates.0.title":"S. 1723, Truth and Healing Commission on Indian Boarding School Policies Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-05-18","subjects.count":20,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1723?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-16T06:06:27Z"}} +{"type":"node","id":"872","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1553/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"1553","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1553/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1553/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1553","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1553/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1553/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1553/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1553/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","latestAction.actionTime":"10:13:00","titles.count":5,"introducedDate":"2023-05-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":18,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1553?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z","latestAction_actionTime":"10:13:00"}} +{"type":"node","id":"873","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1348","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1348/cosponsors?format=json","sponsors.0.bioguideId":"B001261","actions.url":"https://api.congress.gov/v3/bill/118/s/1348/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1348/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-185","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1348/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1348","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1348/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1348/subjects?format=json","title":"Wyoming Public Lands Initiative Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/185?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1348/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1348/summaries?format=json","latestAction.actionTime":"10:13:00","introducedDate":"2023-04-27","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1348?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"874","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rosen","cboCostEstimates.0.pubDate":"2023-05-19T19:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-192.","policyArea.name":"Congress","type":"S","latestAction.text":"Became Public Law No: 118-192.","sponsors.0.party":"D","number":"932","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/932/cosponsors?format=json","sponsors.0.bioguideId":"R000608","laws.0.number":"118-192","actions.url":"https://api.congress.gov/v3/bill/118/s/932/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/932/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":10,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-37","textVersions.url":"https://api.congress.gov/v3/bill/118/s/932/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"932","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/932/subjects?format=json","title":"No CORRUPTION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59189","request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/37?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/932/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/932/summaries?format=json","cboCostEstimates.0.title":"S. 932, No CORRUPTION Act","introducedDate":"2023-03-22","subjects.count":5,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/932?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"875","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/759/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"759","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Became Public Law No: 118-191.","committees.url":"https://api.congress.gov/v3/bill/118/s/759/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/759/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Beagle Brigade Act of 2023","latestAction.text":"Became Public Law No: 118-191.","sponsors.0.party":"D","number":"759","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/759/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/759/titles?format=json","laws.0.number":"118-191","summaries.url":"https://api.congress.gov/v3/bill/118/s/759/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/759/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/759/relatedbills?format=json","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":5,"introducedDate":"2023-03-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/759?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:43:41Z","laws.0.type":"Public Law"}} +{"type":"node","id":"876","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-24T19:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-190.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-190.","sponsors.0.party":"D","number":"709","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/709/cosponsors?format=json","sponsors.0.bioguideId":"P000595","laws.0.number":"118-190","actions.url":"https://api.congress.gov/v3/bill/118/s/709/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/709/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":7,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-18","textVersions.url":"https://api.congress.gov/v3/bill/118/s/709/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":29,"request.billNumber":"709","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/709/subjects?format=json","title":"Federal Agency Performance Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59104","request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/18?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/709/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/709/summaries?format=json","cboCostEstimates.0.title":"S. 709, Federal Agency Performance Act of 2023","introducedDate":"2023-03-08","subjects.count":6,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/709?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"877","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2024-10-15T15:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-188.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-188.","sponsors.0.party":"I","number":"59","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/59/cosponsors?format=json","sponsors.0.bioguideId":"S001191","laws.0.number":"118-188","actions.url":"https://api.congress.gov/v3/bill/118/s/59/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","amendments.url":"https://api.congress.gov/v3/bill/118/s/59/amendments?format=json","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-250","textVersions.url":"https://api.congress.gov/v3/bill/118/s/59/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"59","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/59/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/59/subjects?format=json","title":"Chance to Compete Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60824","request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/250?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/59/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/59/summaries?format=json","cboCostEstimates.0.title":"S. 59, Chance to Compete Act of 2024","introducedDate":"2023-01-24","subjects.count":12,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/59?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"878","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5355/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"5355","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Became Public Law No: 118-209.","committees.url":"https://api.congress.gov/v3/bill/118/s/5355/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5355/subjects?format=json","policyArea.name":"Native Americans","type":"S","title":"NACIE Improvement Act","latestAction.text":"Became Public Law No: 118-209.","sponsors.0.party":"R","number":"5355","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5355/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5355/titles?format=json","laws.0.number":"118-209","summaries.url":"https://api.congress.gov/v3/bill/118/s/5355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5355/actions?format=json","latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5355/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":8,"introducedDate":"2024-11-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5355?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:11:08Z","laws.0.type":"Public Law"}} +{"type":"node","id":"879","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5314/text?format=json","updateDate":"2025-01-08T21:14:31Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":18,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"5314","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Became Public Law No: 118-208.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5314/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"A bill to designate the medical center of the Department of Veterans Affairs in Tulsa, Oklahoma, as the James Mountain Inhofe VA Medical Center.","latestAction.text":"Became Public Law No: 118-208.","sponsors.0.party":"R","number":"5314","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5314/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5314/titles?format=json","laws.0.number":"118-208","summaries.url":"https://api.congress.gov/v3/bill/118/s/5314/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5314/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2024-11-13","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5314?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-08T21:14:31Z","laws.0.type":"Public Law"}} +{"type":"node","id":"880","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5310/text?format=json","updateDate":"2025-02-19T14:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"5310","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 702.","committees.url":"https://api.congress.gov/v3/bill/118/s/5310/committees?format=json","type":"S","title":"Federal Acquisition Security Council Improvement Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 702.","sponsors.0.party":"D","number":"5310","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/296?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5310/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5310/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5310/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"introducedDate":"2024-11-13","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5310?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-19T14:06:12Z","committeeReports.0.citation":"S. Rept. 118-296"}} +{"type":"node","id":"881","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4900/text?format=json","updateDate":"2025-01-31T23:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Butler","cboCostEstimates.0.pubDate":"2024-12-11T19:45:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4900","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 700.","committees.url":"https://api.congress.gov/v3/bill/118/s/4900/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4900/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Investing in Community Resilience Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 700.","sponsors.0.party":"D","number":"4900","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61104","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/294?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4900/cosponsors?format=json","sponsors.0.bioguideId":"B001320","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4900/titles?format=json","cboCostEstimates.0.title":"S. 4900, Investing in Community Resilience Act of 2024","actions.url":"https://api.congress.gov/v3/bill/118/s/4900/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":2,"sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4900?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-31T23:06:12Z","committeeReports.0.citation":"S. Rept. 118-294"}} +{"type":"node","id":"882","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4495/text?format=json","updateDate":"2025-02-01T23:26:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2024-10-22T15:28:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4495","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 697.","committees.url":"https://api.congress.gov/v3/bill/118/s/4495/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4495/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"PREPARED for AI Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 697.","sponsors.0.party":"D","number":"4495","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs\non July 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60695","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/291?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4495/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4495/titles?format=json","cboCostEstimates.0.title":"S. 4495, Promoting Responsible Evaluation and Procurement to Advance Readiness for Enterprise-wide Deployment for Artificial Intelligence Act","actions.url":"https://api.congress.gov/v3/bill/118/s/4495/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"introducedDate":"2024-06-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4495?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-01T23:26:12Z","committeeReports.0.citation":"S. Rept. 118-291"}} +{"type":"node","id":"883","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5535/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T16:32:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"5535","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5535/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5535/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Surprises Act Enforcement Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"5535","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5535/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5535/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5535/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5535/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-12-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5535?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-29T16:32:44Z"}} +{"type":"node","id":"884","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4898/text?format=json","relatedBills.count":1,"updateDate":"2025-02-01T01:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"4898","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 699.","committees.url":"https://api.congress.gov/v3/bill/118/s/4898/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4898/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Extreme Heat Emergency Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 699.","sponsors.0.party":"D","number":"4898","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/293?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4898/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4898/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4898/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":4,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4898?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-02-01T01:06:12Z","committeeReports.0.citation":"S. Rept. 118-293"}} +{"type":"node","id":"885","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4679/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:21:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"4679","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 698.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4679/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Ghost Guns and Untraceable Firearms Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"4679","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4679/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4679/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4679/actions?format=json","latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4679/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4679?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 4679.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 5 of Amendment XIV to the Constitution.\nThe single subject of this legislation is:\nTo amend chapter 44 of title 18, United States Code, to\nensure that all firearms are traceable, and for other\npurposes.\n[Page H3641]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2024-07-24T15:21:00Z"}} +{"type":"node","id":"886","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5534/text?format=json","updateDate":"2025-01-29T16:26:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5534","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5534/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Mapping Housing Discrimination Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5534","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-12-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5534/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5534/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5534/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-12-16","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5534?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-29T16:26:40Z"}} +{"type":"node","id":"887","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-08-30T16:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 696.","policyArea.name":"Foreign Trade and International Finance","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 696.","sponsors.0.party":"D","number":"1253","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1253/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1253/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1253/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-290","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1253/text?format=json","updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1253","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1253/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1253/committees?format=json","title":"Securing America's Ports of Entry Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59539","request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/290?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1253/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1253/summaries?format=json","cboCostEstimates.0.title":"S. 1253, Securing America’s Ports of Entry Act of 2023","introducedDate":"2023-04-20","subjects.count":15,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1253?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-14T16:56:14Z"}} +{"type":"node","id":"888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5533/text?format=json","updateDate":"2025-01-23T01:03:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"5533","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Budget.","committees.url":"https://api.congress.gov/v3/bill/118/s/5533/committees?format=json","type":"S","title":"A bill to repeal the Impoundment Control Act of 1974.","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"5533","request.format":"json","latestAction_actionDate":"2024-12-16","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5533/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5533/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-12-16","request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5533?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-23T01:03:26Z"}} +{"type":"node","id":"889","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4000/text?format=json","updateDate":"2025-01-21T22:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Padilla","cboCostEstimates.0.pubDate":"2024-09-04T15:51:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4000","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4000/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4000/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to reaffirm the applicability of the Indian Reorganization Act to the Lytton Rancheria of California, and for other purposes.","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"4000","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nJuly 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60686","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/223?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4000/titles?format=json","cboCostEstimates.0.title":" S. 4000, a bill to reaffirm the applicability of the Indian Reorganization Act to the Lytton Rancheria of California, and for other purposes","actions.url":"https://api.congress.gov/v3/bill/118/s/4000/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":3,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","latestAction.actionTime":"14:40:47","titles.count":2,"introducedDate":"2024-03-20","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4000?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-21T22:06:12Z","latestAction_actionTime":"14:40:47","committeeReports.0.citation":"S. Rept. 118-223"}} +{"type":"node","id":"890","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Menendez","cboCostEstimates.0.pubDate":"2023-06-26T12:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"920","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/920/cosponsors?format=json","sponsors.0.bioguideId":"M000639","actions.url":"https://api.congress.gov/v3/bill/118/s/920/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":3,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/118/s/920/amendments?format=json","titles.count":5,"cosponsors.count":4,"request.contentType":"application/json","latestAction_actionTime":"14:40:39","textVersions.url":"https://api.congress.gov/v3/bill/118/s/920/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"920","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/920/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/920/committees?format=json","title":"International Trafficking Victims Protection Reauthorization Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on June 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59302","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/920/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/920/summaries?format=json","cboCostEstimates.0.title":"S. 920, International Trafficking Victims Protection Reauthorization Act of 2023","latestAction.actionTime":"14:40:39","introducedDate":"2023-03-22","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/920?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"891","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Sarbanes","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5046","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5046/cosponsors?format=json","sponsors.0.bioguideId":"S001168","actions.url":"https://api.congress.gov/v3/bill/118/hr/5046/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5046/relatedbills?format=json","sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","latestAction_actionTime":"14:40:35","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5046/text?format=json","updateDate":"2024-07-24T15:20:45Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":4,"request.billNumber":"5046","sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5046/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5046/subjects?format=json","title":"Preventing Election Subversion Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-12-16","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5046/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5046/summaries?format=json","introducedDate":"2023-07-27","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5046?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 5046.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 4, clause 1\nThe single subject of this legislation is:\nElection Administration\n[Page H4146]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:45Z"}} +{"type":"node","id":"892","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4370/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T14:27:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"4370","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4370/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"PREVAIL Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4370","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4370/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4370/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4370/relatedbills?format=json","sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":4,"introducedDate":"2023-06-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4370?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCK:\nH.R. 4370.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 8\nThe single subject of this legislation is:\nintellectual property\n[Page H3152]\n","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-12-16T14:27:25Z","latestAction_actionTime":"14:40:30"}} +{"type":"node","id":"893","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Murkowski","cboCostEstimates.0.pubDate":"2024-11-18T16:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"4365","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4365/cosponsors?format=json","sponsors.0.bioguideId":"M001153","actions.url":"https://api.congress.gov/v3/bill/118/s/4365/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":3,"sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":5,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"14:40:25","committeeReports.0.citation":"S. Rept. 118-248","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4365/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"4365","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4365/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4365/subjects?format=json","title":"Veterinary Services to Improve Public Health in Rural Communities Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs\non July 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60999","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/248?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4365/titles?format=json","cboCostEstimates.0.title":"S. 4365, Veterinary Services to Improve Public Health in Rural Communities Act","latestAction.actionTime":"14:40:25","introducedDate":"2024-05-16","subjects.count":9,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4365?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:14:50Z"}} +{"type":"node","id":"894","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Heinrich","cboCostEstimates.0.pubDate":"2024-11-18T16:04:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"2908","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2908/cosponsors?format=json","sponsors.0.bioguideId":"H001046","actions.url":"https://api.congress.gov/v3/bill/118/s/2908/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2908/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","amendments.url":"https://api.congress.gov/v3/bill/118/s/2908/amendments?format=json","titles.count":5,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"14:40:19","committeeReports.0.citation":"S. Rept. 118-246","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2908/text?format=json","updateDate":"2025-01-21T22:06:12Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":14,"request.billNumber":"2908","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2908/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2908/committees?format=json","title":"Indian Buffalo Management Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs\non September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60997","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-12-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/246?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2908/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2908/summaries?format=json","cboCostEstimates.0.title":"S. 2908, Indian Buffalo Management Act","latestAction.actionTime":"14:40:19","introducedDate":"2023-09-21","subjects.count":8,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2908?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-21T22:06:12Z"}} +{"type":"node","id":"895","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2783/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:47:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Sablan","sponsors.0.isByRequest":"N","request.billNumber":"2783","sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2783/subjects?format=json","policyArea.name":"Agriculture and Food","title":"AANAPISI Opportunity Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"2783","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2024-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2783/cosponsors?format=json","sponsors.0.bioguideId":"S001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2783/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2783/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2783/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2783/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","titles.count":3,"introducedDate":"2023-04-20","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MP","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2783?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 2783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8 of the United States Constitution\nThe single subject of this legislation is:\nMSI grant programs in USDA\n[Page H1911]\n","sponsors.0.firstName":"Gregorio","updateDateIncludingText":"2024-06-11T15:47:26Z","latestAction_actionTime":"14:40:15"}} +{"type":"node","id":"896","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-149.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Became Public Law No: 118-149.","sponsors.0.party":"R","number":"91","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/91/cosponsors?format=json","sponsors.0.bioguideId":"H000601","laws.0.number":"118-149","actions.url":"https://api.congress.gov/v3/bill/118/s/91/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/91/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-12","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/91/amendments?format=json","titles.count":6,"cosponsors.count":72,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/91/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":22,"request.billNumber":"91","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/91/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/91/subjects?format=json","title":"Forgotten Heroes of the Holocaust Congressional Gold Medal Act","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2024-12-12","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/91/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/91/summaries?format=json","introducedDate":"2023-01-26","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/91?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}} +{"type":"node","id":"897","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4243/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":22,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","request.billNumber":"4243","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","latestAction_text":"Became Public Law No: 118-150.","committees.url":"https://api.congress.gov/v3/bill/118/s/4243/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4243/subjects?format=json","policyArea.name":"Congress","type":"S","title":"Shirley Chisholm Congressional Gold Medal Act","latestAction.text":"Became Public Law No: 118-150.","sponsors.0.party":"D","number":"4243","cosponsors.countIncludingWithdrawnCosponsors":69,"request.format":"json","latestAction_actionDate":"2024-12-12","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4243/cosponsors?format=json","sponsors.0.bioguideId":"B001320","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4243/titles?format=json","laws.0.number":"118-150","actions.url":"https://api.congress.gov/v3/bill/118/s/4243/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4243/relatedbills?format=json","sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/4243/amendments?format=json","titles.count":5,"introducedDate":"2024-05-02","cosponsors.count":69,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4243?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-14T18:24:13Z","laws.0.type":"Public Law"}} +{"type":"node","id":"898","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5532/text?format=json","updateDate":"2025-01-22T01:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"5532","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S7004)","committees.url":"https://api.congress.gov/v3/bill/118/s/5532/committees?format=json","type":"S","title":"Wildfire Intelligence Collaboration and Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S7004)","sponsors.0.party":"D","number":"5532","request.format":"json","latestAction_actionDate":"2024-12-12","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5532/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5532/actions?format=json","latestAction.actionDate":"2024-12-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-12-12","request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5532?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-22T01:23:21Z"}} +{"type":"node","id":"899","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5531/text?format=json","relatedBills.count":1,"updateDate":"2025-01-22T15:50:04Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"5531","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5531/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5531/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"S","title":"Public Archives Resiliency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5531","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5531/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5531/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5531/actions?format=json","latestAction.actionDate":"2024-12-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5531/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2024-12-12","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5531?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-22T15:50:04Z"}} +{"type":"node","id":"900","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5383/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"5383","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/5383/committees?format=json","type":"S","title":"A bill to rescind funds for green energy loans.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"5383","request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"T000476","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5383/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5383/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5383?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"901","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5382/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"5382","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5382/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Public Disclosure of Foreign Government Income Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5382","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5382/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5382/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5382?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"902","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/739/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"739","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 579.","subjects.url":"https://api.congress.gov/v3/bill/118/s/739/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/739/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"A bill to clarify jurisdiction with respect to certain Bureau of Reclamation pumped storage development, and for other purposes.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 579.","sponsors.0.party":"D","number":"739","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/739/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/739/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/739/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/739/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/739/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":2,"introducedDate":"2023-03-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/739?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"903","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4936/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"4936","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 634.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4936/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4936/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require a study relating to the Minidoka National Historic Site.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 634.","sponsors.0.party":"R","number":"4936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4936/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4936/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4936?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"904","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4932/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4932","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 633.","committees.url":"https://api.congress.gov/v3/bill/118/s/4932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4932/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Department of Energy Quantum Leadership Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 633.","sponsors.0.party":"D","number":"4932","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4932/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4932/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4932/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4932?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"905","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5381/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"5381","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S6726)","committees.url":"https://api.congress.gov/v3/bill/118/s/5381/committees?format=json","type":"S","title":"Justice Thurgood Marshall National Historic Site Establishment Act of 2024","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S6726)","sponsors.0.party":"D","number":"5381","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5381/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5381/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5381/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5381?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"906","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5380/text?format=json","updateDate":"2024-12-19T05:23:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"5380","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5380/committees?format=json","type":"S","title":"Portable Ultrasound Reimbursement Equity Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5380","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5380/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5380/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5380/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5380?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-19T05:23:19Z"}} +{"type":"node","id":"907","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5379/text?format=json","updateDate":"2024-12-07T00:23:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"5379","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5379/committees?format=json","type":"S","title":"TRAIN Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5379","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5379/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5379/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5379?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-07T00:23:16Z"}} +{"type":"node","id":"908","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4424/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"4424","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","committees.url":"https://api.congress.gov/v3/bill/118/s/4424/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4424/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"National Prescribed Fire Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","sponsors.0.party":"D","number":"4424","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4424/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4424/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4424/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4424/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4424?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T17:20:41Z"}} +{"type":"node","id":"909","labels":["Bill"],"properties":{"relatedBills.count":10,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-09-14T19:02:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"5378","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5378/cosponsors?format=json","sponsors.0.bioguideId":"M001159","actions.url":"https://api.congress.gov/v3/bill/118/hr/5378/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5378/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":4,"cosponsors.count":3,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59825","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5378/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"request.congress":"118","cboCostEstimates.1.pubDate":"2023-12-08T17:09:00Z","actions.count":14,"request.billNumber":"5378","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5378/subjects?format=json","title":"Lower Costs, More Transparency Act","cboCostEstimates.1.description":"As posted on the website of the Clerk of the House on December 5, 2023\nhttps://tinyurl.com/h2vpjp8a\n","cboCostEstimates.0.description":"As posted on the website of the Clerk of the House on September 13, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59568","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2024-11-21","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5378/summaries?format=json","cboCostEstimates.0.title":"Estimated Direct Spending and Revenue Effects of H.R. 5378, the Lower Costs, More Transparency Act","latestAction.actionTime":"19:13:20","introducedDate":"2023-09-08","subjects.count":22,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5378?format=json","cboCostEstimates.1.title":"Estimated Direct Spending and Revenue Effects of H.R. 5378, the Lower Costs, More Transparency Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 145 (Friday, September 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 5378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTo lower costs for and improve the health of patients.\n[Page H4231]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"910","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4664/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Manchin","sponsors.0.isByRequest":"N","request.billNumber":"4664","sponsors.0.url":"https://api.congress.gov/v3/member/M001183?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 631.","committees.url":"https://api.congress.gov/v3/bill/118/s/4664/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4664/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Department of Energy AI Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 631.","sponsors.0.party":"I","number":"4664","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4664/cosponsors?format=json","sponsors.0.bioguideId":"M001183","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4664/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4664/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Manchin, Joe, III [I-WV]","titles.count":4,"introducedDate":"2024-07-10","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4664?format=json","sponsors.0.firstName":"Joseph","updateDateIncludingText":"2025-02-06T17:27:13Z"}} +{"type":"node","id":"911","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5377/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"5377","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/5377/committees?format=json","type":"S","title":"INFORM Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"5377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5377/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5377/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5377/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":4,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5377?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"912","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4432/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4432","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4432/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4432/committees?format=json","policyArea.name":"Energy","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","sponsors.0.party":"R","number":"4432","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4432/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4432/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4432?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T17:20:41Z"}} +{"type":"node","id":"913","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2132/text?format=json","updateDate":"2024-07-24T15:22:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2132","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 583.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2132/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Credit Union Administration, Community Development Revolving Loan Fund for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"2132","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2132/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2132/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2132?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2132.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1. Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:47Z"}} +{"type":"node","id":"914","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2156/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2156","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 585.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2156/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2156/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To provide for a limitation on availability of funds for U.S. Department of Interior, US Fish and Wildlife Service, Resource Management for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"2156","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2156/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2156/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2156/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2156/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2156?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2156.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1652]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"915","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4457/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4457","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","committees.url":"https://api.congress.gov/v3/bill/118/s/4457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4457/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Southern Nevada Economic Development and Conservation Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","sponsors.0.party":"D","number":"4457","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4457/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4457/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4457/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":4,"introducedDate":"2024-06-04","subjects.count":26,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4457?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:20:41Z"}} +{"type":"node","id":"916","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"4454","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","committees.url":"https://api.congress.gov/v3/bill/118/s/4454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4454/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Operational Flexibility Grazing Management Program Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","sponsors.0.party":"R","number":"4454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4454/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4454/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4454/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4454/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2024-06-04","cosponsors.count":1,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4454?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:41Z"}} +{"type":"node","id":"917","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3596/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3596","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 605.","committees.url":"https://api.congress.gov/v3/bill/118/s/3596/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3596/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to amend the Mineral Leasing Act to amend references of gilsonite to asphaltite.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 605.","sponsors.0.party":"R","number":"3596","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3596/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3596/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3596/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-01-17","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3596?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"918","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3631/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3631","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 607.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3631/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3631/committees?format=json","policyArea.name":"Energy","type":"S","title":"Critical Minerals Security Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 607.","sponsors.0.party":"R","number":"3631","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3631/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3631/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3631/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3631/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2024-01-18","cosponsors.count":5,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3631?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"919","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3542/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3542","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 601.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3542/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3542/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Atchafalaya National Heritage Area Boundary Modification Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 601.","sponsors.0.party":"R","number":"3542","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3542/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3542/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3542/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3542/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3542/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2023-12-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3542?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"920","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5178/text?format=json","updateDate":"2024-10-28T13:33:03Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"5178","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5178/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5178/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"Social Security Survivor Benefits Equity Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5178","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5178/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5178/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5178/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5178?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-10-28T13:33:03Z"}} +{"type":"node","id":"921","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5179/text?format=json","updateDate":"2024-10-15T23:53:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"5179","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5179/committees?format=json","type":"S","title":"Direct Support Worker Training Reimbursement Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"5179","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5179/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5179/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5179/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5179?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-10-15T23:53:18Z"}} +{"type":"node","id":"922","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5187/text?format=json","updateDate":"2024-10-12T00:23:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"5187","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5187/committees?format=json","type":"S","title":"Community College Infrastructure Financing Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5187","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5187/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5187/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2024-09-25","request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5187?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-10-12T00:23:22Z"}} +{"type":"node","id":"923","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5180/text?format=json","updateDate":"2024-12-05T15:50:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"5180","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5180/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"Mollie Baldwin Upskilling of Personal and Home Care Aides Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"5180","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5180/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5180/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5180/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5180?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-12-05T15:50:41Z"}} +{"type":"node","id":"924","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5186/text?format=json","updateDate":"2024-10-15T14:21:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"5186","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5186/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5186/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Stop Corrupt Gratuities Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5186","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5186/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5186/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5186/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5186?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-10-15T14:21:49Z"}} +{"type":"node","id":"925","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5181/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"5181","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/5181/committees?format=json","type":"S","title":"Make America Active Again Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"5181","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5181/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5181/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2024-09-25","request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5181?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"926","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5185/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"5185","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5185/committees?format=json","type":"S","title":"Funding Community College Infrastructure Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"5185","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5185/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5185/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2024-09-25","request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5185?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"927","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5182/text?format=json","updateDate":"2024-10-12T00:23:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"5182","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5182/committees?format=json","type":"S","title":"UNDERSTAND Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5182","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5182/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5182/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5182/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5182?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-10-12T00:23:23Z"}} +{"type":"node","id":"928","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5184/text?format=json","updateDate":"2024-12-05T15:40:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"5184","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5184/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5184/subjects?format=json","policyArea.name":"Health","type":"S","title":"SOLES Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5184","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5184/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5184/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5184/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5184?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-12-05T15:40:17Z"}} +{"type":"node","id":"929","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5172/text?format=json","updateDate":"2024-12-18T09:05:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"5172","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S6444)","committees.url":"https://api.congress.gov/v3/bill/118/hr/5172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5172/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"To amend the Consolidated Farm and Rural Development Act to reduce the eligibility requirement for direct farm real estate loans, and for other purposes.","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"R","number":"5172","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5172/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5172/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5172/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":2,"introducedDate":"2023-08-08","cosponsors.count":2,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nreduce the eligibility requirement for direct farm real\nestate loans, and for other purposes.\n[Page H4172]\n","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2024-12-18T09:05:48Z"}} +{"type":"node","id":"930","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5183/text?format=json","updateDate":"2024-11-13T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"5183","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5183/committees?format=json","type":"S","title":"BE GONE Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"5183","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5183/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5183/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5183/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":4,"introducedDate":"2024-09-25","cosponsors.count":22,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5183?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-13T12:03:18Z"}} +{"type":"node","id":"931","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5176/text?format=json","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5176","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5176/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Affordable and Homeless Housing Incentives Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"5176","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-09-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5176/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5176/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5176/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5176/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-08-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5176?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H4172]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-07-24T15:20:39Z"}} +{"type":"node","id":"932","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5175/text?format=json","updateDate":"2024-08-14T08:05:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5175","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5175/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5175/committees?format=json","policyArea.name":"Emergency Management","title":"PETSAFE Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"5175","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-09-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5175/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5175/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5175/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5175/actions?format=json","latestAction.actionDate":"2023-08-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":4,"introducedDate":"2023-08-08","cosponsors.count":34,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5175?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5175.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEmergency Preparedness\n[Page H4172]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-08-14T08:05:31Z"}} +{"type":"node","id":"933","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5174/text?format=json","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ross","sponsors.0.isByRequest":"N","request.billNumber":"5174","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5174/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5174/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"United States-Moldova Defense Partnership Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"5174","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5174/cosponsors?format=json","sponsors.0.bioguideId":"R000305","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5174/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5174/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":3,"introducedDate":"2023-08-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5174?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 5174.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 12 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo support and modernize Moldova's defense needs with the\nsupport of the United States of America.\n[Page H4172]\n","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2024-07-24T15:20:39Z"}} +{"type":"node","id":"934","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5171/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"5171","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5171/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5171/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"HOPE Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"5171","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5171/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5171/actions?format=json","latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5171/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":4,"introducedDate":"2024-09-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5171?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"935","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5170/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"5170","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5170/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5170/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Data Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"5170","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5170/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5170/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-09-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5170?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"936","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5169/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5169","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5169/committees?format=json","type":"S","title":"Employee and Retiree Access to Justice Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"5169","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5169/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5169/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-09-25","request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5169?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"937","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5168/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"5168","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5168/committees?format=json","type":"S","title":"Judiciary Accountability Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5168/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5168/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5168/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5168?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-09T01:57:48Z"}} +{"type":"node","id":"938","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5165/text?format=json","relatedBills.count":1,"updateDate":"2024-11-07T15:56:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"5165","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6444)","committees.url":"https://api.congress.gov/v3/bill/118/s/5165/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5165/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom from Intimidation in Elections Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6444)","sponsors.0.party":"D","number":"5165","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5165/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5165/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5165/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5165/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5165?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-07T15:56:32Z"}} +{"type":"node","id":"939","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5164/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Waltz","sponsors.0.isByRequest":"N","request.billNumber":"5164","sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5164/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"PAINTER Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"5164","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"W000823","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5164/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5164/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","titles.count":4,"introducedDate":"2023-08-04","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5164?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 5164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Ethics\n[Page H4166]\n","sponsors.0.district":6,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"940","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4928/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:20:45Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"4928","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 470.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4928/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4928/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"National Security Reforms and Accountability Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"4928","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4928/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4928/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4928/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4928/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4928/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":6,"introducedDate":"2023-07-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4928?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 4928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, Clause 11, Clause\n14, and Clause 18\nThe single subject of this legislation is:\nReforms war powers, the National Emergencies Reform Act,\nand arms exports.\n[Page H4032]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-07-24T15:20:45Z"}} +{"type":"node","id":"941","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4927/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"4927","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 469.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4927/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"ACES Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"R","number":"4927","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4927/cosponsors?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4927/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4927/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4927/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":4,"introducedDate":"2023-07-26","cosponsors.count":12,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4927?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 4927.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nCFIUS overseeing the sale of ByteDance's TikTok and the\ndestruction of ByteDance's American data.\n[Page H4032]\n","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"942","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4952/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"4952","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4952/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4952/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Dark and Quiet Skies Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4952","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4952/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4952/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4952/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4952?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"943","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4951/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"4951","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4951/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4951/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Unleashing AI Innovation in Financial Services Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"4951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4951/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4951/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4951/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4951/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4951?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"944","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4950/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4950","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4950/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4950/subjects?format=json","policyArea.name":"Native Americans","type":"S","title":"Tribal Employment and Training Support Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4950","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4950/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4950/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4950?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"945","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4949/text?format=json","relatedBills.count":1,"updateDate":"2024-06-21T16:18:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Soto","sponsors.0.isByRequest":"N","request.billNumber":"4949","sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4949/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4949/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Don Young Veterans Advancing Conservation Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"4949","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4949/cosponsors?format=json","sponsors.0.bioguideId":"S001200","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4949/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4949/actions?format=json","latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4949/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","titles.count":3,"introducedDate":"2023-07-26","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4949?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 4949.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution.\nThe single subject of this legislation is:\nVeteran conservation grant training program.\n[Page H4033]\n","sponsors.0.district":9,"sponsors.0.firstName":"Darren","updateDateIncludingText":"2024-06-21T16:18:59Z"}} +{"type":"node","id":"946","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4948/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Manchin","sponsors.0.isByRequest":"N","request.billNumber":"4948","sponsors.0.url":"https://api.congress.gov/v3/member/M001183?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4948/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4948/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require the Secretary of Commerce to establish a grant program to foster enhanced coexistence between ocean users and North Atlantic right whales and other large cetacean species.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"I","number":"4948","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4948/cosponsors?format=json","sponsors.0.bioguideId":"M001183","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4948/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4948/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Manchin, Joe, III [I-WV]","titles.count":2,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4948?format=json","sponsors.0.firstName":"Joseph","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"947","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4947/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4947","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4947/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Cruise Passenger Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4947","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4947/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4947/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4947/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4947/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4947?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"948","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4946/text?format=json","relatedBills.count":1,"updateDate":"2025-03-03T11:57:02Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"4946","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/4946/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4946/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Justice for 9/11 Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"4946","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4946/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4946/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4946/actions?format=json","latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4946/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4946?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-03-03T11:57:02Z"}} +{"type":"node","id":"949","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4945/text?format=json","updateDate":"2025-02-18T13:09:02Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4945","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/4945/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4945/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Rural Opportunities and Revitalization Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4945","request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4945/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4945/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4945/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4945?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-02-18T13:09:02Z"}} +{"type":"node","id":"950","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4944/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"4944","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4944/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Military Families and Surviving Spouses Benefits Enhancement Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"R","number":"4944","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4944/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4944/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":3,"introducedDate":"2023-07-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4944?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 4944.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nTo defer loans for certain military spouses and restore\nnon-monetary benefits to surviving spouses.\n[Page H4032]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"951","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4943/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4943","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4943/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4943/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Protecting Consumers From Payment Scams Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4943","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4943/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4943/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4943/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4943/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4943?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"952","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4941/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"4941","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4941/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4941/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Meat Business Innovation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4941","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4941/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4941/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4941?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"953","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4940/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"4940","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4940/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4940/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"S","title":"Bivens Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4940","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4940/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4940/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4940/actions?format=json","latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4940/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4940?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4939/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4939","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4939/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Safeguarding Infants from Dangerous Sleep Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4939","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4939/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4939/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4939?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"955","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4938/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"4938","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4938/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the \"Floyd B. Olson Post Office\".","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4938","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4938/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4938/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4938/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4938/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4938?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"956","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4937/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"4937","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4937/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Defending American Sovereignty in Global Pandemics Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4937","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4937/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4937/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4937/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4937?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"957","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4935/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"4935","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4935/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To amend the Commodity Exchange Act to adjust the period during which amounts transferred by the Commodity Futures Trading Commission to the account for customer education initiatives and non-awards expenses shall remain available, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"4935","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4935/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4935/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4935/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4935/actions?format=json","latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4935/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":2,"introducedDate":"2023-07-26","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4935?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 4935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Commodity Exchange Act to adjust the period\nduring which amounts transferred by the Commodity Futures\nTrading Commission to the account for customer education\ninitiatives and non-awards expenses\n[Page H4032]\n","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2024-07-24T15:20:47Z"}} +{"type":"node","id":"958","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4934/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"4934","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4934/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4934/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To direct the Secretary of Defense to establish a standardized training curriculum for military vehicle operations.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"4934","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4934/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4934/actions?format=json","latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4934/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":2,"introducedDate":"2023-07-26","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4934?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 4934.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to establish a\nstandardized training curriculum for military vehicle\noperations.\n[Page H4032]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-07-24T15:20:49Z"}} +{"type":"node","id":"959","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4931/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Morelle","sponsors.0.isByRequest":"N","request.billNumber":"4931","sponsors.0.url":"https://api.congress.gov/v3/member/M001206?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4931/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4931/committees?format=json","policyArea.name":"Education","type":"HR","title":"Pell Grant Flexibility Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"4931","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4931/cosponsors?format=json","sponsors.0.bioguideId":"M001206","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4931/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4931/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4931/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Morelle, Joseph D. [D-NY-25]","titles.count":3,"introducedDate":"2023-07-26","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4931?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.R. 4931.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8, Clause 1 of the United\nStates Constitution.\nThe single subject of this legislation is:\nThe single subject of this bill is disability.\n[Page H4032]\n","sponsors.0.district":25,"sponsors.0.firstName":"Joseph","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"960","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4701/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4701","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4556-4563)","committees.url":"https://api.congress.gov/v3/bill/118/s/4701/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4701/subjects?format=json","policyArea.name":"Education","type":"S","title":"POST Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4556-4563)","sponsors.0.party":"D","number":"4701","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4701/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4701/actions?format=json","latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4701/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4701?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"961","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4677/text?format=json","relatedBills.count":2,"updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sinema","sponsors.0.isByRequest":"N","request.billNumber":"4677","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 435.","committees.url":"https://api.congress.gov/v3/bill/118/s/4677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4677/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Military Construction, Veterans Affairs, and Related Agencies Appropriations Act, 2025","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 435.","sponsors.0.party":"I","number":"4677","request.format":"json","latestAction_actionDate":"2024-07-11","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/191?format=json","summaries.count":2,"sponsors.0.bioguideId":"S001191","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4677/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4677/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4677/actions?format=json","latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4677/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","titles.count":3,"introducedDate":"2024-07-11","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4677?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"S. Rept. 118-191"}} +{"type":"node","id":"962","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4704/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"4704","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4704/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4704/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Military Installation Shoreline Protection Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"4704","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4704/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4704/actions?format=json","latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4704/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4704?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"963","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4703/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"4703","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4703/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4703/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"United States-Philippines Partnership Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4703","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4703/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4703/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-11","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4703?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"964","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4702/text?format=json","updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"4702","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4702/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4702/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Critical Mineral Supply Chain Realignment Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4702","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4702/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4702/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4702?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T18:59:41Z"}} +{"type":"node","id":"965","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4699/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4699","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/4699/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4699/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Insurrection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4699","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4699/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4699/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4699?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"966","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4696/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4696","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4696/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4696/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Restore the Port of Baltimore Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4696","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4696/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4696/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4696?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"967","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4695/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4695","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4695/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4695/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"BOWSER Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4695","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4695/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4695/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4695/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4695/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2024-07-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4695?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"968","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4694/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4694","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4694/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Baltimore Recovery Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4694","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4694/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4694/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4694?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"969","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4691/text?format=json","updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"4691","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4691/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4691/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"No Tax Breaks for Drug Ads Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4691","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4691/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4691/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4691/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4691/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":17,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4691?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T18:59:41Z"}} +{"type":"node","id":"970","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4692/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"4692","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4692/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4692/subjects?format=json","policyArea.name":"Congress","type":"S","title":"USA Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4692","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4692/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4692/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4692?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"971","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4693/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Stabenow","sponsors.0.isByRequest":"N","request.billNumber":"4693","sponsors.0.url":"https://api.congress.gov/v3/member/S000770?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4693/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Revitalizing Downtowns and Main Streets Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4693","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4693/cosponsors?format=json","sponsors.0.bioguideId":"S000770","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4693/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4693/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4693/relatedbills?format=json","sponsors.0.fullName":"Sen. Stabenow, Debbie [D-MI]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4693?format=json","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-01-14T18:59:41Z"}} +{"type":"node","id":"972","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4689/text?format=json","relatedBills.count":1,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4689","sponsors.0.url":"https://api.congress.gov/v3/member/P000608?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4689/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"FASTER Act of 2023","latestAction.text":"Referred to the Subcommittee on Forestry.","sponsors.0.party":"D","number":"4689","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2024-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4689/cosponsors?format=json","sponsors.0.bioguideId":"P000608","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4689/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4689/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4689/relatedbills?format=json","sponsors.0.fullName":"Rep. Peters, Scott H. [D-CA-50]","titles.count":4,"introducedDate":"2023-07-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4689?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PETERS:\nH.R. 4689.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nElectric transmission\n[Page H3641]\n","sponsors.0.district":50,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"973","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4688/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"4688","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4688/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4688/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Counter Kleptocracy Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4688","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4688/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4688/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4688/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4688?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"974","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4687/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"4687","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4687/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4687/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To require the Director of the Court Services and Offender Supervision Agency for the District of Columbia and the Director of the Pretrial Services Agency for the District of Columbia to reside in the District of Columbia.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"4687","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2024-07-11","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4687/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4687/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4687/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2023-07-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4687?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 4687.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would require the Directors of the Court Services\nand Offender Supervision Agency for the District of Columbia\nand the District of Columbia Pretrial Services Agency to\nreside in the District of Columbia during their terms.\n[Page H3641]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"975","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4685/text?format=json","updateDate":"2024-07-25T19:09:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kuster","sponsors.0.isByRequest":"N","request.billNumber":"4685","sponsors.0.url":"https://api.congress.gov/v3/member/K000382?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4685/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4685/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Workforce Development Investment Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"4685","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-07-11","summaries.count":1,"sponsors.0.bioguideId":"K000382","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4685/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4685/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4685/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Kuster, Ann M. [D-NH-2]","titles.count":3,"introducedDate":"2023-07-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4685?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KUSTER:\nH.R. 4685.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof.''\nThe single subject of this legislation is:\nWorkforce\n[Page H3641]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2024-07-25T19:09:51Z"}} +{"type":"node","id":"976","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4684/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:58:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kiley","sponsors.0.isByRequest":"N","request.billNumber":"4684","sponsors.0.url":"https://api.congress.gov/v3/member/K000401?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4684/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4684/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"No Sanctuary for Criminals Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4684","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4684/cosponsors?format=json","sponsors.0.bioguideId":"K000401","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4684/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4684/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4684/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4684/relatedbills?format=json","sponsors.0.fullName":"Rep. Kiley, Kevin [R-CA-3]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4684?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILEY:\nH.R. 4684.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAmends the Illegal Immigration Reform and Immigrant\nResponsibility Act of 1996 to expand the prohibition on State\nnoncompliance with enforcement of the immigration laws.\n[Page H3641]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-03-04T17:27:13Z"}} +{"type":"node","id":"977","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4683/text?format=json","updateDate":"2024-07-09T18:14:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"4683","sponsors.0.url":"https://api.congress.gov/v3/member/J000308?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4683/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4683/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Closing Loopholes for the Overseas Use and Development of Artificial Intelligence Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"4683","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4683/cosponsors?format=json","sponsors.0.bioguideId":"J000308","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4683/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson, Jeff [D-NC-14]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4683?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of North Carolina:\nH.R. 4683.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: To regulate Commerce with\nforeign Nations\nThe single subject of this legislation is:\nExport Controls\n[Page H3641]\n","sponsors.0.district":14,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-07-09T18:14:31Z"}} +{"type":"node","id":"978","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4682/text?format=json","updateDate":"2024-10-05T08:05:44Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Houlahan","sponsors.0.isByRequest":"N","request.billNumber":"4682","sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4682/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4682/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Mercury 13 Congressional Gold Medal Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4682","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4682/cosponsors?format=json","sponsors.0.bioguideId":"H001085","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4682/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4682/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4682/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":27,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4682?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 4682.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nTo award a Congressional Gold Medal to the Mercury 13 for\ntheir trailblazing accomplishments.\n[Page H3641]\n","sponsors.0.district":6,"sponsors.0.firstName":"Chrissy","updateDateIncludingText":"2024-10-05T08:05:44Z"}} +{"type":"node","id":"979","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4680/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"4680","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4680/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Secretary General Jens Stoltenberg Congressional Gold Medal Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4680","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2024-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4680/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4680/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4680/actions?format=json","latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4680/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":72,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4680?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"980","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4440/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"4440","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4440/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4440/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Public Housing Emergency Response Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4440","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-06-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4440/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4440/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4440/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4440/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4440?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"981","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4439/text?format=json","updateDate":"2024-08-05T16:12:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"4439","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4439/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4439/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Transparency in Debt Issuance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4439","request.format":"json","latestAction_actionDate":"2024-06-03","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4439/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4439/actions?format=json","latestAction.actionDate":"2024-06-03","textVersions.count":1,"sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":3,"introducedDate":"2024-06-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4439?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-05T16:12:59Z"}} +{"type":"node","id":"982","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4437/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"4437","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4437/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4437/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Coordinating Care for Senior Veterans and Wounded Warriors Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-06-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4437/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4437/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4437/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4437?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"983","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4436/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4436","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4436/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protect Infant Formula from Contamination Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4436","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-06-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4436/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4436/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4436/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4436?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"984","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-06-26T16:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-64.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Became Public Law No: 118-64.","sponsors.0.party":"R","number":"546","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/546/cosponsors?format=json","sponsors.0.bioguideId":"F000463","laws.0.number":"118-64","actions.url":"https://api.congress.gov/v3/bill/118/s/546/actions?format=json","latestAction.actionDate":"2024-05-24","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/546/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":6,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/546/text?format=json","updateDate":"2024-12-19T13:04:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"546","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/546/subjects?format=json","title":"Recruit and Retain Act","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on June 8, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59307","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2024-05-24","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/546/summaries?format=json","cboCostEstimates.0.title":"S. 546, Recruit and Retain Act","introducedDate":"2023-02-28","subjects.count":11,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/546?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2024-12-19T13:04:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"985","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4434/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Modernizing Retrospective Regulatory Review Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4434","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4434/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4434/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4434/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"986","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-07-19T14:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Economics and Public Finance","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 23 - 20.","sponsors.0.party":"R","number":"4435","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4435/cosponsors?format=json","sponsors.0.bioguideId":"M001159","actions.url":"https://api.congress.gov/v3/bill/118/hr/4435/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4435/relatedbills?format=json","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4435/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":7,"request.billNumber":"4435","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4435/subjects?format=json","title":"Unauthorized Spending Accountability Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59388","request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2024-05-23","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4435/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4435/summaries?format=json","cboCostEstimates.0.title":"H.R. 4435, Unauthorized Spending Accountability Act of 2023","introducedDate":"2023-06-30","subjects.count":6,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4435?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 4435.\nCongress has the power to enact this legislation pursuant\nfollowing:\nSection 8 Clause 1\nThe single subject of this legislation is:\nThis bill creates a sunset for federal spending on federal\nprograms that are not currently authorized by an Act of\nCongress.\n[Page H3162]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-02-04T17:04:03Z"}} +{"type":"node","id":"987","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4428/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"4428","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4428/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4428/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Biotechnology Oversight Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4428","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4428/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4428/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4428/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4428/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4428?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"988","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4433/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"4433","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4433/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4433/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"BOLSTER Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4433","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4433/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4433/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4433/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4433?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"989","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4429/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"4429","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4429/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4429/subjects?format=json","policyArea.name":"Health","type":"S","title":"SUPPORT Rx Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4429","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4429/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4429/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4429/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4429?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4430/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"4430","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4430/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4430/subjects?format=json","policyArea.name":"Health","type":"S","title":"Fatal Overdose Reduction Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4430","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4430/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4430/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4430/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4430?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-11-09T01:57:48Z"}} +{"type":"node","id":"991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4427","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4427/committees?format=json","policyArea.name":"Commerce","type":"S","title":"DOE and SBA Research Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4427","request.format":"json","latestAction_actionDate":"2024-05-23","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4427/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4427/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4427/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4427?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"992","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4361/text?format=json","relatedBills.count":1,"updateDate":"2024-09-04T19:53:17Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"4361","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 43 - 50. Record Vote Number: 182. (CR S3878)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4361/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Border Act of 2024","latestAction.text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 43 - 50. Record Vote Number: 182. (CR S3878)","sponsors.0.party":"D","number":"4361","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-05-23","summaries.count":1,"amendments.count":4,"sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4361/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4361/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","amendments.url":"https://api.congress.gov/v3/bill/118/s/4361/amendments?format=json","titles.count":5,"introducedDate":"2024-05-16","subjects.count":44,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4361?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-09-04T19:53:17Z"}} +{"type":"node","id":"993","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4426/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4426","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4426/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4426/subjects?format=json","policyArea.name":"Health","type":"S","title":"Promising Pathway Act 2.0","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"4426","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4426/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4426/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4426/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4426?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"994","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4425/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"4425","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4425/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4425/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"GPA Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"4425","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4425/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4425/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4425/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4425/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4425?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"995","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4423/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"4423","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4423/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4423/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"Parity for Native Hawaiian Veterans Act of 2024","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"4423","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4423/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4423/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4423/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4423/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4423?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"996","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Carter","cboCostEstimates.0.pubDate":"2023-11-21T17:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Emergency Management","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 657.","sponsors.0.party":"D","number":"4403","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4403/cosponsors?format=json","sponsors.0.bioguideId":"C001125","actions.url":"https://api.congress.gov/v3/bill/118/hr/4403/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-02","sponsors.0.fullName":"Rep. Carter, Troy [D-LA-2]","titles.count":7,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-320","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60787","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4403/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"House","committees.count":2,"request.congress":"118","cboCostEstimates.1.pubDate":"2024-09-27T18:28:00Z","actions.count":21,"committeeReports.1.citation":"S. Rept. 118-256","request.billNumber":"4403","sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4403/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4403/subjects?format=json","title":"Securing the Cities Improvement Act","cboCostEstimates.1.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 18, 2024\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59783","request.format":"json","latestAction_actionDate":"2024-05-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/320?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4403/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4403/summaries?format=json","cboCostEstimates.0.title":"H.R. 4403, Securing the Cities Improvement Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/SRPT/256?format=json","introducedDate":"2023-06-30","subjects.count":7,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4403?format=json","cboCostEstimates.1.title":"H.R. 4403, Securing the Cities Improvement Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 4403.\nCongress has the power to enact this legislation pursuant\nto the following:\nthe Spending Clause, Article 1, Section 8, Cl. 1 and the\nNecessary and Proper Clause, Article I, Section 8, Cl. 18.\nThe single subject of this legislation is:\nTo amend the Homeland Security Act of 2002 to make\nimprovments to the Securing the Cities program.\n[Page H3160]\n","sponsors.0.district":2,"sponsors.0.firstName":"Troy","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4422/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4422","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4422/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4422/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Fair Repair Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4422","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4422/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4422/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4422/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4422/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4422?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4421/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T11:37:04Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"4421","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3886-3887)","committees.url":"https://api.congress.gov/v3/bill/118/s/4421/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4421/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Agricultural Biotechnology Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3886-3887)","sponsors.0.party":"D","number":"4421","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4421/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4421/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4421/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4421/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4421/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4421?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-29T11:37:04Z"}} +{"type":"node","id":"999","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4420/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"4420","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/4420/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4420/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Agriculture and National Security Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4420","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4420/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4420/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4420/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4420/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4420?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1000","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cantwell","cboCostEstimates.0.pubDate":"2023-10-25T18:37:01Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-48.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Became Public Law No: 118-48.","sponsors.0.party":"D","number":"382","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/382/cosponsors?format=json","sponsors.0.bioguideId":"C000127","laws.0.number":"118-48","actions.url":"https://api.congress.gov/v3/bill/118/s/382/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/382/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-130","textVersions.url":"https://api.congress.gov/v3/bill/118/s/382/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":26,"request.billNumber":"382","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/382/subjects?format=json","title":"Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on July 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59705","request.format":"json","latestAction_actionDate":"2024-04-19","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/130?format=json","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/382/summaries?format=json","cboCostEstimates.0.title":"S. 382, Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","introducedDate":"2023-02-09","subjects.count":5,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/382?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:14:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1001","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4200/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4200","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4200/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4200/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"ALERT Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4200","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4200/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4200/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4200/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4200/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2024-04-19","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4200?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1002","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4198/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"4198","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4198/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Veterans Cemetery Access Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4198","request.format":"json","latestAction_actionDate":"2024-04-19","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4198/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4198/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2024-04-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4198?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"1003","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4197/text?format=json","updateDate":"2024-08-12T18:30:03Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4197","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4197/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4197/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"A bill to amend the FISA Amendments Act of 2008 to provide for an extension of certain authorities under title VII of the Foreign Intelligence Surveillance Act of 1978.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"4197","request.format":"json","latestAction_actionDate":"2024-04-19","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4197/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4197/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-04-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4197?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-08-12T18:30:03Z"}} +{"type":"node","id":"1004","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4195/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Davids","sponsors.0.isByRequest":"N","request.billNumber":"4195","sponsors.0.url":"https://api.congress.gov/v3/member/D000629?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4195/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Empowering Parents’ Healthcare Choices Act of 2021","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4195","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-04-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4195/cosponsors?format=json","sponsors.0.bioguideId":"D000629","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4195/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4195/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4195/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Davids, Sharice [D-KS-3]","titles.count":3,"introducedDate":"2023-06-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"KS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4195?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 106 (Friday, June 16, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DAVIDS of Kansas:\nH.R. 4195.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\nThe single subject of this legislation is:\nHealth insurance regulations.\n[Page H2965]\n","sponsors.0.district":3,"sponsors.0.firstName":"Sharice","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1005","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4196/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4196","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4196/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4196/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Building Civic Bridges Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4196","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4196/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4196/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4196/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4196/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4196?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4194/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"4194","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/4194/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4194/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Protecting Communities from Plastics Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"4194","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4194/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4194/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4194/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4194/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4194?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4193/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"4193","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4193/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4193/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Habitat Connectivity on Working Lands Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4193","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4193/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4193/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4193/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4193?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1008","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4192/text?format=json","relatedBills.count":1,"updateDate":"2025-01-02T19:27:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Stabenow","sponsors.0.isByRequest":"N","request.billNumber":"4192","sponsors.0.url":"https://api.congress.gov/v3/member/S000770?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4192/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4192/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"We Can't Wait Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4192","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4192/cosponsors?format=json","sponsors.0.bioguideId":"S000770","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4192/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4192/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4192/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Stabenow, Debbie [D-MI]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4192?format=json","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-01-02T19:27:17Z"}} +{"type":"node","id":"1009","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4191/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4191","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4191/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4191/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Regional Leadership in Wildland Fire Research Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4191","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4191/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4191/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4191/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4191?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1010","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4187/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4187","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (text: CR S2877-2887)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4187/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4187/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Forever Chemical Regulation and Accountability Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (text: CR S2877-2887)","sponsors.0.party":"D","number":"4187","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4187/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4187/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4187/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4187?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1011","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4186/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4186","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4186/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4186/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Banning Toxics from Plastic Bottles Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4186","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4186/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4186/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4186/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4186?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1012","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4190/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4190","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/4190/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4190/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Expediting Generator Interconnection Procedures Act of 2024","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"4190","request.format":"json","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4190/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4190/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4190/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4190?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1013","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4185/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"4185","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4185/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Green Climate Fund Authorization Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"4185","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4185/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4185/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4185/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4185/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4185?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1014","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4189/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:03Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"THOMPSON","sponsors.0.isByRequest":"N","request.billNumber":"4189","sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4189/subjects?format=json","policyArea.name":"Health","type":"HR","title":"CONNECT for Health Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4189","cosponsors.countIncludingWithdrawnCosponsors":67,"request.format":"json","latestAction_actionDate":"2024-04-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4189/cosponsors?format=json","sponsors.0.bioguideId":"T000460","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4189/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4189/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","titles.count":4,"introducedDate":"2023-06-15","cosponsors.count":67,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4189?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 105 (Thursday, June 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 4189.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nTo provide for permanent Medicare coverage of certain\ntelehealth services.\n[Page H2961]\n","sponsors.0.district":4,"sponsors.0.firstName":"MIKE","updateDateIncludingText":"2024-12-20T09:06:03Z"}} +{"type":"node","id":"1015","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4188/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"4188","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4188/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4188/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Future of Water Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4188","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4188/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4188/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4188/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4188/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4188?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1016","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4184/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4184","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/4184/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4184/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"State Grazing Management Authority Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4184","request.format":"json","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4184/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4184/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4184?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1017","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4183/text?format=json","relatedBills.count":1,"updateDate":"2024-08-06T18:10:43Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"4183","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4183/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4183/committees?format=json","policyArea.name":"Immigration","type":"S","title":"A bill to amend the Homeland Security Act of 2002 relating to authority of U.S. Customs and Border Protection to consolidate, modify, or reorganize Customs revenue functions.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4183","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4183/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4183/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4183/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4183/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4183?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-08-06T18:10:43Z"}} +{"type":"node","id":"1018","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4182/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"4182","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/4182/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4182/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Oregon Research Bounty Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4182","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4182/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4182/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4182/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4182?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1019","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4180/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"4180","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/4180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4180/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Contaminated Lands Reclamation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"4180","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4180/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4180/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4180/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4180?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1020","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3951/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:18:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"3951","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3951/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3951/subjects?format=json","policyArea.name":"Health","type":"S","title":"Cutting Copays Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3951","request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3951/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3951/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3951/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3951/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3951?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:18:56Z"}} +{"type":"node","id":"1021","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3950/text?format=json","relatedBills.count":3,"updateDate":"2024-08-22T14:50:36Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3950","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3950/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3950/committees?format=json","policyArea.name":"Health","type":"S","title":"DUALS Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3950","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3950/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3950/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3950/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3950/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3950/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3950?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-22T14:50:36Z"}} +{"type":"node","id":"1022","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3949/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","request.billNumber":"3949","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3949/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3949/committees?format=json","policyArea.name":"Health","type":"S","title":"Pride In Mental Health Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3949","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3949/cosponsors?format=json","sponsors.0.bioguideId":"B001320","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3949/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3949/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3949/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":9,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3949?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1023","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3954/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"3954","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/3954/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3954/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Geothermal Energy Optimization Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3954","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3954/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3954/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3954/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3954?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1024","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3953/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3953","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3953/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3953/subjects?format=json","policyArea.name":"Education","type":"S","title":"NURSE Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3953","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3953/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3953/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3953/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3953/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3953/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3953?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1025","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3952/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"3952","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3952/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3952/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To limit the flags that may be flown over a facility of the Department of Veterans Affairs.","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"R","number":"3952","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3952/cosponsors?format=json","sponsors.0.bioguideId":"B001295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3952/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3952/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":2,"introducedDate":"2023-06-09","cosponsors.count":21,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3952?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 101 (Friday, June 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 3952.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nLimiting the flags that may be flown over the Department of\nVeterans Affairs to: the flag of the United States, the flag\nof a State, the flag of a Indian Tribal government, the flag\nof the Department, the flag of an Armed Force, and the POW/\nMIA flag.\n[Page H2789]\n","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1026","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3947/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"3947","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Committee on Health, Education, Labor, and Pensions. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3947/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Thirty-Two Hour Workweek Act","latestAction.text":"Committee on Health, Education, Labor, and Pensions. Hearings held.","sponsors.0.party":"I","number":"3947","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3947/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3947/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3947/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3947/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3947?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:11:30Z"}} +{"type":"node","id":"1027","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3948/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Stabenow","sponsors.0.isByRequest":"N","request.billNumber":"3948","sponsors.0.url":"https://api.congress.gov/v3/member/S000770?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3948/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3948/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Protecting Against Foreign Adversary Investments Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"3948","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3948/cosponsors?format=json","sponsors.0.bioguideId":"S000770","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3948/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3948/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3948/relatedbills?format=json","sponsors.0.fullName":"Sen. Stabenow, Debbie [D-MI]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3948?format=json","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1028","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3942/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3942","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3942/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3942/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"MAPLE Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3942","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3942/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3942/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3942/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3942/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3942/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3942?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1029","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3941/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3941","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3941/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3941/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Davis-Bacon Repeal Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3941","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3941/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3941/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3941/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3941/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3941?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1030","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3940/text?format=json","relatedBills.count":1,"updateDate":"2024-09-12T11:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3940","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3940/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3940/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"First-Time Homebuyer Tax Credit Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3940","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3940/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3940/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3940/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3940/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3940/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3940?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-09-12T11:03:18Z"}} +{"type":"node","id":"1031","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3936/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"3936","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3936/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3936/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Taiwan and American Space Assistance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3936/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3936/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3936/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3936?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1032","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3944/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"3944","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3944/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3944/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"William S. Knudsen Defense Remobilization Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"3944","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3944/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3944/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3944?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1033","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3945/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"3945","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3945/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3945/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"A bill to restrict the Chinese Government from accessing United States capital markets and exchanges if it fails to comply with international laws relating to finance, trade, and commerce.","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3945","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2024-03-14","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3945/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3945/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3945/relatedbills?format=json","sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":2,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3945?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1034","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3935/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:18:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3935","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3935/subjects?format=json","policyArea.name":"Families","type":"S","title":"Protecting Religious Freedom for Foster Families Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3935","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3935/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3935/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3935/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3935/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3935/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3935?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2024-07-24T15:18:55Z"}} +{"type":"node","id":"1035","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3934/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3934","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3934/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3934/subjects?format=json","policyArea.name":"Health","type":"S","title":"Increasing Access to Biosimilars Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3934","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3934/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3934/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3934/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3934/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3934/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3934?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1036","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3939/text?format=json","relatedBills.count":3,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3939","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3939/subjects?format=json","policyArea.name":"Health","type":"S","title":"ACO Assignment Improvement Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3939","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3939/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3939/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3939/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3939/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3939/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3939?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1037","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3937/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"3937","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3937/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Promoting Access to Capital in Underbanked Communities Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3937","request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3937/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3937/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3937/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3937/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3937?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1038","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3933/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:18:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Britt","sponsors.0.isByRequest":"N","request.billNumber":"3933","sponsors.0.url":"https://api.congress.gov/v3/member/B001319?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3933/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Laken Riley Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3933","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2024-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3933/cosponsors?format=json","sponsors.0.bioguideId":"B001319","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3933/relatedbills?format=json","sponsors.0.fullName":"Sen. Britt, Katie Boyd [R-AL]","titles.count":3,"introducedDate":"2024-03-12","cosponsors.count":47,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3933?format=json","sponsors.0.firstName":"Katie","updateDateIncludingText":"2024-07-24T15:18:57Z"}} +{"type":"node","id":"1039","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3932/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3932","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3932/subjects?format=json","policyArea.name":"Health","type":"S","title":"Patient's Choice Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3932","request.format":"json","latestAction_actionDate":"2024-03-12","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3932/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3932/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3932/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-03-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3932?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1040","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3692/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3692","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3692/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3692/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Preventing the Algorithmic Facilitation of Rental Housing Cartels Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3692","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3692/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3692/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3692/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3692/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3692?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1041","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3693/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3693","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/3693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3693/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"FAIR Labels Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"3693","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3693/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3693/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3693/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3693/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3693?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1042","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3694/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3694","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/3694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3694/subjects?format=json","policyArea.name":"Animals","type":"S","title":"SWIMS Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3694","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3694/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3694/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3694/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3694/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3694?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1043","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3695/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Stabenow","sponsors.0.isByRequest":"N","request.billNumber":"3695","sponsors.0.url":"https://api.congress.gov/v3/member/S000770?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3695/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3695/subjects?format=json","policyArea.name":"Education","type":"S","title":"Teacher Debt Relief Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3695","request.format":"json","latestAction_actionDate":"2024-01-30","summaries.count":1,"sponsors.0.bioguideId":"S000770","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3695/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3695/actions?format=json","latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3695/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Stabenow, Debbie [D-MI]","titles.count":3,"introducedDate":"2024-01-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3695?format=json","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1044","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3688/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"3688","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3688/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3688/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FAIR Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"3688","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3688/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3688/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3688/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3688/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":16,"subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3688?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1045","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3689/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3689","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3689/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3689/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Invest in Child Safety Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3689/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3689/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3689/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3689/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3689?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-07-24T15:19:18Z"}} +{"type":"node","id":"1046","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3683/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"3683","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3683/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3683/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"MALDEN Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"3683","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3683/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3683/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3683/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3683/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3683?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1047","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3690/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"3690","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/3690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3690/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Amateur Radio Emergency Preparedness Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3690","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3690/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3690/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3690/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3690/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3690?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1048","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3682/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3682","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3682/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3682/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"GHOST Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3682","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3682/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3682/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3682/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3682/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3682?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1049","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3691/text?format=json","updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"3691","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3691/committees?format=json","type":"S","title":"Ensuring Outpatient Quality for Rural States Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3691","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3691/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3691/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3691/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":3,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3691?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-07-24T15:19:17Z"}} +{"type":"node","id":"1050","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3686/text?format=json","updateDate":"2024-07-24T15:19:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3686","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3686/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3686/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Preventing Algorithmic Collusion Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3686","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3686/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3686/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3686/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3686?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2024-07-26T16:27:12Z"}} +{"type":"node","id":"1051","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3685/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"3685","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3685/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3685/committees?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Life Saving Leave Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3685","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3685/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3685/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3685/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3685/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3685?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1052","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3684/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3684","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3684/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3684/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Housing Supply and Affordability Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"3684","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3684/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3684/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3684/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3684/actions?format=json","latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3684/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3684?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1053","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3681/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3681","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3681/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3681/subjects?format=json","policyArea.name":"Education","type":"S","title":"Preparing And Retaining All (PARA) Educators Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3681","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-01-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3681/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3681/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3681/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3681/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3681/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3681?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1054","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3680/text?format=json","relatedBills.count":1,"updateDate":"2024-08-27T11:45:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"3680","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3680/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3680","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3680/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3680/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3680/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3680/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3680/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3680?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2024-08-27T11:45:16Z"}} +{"type":"node","id":"1055","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3646/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:24Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"3646","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3646/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"A bill to amend the Housing Act of 1949 to extend the term of rural housing site loans and clarify the permissible uses of such loans.","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3646","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-01-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3646/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3646/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3646/actions?format=json","latestAction.actionDate":"2024-01-29","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3646/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","latestAction.actionTime":"14:19:30","titles.count":2,"introducedDate":"2024-01-23","cosponsors.count":2,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3646?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2024-07-24T15:19:24Z","latestAction_actionTime":"14:19:30"}} +{"type":"node","id":"1056","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2853/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"2853","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/2853/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2853/subjects?format=json","policyArea.name":"Health","type":"S","title":"Train More Nurses Act","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"2853","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-01-29","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2853/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2853/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2853/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2853/actions?format=json","latestAction.actionDate":"2024-01-29","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2853/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","latestAction.actionTime":"14:19:22","titles.count":4,"introducedDate":"2023-09-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2853?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T19:11:28Z","latestAction_actionTime":"14:19:22"}} +{"type":"node","id":"1057","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-37.","policyArea.name":"Law","type":"S","latestAction.text":"Became Public Law No: 118-37.","sponsors.0.party":"R","number":"3250","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3250/cosponsors?format=json","sponsors.0.bioguideId":"C001056","laws.0.number":"118-37","actions.url":"https://api.congress.gov/v3/bill/118/s/3250/actions?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3250/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/118/s/3250/amendments?format=json","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3250/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":24,"request.billNumber":"3250","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3250/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3250/subjects?format=json","title":"A bill to provide remote access to court proceedings for victims of the 1988 Bombing of Pan Am Flight 103 over Lockerbie, Scotland.","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-26","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3250/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3250/summaries?format=json","introducedDate":"2023-11-08","subjects.count":13,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3250?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:27Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1058","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-02T20:21:22Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3222","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Became Public Law No: 118-36.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3222/subjects?format=json","policyArea.name":"Congress","type":"S","title":"A bill to ensure the security of office space rented by Senators, and for other purposes.","latestAction.text":"Became Public Law No: 118-36.","sponsors.0.party":"D","number":"3222","request.format":"json","latestAction_actionDate":"2024-01-26","summaries.count":2,"sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3222/titles?format=json","laws.0.number":"118-36","summaries.url":"https://api.congress.gov/v3/bill/118/s/3222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3222/actions?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3222/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-11-02","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3222?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-02T20:21:22Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1059","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3678/text?format=json","relatedBills.count":2,"updateDate":"2024-12-20T12:57:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3678","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3678/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3678/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Federal Disaster Tax Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3678","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3678/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3678/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3678/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3678/actions?format=json","latestAction.actionDate":"2024-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3678/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2024-01-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3678?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-12-20T12:57:55Z"}} +{"type":"node","id":"1060","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3458/text?format=json","relatedBills.count":1,"updateDate":"2024-07-25T11:03:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sinema","sponsors.0.isByRequest":"N","request.billNumber":"3458","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3458/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3458/committees?format=json","policyArea.name":"Health","type":"S","title":"Seniors’ Access to Critical Medications Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"3458","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3458/cosponsors?format=json","sponsors.0.bioguideId":"S001191","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3458/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3458/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3458/relatedbills?format=json","sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":2,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3458?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2024-07-25T11:03:14Z"}} +{"type":"node","id":"1061","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3462/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3462","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3462/committees?format=json","policyArea.name":"Health","type":"S","title":"A bill to require the Secretary of Health and Human Services to issue draft guidance to address non-addictive analgesics for chronic pain.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3462","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3462/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3462/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3462/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3462/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":2,"introducedDate":"2023-12-11","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3462?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1062","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3460/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"3460","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3460/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3460/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Corporate Crime Database Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3460","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3460/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3460/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3460/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3460/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3460?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:19:35Z"}} +{"type":"node","id":"1063","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cornyn","cboCostEstimates.0.pubDate":"2023-10-26T15:55:50Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 269.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 269.","sponsors.0.party":"R","number":"2260","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2260/cosponsors?format=json","sponsors.0.bioguideId":"C001056","actions.url":"https://api.congress.gov/v3/bill/118/s/2260/actions?format=json","latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2260/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-125","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2260/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2260","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2260/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2260/subjects?format=json","title":"Grant Transparency Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59707","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/125?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2260/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2260/summaries?format=json","cboCostEstimates.0.title":"S. 2260, Grant Transparency Act of 2023","introducedDate":"2023-07-12","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2260?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1064","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1798/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-07-14T17:58:28Z","sponsors.0.isByRequest":"N","request.billNumber":"1798","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 268.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1798/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1798/committees?format=json","policyArea.name":"Emergency Management","type":"S","title":"Offices of Countering Weapons of Mass Destruction and Health Security Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 268.","sponsors.0.party":"D","number":"1798","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on June 14, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59369","request.format":"json","latestAction_actionDate":"2023-12-11","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/124?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1798/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1798/titles?format=json","cboCostEstimates.0.title":"S. 1798, Offices of Countering Weapons of Mass Destruction and Health Security Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/1798/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"introducedDate":"2023-06-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1798?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z","committeeReports.0.citation":"S. Rept. 118-124"}} +{"type":"node","id":"1065","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2023-08-07T19:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 267.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 267.","sponsors.0.party":"I","number":"61","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/61/cosponsors?format=json","sponsors.0.bioguideId":"S001191","actions.url":"https://api.congress.gov/v3/bill/118/s/61/actions?format=json","latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/61/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-123","textVersions.url":"https://api.congress.gov/v3/bill/118/s/61/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"61","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/61/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/61/subjects?format=json","title":"Combating Cartels on Social Media Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on June 14, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59462","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/123?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/61/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/61/summaries?format=json","cboCostEstimates.0.title":"S. 61, Combating Cartels on Social Media Act of 2023","introducedDate":"2023-01-24","subjects.count":8,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/61?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1066","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3457/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3457","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/3457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3457/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Fans First Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3457","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3457/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3457/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3457/actions?format=json","latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3457/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":12,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3457?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1067","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3456/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"3456","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/3456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3456/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Military Personnel Confirmation Restoration Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"3456","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3456/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3456/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3456/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3456/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":37,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3456?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1068","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2973/text?format=json","relatedBills.count":7,"updateDate":"2024-11-09T01:57:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2973","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","committees.url":"https://api.congress.gov/v3/bill/118/s/2973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2973/subjects?format=json","policyArea.name":"Health","type":"S","title":"Modernizing and Ensuring PBM Accountability Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","sponsors.0.party":"D","number":"2973","request.format":"json","latestAction_actionDate":"2023-12-07","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/122?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2973/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2973/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2973/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2023-09-28","subjects.count":19,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2973?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:47Z","committeeReports.0.citation":"S. Rept. 118-122"}} +{"type":"node","id":"1069","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3455/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"3455","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3455/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3455/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Sustainable International Financial Institutions Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"3455","request.format":"json","latestAction_actionDate":"2023-12-07","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3455/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3455?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1070","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"3454","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3454/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Taxpayer Dollars for Communist China COVID Tests Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3454","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3454/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3454/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3454/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":5,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3454?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1071","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3453/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3453","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3453/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3453/subjects?format=json","policyArea.name":"Education","type":"S","title":"Peer-to-Peer Mental Health Support Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3453","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3453/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3453/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3453/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3453/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3453?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1072","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3452/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3452","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3452/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3452/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fred Hamilton Veterans' Lost Records Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"3452","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3452/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3452/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3452/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3452/relatedbills?format=json","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3452?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"1073","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3451/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"3451","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3451/subjects?format=json","policyArea.name":"Health","type":"S","title":"Rehabilitation and Recovery During Incarceration Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3451","request.format":"json","latestAction_actionDate":"2023-12-07","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3451/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3451/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3451/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-12-07","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3451?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:19:32Z"}} +{"type":"node","id":"1074","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3449/text?format=json","relatedBills.count":1,"updateDate":"2024-10-15T20:48:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"3449","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3449/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3449/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to provide low-income individuals with opportunities to enter and follow a career pathway in the health professions, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3449","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2023-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3449/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3449/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3449/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3449?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-10-15T20:48:14Z"}} +{"type":"node","id":"1075","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3450/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"3450","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3450/subjects?format=json","policyArea.name":"Health","type":"S","title":"Mental and Physical Health Care Comorbidities Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3450","request.format":"json","latestAction_actionDate":"2023-12-07","summaries.count":1,"sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3450/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3450?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"1076","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3447/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"3447","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3447/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3447/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pregnant and Postpartum Women Treatment Reauthorization Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3447","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3447/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3447/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3447/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3447/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3447?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1077","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3446/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"3446","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3446/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3446/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Banking Regulator International Reporting Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3446","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3446/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3446/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3446/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3446?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1078","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3445/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3445","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/3445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3445/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Supporting Made in America Energy Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3445","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3445/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3445/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3445?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1079","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3444","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","committees.url":"https://api.congress.gov/v3/bill/118/s/3444/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3444/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Local 9–8–8 Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","sponsors.0.party":"D","number":"3444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3444/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3444/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3444/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3444?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1080","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3207/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"3207","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3207/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3207/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Foundation for International Food Security Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3207","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-11-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3207/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3207/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3207/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3207?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1081","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","policyArea.name":"Taxation","title":"Senior Citizens Tax Elimination Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}} +{"type":"node","id":"1082","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3205/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"3205","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3205/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3205/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Federal Artificial Intelligence Risk Management Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"3205","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3205/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3205/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3205/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3205/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3205/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3205?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1083","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3204/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Omar","sponsors.0.isByRequest":"N","request.billNumber":"3204","sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3204/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3204/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Universal School Meals Program Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3204","cosponsors.countIncludingWithdrawnCosponsors":109,"request.format":"json","latestAction_actionDate":"2023-11-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3204/cosponsors?format=json","sponsors.0.bioguideId":"O000173","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3204/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3204/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3204/relatedbills?format=json","sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":109,"request.contentType":"application/json","subjects.count":23,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3204?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 3204.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nNutrition\n[Page H2311]\n","sponsors.0.district":5,"sponsors.0.firstName":"Ilhan","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1084","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3203/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"3203","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3203/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3203/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Index Provider Transparency and Accountability Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3203","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3203/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3203/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3203/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-11-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3203?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1085","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3202/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:19:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"3202","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3202/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Paperwork Burden Reduction Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3202","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3202/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3202/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3202/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3202?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:19:57Z"}} +{"type":"node","id":"1086","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-06-15T17:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","sponsors.0.party":"D","number":"1564","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1564/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1564/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1564/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1564","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1564/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1564/committees?format=json","title":"AI Leadership Training Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 17, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59204","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/109?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1564/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1564/summaries?format=json","cboCostEstimates.0.title":"S. 1564, AI Leadership Training Act","introducedDate":"2023-05-11","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1564?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1087","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3201/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"3201","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/3201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3201/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Stop Arctic Ocean Drilling Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3201","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3201/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3201/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3201/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3201?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1088","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3200/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"3200","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3200/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3200/subjects?format=json","policyArea.name":"Health","type":"S","title":"Substance Use Disorder Treatment and Recovery Loan Repayment Program Reauthorization Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3200","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-11-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3200/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3200/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3200/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3200/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3200?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2024-11-09T01:57:46Z"}} +{"type":"node","id":"1089","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3199/text?format=json","updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3199","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3199/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3199/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"IRS Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3199","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3199/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3199/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3199/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":4,"introducedDate":"2023-11-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3199?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-23T16:18:13Z"}} +{"type":"node","id":"1090","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3198/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:30Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Tokuda","sponsors.0.isByRequest":"N","request.billNumber":"3198","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3198/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Equitable Payments for Nursing Facilities Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3198","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3198/cosponsors?format=json","sponsors.0.bioguideId":"T000487","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3198/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3198/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3198/relatedbills?format=json","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3198?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to\nauthorize the Secretary of Health and Human Services to make\nadjustments to payment rates for skilled nursing facilities\nunder the Medicare program to account for certain unique\ncircumstances.\n[Page H2246]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2024-12-20T09:05:30Z"}} +{"type":"node","id":"1091","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rounds","cboCostEstimates.0.pubDate":"2023-03-06T20:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"R","number":"185","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/185/cosponsors?format=json","sponsors.0.bioguideId":"R000605","actions.url":"https://api.congress.gov/v3/bill/118/s/185/actions?format=json","latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/185/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/185/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":2,"request.congress":"118","actions.count":4,"request.billNumber":"185","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/185/subjects?format=json","title":"Native American Direct Loan Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58958","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/185/summaries?format=json","cboCostEstimates.0.title":"S. 185, Native American Direct Loan Improvement Act of 2023","introducedDate":"2023-01-31","subjects.count":6,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/185?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1092","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3197/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T12:03:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"3197","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3197/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3197/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Iranian Sanctions Enforcement Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3197","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3197/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3197/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3197/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3197/actions?format=json","latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3197/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":28,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3197?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-12-04T12:03:19Z"}} +{"type":"node","id":"1093","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3196/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"3196","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3196/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3196/subjects?format=json","policyArea.name":"Health","type":"S","title":"Ensuring Medicaid Continuity for Children in Foster Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3196","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3196/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3196/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3196/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3196?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1094","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2611/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":2,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2611","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2611/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2611/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"Snow Survey Northeast Expansion Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"2611","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2611/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2611/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2611?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1095","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2185/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"2185","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/2185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2185/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Small Business Development Centers Improvement Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"2185","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2185/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2185/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2185/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2185/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":5,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2185?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:17:46Z"}} +{"type":"node","id":"1096","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1744/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"1744","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1744/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1744/committees?format=json","policyArea.name":"Commerce","type":"S","title":"SCORE for Small Business Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"1744","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1744/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1744/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1744/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1744/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1744?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1097","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cornyn","cboCostEstimates.0.pubDate":"2023-08-08T21:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1170","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1170/cosponsors?format=json","sponsors.0.bioguideId":"C001056","actions.url":"https://api.congress.gov/v3/bill/118/s/1170/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1170/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"cosponsors.count":19,"request.contentType":"application/json","latestAction_actionTime":"16:52:56","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1170/text?format=json","updateDate":"2024-07-24T15:20:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1170","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1170/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1170/committees?format=json","title":"Project Safe Childhood Act","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on May 15, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59464","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1170/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1170/summaries?format=json","cboCostEstimates.0.title":"S. 1170, Project Safe Childhood Act","latestAction.actionTime":"16:52:56","introducedDate":"2023-04-17","subjects.count":14,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1170?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:09Z"}} +{"type":"node","id":"1098","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3194/text?format=json","relatedBills.count":4,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":12,"congress":118,"request.congress":"118","actions.count":19,"sponsors.0.lastName":"Sánchez","sponsors.0.isByRequest":"N","request.billNumber":"3194","sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S5317)","committees.url":"https://api.congress.gov/v3/bill/118/hr/3194/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3194/subjects?format=json","policyArea.name":"Immigration","title":"U.S. Citizenship Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"3194","cosponsors.countIncludingWithdrawnCosponsors":119,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3194/cosponsors?format=json","sponsors.0.bioguideId":"S001156","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3194/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3194/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3194/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3194/relatedbills?format=json","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","titles.count":4,"introducedDate":"2023-05-10","cosponsors.count":119,"request.contentType":"application/json","subjects.count":137,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3194?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 3194.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nImmigration\n[Page H2246]\n","sponsors.0.district":38,"sponsors.0.firstName":"Linda","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1099","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3193/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sablan","sponsors.0.isByRequest":"N","request.billNumber":"3193","sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3193/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3193/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Employment Services and Jobs Parity Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3193","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3193/cosponsors?format=json","sponsors.0.bioguideId":"S001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3193/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3193/actions?format=json","latestAction.actionDate":"2023-05-10","textVersions.count":1,"sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MP","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3193?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 3193.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo include for the purposes of the Wagner-Peyser Federal\nEmployment Service, the Commonwealth of the Northern Mariana\nIslands and American Samoa.\n[Page H2246]\n","sponsors.0.firstName":"Gregorio","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1100","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Carper","cboCostEstimates.0.pubDate":"2023-11-17T21:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 212.","policyArea.name":"Water Resources Development","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 212.","sponsors.0.party":"D","number":"654","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/654/cosponsors?format=json","sponsors.0.bioguideId":"C000174","actions.url":"https://api.congress.gov/v3/bill/118/s/654/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/654/relatedbills?format=json","sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/654/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"654","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/654/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/654/subjects?format=json","title":"Delaware River Basin Conservation Reauthorization Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Environment and Public Works on September 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59772","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-09-27","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/654/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/654/summaries?format=json","cboCostEstimates.0.title":"S. 654, Delaware River Basin Conservation Reauthorization Act of 2023","introducedDate":"2023-03-06","subjects.count":19,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/654?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1101","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2959/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carper","cboCostEstimates.0.pubDate":"2024-01-18T16:44:00Z","sponsors.0.isByRequest":"N","request.billNumber":"2959","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 214.","committees.url":"https://api.congress.gov/v3/bill/118/s/2959/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2959/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Brownfields Reauthorization Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 214.","sponsors.0.party":"D","number":"2959","cboCostEstimates.0.description":"As reported by the Senate Committee on Environment and Public Works on September 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59904","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-09-27","sponsors.0.bioguideId":"C000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2959/titles?format=json","cboCostEstimates.0.title":"S. 2959, Brownfields Reauthorization Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/2959/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","titles.count":3,"introducedDate":"2023-09-27","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2959?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1102","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2957/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2957","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2957/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2957/committees?format=json","policyArea.name":"Commerce","type":"S","title":"BOSS and SWIFT ACT of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"2957","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-09-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2957/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2957/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2957/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2957/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":2,"subjects.count":16,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2957?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1103","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2956/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"2956","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/2956/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2956/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Middle East Security Coordination Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"2956","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2956/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2956/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2956/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2956/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2956?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1104","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2955/text?format=json","updateDate":"2024-11-18T21:14:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2955","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2955/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Srebrenica Genocide Remembrance Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2955","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2955/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2955/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2955/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2955/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2955?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-11-18T21:14:40Z"}} +{"type":"node","id":"1105","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2954/text?format=json","updateDate":"2024-07-24T15:20:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"2954","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2954/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2954/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protecting Medicaid Beneficiaries Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2954","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-09-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2954/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2954/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2954/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2954?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:16Z"}} +{"type":"node","id":"1106","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2953/text?format=json","relatedBills.count":1,"updateDate":"2024-09-19T08:05:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"2953","sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2953/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2953/committees?format=json","policyArea.name":"Law","title":"FAIR Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2953","cosponsors.countIncludingWithdrawnCosponsors":102,"request.format":"json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2953/cosponsors?format=json","sponsors.0.bioguideId":"J000288","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2953/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2953/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2953/actions?format=json","latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2953/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":102,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2953?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Georgia:\nH.R. 2953.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 1.\nThe single subject of this legislation is:\nThis bill amends title 9 of the United States Code with\nrespect to arbitration, in order to prohibit predispute\narbitration agreements that force arbitration of future\nemployment, consumer, antitrust, or civil rights disputes,\nand to prohibit agreements and practices that interfere with\nthe rights of individuals, workers, and small businesses to\nparticipate in a joint, class, or collective action related\nto an employment, consumer, antitrust, or civil rights\ndispute.\n[Page H2087]\n","sponsors.0.district":4,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-09-19T08:05:51Z"}} +{"type":"node","id":"1107","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2952/text?format=json","updateDate":"2024-11-23T09:05:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"2952","sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2952/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2952/subjects?format=json","policyArea.name":"Law","type":"HR","title":"RAP Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2952","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2952/cosponsors?format=json","sponsors.0.bioguideId":"J000288","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2952/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2952/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2952/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":34,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2952?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Georgia:\nH.R. 2952.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article 1, Section 8\nThe single subject of this legislation is:\nJudiciary\n[Page H2087]\n","sponsors.0.district":4,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-11-23T09:05:34Z"}} +{"type":"node","id":"1108","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2951/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"2951","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2951/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2951/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Butcher Block Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"2951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2951/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2951/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2951/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2951/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2951?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1109","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Huffman","cboCostEstimates.0.pubDate":"2024-05-30T17:04:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S4723-4724)","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Became Public Law No: 118-138.","sponsors.0.party":"D","number":"2950","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2950/cosponsors?format=json","sponsors.0.bioguideId":"H001068","laws.0.number":"118-138","actions.url":"https://api.congress.gov/v3/bill/118/hr/2950/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2950/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2024-12-11","sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","titles.count":7,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-671","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2950/text?format=json","updateDate":"2025-01-17T03:11:15Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"2950","sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2950/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2950/subjects?format=json","title":"Coastal Habitat Conservation Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on January 17, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60353","request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":4,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/671?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2950/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2950/summaries?format=json","cboCostEstimates.0.title":"H.R. 2950, Coastal Habitat Conservation Act of 2023","introducedDate":"2023-04-27","subjects.count":13,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2950?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 2950.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo authorize the Secretary of the Interior, through the\nCoastal Program of the United States Fish and Wildlife\nService, to work with willing partners and provide support to\nefforts to assess, protect, restore, and enhance important\ncoastal landscapes that provide fish and wildlife habitat on\nwhich certain Federal trust species depend, and for other\npurposes.\n[Page H2087]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2025-01-17T03:11:15Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1110","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Gooden","cboCostEstimates.0.pubDate":"2023-07-20T20:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 789.","sponsors.0.party":"R","number":"2948","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2948/cosponsors?format=json","sponsors.0.bioguideId":"G000589","actions.url":"https://api.congress.gov/v3/bill/118/hr/2948/actions?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":2,"sponsors.0.fullName":"Rep. Gooden, Lance [R-TX-5]","titles.count":6,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2948/text?format=json","updateDate":"2025-02-05T13:26:11Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":10,"request.billNumber":"2948","sponsors.0.url":"https://api.congress.gov/v3/member/G000589?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2948/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2948/subjects?format=json","title":"CARS Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59400","request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2948/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2948/summaries?format=json","cboCostEstimates.0.title":"H.R. 2948, the CARS Act","introducedDate":"2023-04-27","subjects.count":4,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2948?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\n[Pages H2086-H2087]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOODEN of Texas:\nH.R. 2948.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill rests is\nthe power of Congress to lay and collect taxes, duties,\nimposts, and excises to pay the debts and provide for the\ncommon Defense and general welfare of the United States, as\nenumerated in Article I, Section 8, Clause 1. Thus, Congress\nhas the authority not only to increase taxes, but also, to\nreduce taxes to promote the general welfare of the United\nStates of America and her citizens. Additionally, Congress\nhas the Constitutional authority to regulate commerce among\nthe States and with Indian Tribes, as enumerated in Article\nI, Section 8, Clause 3.\nThe single subject of this legislation is:\nThis bill would increase gross vehicle weight limits for\nstinger-steered automobile\n[[Page H2087]]\ntransporters by 10%, which is 8,000 pounds, while capping\nsingle and tandem axle groups at a 10% increase. The bill\nwould therefore allow automobile carriers to regain lost load\ncapacity and reduce annual truck traffic by an estimated 16\nmillion miles, eliminate the consumption of 3.2 million\ngallons of diesel fuel and prevent 32 metric tons of diesel\nemissions\n","sponsors.0.district":5,"sponsors.0.firstName":"Lance","updateDateIncludingText":"2025-02-05T13:26:11Z"}} +{"type":"node","id":"1111","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2947/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"2947","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2947/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Protecting Sensitive Personal Data Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2947","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2947/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2947/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2947/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2947/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2947?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1112","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2946/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"2946","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2946/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2946/subjects?format=json","policyArea.name":"Health","type":"S","title":"School Access to Naloxone Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2946","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2946/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2946/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2946/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2946/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2946?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1113","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2945/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"2945","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2945/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2945/subjects?format=json","policyArea.name":"Education","type":"S","title":"Alice Cogswell and Anne Sullivan Macy Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2945","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2945/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2945/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2945/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2945/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2945/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2945?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1114","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2944/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"2944","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2944/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Puerto Rico Status Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"2944","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-09-27","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2944/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":3,"introducedDate":"2023-09-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2944?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1115","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2937/text?format=json","relatedBills.count":1,"updateDate":"2024-08-15T13:59:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"2937","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2937/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Increasing American Ferrosilicon Production Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2937","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2937/cosponsors?format=json","sponsors.0.bioguideId":"B000944","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2937/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2937/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2937/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2937/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2937?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2024-08-15T13:59:20Z"}} +{"type":"node","id":"1116","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2938/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"2938","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2938/subjects?format=json","policyArea.name":"Education","type":"S","title":"Head Start for Our Future Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2938","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2938/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2938/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2938/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2938/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2938/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2938?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-02-14T02:41:12Z"}} +{"type":"node","id":"1117","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2939/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"2939","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2939/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Access Oversight and Reporting Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2939","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2939/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2939/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2939/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2939?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"1118","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2940/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"2940","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2940/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2940/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Define the Mission Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2940","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2940/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2940/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2940/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2940/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2940/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2940?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1119","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2943/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"2943","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2943/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2943/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Addressing Digestive Distress in Stomachs of Our Youth Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2943","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2943/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2943/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2943/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2943/actions?format=json","latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2943/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2943?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1120","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2696/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"2696","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3763-3764)","committees.url":"https://api.congress.gov/v3/bill/118/s/2696/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2696/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"EQIP Water Conservation Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3763-3764)","sponsors.0.party":"D","number":"2696","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2696/cosponsors?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2696/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2696/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2696?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1121","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2708/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"2708","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2708/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2708/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"DETOUR Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"2708","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2708/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2708/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2708/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2708?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1122","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2700/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"2700","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2700/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2700/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"INDEX Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2700","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2700/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2700/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2700/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2700/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2700?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1123","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2699/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"2699","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2699/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2699/committees?format=json","policyArea.name":"Health","type":"S","title":"Opioid RADAR Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2699","request.format":"json","latestAction_actionDate":"2023-07-27","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2699/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2699/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2699/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-07-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2699?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1124","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2682/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"2682","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2682/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2682/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Protecting America’s Orchardists and Nursery Tree Growers Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2682","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2682/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2682/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2682/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2682/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2682/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2682?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1125","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2663/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Courtney","sponsors.0.isByRequest":"N","request.billNumber":"2663","sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2663/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2663/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Workplace Violence Prevention for Health Care and Social Service Workers Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2663","cosponsors.countIncludingWithdrawnCosponsors":173,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2663/cosponsors?format=json","sponsors.0.bioguideId":"C001069","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2663/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2663/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2663/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2663/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","titles.count":3,"introducedDate":"2023-04-18","cosponsors.count":173,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2663?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COURTNEY:\nH.R. 2663.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nworkplace safety and violence prevention\n[Page H1846]\n","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1126","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2684/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"2684","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2684/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2684/subjects?format=json","policyArea.name":"Health","type":"S","title":"Medical License Verification Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2684","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2684/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2684/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2684/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2684?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1127","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2683/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"2683","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2683/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2683/committees?format=json","policyArea.name":"Health","type":"S","title":"AMERICAN DRUGS Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2683","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2683/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2683/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2683?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1128","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2681/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"2681","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2681/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2681/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Safer Supervision Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2681","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2681/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2681/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2681/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2681/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2681?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-12-21T12:03:17Z"}} +{"type":"node","id":"1129","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2680/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"2680","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2680/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2680/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Transitioning Servicemember Food Security Act of 2023","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"2680","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2680/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2680/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2680/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2680?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"1130","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2679/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Kuster","sponsors.0.isByRequest":"N","request.billNumber":"2679","sponsors.0.url":"https://api.congress.gov/v3/member/K000382?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2679/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2679/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Pharmacy Benefits Manager Accountability Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"2679","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2679/cosponsors?format=json","sponsors.0.bioguideId":"K000382","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2679/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2679/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2679/relatedbills?format=json","sponsors.0.fullName":"Rep. Kuster, Ann M. [D-NH-2]","titles.count":3,"introducedDate":"2023-04-18","cosponsors.count":5,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2679?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KUSTER:\nH.R. 2679.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution, the Taxing and Spending Clause: ``The Congress\nshall have Power To lay and collect Taxes, Duties, Imposts\nand Excises, to pay the Debts and provide for the common\nDefense and general Welfare of the United States...''\nThe single subject of this legislation is:\nThis bill increases oversight of pharmacy benefits\nmanagers.\n[Page H1847]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1131","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2678/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2678","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2678/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2678/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Outbound Investment Transparency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2678","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2678/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2678/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2678/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2678/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2678/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2678?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1132","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2694/text?format=json","updateDate":"2024-07-24T15:20:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"2694","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2694/subjects?format=json","policyArea.name":"Law","type":"S","title":"Foundation of the Federal Bar Association Charter Amendments Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"2694","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2694/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2694/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2694/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2694?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:40Z"}} +{"type":"node","id":"1133","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2693/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"2693","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2693/subjects?format=json","policyArea.name":"Families","type":"S","title":"Family Violence Prevention and Services Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2693","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2693/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2693/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2693/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2693?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1134","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2692/text?format=json","relatedBills.count":3,"updateDate":"2024-12-21T09:05:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sánchez","sponsors.0.isByRequest":"N","request.billNumber":"2692","sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2692/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2692/committees?format=json","policyArea.name":"Social Welfare","title":"Addressing SILO Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2692","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2023-07-27","summaries.count":1,"sponsors.0.bioguideId":"S001156","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2692/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2692/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2692/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2692/relatedbills?format=json","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","titles.count":4,"introducedDate":"2023-04-18","request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2692?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 64 (Tuesday, April 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 2692.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHealth\n[Page H1847]\n","sponsors.0.district":38,"sponsors.0.firstName":"Linda","updateDateIncludingText":"2024-12-21T09:05:21Z"}} +{"type":"node","id":"1135","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2677/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2677","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","committees.url":"https://api.congress.gov/v3/bill/118/s/2677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2677/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Small Business Broadband and Emerging Information Technology Enhancement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"2677","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2677/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2677/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2677/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2677?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1136","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2691/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2691","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2691/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2691/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"AI Labeling Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"2691","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2691/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2691/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2691/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2691/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2691?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1137","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2676/text?format=json","updateDate":"2024-07-24T15:20:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2676","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2676/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2676/subjects?format=json","policyArea.name":"Law","type":"S","title":"Safe at Home Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2676","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2676/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2676/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2676/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2676?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2024-07-24T15:20:41Z"}} +{"type":"node","id":"1138","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2690/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2690","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2690/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Equal Employment for All Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"2690","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2690/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2690/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2690/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2690/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2690?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1139","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2675/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"2675","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2675/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2675/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Backcountry Aviation Protection Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2675","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2675/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2675/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2675/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2675/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2675/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2675?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1140","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2460/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","sponsors.0.isByRequest":"N","request.billNumber":"2460","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2460/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2460/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Training for School Food Service Workers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2460","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2460/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2460/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2460/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2460/actions?format=json","latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2460/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2460?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1141","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/822/text?format=json","updateDate":"2024-06-12T08:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"822","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 146.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/822/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/822/committees?format=json","policyArea.name":"Health","title":"Student Mental Health Helpline Act","type":"HR","latestAction.text":"ASSUMING FIRST SPONSORSHIP - Ms. Bonamici asked unanimous consent that she may hereafter be considered as the first sponsor of H.R. 822, a bill originally introduced by Representative Stewart, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","sponsors.0.party":"R","number":"822","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/822/cosponsors?format=json","sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/822/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/822/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/822/actions?format=json","latestAction.actionDate":"2023-11-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","latestAction.actionTime":"10:52:00","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/822?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 822.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1, section 8\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to authorize the\nSecretary of Health and Human Services, acting through the\nAssistant Secretary for Mental Health and Substance Use, to\naward grants to eligible entities to establish or maintain a\nstudent mental health and safety helpline, and for other\npurposes.\n[Page H683]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-06-12T08:05:22Z"}} +{"type":"node","id":"1142","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2459/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Carper","sponsors.0.isByRequest":"N","request.billNumber":"2459","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2459/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2459/subjects?format=json","policyArea.name":"Health","type":"S","title":"Enabling More of the Physical and Occupational Workforce to Engage in Rehabilitation Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2459","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2459/cosponsors?format=json","sponsors.0.bioguideId":"C000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2459/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2459/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2459/actions?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2459/relatedbills?format=json","sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":4,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2459?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1143","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2458/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2458","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2458/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2458/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Crop Insurance for Future Farmers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2458","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2458/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2458/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2458/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2458/actions?format=json","latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2458/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2458?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1144","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2457/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2457","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2457/subjects?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Self-Governance, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2457","request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2457/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":2,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2457?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1145","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2456/text?format=json","updateDate":"2024-10-04T19:08:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"2456","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2456/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protecting Seniors from High Drug Costs Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2456","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2456/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2456/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2456?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-10-04T19:08:58Z"}} +{"type":"node","id":"1146","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2455/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2455","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2455/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2455/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Research, Development, Test and Evaluation Unmet Needs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2455","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2455/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2455/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2455/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2455?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1147","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2453/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2453","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2453/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2453/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Armed Forces Facility Conditions and Quality of Life Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2453","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2453/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2453/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2453/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2453?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1148","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2454/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2454","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/2454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2454/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmaceutical Supply Chain Security Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2454/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2454/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2454?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1149","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2452/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2452","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2452/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2452/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Biomanufacturing and Jobs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2452","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2452/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2452/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2452/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2452/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":3,"subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2452?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1150","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2450/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"2450","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2450/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"A bill to improve coordination between the Department of Energy and the National Science Foundation on activities carried out under the National Quantum Initiative Program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2450","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2450/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2450/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2450?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1151","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2451/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2451","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2451/subjects?format=json","policyArea.name":"Health","type":"S","title":"Hemp Access and Consumer Safety Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2451","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2451/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2451/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2451/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2451?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1152","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2449/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"2449","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2449/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2449/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Ensuring Fee-Free Benefit Transactions Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2449","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2449/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2449/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2449/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2449?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1153","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2443/text?format=json","relatedBills.count":4,"updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"2443","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 145.","committees.url":"https://api.congress.gov/v3/bill/118/s/2443/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2443/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Energy and Water Development and Related Agencies Appropriations Act, 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 145.","sponsors.0.party":"D","number":"2443","request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/72?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2443/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2443/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2443/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2443/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":3,"introducedDate":"2023-07-20","request.contentType":"application/json","subjects.count":55,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2443?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"S. Rept. 118-72"}} +{"type":"node","id":"1154","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2448/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2448","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2448/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2448/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Eliminating Debtor’s Prison for Kids Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2448","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2448/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2448/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2448/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2448?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1155","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2447/text?format=json","updateDate":"2024-12-19T09:06:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"2447","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2447/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2447/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Panama Canal Zone Veterans Act of 2023","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","sponsors.0.party":"R","number":"2447","cosponsors.countIncludingWithdrawnCosponsors":52,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2447/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2447/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2447/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2447/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":52,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2447?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 2447.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nProviding Veterans Benefits\n[Page H1695]\n","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-12-19T09:06:57Z"}} +{"type":"node","id":"1156","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2446","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2446/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Miranda Rights for Kids Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2446","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2446/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2446/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2446/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2446?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:56Z"}} +{"type":"node","id":"1157","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2445/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2445","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2445/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Community-Based Gang Intervention Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2445","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2445/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2445/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2445/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2445?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:57Z"}} +{"type":"node","id":"1158","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2437/text?format=json","relatedBills.count":4,"updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2437","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 143.","committees.url":"https://api.congress.gov/v3/bill/118/s/2437/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2437/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Transportation, Housing and Urban Development, and Related Agencies Appropriations Act, 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 143.","sponsors.0.party":"D","number":"2437","request.format":"json","latestAction_actionDate":"2023-07-20","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/70?format=json","summaries.count":2,"sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2437/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2437/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":5,"introducedDate":"2023-07-20","request.contentType":"application/json","subjects.count":65,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2437?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"S. Rept. 118-70"}} +{"type":"node","id":"1159","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"2444","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2444/committees?format=json","policyArea.name":"Health","type":"S","title":"ATTAIN Mental Health Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2444/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2444/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":4,"introducedDate":"2023-07-20","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2444?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1160","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2234/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"2234","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2234/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2234/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Deterring Egregious State Infiltration of Schools’ Training Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2234","request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2234/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2234/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2234/actions?format=json","latestAction.actionDate":"2023-07-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2234/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2234?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1161","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2232/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"2232","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2232/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2232/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Enhancing Spaceport Operations Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2232","request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2232/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2232/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2232/actions?format=json","latestAction.actionDate":"2023-07-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2232/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2232?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1162","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2230/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"2230","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2230/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2230/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Protecting Investors’ Personally Identifiable Information Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2230","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2230/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2230/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2230/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2230/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2230/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2230?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1163","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2229/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"2229","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/2229/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2229/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Retroactive Foreign Agents Registration Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2229","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2229/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2229/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2229/actions?format=json","latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2229/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":4,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2229?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1164","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2225/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"2225","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2225/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2225/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"TLDR Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2225","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2225/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2225/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2225/actions?format=json","latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2225/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2023-07-11","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2225?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1165","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2227/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2227","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2227/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2227/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Preventing the Financing of Illegal Synthetic Drugs Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2227","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2227/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2227/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2227/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2227/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2227/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2227?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1166","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2222","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2222/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2222/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Digital Defense Content Provenance Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2222","request.format":"json","latestAction_actionDate":"2023-07-10","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2222/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2222/actions?format=json","latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2222/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2023-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2222?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1167","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2223/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2223","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2223/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2223/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"SHOPP Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"2223","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2223/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2223/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2223/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2223/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2223/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-10","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-07-10","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2223?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1168","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2215/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"2215","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2215/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2215/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fort Gordon Cyber Center Enhancement Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2215","request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2215/actions?format=json","latestAction.actionDate":"2023-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2215?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1169","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2221/text?format=json","updateDate":"2024-07-24T15:22:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2221","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2221/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, John F. Kennedy Center for the Performing Arts, Operations and Maintenance for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2221","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2221/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2221/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2221/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2221/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:44Z"}} +{"type":"node","id":"1170","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2218/text?format=json","updateDate":"2024-07-24T15:22:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2218","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2218/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, Smithsonian Institution: Facilities Capital for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2218","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2218/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2218/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2218?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2218.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:44Z"}} +{"type":"node","id":"1171","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2217/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"2217","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2217/subjects?format=json","policyArea.name":"Education","type":"S","title":"IDEA Full Funding Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2217","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2217/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2217/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2217/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-07-10","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2217?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1172","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2178/text?format=json","relatedBills.count":3,"updateDate":"2025-01-03T08:40:01Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2178","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 116.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2178/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Protecting and Securing Chemical Facilities from Terrorist Attacks Act of 2023","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 116.","sponsors.0.party":"D","number":"2178","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2178/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2178/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2178/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2178/actions?format=json","latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2178/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2178?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-03T08:40:01Z"}} +{"type":"node","id":"1173","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2214/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2214","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2214/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2214/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HR","title":"To provide for a limitation on availability of funds for Related Agencies, John F. Kennedy Center for the Performing Arts, Capital Repair and Restoration for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2214","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2214/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2214/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2214?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2214.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1654]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:45Z"}} +{"type":"node","id":"1174","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-17T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-7.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Became Public Law No: 118-7.","sponsors.0.party":"D","number":"467","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/467/cosponsors?format=json","sponsors.0.bioguideId":"P000595","laws.0.number":"118-7","actions.url":"https://api.congress.gov/v3/bill/118/s/467/actions?format=json","latestAction.actionDate":"2023-06-30","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/467/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":14,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-22","textVersions.url":"https://api.congress.gov/v3/bill/118/s/467/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"467","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/467/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/467/subjects?format=json","title":"CADETS Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59072","request.format":"json","latestAction_actionDate":"2023-06-30","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/22?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/467/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/467/summaries?format=json","cboCostEstimates.0.title":"S. 467, CADETS Act","introducedDate":"2023-02-16","subjects.count":7,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/467?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1175","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-04-05T16:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"829","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/829/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/829/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/829/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":5,"cosponsors.count":7,"request.contentType":"application/json","latestAction_actionTime":"09:25:18","committeeReports.0.citation":"S. Rept. 118-13","textVersions.url":"https://api.congress.gov/v3/bill/118/s/829/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"829","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/829/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/829/subjects?format=json","title":"Disclosing Foreign Influence in Lobbying Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59044","request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/13?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/829/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/829/summaries?format=json","cboCostEstimates.0.title":"S. 829, Disclosing Foreign Influence in Lobbying Act","latestAction.actionTime":"09:25:18","introducedDate":"2023-03-16","subjects.count":4,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/829?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1176","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Lankford","cboCostEstimates.0.pubDate":"2023-04-05T18:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"349","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/349/cosponsors?format=json","sponsors.0.bioguideId":"L000575","actions.url":"https://api.congress.gov/v3/bill/118/s/349/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/349/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":5,"cosponsors.count":8,"request.contentType":"application/json","latestAction_actionTime":"09:25:11","committeeReports.0.citation":"S. Rept. 118-14","textVersions.url":"https://api.congress.gov/v3/bill/118/s/349/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"349","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/349/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/349/committees?format=json","title":"Military Spouse Employment Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59040","request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/14?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/349/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/349/summaries?format=json","cboCostEstimates.0.title":"S. 349, Military Spouse Employment Act","latestAction.actionTime":"09:25:11","introducedDate":"2023-02-09","subjects.count":5,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/349?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1177","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-05T18:12:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"264","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/264/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/264/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/264/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"09:25:04","committeeReports.0.citation":"S. Rept. 118-12","textVersions.url":"https://api.congress.gov/v3/bill/118/s/264/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"264","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/264/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/264/committees?format=json","title":"Lobbying Disclosure Improvement Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59047","request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/12?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/264/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/264/summaries?format=json","cboCostEstimates.0.title":"S. 264, Lobbying Disclosure Improvement Act","latestAction.actionTime":"09:25:04","introducedDate":"2023-02-02","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/264?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1178","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2208/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"2208","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2208/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2208/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"National Seafood Supply Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"2208","request.format":"json","latestAction_actionDate":"2023-06-22","summaries.count":1,"sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2208/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2208/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2208/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2208/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2023-06-22","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2208?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1179","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2196/text?format=json","updateDate":"2024-07-24T15:22:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2196","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S2233; text: CR S2233-2234)","committees.url":"https://api.congress.gov/v3/bill/118/hr/2196/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2196/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"To provide for a limitation on availability of funds for Environmental Protection Agency, Inland Oil Spill Programs for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"R","number":"2196","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2196/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2196/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2196/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2196/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/2196?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2196.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1653]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:41Z"}} +{"type":"node","id":"1180","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1949/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:21:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1949","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1949/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1949/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Why Does the IRS Need Guns Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1949","request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1949/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1949/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1949/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1949/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-06-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1949?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-07-24T15:21:41Z"}} +{"type":"node","id":"1181","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1946/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1946","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1946/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1946/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Dependable Classification of Airports Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1946","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1946/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1946/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1946/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1946?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1182","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1944/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1944","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1944/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"CERTS Tax Exemption Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1944","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1944/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1944/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1944/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1944/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1944/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1944?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:21Z"}} +{"type":"node","id":"1183","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1945/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1945","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1945/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1945/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"John Lewis Civil Rights Fellowship Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1945","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1945/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1945/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1945/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1945/actions?format=json","latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1945/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1945?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1184","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1947/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"1947","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1947/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Methane Emissions Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1947","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1947/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1947/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1947/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1947/actions?format=json","latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1947/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1947?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1185","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1948/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1948","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1948/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1948/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Cleaner Air Spaces Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1948","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-06-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1948/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1948/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1948/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1948/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":6,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1948?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1186","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1727/text?format=json","updateDate":"2024-07-24T15:21:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1727","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Star Print ordered on the bill.","committees.url":"https://api.congress.gov/v3/bill/118/s/1727/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1727/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"SECURE Act","latestAction.text":"Star Print ordered on the bill.","sponsors.0.party":"D","number":"1727","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1727/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1727/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":4,"introducedDate":"2023-05-18","cosponsors.count":28,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1727?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:21:56Z"}} +{"type":"node","id":"1187","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1943/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1943","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1943/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1943/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Beautifying Federal Civic Architecture Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"1943","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1943/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1943/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1943/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1943/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1943/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1943?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1188","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1942/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1942","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1942/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1942/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Occupational Safety and Health Administration for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1942","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1942/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1942/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1942/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1942/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1942?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1942.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1645]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1189","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1940/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"1940","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1940/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1940/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Canyon’s Law","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1940","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1940/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1940/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1940/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1940/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1940/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":7,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1940?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1190","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1938/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1938","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1938/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Workers' Compensation Benefits, Special Benefits for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1938","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1938/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1938/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1938/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1938/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1938?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1938.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1191","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1937/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1937","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1937/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Worker's Compensation Program, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1937","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1937/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1937/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1937/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1937/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1937?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1937.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1192","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1936/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"1936","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/1936/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1936/subjects?format=json","policyArea.name":"Energy","type":"S","title":"E-Access Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1936/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1936/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2023-06-13","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1936?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1193","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1934/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"1934","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1934/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1934/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Empowering States' Rights To Protect Consumers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1934","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1934/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1934/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1934/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1934/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1934?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1194","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1935/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1935","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1935/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Labor-Management Standards, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1935","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1935/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1935/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1935/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1935/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1935?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1195","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1933/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1933","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1933/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Pension Benefit Guaranty Corporation, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1933","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1933/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1933/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1933?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1196","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1932/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1932","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1932/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Employee Benefits Security Administration, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1932","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1932/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1932/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1932/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1932/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1932?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1932.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1197","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1931/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"1931","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/1931/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1931/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"AFFECT Human Rights in Venezuela Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1931","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-06-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1931/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1931/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1931/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1931/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"introducedDate":"2023-06-13","cosponsors.count":4,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1931?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1198","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1930/text?format=json","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1930","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1930/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1930/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, State Unemployment Insurance and Employment Service Operations for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1930","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1930/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1930/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1930/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1930/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1930?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1930.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"1199","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1929/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"1929","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1929/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1929/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"PFAS-Free Firefighting Foam Transition Reporting Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1929","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-06-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1929/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1929/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1929/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1929/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1929/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":4,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1929?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1200","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1668/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"1668","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1668/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1668/subjects?format=json","policyArea.name":"Health","type":"S","title":"Securing the U.S. Organ Procurement and Transplantation Network Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1668","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1668/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1668/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1668/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1668/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1668/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1668?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1201","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1666/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1666","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1666/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1666/subjects?format=json","policyArea.name":"Animals","type":"S","title":"Foreign Animal Disease Prevention, Surveillance, and Rapid Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1666","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1666/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1666/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1666/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1666/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1666/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":6,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1666?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-03-04T17:27:13Z"}} +{"type":"node","id":"1202","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1667/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"1667","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1708-1709)","committees.url":"https://api.congress.gov/v3/bill/118/s/1667/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1667/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"America’s CHILDREN Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1708-1709)","sponsors.0.party":"D","number":"1667","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1667/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1667/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1667/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1667/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1667?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1203","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1045/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"1045","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1045/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1045/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Failed Bank Executives Clawback Act","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"1045","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1045/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1045/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1045/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1045/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1045/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1045?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:24:07Z"}} +{"type":"node","id":"1204","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1665/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1665","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1665/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1665/subjects?format=json","policyArea.name":"Education","type":"S","title":"Higher Education Mental Health Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1665","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1665/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1665/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1665/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1665/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1665/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1665?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1205","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1663/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"1663","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1663/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1663/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Strengthening Federal Reserve System Accountability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1663","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1663/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1663/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1663/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1663/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1663?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1206","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1661/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"1661","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1661/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1661/subjects?format=json","policyArea.name":"Education","type":"S","title":"Strength in Diversity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1661","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1661/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1661/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1661/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1661/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1661/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1661?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1207","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1660/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1660","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1660/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1660/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"SNAP Education Allocation Modernization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1660","request.format":"json","latestAction_actionDate":"2023-05-17","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1660/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1660/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-05-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1660?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1208","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1659/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"1659","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1659/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1659/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Sustain Regional Air Travel Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1659","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1659/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1659/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1659/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1659/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1659/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1659?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1209","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"1658","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S1707-1708)","committees.url":"https://api.congress.gov/v3/bill/118/s/1658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1658/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Law Enforcement Officers Parity Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S1707-1708)","sponsors.0.party":"D","number":"1658","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1658/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1658/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1658/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1658/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1658?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1210","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1656/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"1656","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1656/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1656/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"My Body, My Data Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1656","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-05-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1656/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1656/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1656/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1656/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":16,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1656?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1211","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1655/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"1655","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1655/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1655/subjects?format=json","policyArea.name":"Health","type":"S","title":"Medicare for All Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"1655","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1655/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1655/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1655/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1655/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1655?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1212","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1654/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1654","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1654/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1654/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Credit Access and Inclusion Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1654","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1654/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1654/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1654/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1654/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1654/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1654?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1213","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1653/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1653","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1653/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1653/subjects?format=json","policyArea.name":"Health","type":"S","title":"Prevent BLEEDing Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1653","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1653/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1653/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1653/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1653/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1653?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1214","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1652/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"1652","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1707)","committees.url":"https://api.congress.gov/v3/bill/118/s/1652/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1652/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"SAVE Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1707)","sponsors.0.party":"R","number":"1652","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1652/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1652/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1652/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1652/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1652/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1652?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1215","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1650/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1650","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1650/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1650/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"TSP Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1650","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1650/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1650/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1650/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1650?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1216","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1649/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"1649","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1649/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1649/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"LICENSE Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1649","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1649/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1649/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1649/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1649/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1649/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1649?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1217","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1647/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1647","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/1647/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1647/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Hamas and Palestinian Islamic Jihad International Terrorism Support Prevention Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1647","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1647/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1647/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1647/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1647/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1647/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1647?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1218","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1646/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1646","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1646/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1646/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Gang Activity Reporting Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1646","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1646/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1646/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1646/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1646/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1646/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1646?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1219","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1644/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1644","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1644/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1644/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Veterans’ True Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1644","request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1644/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1644/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1644/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1644/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-05-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1644?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1220","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1388/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"1388","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1388/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"UAS Integration Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1388","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1388/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1388/actions?format=json","latestAction.actionDate":"2023-05-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1388?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1221","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1389/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1389","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1389/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Rural Housing Service Reform Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1389","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1389/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1389/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1389/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1389/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1389?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1222","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1386/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1386","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1386/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Vieques Recovery and Redevelopment Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1386","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1386/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1386/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1386/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1386?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1223","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1385/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"1385","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/1385/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1385/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Recreation for All Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1385","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1385/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1385/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1385/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1385?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1224","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1384/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"1384","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1384/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1384/subjects?format=json","policyArea.name":"Health","type":"S","title":"Living Donor Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1384","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1384/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1384/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1384/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":43,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1384?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1225","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1382/text?format=json","updateDate":"2024-11-09T01:57:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1382","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1382/subjects?format=json","policyArea.name":"Law","type":"S","title":"Protecting Our Supreme Court Justices Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1382","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1382/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1382/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1382/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1382?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:39Z"}} +{"type":"node","id":"1226","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1383/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1383","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1383/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1383/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"HEAR Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1383","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1383/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1383/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1383/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1383?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:22:28Z"}} +{"type":"node","id":"1227","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"1375","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1375/committees?format=json","policyArea.name":"Health","type":"S","title":"HELP Copays Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1375","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1375/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1375/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":25,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1375?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1228","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1378/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1378","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1378/subjects?format=json","policyArea.name":"Health","type":"S","title":"Connecting Our Medical Providers with Links to Expand Tailored and Effective Care","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1378","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1378/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1378/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1378/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1378?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-07-24T15:22:28Z"}} +{"type":"node","id":"1229","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1377/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:25Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1377","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1377/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1377/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Visitable Inclusive Tax credits for Accessible Living (VITAL) Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1377","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1377/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1377/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1377/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1377?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:22:25Z"}} +{"type":"node","id":"1230","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1376","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1376/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1376/subjects?format=json","policyArea.name":"Law","type":"S","title":"Forced Arbitration Injustice Repeal Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1376","cosponsors.countIncludingWithdrawnCosponsors":39,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1376/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1376/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1376/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":39,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1376?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-16T06:06:22Z"}} +{"type":"node","id":"1231","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1374/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"1374","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1374/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1374/committees?format=json","policyArea.name":"Health","type":"S","title":"Patient Right to Shop Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1374","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1374/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1374/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1374/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1374?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1232","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1368/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1368","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/1368/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1368/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Preventing PLA Acquisition of United States Technology Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1368","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1368/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1368/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1368/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1368/actions?format=json","latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1368/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1368?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1233","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1369/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1369","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1369/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1369/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Fair Access to Small Business Lending Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"1369","request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1369/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1369/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1369/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-04-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1369?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1234","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1370/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1370","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1370/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1370/committees?format=json","policyArea.name":"Commerce","type":"S","title":"PREPARE Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"1370","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1370/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1370/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1370/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1370?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1235","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1373/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"1373","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1373/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1373/committees?format=json","policyArea.name":"Health","type":"S","title":"Naloxone Affordability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1373","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1373/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1373/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1373?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1236","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1371/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1371","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","committees.url":"https://api.congress.gov/v3/bill/118/s/1371/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1371/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Small Business Credit Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"1371","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1371/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1371/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1371/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1371/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1371/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1371?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1237","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1372/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1372","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","committees.url":"https://api.congress.gov/v3/bill/118/s/1372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1372/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Preventing SBA Assistance from Going to China Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"1372","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1372/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1372/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1372/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1372/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1372/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1372?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1238","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1239","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1367/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Stabenow","sponsors.0.isByRequest":"N","request.billNumber":"1367","sponsors.0.url":"https://api.congress.gov/v3/member/S000770?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1367/committees?format=json","policyArea.name":"Health","type":"S","title":"HELLPP Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1367","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1367/cosponsors?format=json","sponsors.0.bioguideId":"S000770","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1367/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1367/actions?format=json","latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1367/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Stabenow, Debbie [D-MI]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":6,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1367?format=json","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1240","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1098/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1098","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/1098/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1098/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Global Health, Empowerment and Rights Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1098","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1098/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1098/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1098/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1098/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1098/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1098?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1241","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1095/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"1095","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/1095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1095/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reserve Component Parental Leave Parity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1095","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1095/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1095/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1095/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1095/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1095/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1095?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1242","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"McCaul","cboCostEstimates.0.pubDate":"2023-03-07T19:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1093","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1093/cosponsors?format=json","sponsors.0.bioguideId":"M001157","actions.url":"https://api.congress.gov/v3/bill/118/hr/1093/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1093/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":2,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1093/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":14,"request.billNumber":"1093","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1093/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1093/committees?format=json","title":"To direct the Secretary of State to submit to Congress a report on implementation of the advanced capabilities pillar of the trilateral security partnership between Australia, the United Kingdom, and the United States.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58975","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2023-03-30","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1093/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1093/summaries?format=json","cboCostEstimates.0.title":"H.R. 1093, A bill to direct the Secretary of State to submit to Congress a report on implementation of the advanced capabilities pillar of the trilateral security partnership between Australia, the United Kingdom, and the United States","introducedDate":"2023-02-17","subjects.count":15,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1093?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 1093.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nImplementation of the advanced capabilities pillar of the\ntrilateral security partnership between Australia, the United\nKingdom, and the United States\n[Page H856]\n","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1243","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1092/text?format=json","relatedBills.count":1,"updateDate":"2024-09-26T08:06:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Matsui","sponsors.0.isByRequest":"N","request.billNumber":"1092","sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1092/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1092/subjects?format=json","policyArea.name":"Health","title":"BENEFIT Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1092","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1092/cosponsors?format=json","sponsors.0.bioguideId":"M001163","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1092/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1092/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1092/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1092/relatedbills?format=json","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","titles.count":4,"introducedDate":"2023-02-17","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1092?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo strengthen the use of patient-experience data within the\nbenefit-risk framework for approval of new drugs.\n[Page H856]\n","sponsors.0.district":7,"sponsors.0.firstName":"Doris","updateDateIncludingText":"2024-09-26T08:06:13Z"}} +{"type":"node","id":"1244","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Lesko","cboCostEstimates.0.pubDate":"2023-05-26T14:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Armed Forces and National Security","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 796.","sponsors.0.party":"R","number":"1089","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1089/cosponsors?format=json","sponsors.0.bioguideId":"L000589","actions.url":"https://api.congress.gov/v3/bill/118/hr/1089/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":2,"sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1089/text?format=json","updateDate":"2024-12-27T10:38:14Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1089","sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1089/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1089/subjects?format=json","title":"VA Medical Center Facility Transparency Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on\nApril 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59199","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1089/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1089/summaries?format=json","cboCostEstimates.0.title":"H.R. 1089, VA Medical Center Facility Transparency Act","introducedDate":"2023-02-17","subjects.count":14,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1089?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 1089.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nVeterans Health Care\n[Page H856]\n","sponsors.0.district":8,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-12-27T10:48:29Z"}} +{"type":"node","id":"1245","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2023-03-13T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"316","amendments.count":56,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/316/cosponsors?format=json","sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/316/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/316/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/316/amendments?format=json","titles.count":2,"cosponsors.count":46,"request.contentType":"application/json","latestAction_actionTime":"12:04:24","textVersions.url":"https://api.congress.gov/v3/bill/118/s/316/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"316","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/316/subjects?format=json","title":"A bill to repeal the authorizations for use of military force against Iraq.","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on March 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":46,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59000","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-03-30","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/316/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/316/summaries?format=json","cboCostEstimates.0.title":"S. 316, a bill to repeal the authorizations for use of military force against Iraq","latestAction.actionTime":"12:04:24","introducedDate":"2023-02-09","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/316?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1246","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1091/text?format=json","updateDate":"2024-06-11T15:42:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lieu","sponsors.0.isByRequest":"N","request.billNumber":"1091","sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1091/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1091/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Stop Hate Crimes Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1091","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1091/cosponsors?format=json","sponsors.0.bioguideId":"L000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1091/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1091/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1091/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":21,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1091?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 1091.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nCivil rights\n[Page H856]\n","sponsors.0.district":36,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-06-11T15:42:46Z"}} +{"type":"node","id":"1247","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1087/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1087","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1087/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1087/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Think Tank Transparency Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1087","request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1087/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1087/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1087?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1248","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1084/text?format=json","updateDate":"2024-07-24T15:22:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"1084","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1084/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1084/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"ERRPA","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1084","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1084/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1084/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1084/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1084/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":16,"subjects.count":15,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1084?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2024-07-24T15:22:59Z"}} +{"type":"node","id":"1249","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1086/text?format=json","relatedBills.count":4,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"1086","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1086/subjects?format=json","policyArea.name":"Energy","title":"Nuclear Fuel Security Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1086","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1086/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1086/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1086/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1086/relatedbills?format=json","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nto establish and expand U.S. nuclear fuel programs to boost\ndomestic nuclear energy.\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1250","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 12.","sponsors.0.party":"R","number":"1085","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1085/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1085/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1085/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-20","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1085/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1085","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1085/subjects?format=json","title":"REFINER Act","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-30","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/20?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1085/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1085?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by directing the National Petroleum Council to\nissue a report examining the importance of petrochemical\nrefineries to energy security\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1251","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1083/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1083","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1083/committees?format=json","policyArea.name":"Education","type":"S","title":"School Security Enhancement Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1083","request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1083/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1083/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1083?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1252","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1079/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1079","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1079/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1079/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"Assistance for Rural Water Systems Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1079","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1079/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1079/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1079/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1079/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1079?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1253","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1078/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1078","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1078/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"NRCS Wetland Compliance and Appeals Reform Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1078/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1078/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1078?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1254","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1077","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1077/subjects?format=json","policyArea.name":"Health","type":"S","title":"Home-Based Telemental Health Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1077","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1077/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1077/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1077/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1077?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1255","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"De La Cruz","cboCostEstimates.0.pubDate":"2023-03-06T19:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-79.","sponsors.0.party":"R","number":"1076","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1076/cosponsors?format=json","sponsors.0.bioguideId":"D000594","laws.0.number":"118-79","actions.url":"https://api.congress.gov/v3/bill/118/hr/1076/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1076/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","titles.count":7,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-75","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1076/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":4,"request.congress":"118","actions.count":35,"request.billNumber":"1076","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1076/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1076/subjects?format=json","title":"Preventing the Financing of Illegal Synthetic Drugs Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58982","request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/75?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1076/summaries?format=json","cboCostEstimates.0.title":"H.R. 1076, Preventing the Financing of Illegal Synthetic Drugs Act","introducedDate":"2023-02-17","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DE LA CRUZ:\nH.R. 1076.\nCongress has the power to enact this legislation pursuant\nto the following:\nRegulations with an Effect on Interstate Commerce Article\nI, Section 8, clause 3 (Commerce Clause)\nThe single subject of this legislation is:\nDrug Trafficking Funding\n[Page H855]\n","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1256","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Bucshon","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 14.","sponsors.0.party":"R","number":"1068","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1068/cosponsors?format=json","sponsors.0.bioguideId":"B001275","actions.url":"https://api.congress.gov/v3/bill/118/hr/1068/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1068/relatedbills?format=json","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-22","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1068/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1068","sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1068/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1068/subjects?format=json","title":"Securing America’s Critical Minerals Supply Act","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-03-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/22?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1068/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1068/summaries?format=json","introducedDate":"2023-02-17","subjects.count":8,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1068?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 1068\nCongress has the power to enact this legislation pursuant\nto the following:\nThis resolution is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 3 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by requiring the DOE to assess and strengthen our\ncritical energy resource supply chain.\n[Page H855]\n","sponsors.0.district":8,"sponsors.0.firstName":"Larry","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1257","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1069/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"1069","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1069/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1069/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Alan Reinstein Ban Asbestos Now Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1069","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1069/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1069/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1069/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1069/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1069/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1069?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1258","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1072/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1072","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1072/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1072/subjects?format=json","policyArea.name":"Education","type":"S","title":"PREP for All Students Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1072","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1072/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1072/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1072/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1072/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1072?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1259","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1071/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1071","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1071/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1071/committees?format=json","policyArea.name":"Education","type":"S","title":"RISE Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1071","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1071/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1071/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1071/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1071/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1071/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1071?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1260","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/798/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"798","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/798/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/798/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Land and Water Conservation Fund Water Amendments Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"798","request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/798/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/798/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/798/actions?format=json","latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/798/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/798?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1261","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/799/text?format=json","relatedBills.count":1,"updateDate":"2024-07-25T11:03:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"799","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/799/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/799/subjects?format=json","policyArea.name":"Health","type":"S","title":"Chiropractic Medicare Coverage Modernization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"799","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/799/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/799/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/799/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/799/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/799/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/799?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-25T11:03:13Z"}} +{"type":"node","id":"1262","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/796/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"796","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/796/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/796/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Forest Protection and Wildland Firefighter Safety Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"796","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/796/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/796/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/796/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/796/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/796/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/796?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1263","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/795/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"795","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/795/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/795/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Agricultural Management Assistance Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"795","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/795/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/795/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/795/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/795/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/795?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1264","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/793/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"793","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/793/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/793/subjects?format=json","policyArea.name":"Health","type":"S","title":"Prevent Interruptions in Physical Therapy Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"793","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/793/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/793/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/793/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":16,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/793?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-02-14T16:56:14Z"}} +{"type":"node","id":"1265","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/787/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"787","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/787/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/787/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Airline Operational Resiliency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"787","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/787/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/787/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/787/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/787/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/787/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/787?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1266","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/791/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T05:26:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"791","sponsors.0.url":"https://api.congress.gov/v3/member/J000293?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/791/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/791/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"GOOD Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"791","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/791/cosponsors?format=json","sponsors.0.bioguideId":"J000293","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/791/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/791/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/791/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/791/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","sponsors.0.fullName":"Sen. Johnson, Ron [R-WI]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/791?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-16T05:26:33Z"}} +{"type":"node","id":"1267","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Fulcher","cboCostEstimates.0.pubDate":"2024-03-25T14:58:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 445.","sponsors.0.party":"R","number":"784","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/784/cosponsors?format=json","sponsors.0.bioguideId":"F000469","actions.url":"https://api.congress.gov/v3/bill/118/hr/784/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/784/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-06-04","sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-536","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/784/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"784","sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/784/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/784/committees?format=json","title":"Internet Application I.D. Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60139","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-14","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/536?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/784/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/784/summaries?format=json","cboCostEstimates.0.title":"H.R. 784, Internet Application I.D. Act","introducedDate":"2023-02-02","subjects.count":9,"sponsors.0.state":"ID","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/784?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FULCHER:\nH.R. 784.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution.\nCongress has the authority to enact this legislation\npursuant to the power granted under Article\nThe single subject of this legislation is:\nTo address the regulation of disclosure of websites or\nmobile applications owned and/or located in certain foreign\njurisdictions.\n[Page H681]\n","sponsors.0.district":1,"sponsors.0.firstName":"Russ","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"1268","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/792/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"792","sponsors.0.url":"https://api.congress.gov/v3/member/J000299?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/792/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/792/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Child Interstate Abortion Notification Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"792","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/792/cosponsors?format=json","sponsors.0.bioguideId":"J000299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/792/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/792/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/792/actions?format=json","latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/792/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Mike [R-LA-4]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":22,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/792?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Louisiana:\nH.R. 792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo deter the interstate transportation of minors to obtain\nabortions without first satisfying parental notification\nlaws.\n[Page H682]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"1269","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/790/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"790","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/790/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/790/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"ALIGN Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"790","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/790/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/790/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/790/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/790/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/790?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1270","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/789/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"789","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/789/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"United States Foreign Service Commemorative Coin Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"789","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/789/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/789/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/789/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/789/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/789/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/789?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-16T06:06:27Z"}} +{"type":"node","id":"1271","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/785/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"785","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/785/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/785/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Consumer and Fuel Retailer Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"785","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/785/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/785/actions?format=json","latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/785/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/785?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1272","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/781/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"781","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/781/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/781/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Tipped Employee Protection Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"781","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/781/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/781/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/781/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/781/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/781/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/781?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1273","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/786/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"786","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S774-775)","subjects.url":"https://api.congress.gov/v3/bill/118/s/786/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/786/committees?format=json","policyArea.name":"Taxation","type":"S","title":"PHIT Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance. (text: CR S774-775)","sponsors.0.party":"R","number":"786","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/786/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/786/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/786/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/786/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/786/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/786?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1274","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/782/text?format=json","updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"782","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/782/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/782/subjects?format=json","policyArea.name":"Energy","type":"S","title":"FREE American Energy Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"782","request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/782/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/782/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/782/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/782?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2024-07-24T15:23:21Z"}} +{"type":"node","id":"1275","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Foster","cboCostEstimates.0.pubDate":"2023-04-17T20:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the House Calendar, Calendar No. 32.","sponsors.0.party":"D","number":"783","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/783/cosponsors?format=json","sponsors.0.bioguideId":"F000454","actions.url":"https://api.congress.gov/v3/bill/118/hr/783/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-08-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/783/relatedbills?format=json","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-163","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/783/text?format=json","updateDate":"2024-11-09T04:42:18Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":10,"request.billNumber":"783","sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/783/subjects?format=json","title":"To designate the Department of Energy Integrated Engineering Research Center Federal Building located at the Fermi National Accelerator Laboratory in Batavia, Illinois, as the \"Helen Edwards Engineering Research Center\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59080","request.format":"json","latestAction_actionDate":"2023-03-14","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/163?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/783/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/783/summaries?format=json","cboCostEstimates.0.title":"H.R. 783, a bill to designate the Department of Energy Integrated Engineering Research Center Federal Building located at the Fermi National Accelerator Laboratory in Batavia, Illinois, as the ‘‘Helen Edwards Engineering Research Center’’","introducedDate":"2023-02-02","subjects.count":5,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/783?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 783.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nLegislating.\n[Page H681]\n","sponsors.0.district":11,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-11-09T04:42:18Z"}} +{"type":"node","id":"1276","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/779/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"779","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S774)","committees.url":"https://api.congress.gov/v3/bill/118/s/779/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/779/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"ACTION for National Service Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S774)","sponsors.0.party":"D","number":"779","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/779/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/779/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/779/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/779/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/779/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/779?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:23:21Z"}} +{"type":"node","id":"1277","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/778/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"778","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/778/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/778/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"COST Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"778","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/778/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/778/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/778/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/778/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/778/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/778?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1278","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/758/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:41Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"758","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/758/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Moving Americans Privacy Protection Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"758","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/758/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/758/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/758/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/758/actions?format=json","latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/758/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","latestAction.actionTime":"16:09:50","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/758?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:23:41Z","latestAction_actionTime":"16:09:50"}} +{"type":"node","id":"1279","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/775/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"775","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/775/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/775/subjects?format=json","policyArea.name":"Health","type":"S","title":"Increasing Transparency in Generic Drug Applications Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"775","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/775/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/775/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/775/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/775/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/775/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/775?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1280","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Duncan","cboCostEstimates.0.pubDate":"2023-01-30T18:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","policyArea.name":"Health","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"497","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/497/cosponsors?format=json","sponsors.0.bioguideId":"D000615","actions.url":"https://api.congress.gov/v3/bill/118/hr/497/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/497/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","titles.count":5,"cosponsors.count":75,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/497/text?format=json","updateDate":"2024-12-21T09:05:49Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":21,"request.billNumber":"497","sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/497/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/497/subjects?format=json","title":"Freedom for Health Care Workers Act","cboCostEstimates.0.description":"As introduced on January 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":75,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58922","request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/497/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/497/summaries?format=json","cboCostEstimates.0.title":"H.R. 497, Freedom for Healthcare Workers Act","introducedDate":"2023-01-25","subjects.count":8,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/497?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nSingle Subject Statement:\nThis legislation eliminates the COVID-19 Vaccine mandate on\nhealth care providers furnishing items and services under\ncertain Federal health care programs.\n[Page H324]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-12-21T09:05:49Z"}} +{"type":"node","id":"1281","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/501/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"501","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/501/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/501/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Presidential Allowance Modernization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"501","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/501/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/501/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/501/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/501/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/501?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1282","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/500/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Wagner","sponsors.0.isByRequest":"N","request.billNumber":"500","sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/500/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/500/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Financial Exploitation Prevention Act of 2023","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"500","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/500/cosponsors?format=json","sponsors.0.bioguideId":"W000812","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/500/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/500/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/500/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/500/relatedbills?format=json","sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","titles.count":5,"introducedDate":"2023-01-25","cosponsors.count":13,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/500?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 500.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1283","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/496/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"496","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S459)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/496/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/496/committees?format=json","policyArea.name":"Education","type":"HR","title":"PELL Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"496","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/496/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/496/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/496/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/496/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/496/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/496?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 496.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nFederal student aid for postsecondary education\n[Page H324]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1284","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/493/text?format=json","updateDate":"2024-07-24T15:23:43Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"493","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/493/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/493/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Securing the Visa Waiver Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"493","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/493/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/493/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/493/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/493/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/493?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:43Z"}} +{"type":"node","id":"1285","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/494/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Reschenthaler","sponsors.0.isByRequest":"N","request.billNumber":"494","sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/494/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/494/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund EcoHealth Alliance Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"494","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/494/cosponsors?format=json","sponsors.0.bioguideId":"R000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/494/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/494/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/494/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/494/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":34,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/494?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution\nThe single subject of this legislation is:\nProviding oversight of federal funding for the EcoHealth\nAlliance.\n[Page H324]\n","sponsors.0.district":14,"sponsors.0.firstName":"Guy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1286","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/492/text?format=json","updateDate":"2024-07-24T15:23:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"492","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/492/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/492/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"S","title":"CONSCIENCE Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"492","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/492/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/492/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/492/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/492/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-02-16","cosponsors.count":1,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/492?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:39Z"}} +{"type":"node","id":"1287","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/491/text?format=json","updateDate":"2024-12-04T09:05:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"491","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/491/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/491/subjects?format=json","policyArea.name":"Armed Forces and National Security","title":"Return Home to Housing Act","type":"HR","latestAction.text":"Subcommittee Hearings Held","sponsors.0.party":"D","number":"491","cosponsors.countIncludingWithdrawnCosponsors":73,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/491/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/491/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/491/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/491/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":73,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/491?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-12-04T09:05:54Z"}} +{"type":"node","id":"1288","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/486/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Roy","sponsors.0.isByRequest":"N","request.billNumber":"486","sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/486/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/486/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To prohibit the government of the District of Columbia from using Federal funds to allow individuals who are not citizens of the United States to vote in any election, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"486","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/486/cosponsors?format=json","sponsors.0.bioguideId":"R000614","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/486/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/486/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/486/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/486/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","titles.count":2,"introducedDate":"2023-01-24","cosponsors.count":7,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/486?format=json","sponsors.0.district":21,"sponsors.0.firstName":"Chip","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1289","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/487/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Self","sponsors.0.isByRequest":"N","request.billNumber":"487","sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/487/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/487/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Ensuring American Voters Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"487","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/487/cosponsors?format=json","sponsors.0.bioguideId":"S001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/487/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/487/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/487/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/487/relatedbills?format=json","sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/487?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Keith","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1290","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/488/text?format=json","updateDate":"2024-07-24T15:23:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"488","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/488/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/488/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FOIA Fix Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"488","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/488/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/488/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/488/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/488/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-02-16","cosponsors.count":1,"subjects.count":15,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/488?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:42Z"}} +{"type":"node","id":"1291","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/489/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"489","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/489/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/489/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Expedited Removal Codification Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"489","request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/489/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/489/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/489/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/489/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/489?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"1292","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/480/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"480","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/480/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/480/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to require the establishment of a working group to evaluate the threat to food safety and animal health posed by beef imported from Brazil, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"480","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/480/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/480/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/480/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/480/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":2,"introducedDate":"2023-02-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/480?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1293","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/485/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"485","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S459)","committees.url":"https://api.congress.gov/v3/bill/118/s/485/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/485/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Hazard and Flooding Mitigation Funding Assurance Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S459)","sponsors.0.party":"D","number":"485","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/485/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/485/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/485/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/485/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/485?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1294","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/483/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"483","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/483/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/483/subjects?format=json","policyArea.name":"Law","type":"HR","title":"District of Columbia Courts Judicial Vacancy Reduction Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"483","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-02-16","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/483/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/483/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/483/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/483/relatedbills?format=json","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/483?format=json","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1295","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/481/text?format=json","updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"481","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/481/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/481/subjects?format=json","policyArea.name":"Emergency Management","title":"Wildfire Smoke Relief Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"481","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/481/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/481/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/481/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/481/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/481?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"1296","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/476/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:11:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"476","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/476/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/476/subjects?format=json","policyArea.name":"Families","title":"Helping HANDS for Families Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"476","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/476/cosponsors?format=json","sponsors.0.bioguideId":"M001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/476/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/476/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/476/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/476/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/476?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2025-01-17T03:11:14Z"}} +{"type":"node","id":"1297","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/478/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T09:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"478","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/478/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/478/subjects?format=json","policyArea.name":"Taxation","title":"WFCA Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"478","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-02-16","summaries.count":1,"sponsors.0.bioguideId":"M001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/478/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/478/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/478/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/478/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":4,"introducedDate":"2023-01-24","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/478?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2024-12-21T09:05:18Z"}} +{"type":"node","id":"1298","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/477/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"477","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/477/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/477/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Taiwan Invasion Prevention Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"477","request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/477/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/477/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/477/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-02-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/477?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/471/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"471","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/471/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/471/subjects?format=json","policyArea.name":"Health","type":"S","title":"Women’s Public Health and Safety Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"471","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/471/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/471/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/471/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/471/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/471/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":14,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/471?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"1300","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/189/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"McClintock","sponsors.0.isByRequest":"N","request.billNumber":"189","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/189/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Action Versus No Action Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"189","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/189/cosponsors?format=json","sponsors.0.bioguideId":"M001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/189/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/189?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 189.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 (the Property Clause),\nwhich confers on Congress the power to make all needful Rules\nand Regulations respecting the property belonging to the\nUnited States.\n[Page H112]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"1301","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Miller","cboCostEstimates.0.pubDate":"2024-10-21T19:53:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Taxation","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 696.","sponsors.0.party":"R","number":"190","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/190/cosponsors?format=json","sponsors.0.bioguideId":"M001205","actions.url":"https://api.congress.gov/v3/bill/118/hr/190/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/190/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":4,"cosponsors.count":48,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-857","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/190/text?format=json","updateDate":"2025-02-20T22:26:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"190","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/190/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/190/subjects?format=json","title":"Saving Gig Economy Taxpayers Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on September 11, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":48,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60838","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-01-31","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/857?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/190/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/190/summaries?format=json","cboCostEstimates.0.title":"H.R. 190, Saving Gig Economy Taxpayers Act","introducedDate":"2023-01-09","subjects.count":4,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/190?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 190.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H112]\n","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2025-02-20T22:26:13Z"}} +{"type":"node","id":"1302","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/187/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"187","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/187/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/187/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"No Tax Breaks for Radical Corporate Activism Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"187","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/187/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/187/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/187/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/187/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/187/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/187?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:57Z"}} +{"type":"node","id":"1303","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/191/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"191","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/191/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Restoring Military Focus Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"191","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/191/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/191/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/191/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/191/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/191/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":8,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/191?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1304","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"McClintock","cboCostEstimates.0.pubDate":"2024-02-05T21:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S174-175)","policyArea.name":"Public Lands and Natural Resources","type":"HR","latestAction.text":"Reported (Amended) by the Committee on Natural Resources. H. Rept. 118-926, Part I.","sponsors.0.party":"R","number":"188","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/188/cosponsors?format=json","sponsors.0.bioguideId":"M001177","actions.url":"https://api.congress.gov/v3/bill/118/hr/188/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-926","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/188/text?format=json","updateDate":"2025-03-07T14:26:14Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":12,"request.billNumber":"188","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/188/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/188/subjects?format=json","title":"Proven Forest Management Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on June 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59940","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/926?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/188/summaries?format=json","cboCostEstimates.0.title":"H.R. 188, Proven Forest Management Act of 2023","introducedDate":"2023-01-09","subjects.count":8,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/188?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 188.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 (the Property Clause),\nwhich confers on Congress the power to make all needful Rules\nand Regulations respecting the property belonging to the\nUnited States.\n[Page H112]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-03-07T14:26:14Z"}} +{"type":"node","id":"1305","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/183/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"183","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/183/subjects?format=json","policyArea.name":"Education","type":"S","title":"Students Helping Young Students Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"183","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/183/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/183/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/183/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/183/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/183/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/183?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/182/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"182","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/182/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/182/subjects?format=json","policyArea.name":"Education","type":"S","title":"Transition-to-Success Mentoring Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"182","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/182/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/182/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/182/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/182/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/182/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/182?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-16T06:06:26Z"}} +{"type":"node","id":"1307","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/181/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"181","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/181/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Vaccine Passports Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"181","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/181/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/181/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":22,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/181?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1308","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/180/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"180","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/180/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Block Grant Assistance Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"180","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/180/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/180/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/180/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/180/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/180/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/180?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1309","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/179/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"179","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/179/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/179/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"COMPOST Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"179","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/179/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/179/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/179/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/179/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/179/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/179?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1310","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/174/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"174","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S174)","committees.url":"https://api.congress.gov/v3/bill/118/s/174/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/174/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Conservation Reserve Program Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S174)","sponsors.0.party":"R","number":"174","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/174/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/174/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/174/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/174/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/174/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/174?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1311","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/178/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"178","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/178/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/178/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Airline Passengers' Bill of Rights","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"178","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/178/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/178/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/178/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/178/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/178/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":8,"request.contentType":"application/json","subjects.count":24,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/178?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1312","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/176/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"176","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/176/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Expanding Agricultural Exports Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"176","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/176/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/176/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/176/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/176/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/176/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/176?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1313","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/177/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"177","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/177/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/177/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Zero Food Waste Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"177","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/177/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/177/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/177/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/177/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/177/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/177?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1314","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/171/text?format=json","relatedBills.count":6,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"171","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/171/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/171/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"HALT Fentanyl Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"171","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/171/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/171/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/171/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/171/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/171/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/171?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 171.\nCongress has the power to enace this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1315","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/170/text?format=json","updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"170","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","committees.url":"https://api.congress.gov/v3/bill/118/s/170/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/170/subjects?format=json","policyArea.name":"Congress","type":"S","title":"A bill to establish a Joint Select Committee on Afghanistan to conduct a full investigation and compile a joint report on the United States withdrawal from Afghanistan.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"R","number":"170","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/170/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/170/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/170/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/170/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":2,"introducedDate":"2023-01-31","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/170?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1316","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/173/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:04Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"173","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/173/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/173/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Home Defense and Competitive Shooting Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"173","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/173/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/173/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/173/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/173/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/173/relatedbills?format=json","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/173?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 173.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H112]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-06-12T18:21:04Z"}} +{"type":"node","id":"1317","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/169/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"169","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/169/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/169/subjects?format=json","policyArea.name":"Health","type":"S","title":"Parental Rights Protection Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"169","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/169/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/169/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/169/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/169?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1318","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/172/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"172","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/172/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Acre In, Acre Out Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"172","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/172/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/172/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/172/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\n[Pages H111-H112]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 172.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H112]]\nArticle I, Section 8 of the United States Consitution.\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"1319","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/167/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"167","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/167/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/167/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"No Vaccine Mandates Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"167","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/167/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/167/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/167/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/167/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/167?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:59Z"}} +{"type":"node","id":"1320","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"Westerman","cboCostEstimates.0.pubDate":"2023-12-06T14:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 775.","policyArea.name":"International Affairs","type":"HJRES","latestAction.text":"Placed on the Union Calendar, Calendar No. 775.","sponsors.0.party":"R","number":"96","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/96/cosponsors?format=json","sponsors.0.bioguideId":"W000821","actions.url":"https://api.congress.gov/v3/bill/118/hjres/96/actions?format=json","latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/96/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","titles.count":4,"cosponsors.count":42,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-785","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/96/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":7,"request.congress":"118","actions.count":30,"request.billNumber":"96","sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/96/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/96/subjects?format=json","title":"Compact of Free Association Amendments Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on November 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":42,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59816","request.format":"json","latestAction_actionDate":"2024-12-19","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/785?format=json","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/96/titles?format=json","cboCostEstimates.0.title":"H.J. Res. 96, Compact of Free Association Amendments Act of 2023","introducedDate":"2023-11-02","subjects.count":7,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/96?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Bruce","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1321","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/229/text?format=json","updateDate":"2024-12-28T00:48:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burlison","sponsors.0.isByRequest":"N","request.billNumber":"229","sponsors.0.url":"https://api.congress.gov/v3/member/B001316?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/229/committees?format=json","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States related to the public debt.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"229","request.format":"json","latestAction_actionDate":"2024-12-19","sponsors.0.bioguideId":"B001316","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/229/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/229/actions?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Burlison, Eric [R-MO-7]","titles.count":2,"introducedDate":"2024-12-19","request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/229?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 189 (Thursday, December 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURLISON:\nH.J. Res. 229.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nThis joint resolution proposes an amendment to the U.S.\nConstitution related to the public debt.\n[Page H7391]\n","sponsors.0.district":7,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-12-28T00:48:25Z"}} +{"type":"node","id":"1322","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/230/text?format=json","updateDate":"2024-12-28T00:48:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"230","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/230/committees?format=json","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Land Management related to the Record of Decision and Approved Resource Management Plan Amendment for the Miles City Field Office, Montana.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"230","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-19","sponsors.0.bioguideId":"R000103","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/230/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/230/actions?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Rosendale, Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2024-12-19","request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/230?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 189 (Thursday, December 19, 2024)]\n[House]\n[Pages H7391-H7392]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.J. Res. 230.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H7392]]\nArticle 1, Section 8\nThe single subject of this legislation is:\nNatural Resources\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2024-12-28T00:48:29Z"}} +{"type":"node","id":"1323","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/228/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T14:42:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","request.billNumber":"228","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/228/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/228/subjects?format=json","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"228","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/228/cosponsors?format=json","sponsors.0.bioguideId":"P000048","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/228/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/228/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/228/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/228?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 187 (Tuesday, December 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.J. Res. 228.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nDisapproval of the EPA's Waste Emissions Charge final rule.\n[Page H7320]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-01-03T14:42:45Z"}} +{"type":"node","id":"1324","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/142/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crow","sponsors.0.isByRequest":"N","request.billNumber":"142","sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 716.","committees.url":"https://api.congress.gov/v3/bill/118/hr/142/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/142/subjects?format=json","policyArea.name":"Taxation","title":"End Dark Money Act","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"142","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/142/cosponsors?format=json","sponsors.0.bioguideId":"C001121","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/142/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/142/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/142/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":13,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/142?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 142.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\n[Page H110]\n","sponsors.0.district":6,"sponsors.0.firstName":"Jason","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1325","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/181/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"181","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 715.","committees.url":"https://api.congress.gov/v3/bill/118/s/181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/181/subjects?format=json","policyArea.name":"Health","title":"No Vaccine Passports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"181","request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/181/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/181/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":22,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hjres/181?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1326","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/227/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"227","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/227/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/227/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"227","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/227/cosponsors?format=json","sponsors.0.bioguideId":"C001068","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/227/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/227/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/227/relatedbills?format=json","sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/227?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 185 (Thursday, December 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.J. Res. 227.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V\nThe single subject of this legislation is:\nProposing an amendment to the Constitution of the United\nStates to abolish the electoral college and to provide for\nthe direct election of the President and Vice President of\nthe United States.\n[Page H7143]\n","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-12-20T19:12:44Z"}} +{"type":"node","id":"1327","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 653.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hjres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}} +{"type":"node","id":"1328","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/226/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T09:06:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jacobs","sponsors.0.isByRequest":"N","request.billNumber":"226","sponsors.0.url":"https://api.congress.gov/v3/member/J000305?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/226/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/226/subjects?format=json","policyArea.name":"International Affairs","type":"HJRES","title":"Providing for congressional disapproval of the proposed foreign military sale to the Government of the United Arab Emirates of certain defense articles and services.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"226","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/226/cosponsors?format=json","sponsors.0.bioguideId":"J000305","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/226/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/226/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/226/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Jacobs, Sara [D-CA-51]","titles.count":2,"introducedDate":"2024-11-21","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/226?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 173 (Thursday, November 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACOBS:\nH.J. Res. 226.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nProviding for congressional disapproval of the proposed\nforeign military sale to the Government of the United Arab\nEmirates of certain defense articles and services.\n[Page H6193]\n","sponsors.0.district":51,"sponsors.0.firstName":"Sara","updateDateIncludingText":"2024-12-19T09:06:18Z"}} +{"type":"node","id":"1329","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/224/text?format=json","updateDate":"2024-07-24T15:24:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"224","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/224/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/224/subjects?format=json","policyArea.name":"Economics and Public Finance","title":"Inaction Has Consequences Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"224","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-20","summaries.count":1,"sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/224/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/224/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/224/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/224?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 224.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 6 of the Constitution\n[Page H113]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:24:10Z"}} +{"type":"node","id":"1330","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/225/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"225","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/225/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/225/subjects?format=json","policyArea.name":"Economics and Public Finance","title":"No Budget, No Pay Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"225","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/225/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/225/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/225/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/225/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/225/relatedbills?format=json","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/225?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 225.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 6 of the Constitution\n[Page H113]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"1331","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/223/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T14:42:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"223","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/223/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/223/committees?format=json","policyArea.name":"Environmental Protection","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"223","request.format":"json","latestAction_actionDate":"2024-11-19","sponsors.0.bioguideId":"G000576","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/223/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/223/actions?format=json","latestAction.actionDate":"2024-11-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/223/relatedbills?format=json","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":2,"introducedDate":"2024-11-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/223?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 171 (Tuesday, November 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.J. Res. 223\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Environmental\nProtection Agency relating to ``Waste Emissions Charge for\nPetroleum and Natural Gas Systems: Procedures for\nFacilitating Compliance, Including Netting and Exemptions''.\n[Page H6110]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-01-03T14:42:45Z"}} +{"type":"node","id":"1332","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/222/text?format=json","relatedBills.count":2,"updateDate":"2024-12-20T19:12:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"222","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/222/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/222/subjects?format=json","policyArea.name":"Taxation","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"222","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-18","summaries.count":1,"sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/222/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/222/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/222/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-18","sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-18","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/222?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 170 (Monday, November 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 222.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Internal Revenue\nService relating to ``Advanced Manufacturing Production\nCredit''.\n[Page H6078]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-20T19:12:09Z"}} +{"type":"node","id":"1333","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/221/text?format=json","updateDate":"2024-12-19T17:38:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"221","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/221/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Defense relating to \"Cybersecurity Maturity Model Certification (CMMC) Program\".","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"221","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-15","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/221/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/221/actions?format=json","latestAction.actionDate":"2024-11-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-15","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 169 (Friday, November 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Department of\nDefense relating to ``Cybersecurity Maturity Model\nCertification (CMMC) Program''.\n[Page H6027]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-19T17:38:30Z"}} +{"type":"node","id":"1334","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/219/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"219","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/219/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/219/subjects?format=json","policyArea.name":"Education","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Health and Human Services relating to \"Supporting the Head Start Workforce and Consistent Quality Programming\".","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"219","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-13","summaries.count":1,"sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/219/actions?format=json","latestAction.actionDate":"2024-11-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/219?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 167 (Wednesday, November 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 219.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Department of\nHealth and Human Services relating to ``Supporting the Head\nStart Workforce and Consistent Quality Programming''.\n[Page H5976]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1335","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/220/text?format=json","updateDate":"2024-12-16T19:23:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"220","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/220/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Debt Collection Practices (Regulation F); Deceptive and Unfair Collection of Medical Debt\".","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"220","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-13","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/220/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/220/actions?format=json","latestAction.actionDate":"2024-11-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/220?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 167 (Wednesday, November 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 220.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Bureau of\nConsumer Financial Protection relating to ``Debt Collection\nPractices (Regulation F); Deceptive and Unfair Collection of\nMedical Debt''.\n[Page H5976]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-16T19:23:41Z"}} +{"type":"node","id":"1336","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/218/text?format=json","updateDate":"2024-12-16T19:23:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bucshon","sponsors.0.isByRequest":"N","request.billNumber":"218","sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/218/subjects?format=json","policyArea.name":"Energy","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Commercial Water Heating Equipment\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"218","request.format":"json","latestAction_actionDate":"2024-11-12","sponsors.0.bioguideId":"B001275","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/218/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/218/actions?format=json","latestAction.actionDate":"2024-11-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","titles.count":2,"introducedDate":"2024-11-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/218?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 166 (Tuesday, November 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.J. Res. 218.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H5956]\n","sponsors.0.district":8,"sponsors.0.firstName":"Larry","updateDateIncludingText":"2024-12-16T19:23:30Z"}} +{"type":"node","id":"1337","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Garbarino","cboCostEstimates.0.pubDate":"2024-07-22T20:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 614.","policyArea.name":"Finance and Financial Sector","type":"HJRES","latestAction.text":"Placed on the Union Calendar, Calendar No. 614.","sponsors.0.party":"R","number":"100","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/100/cosponsors?format=json","sponsors.0.bioguideId":"G000597","actions.url":"https://api.congress.gov/v3/bill/118/hjres/100/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/100/relatedbills?format=json","sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","titles.count":2,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-727","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/100/text?format=json","updateDate":"2025-01-17T03:06:30Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"100","sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/100/committees?format=json","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on May 16, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60565","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-11-01","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/727?format=json","summaries.count":1,"request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/100/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/100/summaries?format=json","cboCostEstimates.0.title":"H.J. Res. 100, a joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to “Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure”","introducedDate":"2023-11-09","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/100?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.J. Res. 100.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, Article I\nThe single subject of this legislation is:\nResolution under the Congressional Review Act to nullify\nthe Securities and Exchange Commission's rule ``Cybersecurity\nRisk Management, Strategy, Governance, and Incident\nDisclosure''.\n[Page H5671]\n","sponsors.0.district":2,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-01-17T03:06:30Z"}} +{"type":"node","id":"1338","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/217/text?format=json","updateDate":"2024-12-16T19:22:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"217","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/217/subjects?format=json","policyArea.name":"Health","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to \"Medicare Program; FY 2025 Hospice Wage Index and Payment Rate Update, Hospice Conditions of Participation Updates, and Hospice Quality Reporting Program Requirements\".","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"217","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-10-29","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/217/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/217/actions?format=json","latestAction.actionDate":"2024-10-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-10-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/217?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 160 (Tuesday, October 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 217.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by by the Centers for\nMedicare & Medicaid Services relating to ``Medicare Program;\nFY 2025 Hospice Wage Index and Payment Rate Update, Hospice\nConditions of Participation Updates, and Hospice Quality\nReporting Program Requirements''.\n[Page H5902]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-16T19:22:13Z"}} +{"type":"node","id":"1339","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/216/text?format=json","updateDate":"2024-12-16T19:21:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"216","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/216/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/216/subjects?format=json","policyArea.name":"Health","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to \"Medicare Program; Inpatient Rehabilitation Facility Prospective Payment System for Federal Fiscal Year 2025 and Updates to the IRF Quality Reporting Program\".","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"216","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/216/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/216/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/216?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 157 (Friday, October 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 216.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Centers for\nMedicare & Medicaid Services relating to ``Medicare Program;\nInpatient Rehabilitation Facility Prospective Payment System\nfor Federal Fiscal Year 2025 and Updates to the IRF Quality\nReporting Program''.\n[Page H5879]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-16T19:21:13Z"}} +{"type":"node","id":"1340","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/122?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1341","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}} +{"type":"node","id":"1342","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}} +{"type":"node","id":"1343","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}} +{"type":"node","id":"1344","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"No Vaccine Passports Act","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sjres/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1345","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 37 - 61. Record Vote Number: 295.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-11-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sjres/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1346","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/115?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1347","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 19 - 78. Record Vote Number: 293. (consideration: CR S6665)","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Prescription Pricing for the People Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-11-20","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":21,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1348","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/111/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"111","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 18 - 79. Record Vote Number: 292. (consideration: CR S6653-6665)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/111/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/111/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 18 - 79. Record Vote Number: 292. (consideration: CR S6653-6665)","sponsors.0.party":"I","number":"111","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/111/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/111/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/111/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/111?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1349","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/116/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"116","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/116/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed enhancement or upgrade of sensitivity of technology or capability of certain major defense equipment for the Government of Israel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"I","number":"116","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/116/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/116/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/116/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/116?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1350","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","policyArea.name":"Economics and Public Finance","title":"Preventive Health Savings Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-09-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"1351","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2023-05-02T19:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Became Public Law No: 118-18.","sponsors.0.party":"R","number":"112","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/112/cosponsors?format=json","sponsors.0.bioguideId":"B001310","laws.0.number":"118-18","actions.url":"https://api.congress.gov/v3/bill/118/s/112/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/112/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2023-10-06","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":8,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/112/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"112","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/112/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/112/subjects?format=json","title":"A bill to amend title 38, United States Code, to strengthen benefits for children of Vietnam veterans born with spina bifida, and for other purposes.","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58974","request.format":"json","latestAction_actionDate":"2024-09-25","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/112/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/112/summaries?format=json","cboCostEstimates.0.title":"S. 112, a bill to amend title 38, United States Code, to strengthen benefits for children of Vietnam veterans born with spina bifida, and for other purposes","introducedDate":"2023-01-26","subjects.count":8,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/112?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:02:09Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1352","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/110/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"110","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/110/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/110/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Alaska; Hunting and Trapping in National Preserves\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"110","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/110/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/110/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/110/actions?format=json","latestAction.actionDate":"2024-09-19","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-09-19","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/110?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"1353","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/109/text?format=json","updateDate":"2025-02-14T19:34:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"109","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/109/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/109/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow an above-the-line deduction for health insurance premiums.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"109","request.format":"json","latestAction_actionDate":"2024-09-10","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/109/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/109/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sjres/109?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 109.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-14T19:34:50Z"}} +{"type":"node","id":"1354","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/108/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"108","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/108/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/108/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Small Business Prosperity Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"108","request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/108/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/108/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/108/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sjres/108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1355","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/107/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"107","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/107/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/107/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of military force against the Islamic Republic of Iran if the President determines that the Islamic Republic of Iran is planning or conducts an attack against any former, current, or incoming United States Government official or senior military personnel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"107","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/107/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/107/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-08-01","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/107?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1356","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/106/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"106","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/106/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/106/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"106","request.format":"json","latestAction_actionDate":"2024-07-31","summaries.count":1,"sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/106/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-07-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/106?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-07-30","cosponsors.count":29,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/104?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1358","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-07-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":5,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1359","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/103/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"103","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/103/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/103/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"Safeguarding and Securing the Open Internet; Restoring Internet Freedom\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"103","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/103/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/103/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/103/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/103/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-23","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/103?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1360","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/34/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"34","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 758.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/34/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/34/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States authorizing the Congress to prohibit the physical desecration of the flag of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"34","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/34/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/34/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/34/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/34/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/34/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/34?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-04-17T23:51:48Z"}} +{"type":"node","id":"1361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1362","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-12","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1363","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-11-22","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1364","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2023-04-17T17:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and the Workforce.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Committee on Veterans' Affairs. Ordered to be reported with an amendment in the nature of a substitute favorably.","sponsors.0.party":"D","number":"132","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/132/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/132/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/132/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/132/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"132","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/132/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/132/committees?format=json","title":"Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59068","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-11-14","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/132/summaries?format=json","cboCostEstimates.0.title":"S. 132, Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","introducedDate":"2023-01-30","subjects.count":15,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/132?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-01-14T17:05:14Z"}} +{"type":"node","id":"1365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-09-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1366","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and the Workforce.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2024-09-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}} +{"type":"node","id":"1367","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-09-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1368","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2024-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}} +{"type":"node","id":"1369","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Message on Senate action sent to the House.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-09-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1370","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FAIR Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2024-09-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1371","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund Planned Parenthood Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2024-09-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","latestAction.actionDate":"2023-01-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hconres/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1372","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-08-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hconres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1373","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}} +{"type":"node","id":"1374","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"BAD IRS Activities Act","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-08-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}} +{"type":"node","id":"1375","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-07-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/122?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1376","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-07-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}} +{"type":"node","id":"1377","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}} +{"type":"node","id":"1378","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"No Vaccine Passports Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hconres/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1379","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 469.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hconres/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1380","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/46/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"46","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/46/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/46/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Mental Health Access and Gun Violence Prevention Act of 2023","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"46","request.format":"json","latestAction_actionDate":"2024-12-19","summaries.count":1,"sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/46/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/46/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/46/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sconres/46?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 46.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1, 3 and 18 of\nthe United States Constitution.\n[Page H108]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:13Z","latestAction_actionTime":"20:46:21"}} +{"type":"node","id":"1381","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/45/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"45","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7183-7184)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/45/committees?format=json","type":"SCONRES","title":"A concurrent resolution affirming the nature and importance of the support of the United States for Syria.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7183-7184)","sponsors.0.party":"D","number":"45","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/45/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/45/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/45/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":5,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/45?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1382","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/44/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:49:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"44","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/44/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SCONRES","title":"A concurrent resolution directing the Clerk of the House of Representatives to make a correction in the enrollment of the bill H.R. 5009.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"D","number":"44","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"R000122","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/44/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/44/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/44/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","latestAction.actionTime":"18:04:09","titles.count":2,"introducedDate":"2024-12-18","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/44?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-31T18:49:07Z","latestAction_actionTime":"18:04:09"}} +{"type":"node","id":"1383","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/43/text?format=json","updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Carper","sponsors.0.isByRequest":"N","request.billNumber":"43","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/sconres/43/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/43/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SCONRES","title":"A concurrent resolution expressing support for the designation of September 29, 2024, as \"Veterans of Foreign Wars of the United States Day\".","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"43","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-12-11","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/43/cosponsors?format=json","sponsors.0.bioguideId":"C000174","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/43/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/43/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":2,"sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/118/sconres/43/amendments?format=json","latestAction.actionTime":"16:55:07","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/43?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-14T16:56:14Z","latestAction_actionTime":"16:55:07"}} +{"type":"node","id":"1384","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Clyde","cboCostEstimates.0.pubDate":"2023-03-31T18:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S6461-6462)","policyArea.name":"Government Operations and Politics","type":"HJRES","latestAction.text":"The Chair directed the Clerk to notify the Senate of the action of the House.","sponsors.0.party":"R","number":"42","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/42/cosponsors?format=json","sponsors.0.bioguideId":"C001116","actions.url":"https://api.congress.gov/v3/bill/118/hjres/42/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/42/relatedbills?format=json","sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","titles.count":2,"cosponsors.count":19,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-33","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/42/text?format=json","updateDate":"2025-03-07T20:06:14Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":42,"request.billNumber":"42","sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/42/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/42/committees?format=json","title":"Disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59033","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-09-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/33?format=json","summaries.count":4,"request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/42/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/42/summaries?format=json","cboCostEstimates.0.title":"H.J. Res. 42, a joint resolution disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022","latestAction.actionTime":"17:52:27","introducedDate":"2023-03-09","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sconres/42?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.J. Res. 42.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec, 8, Clause 16 of the U.S. Constitution\nstates: The Congress shall have the power to ``Excercise\nexclusive legislation in all cases whatsoeverm over such\nDistrict (not exceeding 10 Miles square, as may, by Cession\nof particular States, and the Acceptance of Congress, become\nthe Seat of Government of the United States.''\nThe single subject of this legislation is:\nThis bill pertains to DC matters\n[Page H1251]\n","sponsors.0.district":9,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-03-07T20:06:14Z"}} +{"type":"node","id":"1385","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/41/text?format=json","updateDate":"2024-11-21T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"41","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 39 - 56. Record Vote Number: 252.","committees.url":"https://api.congress.gov/v3/bill/118/hr/41/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/41/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Same-Day Scheduling Act of 2023","latestAction.text":"Subcommittee Consideration and Mark-up Session Held.","sponsors.0.party":"R","number":"41","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-09-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/41/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/41/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/41/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/41/actions?format=json","latestAction.actionDate":"2023-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":71,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sconres/41?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 41.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nauthorized by Congress' power to ``provide for the common\nDefense and general Welfare of the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-21T09:05:49Z"}} +{"type":"node","id":"1386","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/40/text?format=json","updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"40","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/40/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/40/subjects?format=json","policyArea.name":"Congress","type":"SCONRES","title":"RESTORE Resolution of 2024","latestAction.text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","sponsors.0.party":"R","number":"40","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/40/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/40/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/40/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/40?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1387","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/39/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"39","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/39/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/39/subjects?format=json","policyArea.name":"Immigration","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that individuals who have been wrongfully or unjustly deported from the United States who established significant ties to the United States through years of life in the United States deserve a chance to come home to reunite with loved ones through a fair and centralized process within the Department of Homeland Security.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","sponsors.0.party":"D","number":"39","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-07-31","cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/39/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/39/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/39/actions?format=json","latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/39/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/39?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"1388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5347)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"1389","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4271-4272)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"David Dorn Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-07-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sconres/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1390","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/18/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","request.billNumber":"18","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/18/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hconres/18/committees?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Establishing deadlines for the Joint Committee of Congress on the Library to approve or deny the statue of the Reverend William Franklin \"Billy\" Graham, Jr., for placement in the National Statuary Hall.","latestAction.text":"Referred to the Subcommittee on Oversight.","sponsors.0.party":"R","number":"18","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-06-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/18/cosponsors?format=json","sponsors.0.bioguideId":"M001156","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/18/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/18/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/18/actions?format=json","latestAction.actionDate":"2023-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/18/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sconres/18?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:23:53Z","latestAction_actionTime":"14:02:53"}} +{"type":"node","id":"1391","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2024-05-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","latestAction.actionDate":"2023-06-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"19:09:15"}} +{"type":"node","id":"1392","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-05-06","summaries.count":1,"sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z","latestAction_actionTime":"19:25:34"}} +{"type":"node","id":"1393","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/34/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"34","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/34/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/34/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States authorizing the Congress to prohibit the physical desecration of the flag of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"34","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/34/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/34/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/34/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/34/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/34/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/34?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-04-17T23:51:48Z","latestAction_actionTime":"19:24:47"}} +{"type":"node","id":"1394","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/29/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"29","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/29/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/29/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Michael Govan as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"29","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-04-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/29/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/29/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/29/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/29/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/29/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/29?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"14:10:38"}} +{"type":"node","id":"1395","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-04-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/33?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z","latestAction_actionTime":"18:20:30"}} +{"type":"node","id":"1396","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/32/text?format=json","relatedBills.count":6,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":27,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"32","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/32/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/32/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)\".","latestAction.text":"Failed of passage in Senate over veto by Yea-Nay Vote. 54 - 45. Record Vote Number: 5.","sponsors.0.party":"R","number":"32","cosponsors.countIncludingWithdrawnCosponsors":45,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/32/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/32/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/32/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/32/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/32/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-06-13","cosponsors.count":45,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/32?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:24:10Z"}} +{"type":"node","id":"1397","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","type":"S","title":"SPR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1398","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/30/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"30","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2284-2285)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/30/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/30/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the appointment of Antoinette Bush as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"30","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/30/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/30/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/30/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/30/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/30/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/30?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1399","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/28/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"28","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S959)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/28/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/28/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Roger W. Ferguson as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"28","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/28/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/28/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/28/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/28/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/28/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/28?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1400","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1626/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1626","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1626/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"ASK Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1626","request.format":"json","latestAction_actionDate":"2024-12-31","summaries.count":1,"sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1626/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-05-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1626?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:51:33Z","latestAction_actionTime":"10:10:26"}} +{"type":"node","id":"1401","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1627/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1627","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1627/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1627/committees?format=json","policyArea.name":"Taxation","title":"PRECEPT Nurses Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1627","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1627/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1627/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1627/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1627/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1627?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:08Z"}} +{"type":"node","id":"1402","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1625/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"1625","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1625/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1625/committees?format=json","policyArea.name":"Taxation","type":"S","title":"HITS Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1680-1681)","sponsors.0.party":"D","number":"1625","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1625/cosponsors?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1625/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1625/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1625/actions?format=json","latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1625/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1625?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2024-07-24T15:22:09Z"}} +{"type":"node","id":"1403","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1623/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1623","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1623/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fort Gordon Child Development Center Expansion Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1623","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1623/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1623/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1623/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1623?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1404","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1624/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2024-09-13T15:44:00Z","sponsors.0.isByRequest":"N","request.billNumber":"1624","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1624/committees?format=json","policyArea.name":"Health","type":"S","title":"Gabriella Miller Kids First Research Act 2.0","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 224.","sponsors.0.party":"D","number":"1624","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on October 4, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60715","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1624/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1624/summaries?format=json","cboCostEstimates.0.title":"S. 1624, Gabriella Miller Kids First Research Act 2.0","actions.url":"https://api.congress.gov/v3/bill/118/s/1624/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-10-04","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":15,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1624?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1405","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1622/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1622","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1622/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"End Speculative Oil and Gas Leasing Act of 2023","latestAction.text":"Committee on Energy and Natural Resources Subcommittee on Public Lands, Forests, and Mining. Hearings held.","sponsors.0.party":"D","number":"1622","request.format":"json","latestAction_actionDate":"2024-12-19","summaries.count":1,"sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1622/actions?format=json","latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1622/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-05-16","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1622?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1406","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1619/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1619","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1619/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1619/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Disrupt Fentanyl Trafficking Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1619","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1619/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1619/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1619/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1619/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1619?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1407","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1620/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1620","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Transportation and Infrastructure, and Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1620/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1620/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fort Gillem Defense Forensics Enhancement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1620","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1620/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1620/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1620/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1620?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1408","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1621/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1621","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1621/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1621/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Military Mental Health Professionals Support Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1621/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1621/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1621?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1409","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1616/text?format=json","relatedBills.count":1,"updateDate":"2025-01-15T21:06:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":14,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"1616","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1616/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1616/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Providing for consideration of the bill (H.R. 115) to amend chapter 8 of title 5, United States Code, to provide for en bloc consideration in resolutions of disapproval for \"midnight rules'', and for other purposes.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1616","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/886?format=json","sponsors.0.bioguideId":"B001248","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1616/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1616/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1616/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","latestAction.actionTime":"14:04:01","titles.count":2,"introducedDate":"2024-12-16","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1616?format=json","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-15T21:06:38Z","latestAction_actionTime":"14:04:01","committeeReports.0.citation":"H. Rept. 118-886"}} +{"type":"node","id":"1410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1618/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1618","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1618/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1618/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Employee Equity Investment Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"1618","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1618/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1618/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1618/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1618/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1618?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1411","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1617/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":7,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Bowman","sponsors.0.isByRequest":"N","request.billNumber":"1617","sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Energy and Commerce, Transportation and Infrastructure, Financial Services, Agriculture, the Judiciary, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1617/committees?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that it is the duty of the Federal Government to dramatically expand and strengthen the care economy.","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Energy and Commerce, Transportation and Infrastructure, Financial Services, Agriculture, the Judiciary, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1617","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1617/cosponsors?format=json","sponsors.0.bioguideId":"B001223","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1617/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1617/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1617/relatedbills?format=json","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":23,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1617?format=json","sponsors.0.district":16,"sponsors.0.firstName":"Jamaal","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1412","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 100.","policyArea.name":"Transportation and Public Works","type":"HRES","latestAction.text":"Placed on the House Calendar, Calendar No. 100.","sponsors.0.party":"D","number":"152","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/152/cosponsors?format=json","sponsors.0.bioguideId":"M000312","actions.url":"https://api.congress.gov/v3/bill/118/hres/152/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/152/relatedbills?format=json","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":2,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-872","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/152/text?format=json","updateDate":"2025-02-04T20:41:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"152","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/152/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/152/committees?format=json","title":"Supporting the goals and ideals of \"move over\" laws.","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/872?format=json","summaries.count":2,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/152/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/152/summaries?format=json","introducedDate":"2023-02-24","subjects.count":5,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/152?format=json","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2025-02-04T20:41:13Z"}} +{"type":"node","id":"1413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1615/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"1615","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/s/1615/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1615/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Regulatory Accountability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1615","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1615/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1615/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1615/actions?format=json","latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1615/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1615?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1414","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1614/text?format=json","updateDate":"2024-12-20T19:17:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pappas","sponsors.0.isByRequest":"N","request.billNumber":"1614","sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1614/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1614/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HRES","title":"Expressing support for the recognition of December 2024 as \"National Impaired Driving Prevention Month\", and promoting efforts to help prevent tragic and preventable crashes, deaths, and injuries caused by impaired driving.","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"1614","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1614/cosponsors?format=json","sponsors.0.bioguideId":"P000614","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1614/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1614/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1614/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","titles.count":2,"introducedDate":"2024-12-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1614?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-12-20T19:17:44Z"}} +{"type":"node","id":"1415","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1612/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1612","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1612/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1612/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reimburse Veterans for Domiciliary Care Act","latestAction.text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-217.","sponsors.0.party":"I","number":"1612","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-12-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1612/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1612/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1612/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1612/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1612?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:05:17Z","latestAction_actionTime":"14:17:40"}} +{"type":"node","id":"1416","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1613/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1613","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/s/1613/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1613/subjects?format=json","policyArea.name":"Agriculture and Food","title":"Feral Swine Eradication Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1613","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1613/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1613/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1613/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1613/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1613/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1613?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1417","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1611/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1611","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1611/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1611/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Community Connect Grant Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1611","request.format":"json","latestAction_actionDate":"2024-12-09","summaries.count":1,"sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1611/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1611/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1611?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"15:39:49"}} +{"type":"node","id":"1418","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1610/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1610","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1610/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1610/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Protecting Service Members and Military Families’ Access to Reproductive Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1610","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2024-12-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1610/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1610/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1610/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1610/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":33,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1610?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1419","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1609/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1609","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Without objection, the motion to reconsider is laid upon the table.","committees.url":"https://api.congress.gov/v3/bill/118/s/1609/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1609/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Support Our Election Workers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1609","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-12-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1609/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1609/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1609/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1609/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1609/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1609?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"18:13:04"}} +{"type":"node","id":"1420","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1386/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1386","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/s/1386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1386/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Vieques Recovery and Redevelopment Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1386","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1386/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1386/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1386/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1386?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1421","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1391/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Walberg","sponsors.0.isByRequest":"N","request.billNumber":"1391","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1391/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1391/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Congratulating the American Motorcyclist Association on their 100th Anniversary.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1391","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1391/cosponsors?format=json","sponsors.0.bioguideId":"W000798","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1391/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1391/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1391/actions?format=json","latestAction.actionDate":"2024-07-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":2,"introducedDate":"2024-07-25","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1391?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1422","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1388/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"1388","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1388/subjects?format=json","policyArea.name":"Transportation and Public Works","title":"UAS Integration Research Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1388","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1388/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1388/actions?format=json","latestAction.actionDate":"2023-05-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1388?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1423","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1387/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"1387","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Transportation and Infrastructure, the Judiciary, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1387/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1387/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Recognizing the importance of independent living and economic self-sufficiency for individuals with disabilities made possible by the Americans with Disabilities Act of 1990 and calling for further action to strengthen and expand opportunities for individuals with disabilities to participate in work and community life.","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Transportation and Infrastructure, the Judiciary, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1387","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1387/cosponsors?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1387/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1387/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1387/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-25","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":2,"introducedDate":"2024-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1387?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1424","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1389/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1389","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/s/1389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1389/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Rural Housing Service Reform Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1389","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1389/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1389/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1389/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1389/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1389?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1425","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1367/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Stabenow","sponsors.0.isByRequest":"N","request.billNumber":"1367","sponsors.0.url":"https://api.congress.gov/v3/member/S000770?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1367/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1367/subjects?format=json","policyArea.name":"Health","type":"S","title":"HELLPP Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1367","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1367/cosponsors?format=json","sponsors.0.bioguideId":"S000770","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1367/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1367/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1367/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Stabenow, Debbie [D-MI]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":6,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1367?format=json","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-11-09T01:57:56Z","latestAction_actionTime":"21:23:21"}} +{"type":"node","id":"1426","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1376","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1376/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1376/committees?format=json","policyArea.name":"Law","type":"S","title":"Forced Arbitration Injustice Repeal Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1376","cosponsors.countIncludingWithdrawnCosponsors":39,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1376/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1376/actions?format=json","latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1376/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":39,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-16T06:06:22Z","latestAction_actionTime":"21:16:52"}} +{"type":"node","id":"1427","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1346/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1346","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Motion to Discharge Committee filed by Ms. Wild. Petition No: 118-15. (Discharge petition text with signatures.)","committees.url":"https://api.congress.gov/v3/bill/118/s/1346/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1346/subjects?format=json","policyArea.name":"Health","type":"S","title":"Improving Mental Health Access from the Emergency Department Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1346","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1346/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1346/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1346/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1346/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1346/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1346?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1428","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1383/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1383","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1383/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1383/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"HEAR Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1383","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1383/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1383/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1383/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1383?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:22:28Z"}} +{"type":"node","id":"1429","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1382/text?format=json","updateDate":"2024-11-09T01:57:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1382","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1382/subjects?format=json","policyArea.name":"Law","type":"S","title":"Protecting Our Supreme Court Justices Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1382","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1382/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1382/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1382/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1382?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:39Z"}} +{"type":"node","id":"1430","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1384/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"1384","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/s/1384/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1384/subjects?format=json","policyArea.name":"Health","title":"Living Donor Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1384","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1384/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1384/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1384/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":43,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1384?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1431","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1385/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"1385","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/s/1385/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1385/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Recreation for All Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1385","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1385/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1385/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1385/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1385?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1432","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1381/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"DeGette","sponsors.0.isByRequest":"N","request.billNumber":"1381","sponsors.0.url":"https://api.congress.gov/v3/member/D000197?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1381/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1381/subjects?format=json","policyArea.name":"Sports and Recreation","type":"HRES","title":"Commemorating the past success of the United States Olympic and Paralympic Teams and supporting the United States Olympic and Paralympic Teams in the 2024 Olympic and Paralympic Summer Games.","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1381","cosponsors.countIncludingWithdrawnCosponsors":69,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1381/cosponsors?format=json","sponsors.0.bioguideId":"D000197","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1381/actions?format=json","latestAction.actionDate":"2024-07-24","textVersions.count":1,"sponsors.0.fullName":"Rep. DeGette, Diana [D-CO-1]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":69,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1381?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Diana","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1433","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1370/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1370","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1370/subjects?format=json","policyArea.name":"Commerce","title":"PREPARE Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"1370","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1370/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1370/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1370/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1370?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:16:56Z","latestAction_actionTime":"10:53:09"}} +{"type":"node","id":"1434","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1380/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Salinas","sponsors.0.isByRequest":"N","request.billNumber":"1380","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1380/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1380/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Supporting the designation of July 20, 2024 as \"National Moon Day\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1380","request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"sponsors.0.bioguideId":"S001226","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1380/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1380/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1380/actions?format=json","latestAction.actionDate":"2024-07-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":2,"introducedDate":"2024-07-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1380?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1435","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1379/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T21:04:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"1379","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1379/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1379/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Impeaching Kamala Devi Harris, Vice President of the United States, for high crimes and misdemeanors.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1379","request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"sponsors.0.bioguideId":"O000175","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1379/actions?format=json","latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1379/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":2,"introducedDate":"2024-07-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1379?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-01-17T21:04:35Z"}} +{"type":"node","id":"1436","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1378/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1378","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1378/subjects?format=json","policyArea.name":"Health","type":"S","title":"Connecting Our Medical Providers with Links to Expand Tailored and Effective Care","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1378","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1378/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1378/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1378/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1378?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-07-24T15:22:28Z"}} +{"type":"node","id":"1437","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1377/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:25Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1377","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1377/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1377/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Visitable Inclusive Tax credits for Accessible Living (VITAL) Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1377","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1377/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1377/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1377/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1377?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:22:25Z"}} +{"type":"node","id":"1438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"1375","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1375/committees?format=json","policyArea.name":"Health","title":"HELP Copays Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1375","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1375/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1375/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":25,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1375?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1439","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"19:17:12"}} +{"type":"node","id":"1440","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1148/text?format=json","relatedBills.count":1,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Walberg","sponsors.0.isByRequest":"N","request.billNumber":"1148","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1148/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1148/committees?format=json","policyArea.name":"Energy","type":"HR","title":"Critical Electric Infrastructure Cybersecurity Incident Reporting Act","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1148","request.format":"json","latestAction_actionDate":"2024-04-15","summaries.count":1,"sponsors.0.bioguideId":"W000798","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1148/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1148/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1148/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1148/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":3,"introducedDate":"2023-02-21","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1148?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 1148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by enhancing energy sector cybersecurity incident\ninformation sharing.\n[Page H868]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1441","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Thompson","cboCostEstimates.0.pubDate":"2023-06-13T20:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Agriculture and Food","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 293.","sponsors.0.party":"R","number":"1147","amendments.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1147/cosponsors?format=json","sponsors.0.bioguideId":"T000467","actions.url":"https://api.congress.gov/v3/bill/118/hr/1147/actions?format=json","latestAction.actionDate":"2023-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1147/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1147/amendments?format=json","titles.count":6,"cosponsors.count":134,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-131","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1147/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"1147","sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1147/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1147/subjects?format=json","title":"Whole Milk for Healthy Kids Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 6, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":134,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59266","request.format":"json","latestAction_actionDate":"2024-04-15","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/131?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1147/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1147/summaries?format=json","cboCostEstimates.0.title":"H.R. 1147, Whole Milk for Healthy Kids Act of 2023","introducedDate":"2023-02-21","subjects.count":7,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1147?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 1147.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nAllowing additional milk varieties into school lunch\n[Page H868]\n","sponsors.0.district":15,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1442","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1145/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Courtney","sponsors.0.isByRequest":"N","request.billNumber":"1145","sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1145/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1145/subjects?format=json","policyArea.name":"Education","type":"HRES","title":"Recognizing the significance of \"Community College Month\" in April as a celebration of more than 1,000 institutions throughout the United States supporting access to higher education, workforce training, and more broadly sustaining and advancing the Nation's economic prosperity.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1145","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2024-04-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1145/cosponsors?format=json","sponsors.0.bioguideId":"C001069","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1145/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1145/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1145/actions?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1145/relatedbills?format=json","sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","titles.count":2,"introducedDate":"2024-04-15","cosponsors.count":18,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"CT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1145?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1443","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1146/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Norton","sponsors.0.isByRequest":"N","request.billNumber":"1146","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1146/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1146/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Recognizing the enduring cultural and historical significance of emancipation in the Nation's capital on the anniversary of President Abraham Lincoln's signing of the District of Columbia Compensated Emancipation Act, which established the \"first freed\" on April 16, 1862, and celebrating passage of the District of Columbia statehood bill in the House of Representatives.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1146","request.format":"json","sponsors.0.middleName":"Holmes","latestAction_actionDate":"2024-04-15","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1146/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1146/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1146/actions?format=json","latestAction.actionDate":"2024-04-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1146/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2024-04-15","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1146?format=json","sponsors.0.firstName":"Eleanor","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1444","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1136/text?format=json","relatedBills.count":3,"updateDate":"2024-11-12T17:04:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wexton","sponsors.0.isByRequest":"N","request.billNumber":"1136","sponsors.0.url":"https://api.congress.gov/v3/member/W000825?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1136/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1136/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for designation of the month of April 2024 as \"Parkinson's Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1136","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2024-04-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1136/cosponsors?format=json","sponsors.0.bioguideId":"W000825","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1136/actions?format=json","latestAction.actionDate":"2024-04-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1136/relatedbills?format=json","sponsors.0.fullName":"Rep. Wexton, Jennifer [D-VA-10]","titles.count":2,"introducedDate":"2024-04-11","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1136?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-11-12T17:04:57Z"}} +{"type":"node","id":"1445","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1137/text?format=json","relatedBills.count":9,"updateDate":"2024-11-09T04:56:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"1137","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1137/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for consideration of the bill (H.R. 7888) to reform the Foreign Intelligence Surveillance Act of 1978; providing for consideration of the bill (H.R. 529) to extend the customs waters of the United States from 12 nautical miles to 24 nautical miles from the baselines of the United States, consistent with Presidential Proclamation 7219; providing for consideration of the resolution (H. Res. 1112) denouncing the Biden administration's immigration policies; and providing for consideration of the resolution (H. Res. 1117) opposing efforts to place one-sided pressure on Israel with respect to Gaza.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1137","request.format":"json","latestAction_actionDate":"2024-04-12","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/456?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1137/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1137/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1137/actions?format=json","latestAction.actionDate":"2024-04-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1137/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","latestAction.actionTime":"09:35:51","titles.count":2,"introducedDate":"2024-04-12","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1137?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-11-09T04:56:39Z","latestAction_actionTime":"09:35:51","committeeReports.0.citation":"H. Rept. 118-456"}} +{"type":"node","id":"1446","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","latestAction_text":"Rule H. Res. 1137 passed House.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Rule H. Res. 1137 passed House.","sponsors.0.party":"R","number":"1117","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1117/cosponsors?format=json","sponsors.0.bioguideId":"S000168","actions.url":"https://api.congress.gov/v3/bill/118/hres/1117/actions?format=json","latestAction.actionDate":"2024-04-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1117/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":2,"cosponsors.count":29,"request.contentType":"application/json","latestAction_actionTime":"09:35:51","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1117/text?format=json","updateDate":"2024-11-09T04:56:39Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":7,"request.billNumber":"1117","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1117/committees?format=json","title":"Opposing efforts to place one-sided pressure on Israel with respect to Gaza.","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2024-04-12","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1117/summaries?format=json","latestAction.actionTime":"09:35:51","introducedDate":"2024-04-09","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1117?format=json","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-11-09T04:56:39Z"}} +{"type":"node","id":"1447","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1139/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"1139","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1139/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1139/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Acknowledging April 17, 2024, as the 500th anniversary of the discovery of New York Bay by Giovanni da Verrazzano.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1139","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-04-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1139/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1139/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1139/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1139/actions?format=json","latestAction.actionDate":"2024-04-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":2,"introducedDate":"2024-04-12","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1139?format=json","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1448","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1142/text?format=json","updateDate":"2025-01-03T21:49:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wilson","sponsors.0.isByRequest":"N","request.billNumber":"1142","sponsors.0.url":"https://api.congress.gov/v3/member/W000808?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1142/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1142/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Recognizing the Tenth Anniversary of the Chibok Girls Kidnapping by the Boko Haram Terrorist Organization and calling on the Government of Nigeria to redouble efforts to bring an end to the conflict in northeast and central Nigeria and to provide assistance to the victims.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1142","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-04-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1142/cosponsors?format=json","sponsors.0.bioguideId":"W000808","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1142/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1142/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1142/actions?format=json","latestAction.actionDate":"2024-04-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Wilson, Frederica S. [D-FL-24]","titles.count":2,"introducedDate":"2024-04-12","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1142?format=json","sponsors.0.district":24,"sponsors.0.firstName":"Frederica","updateDateIncludingText":"2025-01-03T21:49:24Z"}} +{"type":"node","id":"1449","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 8.","sponsors.0.party":"R","number":"1141","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1141/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/1141/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1141/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":4,"cosponsors.count":41,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-15","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1141/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1141","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1141/subjects?format=json","title":"Natural Gas Tax Repeal Act","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","latestAction_actionDate":"2024-04-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/15?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1141/summaries?format=json","introducedDate":"2023-02-21","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing the natural gas tax.\n[Page H868]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1450","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1138/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:49:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"D'Esposito","sponsors.0.isByRequest":"N","request.billNumber":"1138","sponsors.0.url":"https://api.congress.gov/v3/member/D000632?format=json","latestAction_text":"Referred to the House Committee on Rules.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1138/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1138/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Upholding the Integrity of Our Institution Resolution","latestAction.text":"Referred to the House Committee on Rules.","sponsors.0.party":"R","number":"1138","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-04-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1138/cosponsors?format=json","sponsors.0.bioguideId":"D000632","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1138/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1138/actions?format=json","latestAction.actionDate":"2024-04-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1138/relatedbills?format=json","sponsors.0.fullName":"Rep. D'Esposito, Anthony [R-NY-4]","titles.count":3,"introducedDate":"2024-04-12","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1138?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Anthony","updateDateIncludingText":"2024-06-11T15:49:45Z"}} +{"type":"node","id":"1451","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1140/text?format=json","updateDate":"2024-12-02T21:54:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Phillips","sponsors.0.isByRequest":"N","request.billNumber":"1140","sponsors.0.url":"https://api.congress.gov/v3/member/P000616?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1140/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1140/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HRES","title":"Recognizing the exemplary service of General Mark Milley, United States Army, 20th Chairman of the Joint Chiefs of Staff, and his wife, Hollyanne Milley, a registered nurse of 36 years and military community leader.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"1140","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1140/cosponsors?format=json","sponsors.0.bioguideId":"P000616","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1140/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1140/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1140/actions?format=json","latestAction.actionDate":"2024-04-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Phillips, Dean [D-MN-3]","titles.count":2,"introducedDate":"2024-04-12","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1140?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Dean","updateDateIncludingText":"2024-12-02T21:54:04Z"}} +{"type":"node","id":"1452","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1133/text?format=json","updateDate":"2024-07-09T18:28:41Z","originChamber":"House","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"1133","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1133/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1133","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-04-11","sponsors.0.bioguideId":"S001196","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1133/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1133/actions?format=json","latestAction.actionDate":"2024-04-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","latestAction.actionTime":"09:07:15","titles.count":2,"introducedDate":"2024-04-11","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1133?format=json","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2024-07-09T18:28:41Z","latestAction_actionTime":"09:07:15"}} +{"type":"node","id":"1453","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1135/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Takano","sponsors.0.isByRequest":"N","request.billNumber":"1135","sponsors.0.url":"https://api.congress.gov/v3/member/T000472?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1135/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1135/subjects?format=json","policyArea.name":"Education","type":"HRES","title":"Supporting the goals and ideals of the Rise Up for LGBTQI+ Youth in Schools Initiative, a call to action to communities across the country to demand equal educational opportunity, basic civil rights protections, and freedom from erasure for all students, particularly LGBTQI+ young people, in K-12 schools.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"1135","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2024-04-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1135/cosponsors?format=json","sponsors.0.bioguideId":"T000472","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1135/actions?format=json","latestAction.actionDate":"2024-04-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1135/relatedbills?format=json","sponsors.0.fullName":"Rep. Takano, Mark [D-CA-39]","titles.count":2,"introducedDate":"2024-04-11","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1135?format=json","sponsors.0.district":39,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1454","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1134/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stevens","sponsors.0.isByRequest":"N","request.billNumber":"1134","sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1134/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1134/subjects?format=json","policyArea.name":"Commerce","type":"HRES","title":"Expressing support for the designation of April 11, 2024, as \"Remanufacturing Day\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1134","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-04-11","summaries.count":1,"sponsors.0.bioguideId":"S001215","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1134/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1134/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1134/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-11","sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","titles.count":2,"introducedDate":"2024-04-11","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1134?format=json","sponsors.0.district":11,"sponsors.0.firstName":"Haley","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1455","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1126/text?format=json","relatedBills.count":3,"updateDate":"2024-09-05T13:29:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"1126","sponsors.0.url":"https://api.congress.gov/v3/member/J000299?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1126/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Authorizing video recording in the House Chamber during a joint meeting of Congress for certain educational purposes.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1126","request.format":"json","latestAction_actionDate":"2024-04-10","sponsors.0.bioguideId":"J000299","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1126/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1126/actions?format=json","latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1126/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Mike [R-LA-4]","latestAction.actionTime":"14:29:50","titles.count":2,"introducedDate":"2024-04-10","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1126?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-09-05T13:29:07Z","latestAction_actionTime":"14:29:50"}} +{"type":"node","id":"1456","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1125/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1125","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1125/subjects?format=json","policyArea.name":"Education","type":"HR","title":"STUDENT Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1125","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-04-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1125/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-02-21","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require disclosure of the total amount of interest that\nwould be paid over the life of a loan for certain Federal\nstudent loans.\n[Page H867]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2025-02-04T16:28:27Z","latestAction_actionTime":"14:18:36"}} +{"type":"node","id":"1457","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1132/text?format=json","updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"1132","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1132/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Transparent and Accessible Sanctions Coordinating Office Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1132","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-04-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1132/cosponsors?format=json","sponsors.0.bioguideId":"K000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1132/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":3,"introducedDate":"2023-02-21","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1132?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:22:51Z"}} +{"type":"node","id":"1458","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1127/text?format=json","relatedBills.count":1,"updateDate":"2024-09-10T08:05:38Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bera","sponsors.0.isByRequest":"N","request.billNumber":"1127","sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1127/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Reaffirming the United States commitment to Taiwan and recognizing the 45th anniversary of the enactment of the Taiwan Relations Act.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1127","cosponsors.countIncludingWithdrawnCosponsors":76,"request.format":"json","latestAction_actionDate":"2024-04-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1127/cosponsors?format=json","sponsors.0.bioguideId":"B001287","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1127/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1127/actions?format=json","latestAction.actionDate":"2024-04-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1127/relatedbills?format=json","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":76,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1127?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Ami","updateDateIncludingText":"2024-09-10T08:05:38Z"}} +{"type":"node","id":"1459","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1131/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Thanedar","sponsors.0.isByRequest":"N","request.billNumber":"1131","sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1131/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1131","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2024-04-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1131/cosponsors?format=json","sponsors.0.bioguideId":"T000488","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1131/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1131/actions?format=json","latestAction.actionDate":"2024-04-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":23,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","sponsors.0.district":13,"sponsors.0.firstName":"Shri","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1460","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/874/text?format=json","updateDate":"2024-12-06T16:59:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"874","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H5940-5941)","committees.url":"https://api.congress.gov/v3/bill/118/hres/874/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/874/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","latestAction.text":"Sponsor introductory remarks on measure. (CR H5940-5941)","sponsors.0.party":"D","number":"874","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2023-11-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/874/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/874/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/874/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/874/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-29","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/874?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-06T16:59:43Z"}} +{"type":"node","id":"1461","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","relatedBills.count":5,"updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Sponsor introductory remarks on measure. (H5971)","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-11-29","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1462","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/888/text?format=json","updateDate":"2024-07-24T15:19:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"888","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/888/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/888/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Reaffirming the State of Israel's right to exist.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"888","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/888/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/888/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/888/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/888/actions?format=json","latestAction.actionDate":"2023-11-28","textVersions.count":2,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","latestAction.actionTime":"19:34:48","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":27,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/888?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:19:47Z","latestAction_actionTime":"19:34:48"}} +{"type":"node","id":"1463","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/793/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"793","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/s/793/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/793/committees?format=json","policyArea.name":"Health","type":"S","title":"Prevent Interruptions in Physical Therapy Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"793","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/793/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/793/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/793/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":16,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/793?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-02-14T16:56:14Z","latestAction_actionTime":"19:09:47"}} +{"type":"node","id":"1464","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/683/text?format=json","relatedBills.count":1,"updateDate":"2024-11-20T21:55:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"De La Cruz","sponsors.0.isByRequest":"N","request.billNumber":"683","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/683/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/683/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Expressing support for the diplomatic relations required to encourage the Government of Mexico to fulfill its water deliveries on an annual basis to the United States under the treaty between the United States and Mexico regarding the utilization of the Colorado and Tijuana Rivers and of the Rio Grande.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"683","cosponsors.countIncludingWithdrawnCosponsors":52,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/683/cosponsors?format=json","sponsors.0.bioguideId":"D000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/683/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/683/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","latestAction.actionTime":"18:36:19","titles.count":2,"introducedDate":"2023-09-13","cosponsors.count":52,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/683?format=json","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2024-11-20T21:55:32Z","latestAction_actionTime":"18:36:19"}} +{"type":"node","id":"1465","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"NOTIFICATION OF INTENT TO OFFER RESOLUTION - Mr. Robert Garcia (CA) notified the House of his intent to offer a privileged resolution pursuant to clause 2(a)(1) of rule IX. The Chair announced that a determination will be made at the time designated for consideration of the resolution.","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Preventive Health Savings Act","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z","latestAction_actionTime":"14:03:20"}} +{"type":"node","id":"1466","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/893/text?format=json","relatedBills.count":3,"updateDate":"2024-12-10T17:54:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bonamici","sponsors.0.isByRequest":"N","request.billNumber":"893","sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hres/893/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/893/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HRES","title":"Designating November 2023 as \"National Homeless Children and Youth Awareness Month\".","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"893","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/893/cosponsors?format=json","sponsors.0.bioguideId":"B001278","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/893/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/893/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/893/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/893/relatedbills?format=json","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","titles.count":2,"introducedDate":"2023-11-28","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/893?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Suzanne","updateDateIncludingText":"2024-12-10T17:54:41Z"}} +{"type":"node","id":"1467","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/892/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bonamici","sponsors.0.isByRequest":"N","request.billNumber":"892","sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hres/892/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/892/subjects?format=json","policyArea.name":"Education","type":"HRES","title":"Expressing support for a whole child approach to education and recognizing the role of parents, educators, and community members in providing a whole child approach to education for each student.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"892","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/892/cosponsors?format=json","sponsors.0.bioguideId":"B001278","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/892/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/892/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/892/actions?format=json","latestAction.actionDate":"2023-11-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/892/relatedbills?format=json","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","titles.count":2,"introducedDate":"2023-11-28","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/892?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Suzanne","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1468","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/895/text?format=json","updateDate":"2024-12-18T16:00:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"895","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hres/895/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/895/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Condemning calls from Members of Congress for the expulsion of Palestinians from the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"895","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/895/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/895/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/895/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/895/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":2,"introducedDate":"2023-11-28","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/895?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-18T16:00:09Z"}} +{"type":"node","id":"1469","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/885/text?format=json","updateDate":"2024-07-24T15:19:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzpatrick","sponsors.0.isByRequest":"N","request.billNumber":"885","sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/885/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/885/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Condemning Hamas' use of human shields as a contravention of international humanitarian law and a heinous violation of the rights and dignity of civilian noncombatants.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"885","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/885/cosponsors?format=json","sponsors.0.bioguideId":"F000466","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/885/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/885/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/885/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/885?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-07-24T15:19:49Z"}} +{"type":"node","id":"1470","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/890/text?format=json","relatedBills.count":1,"updateDate":"2024-12-26T16:42:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"890","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on Rules.","committees.url":"https://api.congress.gov/v3/bill/118/hres/890/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/890/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Amending the Rules of the House of Representatives to establish the Committee on the Elimination of Nonessential Federal Programs.","latestAction.text":"Referred to the House Committee on Rules.","sponsors.0.party":"R","number":"890","request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"sponsors.0.bioguideId":"O000175","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/890/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/890/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/890/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-21","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":2,"introducedDate":"2023-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/890?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2024-12-26T16:42:34Z"}} +{"type":"node","id":"1471","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/889/text?format=json","updateDate":"2024-11-20T20:13:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"889","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/889/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/889/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Condemning the Hamas-led terrorist attack on the State of Israel on October 7, 2023, and calling for Hamas to immediately and unconditionally surrender, cease its attacks, and safely release all hostages.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"889","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/889/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/889/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/889/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/889/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/889?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-20T20:13:55Z"}} +{"type":"node","id":"1472","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/886/text?format=json","relatedBills.count":3,"updateDate":"2024-11-25T19:31:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"886","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hres/886/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/886/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Supporting the goals and principles of Transgender Day of Remembrance by recognizing the epidemic of violence toward transgender people and memorializing the lives lost this year.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"886","cosponsors.countIncludingWithdrawnCosponsors":63,"request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/886/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/886/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/886/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/886/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/886/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-21","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":63,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/886?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2024-11-25T19:31:15Z"}} +{"type":"node","id":"1473","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/881/text?format=json","relatedBills.count":1,"updateDate":"2024-08-17T08:05:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"881","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hres/881/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/881/subjects?format=json","policyArea.name":"Animals","type":"HRES","title":"Commemorating the 50th anniversary of the passage of the Endangered Species Act of 1973.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"881","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/881/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/881/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/881/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/881/relatedbills?format=json","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":55,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/881?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-17T08:05:26Z"}} +{"type":"node","id":"1474","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/884/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzgerald","sponsors.0.isByRequest":"N","request.billNumber":"884","sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/884/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/884/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HRES","title":"Honoring the victims of the devastating attack that took place at the Waukesha, Wisconsin, Christmas parade on November 21, 2021.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"884","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/884/cosponsors?format=json","sponsors.0.bioguideId":"F000471","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/884/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/884/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/884/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/884?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1475","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/887/text?format=json","updateDate":"2024-11-20T20:33:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lamborn","sponsors.0.isByRequest":"N","request.billNumber":"887","sponsors.0.url":"https://api.congress.gov/v3/member/L000564?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/887/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/887/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Calling on the people of the United States to observe a weekend of prayer and reflection for the people of Israel, for all civilians caught in the crossfires of the war, and for the safe return of the hostages.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"887","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/887/cosponsors?format=json","sponsors.0.bioguideId":"L000564","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/887/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/887/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/887/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Lamborn, Doug [R-CO-5]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/887?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Doug","updateDateIncludingText":"2024-11-20T20:33:45Z"}} +{"type":"node","id":"1476","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/867/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"867","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/867/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/867/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"National Commission on Renaming the J. Edgar Hoover FBI Headquarters Building Act of 2023","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"867","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-11-17","summaries.count":1,"sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/867/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/867?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 867.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo establish a commission to redesignate the J. Edgar\nHoover F.B.I. Building.\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"1477","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/876/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lesko","sponsors.0.isByRequest":"N","request.billNumber":"876","sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/876/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/876/subjects?format=json","policyArea.name":"Immigration","title":"Border Crisis Prevention Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"876","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/876/cosponsors?format=json","sponsors.0.bioguideId":"L000589","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/876/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/876/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/876/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/876?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 876.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nBorder Security\n[Page H781]\n","sponsors.0.district":8,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"1478","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/875/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"ADERHOLT","sponsors.0.isByRequest":"N","request.billNumber":"875","sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hres/875/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/875/subjects?format=json","policyArea.name":"Families","type":"HRES","title":"Expressing support for the goals of National Adoption Day and National Adoption Month by promoting national awareness of adoption and the children awaiting families, celebrating children and families involved in adoption, and encouraging the people of the United States to secure safety, permanency, and well-being for all children.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"875","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/875/cosponsors?format=json","sponsors.0.bioguideId":"A000055","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/875/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/875/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/875/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/875/relatedbills?format=json","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":31,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/875?format=json","sponsors.0.district":4,"sponsors.0.firstName":"ROBERT","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1479","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/879/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"879","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/879/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/879/committees?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Andrew Jackson Statue Removal Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"879","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/879/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/879/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/879/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/879/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/879/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/879?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 879.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nto require the Secretary of the Interior to remove the\nAndrew Jackson statue and marble base in Lafayette Square in\nthe District of Columbia.\n[Page H782]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"1480","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/649/text?format=json","updateDate":"2024-07-24T15:20:53Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"649","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hres/649/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/649/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Calling on the United States to champion a regional artificial intelligence strategy in the Americas to foster inclusive artificial intelligence systems that combat biases within marginalized groups and promote social justice, economic well-being, and democratic values.","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"649","request.format":"json","latestAction_actionDate":"2023-08-08","summaries.count":1,"sponsors.0.bioguideId":"E000297","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/649/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/649/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/649/actions?format=json","latestAction.actionDate":"2023-08-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":2,"introducedDate":"2023-08-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/649?format=json","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2024-07-24T15:20:53Z"}} +{"type":"node","id":"1481","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"1482","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/639/text?format=json","updateDate":"2024-12-19T16:02:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Crockett","sponsors.0.isByRequest":"N","request.billNumber":"639","sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hres/639/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/639/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Supporting the goals and ideals of \"Minority Mental Health Awareness Month\" and recognizing the disproportionate impacts of mental health conditions and struggles on minority populations and communities.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"639","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/639/cosponsors?format=json","sponsors.0.bioguideId":"C001130","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/639/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/639/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/639/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-04","sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","titles.count":2,"introducedDate":"2023-08-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/639?format=json","sponsors.0.district":30,"sponsors.0.firstName":"Jasmine","updateDateIncludingText":"2024-12-19T16:02:23Z"}} +{"type":"node","id":"1483","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/647/text?format=json","relatedBills.count":6,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"647","sponsors.0.url":"https://api.congress.gov/v3/member/J000292?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/647/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/647/committees?format=json","policyArea.name":"Energy","type":"HR","title":"Unlocking our Domestic LNG Potential Act of 2023","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"647","request.format":"json","latestAction_actionDate":"2023-08-04","summaries.count":1,"sponsors.0.bioguideId":"J000292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/647/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/647/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/647/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/647/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-10","sponsors.0.fullName":"Rep. Johnson, Bill [R-OH-6]","titles.count":3,"introducedDate":"2023-01-31","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/647?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Ohio:\nH.R. 647.\nCongress has the power to enact this legislation pursuant\nto the following:\nPurusant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution.\nArticle I, Section 8\nThe single subject of this legislation is:\nModify Natural Gas Act to remove LNG export permitting\nprocess\n[Page H577]\n","sponsors.0.district":6,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1484","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/644/text?format=json","updateDate":"2024-12-04T22:37:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Boyle","sponsors.0.isByRequest":"N","request.billNumber":"644","sponsors.0.url":"https://api.congress.gov/v3/member/B001296?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hres/644/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/644/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Calling on the Judicial Conference of the United States to authorize that the trial of former President Donald J. Trump for his alleged crimes related to his efforts to overturn the 2020 election and his role in the January 6, 2021, insurrection be broadcast to the American public.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"644","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/644/cosponsors?format=json","sponsors.0.bioguideId":"B001296","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/644/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/644/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/644/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"sponsors.0.fullName":"Rep. Boyle, Brendan F. [D-PA-2]","titles.count":2,"introducedDate":"2023-08-04","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/644?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Brendan","updateDateIncludingText":"2024-12-04T22:37:05Z"}} +{"type":"node","id":"1485","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/648/text?format=json","updateDate":"2024-11-13T22:38:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"648","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/648/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/648/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Reaffirming the close partnership between the United States and the Republic of Kosovo.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"648","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/648/cosponsors?format=json","sponsors.0.bioguideId":"T000486","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/648/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/648/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/648/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":2,"introducedDate":"2023-08-04","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/648?format=json","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-11-13T22:38:26Z"}} +{"type":"node","id":"1486","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/646/text?format=json","updateDate":"2024-11-20T17:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DelBene","sponsors.0.isByRequest":"N","request.billNumber":"646","sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hres/646/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/646/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"D","number":"646","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-08-04","summaries.count":1,"sponsors.0.bioguideId":"D000617","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/646/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/646/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/646/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","titles.count":2,"introducedDate":"2023-08-04","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Suzan","updateDateIncludingText":"2024-11-20T17:21:20Z"}} +{"type":"node","id":"1487","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/642/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Casten","sponsors.0.isByRequest":"N","request.billNumber":"642","sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/642/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/642/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Restoring Judicial Separation of Powers Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"642","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/642/cosponsors?format=json","sponsors.0.bioguideId":"C001117","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/642/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/642/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/642/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/642?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 642.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nReforms the Supreme Court of the United States\n[Page H577]\n","sponsors.0.district":6,"sponsors.0.firstName":"Sean","updateDateIncludingText":"2024-07-24T15:23:55Z"}} +{"type":"node","id":"1488","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/643/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Casten","sponsors.0.isByRequest":"N","request.billNumber":"643","sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/643/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/643/subjects?format=json","policyArea.name":"Congress","title":"Equal Voices Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"643","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/643/cosponsors?format=json","sponsors.0.bioguideId":"C001117","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/643/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/643/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/643/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/643?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 643.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Reform\n[Page H577]\n","sponsors.0.district":6,"sponsors.0.firstName":"Sean","updateDateIncludingText":"2025-01-09T17:27:13Z"}} +{"type":"node","id":"1489","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/641/text?format=json","updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"641","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/641/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/641/subjects?format=json","policyArea.name":"Private Legislation","type":"HR","title":"For the relief of Reverend Olusegun Samson Olaoye.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"641","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-08-01","summaries.count":1,"sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/641/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/641/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/641/actions?format=json","latestAction.actionDate":"2023-01-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":2,"introducedDate":"2023-01-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/641?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 641.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nImmigration Private Bill\n[Page H511]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"1490","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/632/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Norman","sponsors.0.isByRequest":"N","request.billNumber":"632","sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/632/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/632/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Ensuring Accurate and Complete Abortion Data Reporting Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"632","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/632/cosponsors?format=json","sponsors.0.bioguideId":"N000190","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/632/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/632/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/632/actions?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/632/relatedbills?format=json","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":36,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/632?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 632.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nIncentivize the reporting of abortion data to the Centers\nfor Disease Control and Prevention\n[Page H511]\n","sponsors.0.district":5,"sponsors.0.firstName":"Ralph","updateDateIncludingText":"2024-07-24T15:23:56Z"}} +{"type":"node","id":"1491","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/631/text?format=json","updateDate":"2024-07-24T15:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Veasey","sponsors.0.isByRequest":"N","request.billNumber":"631","sponsors.0.url":"https://api.congress.gov/v3/member/V000131?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hres/631/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/631/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"D","number":"631","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-28","summaries.count":1,"sponsors.0.bioguideId":"V000131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/631/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/631/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/631/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Veasey, Marc A. [D-TX-33]","titles.count":2,"introducedDate":"2023-07-27","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/631?format=json","sponsors.0.district":33,"sponsors.0.firstName":"Marc","updateDateIncludingText":"2024-07-24T15:21:20Z"}} +{"type":"node","id":"1492","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/617/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"617","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/617/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/617/subjects?format=json","policyArea.name":"Energy","title":"COAST Anti-Drilling Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"617","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/617/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/617/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/617/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/617/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/617/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-01","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/617?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1493","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/622/text?format=json","updateDate":"2024-07-24T15:23:56Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"622","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/622/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"REAL House Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"622","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/622/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/622/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":4,"introducedDate":"2023-01-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/622?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 2, Clause 3\nThe single subject of this legislation is:\nThis legislation expands the voting membership of the U.S.\nHouse of Representatives.\n[Page H510]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2025-01-09T17:27:13Z"}} +{"type":"node","id":"1494","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/636/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"636","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/636/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/636/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Forest Litigation Reform Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","sponsors.0.party":"R","number":"636","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-07-28","summaries.count":1,"sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/636/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/636/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/636/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-23","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":3,"introducedDate":"2023-01-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/636?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 636.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H511]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"1495","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/635/text?format=json","relatedBills.count":1,"updateDate":"2024-11-19T12:54:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Green","sponsors.0.isByRequest":"N","request.billNumber":"635","sponsors.0.url":"https://api.congress.gov/v3/member/G000553?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/635/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/635/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Original Resolution Recognizing Islam as One of the Great Religions of the World","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"635","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/635/cosponsors?format=json","sponsors.0.bioguideId":"G000553","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/635/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/635/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/635/actions?format=json","latestAction.actionDate":"2023-07-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/635/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Green, Al [D-TX-9]","titles.count":3,"introducedDate":"2023-07-28","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/635?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Al","updateDateIncludingText":"2024-11-19T12:54:00Z"}} +{"type":"node","id":"1496","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","policyArea.name":"Labor and Employment","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1497","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/629/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"629","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/629/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"UNITED Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"629","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/629/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/629/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/629/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2023-03-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/629?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"1498","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Murkowski","cboCostEstimates.0.pubDate":"2023-08-07T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ethics.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"623","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/623/cosponsors?format=json","sponsors.0.bioguideId":"M001153","actions.url":"https://api.congress.gov/v3/bill/118/s/623/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/623/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-20","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-56","textVersions.url":"https://api.congress.gov/v3/bill/118/s/623/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"623","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/623/committees?format=json","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on July 11, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59463","request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/56?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/623/summaries?format=json","cboCostEstimates.0.title":"S. 623, a bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes","latestAction.actionTime":"17:03:55","introducedDate":"2023-03-02","subjects.count":6,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/623?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1499","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/621/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"621","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/s/621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/621/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to amend the Food, Conservation, and Energy Act of 2008 to clarify propane storage as an eligible use for funds provided under the storage facility loan program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/621/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/621/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/621/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"introducedDate":"2023-03-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/621?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1500","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/403/text?format=json","updateDate":"2024-07-24T15:22:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"403","sponsors.0.url":"https://api.congress.gov/v3/member/S001157?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/403/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/403/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Commending United States Capitol Police Officer Caroline Edwards for her commitment, determination, and heroic service in defense of American democracy during the January 6, 2021, assault on the United States Capitol.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"403","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/403/cosponsors?format=json","sponsors.0.bioguideId":"S001157","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/403/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/403/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/403/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","sponsors.0.fullName":"Rep. Scott, David [D-GA-13]","titles.count":2,"introducedDate":"2023-05-15","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/403?format=json","sponsors.0.district":13,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-07-24T15:22:22Z"}} +{"type":"node","id":"1501","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/402/text?format=json","updateDate":"2024-07-24T15:22:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"402","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/402/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/402/committees?format=json","policyArea.name":"Law","type":"HRES","title":"Expressing the sense of the House of Representatives that the Justices of the Supreme Court should make themselves subject to the existing and operative ethics guidelines set out in the Code of Conduct for United States Judges, or should promulgate their own code of conduct.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"402","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2023-05-15","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/402/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/402/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/402/actions?format=json","latestAction.actionDate":"2023-05-15","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2023-05-15","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/402?format=json","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-07-24T15:22:21Z"}} +{"type":"node","id":"1502","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/399/text?format=json","updateDate":"2024-07-24T15:22:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crawford","sponsors.0.isByRequest":"N","request.billNumber":"399","sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hres/399/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/399/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HRES","title":"Expressing support for the designation of the week of May 7, 2023, through May 13, 2023, as \"National Correctional Officers Week\".","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"399","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"A. \"Rick\"","latestAction_actionDate":"2023-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/399/cosponsors?format=json","sponsors.0.bioguideId":"C001087","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/399/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/399/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/399/actions?format=json","latestAction.actionDate":"2023-05-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","titles.count":2,"introducedDate":"2023-05-15","cosponsors.count":18,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/399?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-07-24T15:22:22Z"}} +{"type":"node","id":"1503","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/391/text?format=json","updateDate":"2024-07-24T15:22:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"391","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hres/391/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/391/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 2023 as \"Arthritis Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"391","request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"sponsors.0.bioguideId":"D000624","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/391/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/391/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/391/actions?format=json","latestAction.actionDate":"2023-05-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":2,"introducedDate":"2023-05-11","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/391?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-07-24T15:22:23Z"}} +{"type":"node","id":"1504","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/385/text?format=json","relatedBills.count":3,"updateDate":"2024-08-15T13:52:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Chu","sponsors.0.isByRequest":"N","request.billNumber":"385","sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hres/385/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/385/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Supporting the designation of May 10, 2023, as \"National Asian American, Native Hawaiian, and Pacific Islander Mental Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"385","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/385/cosponsors?format=json","sponsors.0.bioguideId":"C001080","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/385/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/385/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-12","sponsors.0.fullName":"Rep. Chu, Judy [D-CA-28]","titles.count":2,"introducedDate":"2023-05-10","cosponsors.count":26,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/385?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Judy","updateDateIncludingText":"2024-08-15T13:52:41Z"}} +{"type":"node","id":"1505","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"PISTOL Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"1506","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/379/text?format=json","updateDate":"2024-07-24T15:22:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"PASCRELL","sponsors.0.isByRequest":"N","request.billNumber":"379","sponsors.0.url":"https://api.congress.gov/v3/member/P000096?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hres/379/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/379/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 6, 2023, as \"National Sport Brain Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"379","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/379/cosponsors?format=json","sponsors.0.bioguideId":"P000096","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/379/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-12","sponsors.0.fullName":"Rep. Pascrell, Bill, Jr. [D-NJ-9]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/379?format=json","sponsors.0.district":9,"sponsors.0.firstName":"WILLIAM","updateDateIncludingText":"2024-07-24T15:22:26Z"}} +{"type":"node","id":"1507","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"375","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/375/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/375/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Simplifying Grants Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"375","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/375/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/375/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/375/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/375?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/372/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"372","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/372/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Macadamia Tree Health Initiative Amendments Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"372","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/372/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/372/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/372/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/372/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/372/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/372?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1510","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/367/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"367","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/s/367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/367/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"ECON Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"367","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-05-12","summaries.count":1,"sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/367/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/367/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/367/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/367?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1511","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/365/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"365","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/365/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/365/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To release the reversionary interest of the United States in certain non-Federal land in Salt Lake City, Utah, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"365","request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/365/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/365/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/365/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/365/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","titles.count":2,"introducedDate":"2023-01-13","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/365?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 11 (Friday, January 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 365.\nCongress has the power to enact this legislation pursuant\nto the following:\nTenth Amendment, United States Constitution Article IV,\nsection 3, clause 2, United States Constitution Article 1,\nsection 8, clause 18\n[Page H238]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:24:07Z"}} +{"type":"node","id":"1512","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/364/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"364","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/s/364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/364/committees?format=json","policyArea.name":"Education","title":"GAAME Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"364","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/364/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/364/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/364/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/364/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/364/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/364?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1513","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/361/text?format=json","updateDate":"2024-07-24T15:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"361","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/361/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/361/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Pistol Brace Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"361","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/361/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/361/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/361?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-07-24T15:23:50Z"}} +{"type":"node","id":"1514","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/360/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"360","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/360/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/360/subjects?format=json","policyArea.name":"Education","type":"S","title":"Stop Higher Education Espionage and Theft Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"360","request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/360/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/360/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/360?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1515","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/395/text?format=json","updateDate":"2024-07-24T15:22:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"395","sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/395/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/395/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Recognizing the work and contributions of doulas towards improving pregnancy, birth, and postpartum outcomes.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"395","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/395/cosponsors?format=json","sponsors.0.bioguideId":"M001160","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/395/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/395/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/395/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-12","sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/395?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Gwen","updateDateIncludingText":"2024-07-24T15:22:24Z"}} +{"type":"node","id":"1516","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/384/text?format=json","relatedBills.count":3,"updateDate":"2024-11-18T15:42:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"384","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hres/384/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/384/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HRES","title":"Expressing support for the designation of May 2023 as Motorcycle Safety Awareness Month.","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"384","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2023-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/384/cosponsors?format=json","sponsors.0.bioguideId":"B001248","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/384/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/384/relatedbills?format=json","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":2,"introducedDate":"2023-05-10","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/384?format=json","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-18T15:42:20Z"}} +{"type":"node","id":"1517","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/396/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Weber","sponsors.0.isByRequest":"N","request.billNumber":"396","sponsors.0.url":"https://api.congress.gov/v3/member/W000814?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hres/396/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/396/subjects?format=json","policyArea.name":"Families","type":"HRES","title":"In honor of mothers, recognizing the significance of motherhood and the impact mothers have on raising the next generation, on the occasion of Mother's Day.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"396","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/396/cosponsors?format=json","sponsors.0.bioguideId":"W000814","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/396/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/396/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/396/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-11","sponsors.0.fullName":"Rep. Weber, Randy K., Sr. [R-TX-14]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":44,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/396?format=json","sponsors.0.district":14,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1518","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/393/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"393","sponsors.0.url":"https://api.congress.gov/v3/member/G000598?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hres/393/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/393/subjects?format=json","policyArea.name":"Families","type":"HRES","title":"Honoring all families.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"393","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/393/cosponsors?format=json","sponsors.0.bioguideId":"G000598","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/393/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/393/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/393/actions?format=json","latestAction.actionDate":"2023-05-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Garcia, Robert [D-CA-42]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/393?format=json","sponsors.0.district":42,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1519","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/389/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Schweikert","sponsors.0.isByRequest":"N","request.billNumber":"389","sponsors.0.url":"https://api.congress.gov/v3/member/S001183?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/389/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/389/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"PORTFOLIO Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on the Judiciary, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"389","request.format":"json","latestAction_actionDate":"2023-05-11","summaries.count":1,"sponsors.0.bioguideId":"S001183","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/389/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/389/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/389/actions?format=json","latestAction.actionDate":"2023-01-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Schweikert, David [R-AZ-1]","titles.count":4,"introducedDate":"2023-01-17","subjects.count":19,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/389?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHWEIKERT:\nH.R. 389.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have the Power to make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H244]\n","sponsors.0.district":1,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1520","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/142/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crow","sponsors.0.isByRequest":"N","request.billNumber":"142","sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/142/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/142/subjects?format=json","policyArea.name":"Taxation","title":"End Dark Money Act","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"142","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/142/cosponsors?format=json","sponsors.0.bioguideId":"C001121","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/142/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/142/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/142/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":13,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/142?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 142.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\n[Page H110]\n","sponsors.0.district":6,"sponsors.0.firstName":"Jason","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1521","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/139/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Posey","sponsors.0.isByRequest":"N","request.billNumber":"139","sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/139/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/139/subjects?format=json","policyArea.name":"Sports and Recreation","type":"HRES","title":"Celebrating the 75th anniversary of the National Association for Stock Car Auto Racing (\"NASCAR\").","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"139","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2023-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/139/cosponsors?format=json","sponsors.0.bioguideId":"P000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/139/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/139/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/139/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/139?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1522","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/137/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","request.billNumber":"137","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hres/137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/137/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing amounts for the expenses of the Committee on Foreign Affairs in the One Hundred Eighteenth Congress.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"137","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2023-02-17","summaries.count":1,"sponsors.0.bioguideId":"M001157","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/137/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/137/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/137/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/137/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":2,"introducedDate":"2023-02-17","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/137?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:23:54Z"}} +{"type":"node","id":"1523","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Comer","cboCostEstimates.0.pubDate":"2023-03-02T20:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"140","amendments.count":10,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/140/cosponsors?format=json","sponsors.0.bioguideId":"C001108","actions.url":"https://api.congress.gov/v3/bill/118/hr/140/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/140/relatedbills?format=json","sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/140/amendments?format=json","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-5","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/140/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":48,"request.billNumber":"140","sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/140/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/140/subjects?format=json","title":"Protecting Speech from Government Interference Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58971","request.format":"json","latestAction_actionDate":"2023-02-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/5?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/140/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/140/summaries?format=json","cboCostEstimates.0.title":"H.R. 140, Protecting Speech from Government Interference Act","introducedDate":"2023-01-09","subjects.count":5,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/140?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 140.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution, in that\nthe legislation regulates forms of commerce specified in that\nclause; and, Article I, Section 8, clause 18 of the\nConstitution, in that the legislation ``is necessary and\nproper for carrying into Execution the foregoing Powers'' and\n``other Powers vested by this Constitution in the Government\nof the United States, or in any Department or Officer\nthereof,'' including the powers of the President specified in\nArticle II of the Constitution.\n[Page H110]\n","sponsors.0.district":1,"sponsors.0.firstName":"James","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1524","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-02-17","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1525","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-02-17","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1526","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/138/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","request.billNumber":"138","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hres/138/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/138/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing amounts for the expenses of the Committee on Financial Services in the One Hundred Eighteenth Congress.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"138","request.format":"json","latestAction_actionDate":"2023-02-17","summaries.count":1,"sponsors.0.bioguideId":"M001156","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/138/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/138/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/138/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/138/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":2,"introducedDate":"2023-02-17","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/138?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:23:54Z"}} +{"type":"node","id":"1527","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}} +{"type":"node","id":"1528","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1529","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1530","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2023-02-14","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}} +{"type":"node","id":"1531","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1532","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund Planned Parenthood Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","latestAction.actionDate":"2023-01-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1533","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/93/text?format=json","updateDate":"2024-07-24T15:23:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"93","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/93/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/93/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Protecting Businesses From Frivolous COVID Lawsuits Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"93","request.format":"json","latestAction_actionDate":"2023-02-10","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/93/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/93/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/93/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/93?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 93.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:23:22Z"}} +{"type":"node","id":"1534","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/73/text?format=json","updateDate":"2024-06-12T18:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"73","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/73/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/73/subjects?format=json","policyArea.name":"Health","title":"No Pro-Abortion Task Force Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"73","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-02-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/73/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/73/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/73/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/73/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/73?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 73.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-12T18:21:02Z"}} +{"type":"node","id":"1535","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-02-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}} +{"type":"node","id":"1536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}} +{"type":"node","id":"1537","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2023-02-09","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-07-30","cosponsors.count":29,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/104?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z","latestAction_actionTime":"11:27:37"}} +{"type":"node","id":"1538","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-02-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1539","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-09","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/115?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/942/text?format=json","updateDate":"2025-01-29T16:17:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"942","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7336)","committees.url":"https://api.congress.gov/v3/bill/118/sres/942/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/942/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution congratulating the Washington University in St. Louis Bears women's soccer team for winning the 2024 NCAA Division III Women's Soccer Championship.","latestAction.text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7336)","sponsors.0.party":"R","number":"942","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-12-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/942/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/942/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/942/actions?format=json","latestAction.actionDate":"2024-12-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"introducedDate":"2024-12-21","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/942?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-29T16:17:49Z"}} +{"type":"node","id":"1541","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/941/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"941","sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7336)","committees.url":"https://api.congress.gov/v3/bill/118/hr/941/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/941/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Down East Remembrance Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"941","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/941/cosponsors?format=json","sponsors.0.bioguideId":"M001210","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/941/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/941/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/941/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/941/relatedbills?format=json","sponsors.0.fullName":"Rep. Murphy, Gregory F. [R-NC-3]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/941?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY:\nH.R. 941.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII.\nThe single subject of this legislation is:\nThis bill names 6 creeks in NC in honor of 6 North\nCarolinians who tragically lost their lives in a plane crash.\n[Page H828]\n","sponsors.0.district":3,"sponsors.0.firstName":"Gregory","updateDateIncludingText":"2024-11-09T01:28:27Z"}} +{"type":"node","id":"1542","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/940/text?format=json","updateDate":"2024-12-31T01:48:25Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"940","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (consideration: CR S7335-7336)","committees.url":"https://api.congress.gov/v3/bill/118/sres/940/committees?format=json","type":"SRES","title":"A resolution honoring the lives and service of Natalie and Davy Lloyd and expressing condolences to the family of Natalie and Davy Lloyd.","latestAction.text":"Referred to the Committee on the Judiciary. (consideration: CR S7335-7336)","sponsors.0.party":"R","number":"940","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/940/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/940/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/940/actions?format=json","latestAction.actionDate":"2024-12-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":2,"introducedDate":"2024-12-20","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/940?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2024-12-31T01:48:25Z"}} +{"type":"node","id":"1543","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/939/text?format=json","updateDate":"2025-01-29T16:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"939","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7335)","committees.url":"https://api.congress.gov/v3/bill/118/sres/939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/939/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution commending and congratulating the Hutchinson Community College Blue Dragons football team for winning the 2024 National Junior College Athletic Association Football National Championship.","latestAction.text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7335)","sponsors.0.party":"R","number":"939","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/939/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/939/actions?format=json","latestAction.actionDate":"2024-12-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":2,"introducedDate":"2024-12-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/939?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-29T16:16:21Z"}} +{"type":"node","id":"1544","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/938/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"938","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7333-7335)","committees.url":"https://api.congress.gov/v3/bill/118/sres/938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/938/subjects?format=json","policyArea.name":"Social Welfare","type":"SRES","title":"A resolution expressing the sense of the Senate that it is the duty of the Federal Government to dramatically expand and strengthen the care economy.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7333-7335)","sponsors.0.party":"D","number":"938","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-20","sponsors.0.bioguideId":"W000817","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/938/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/938/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/938/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-20","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":2,"introducedDate":"2024-12-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/938?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1545","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/937/text?format=json","updateDate":"2025-01-15T21:07:29Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schumer","sponsors.0.isByRequest":"N","request.billNumber":"937","sponsors.0.url":"https://api.congress.gov/v3/member/S000148?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7223-7224; text: CR S7243)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/937/subjects?format=json","policyArea.name":"Congress","type":"SRES","title":"A resolution to authorize testimony and representation in United States v. Warnagiris.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7223-7224; text: CR S7243)","sponsors.0.party":"D","number":"937","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/937/cosponsors?format=json","sponsors.0.bioguideId":"S000148","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/937/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/937/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Schumer, Charles E. [D-NY]","titles.count":2,"introducedDate":"2024-12-19","cosponsors.count":1,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/937?format=json","sponsors.0.firstName":"Charles","updateDateIncludingText":"2025-01-15T21:07:29Z"}} +{"type":"node","id":"1546","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/936/text?format=json","relatedBills.count":1,"updateDate":"2025-01-21T17:44:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"936","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7215; text: CR S7242-7243)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/936/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution congratulating the Los Angeles Galaxy for winning the 2024 Major League Soccer Cup.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7215; text: CR S7242-7243)","sponsors.0.party":"D","number":"936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/936/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/936/actions?format=json","latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/936/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":2,"introducedDate":"2024-12-19","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/936?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-21T17:44:14Z"}} +{"type":"node","id":"1547","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/935/text?format=json","updateDate":"2025-01-03T13:56:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"935","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S7242)","committees.url":"https://api.congress.gov/v3/bill/118/sres/935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/935/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution condemning the commutation of Michael Conahan granted by President Biden on December 12, 2024.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S7242)","sponsors.0.party":"R","number":"935","request.format":"json","latestAction_actionDate":"2024-12-19","sponsors.0.bioguideId":"C001095","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/935/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/935/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/935?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T13:56:45Z"}} +{"type":"node","id":"1548","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/934/text?format=json","updateDate":"2025-01-31T18:06:00Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"934","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Voice Vote. (consideration: CR S7171; text: CR S7182-7183)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/934/subjects?format=json","policyArea.name":"Congress","type":"SRES","title":"A resolution amending the broadcasting and recording procedures of the Senate.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment by Voice Vote. (consideration: CR S7171; text: CR S7182-7183)","sponsors.0.party":"D","number":"934","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/934/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/934/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/934/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/934?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-31T18:06:00Z"}} +{"type":"node","id":"1549","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/895/text?format=json","updateDate":"2024-12-18T16:00:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"895","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S7171; text: 11/19/2024 CR S6635-6636)","committees.url":"https://api.congress.gov/v3/bill/118/hres/895/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/895/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Condemning calls from Members of Congress for the expulsion of Palestinians from the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"895","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/895/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/895/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/895/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/895/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":2,"introducedDate":"2023-11-28","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/895?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-18T16:00:09Z"}} +{"type":"node","id":"1550","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/933/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"933","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7181-7182)","committees.url":"https://api.congress.gov/v3/bill/118/hr/933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/933/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Senator James L. Buckley Seashore Designation Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"933","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/933/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/933/relatedbills?format=json","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/933?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe single subject of this legislation is:\nThis legislation will name the Staten Island Unit of Gatway\nNational Recreation Area the ``Senator James L. Buckley\nSeashore''\n[Page H828]\n","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"1551","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2023-05-19T19:59:00Z","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7099; text: CR S7109)","policyArea.name":"Congress","type":"S","latestAction.text":"Became Public Law No: 118-192.","sponsors.0.party":"D","number":"932","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/932/cosponsors?format=json","sponsors.0.bioguideId":"R000608","laws.0.number":"118-192","actions.url":"https://api.congress.gov/v3/bill/118/s/932/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/932/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":10,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-37","textVersions.url":"https://api.congress.gov/v3/bill/118/s/932/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"932","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/932/subjects?format=json","title":"No CORRUPTION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59189","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/37?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/932/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/932/summaries?format=json","cboCostEstimates.0.title":"S. 932, No CORRUPTION Act","introducedDate":"2023-03-22","subjects.count":5,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/932?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1552","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/931/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"931","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7109)","committees.url":"https://api.congress.gov/v3/bill/118/sres/931/committees?format=json","type":"SRES","title":"A resolution recognizing the exceptional service of Ambassador Michael Herzog during his tenure as Ambassador of Israel to the United States.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7109)","sponsors.0.party":"R","number":"931","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/931/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/931/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/931/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/931?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1553","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/930/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"930","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7108)","committees.url":"https://api.congress.gov/v3/bill/118/sres/930/committees?format=json","type":"SRES","title":"A resolution condemning the Government of Azerbaijan for perpetrating an ethnic cleansing campaign against the Armenian population of Nagorno-Karabakh.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7108)","sponsors.0.party":"D","number":"930","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/930/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/930/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/930/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/930?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1554","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/929/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"929","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: S7107-7108)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/929/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/929/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution expressing support for the designation of November 20, 2024, through December 20, 2024, as \"National Survivors of Homicide Victims Awareness Month\".","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: S7107-7108)","sponsors.0.party":"D","number":"929","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/929/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/929/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/929/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/929/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/929?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/928/text?format=json","updateDate":"2025-01-15T21:07:46Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"928","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7068-7069; text: S7107)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/928/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SRES","title":"A resolution honoring the life of Nebraska community leader John Edmund Gottschalk.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7068-7069; text: S7107)","sponsors.0.party":"R","number":"928","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/928/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/928/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/928/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/928?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-15T21:07:46Z"}} +{"type":"node","id":"1556","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/927/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"927","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sres/927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/927/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution commemorating and supporting the goals of World AIDS Day.","latestAction.text":"Referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"927","request.format":"json","latestAction_actionDate":"2024-12-16","sponsors.0.bioguideId":"B001288","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/927/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/927/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/927/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-12-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/927?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/733/text?format=json","updateDate":"2025-01-28T20:44:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"733","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","committees.url":"https://api.congress.gov/v3/bill/118/sres/733/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/733/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"SRES","title":"A resolution honoring the life and legacy of Patrick Gottsch.","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","sponsors.0.party":"R","number":"733","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-12","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/733/cosponsors?format=json","sponsors.0.bioguideId":"H001079","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/733/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/733/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/733/actions?format=json","latestAction.actionDate":"2024-12-12","textVersions.count":2,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":2,"introducedDate":"2024-06-13","cosponsors.count":5,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/733?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-28T20:44:48Z"}} +{"type":"node","id":"1558","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/74/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"74","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Star Print ordered on the resolution.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/74/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/74/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to propose, establish, implement, or enforce any requirement that an individual wear a mask or other face covering, or be vaccinated, to prevent the spread of COVID-19, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"74","request.format":"json","latestAction_actionDate":"2024-12-11","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/74/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/74/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/74/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/74?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 74.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1559","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/925/text?format=json","updateDate":"2024-12-31T18:50:50Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"925","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6936-6937; text: CR S6915)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/925/subjects?format=json","policyArea.name":"Congress","type":"SRES","title":"A resolution relating to the death of the Honorable Fred R. Harris, former Senator for the State of Oklahoma.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6936-6937; text: CR S6915)","sponsors.0.party":"R","number":"925","cosponsors.countIncludingWithdrawnCosponsors":99,"request.format":"json","latestAction_actionDate":"2024-12-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/925/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/925/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/925/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2024-12-10","cosponsors.count":99,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/925?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-12-31T18:50:50Z"}} +{"type":"node","id":"1560","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/695/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NAPOLITANO","sponsors.0.isByRequest":"N","request.billNumber":"695","sponsors.0.url":"https://api.congress.gov/v3/member/N000179?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3760-3761; text: CR S3757)","committees.url":"https://api.congress.gov/v3/bill/118/hr/695/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/695/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"State and Local General Sales Tax Protection Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"D","number":"695","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-05-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/695/cosponsors?format=json","sponsors.0.bioguideId":"N000179","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/695/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/695/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/695/relatedbills?format=json","sponsors.0.fullName":"Rep. Napolitano, Grace F. [D-CA-31]","titles.count":3,"introducedDate":"2023-02-01","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/695?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. NAPOLITANO:\nH.R. 695.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment X to the Constitution\nThe single subject of this legislation is:\nAviation.\n[Page H629]\n","sponsors.0.district":31,"sponsors.0.firstName":"GRACE","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"1561","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/694/text?format=json","relatedBills.count":3,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"694","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/sres/694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/694/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution expressing support for the designation of May 2024 as \"Renewable Fuels Month\" to recognize the important role that renewable fuels play in reducing carbon impacts, lowering fuel prices for consumers, supporting rural communities, and lessening reliance on foreign adversaries.","latestAction.text":"Referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"694","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-05-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/694/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/694/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/694/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/694/actions?format=json","latestAction.actionDate":"2024-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/694/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":2,"introducedDate":"2024-05-16","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/694?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1562","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/693/text?format=json","updateDate":"2024-12-05T19:17:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"693","sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3720-3721)","committees.url":"https://api.congress.gov/v3/bill/118/hres/693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/693/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of September 9 as \"National African Immigrant and Refugee HIV/AIDS and Hepatitis Awareness (NAIRHHA) Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"693","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2024-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/693/cosponsors?format=json","sponsors.0.bioguideId":"J000288","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/693/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/693/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/693/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-22","sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","titles.count":2,"introducedDate":"2023-09-18","cosponsors.count":13,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/693?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-12-05T19:17:31Z"}} +{"type":"node","id":"1563","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/692/text?format=json","relatedBills.count":2,"updateDate":"2024-11-25T20:28:41Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"692","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3720-3721)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/692/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the mission and goals of National Fentanyl Awareness Day in 2024, including increasing individual and public awareness of the impact of fake or counterfeit fentanyl pills on families and young people.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3720-3721)","sponsors.0.party":"R","number":"692","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2024-05-15","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/692/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/692/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/692/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/692/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/692/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":2,"introducedDate":"2024-05-15","cosponsors.count":40,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/692?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-25T20:28:41Z"}} +{"type":"node","id":"1564","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/691/text?format=json","updateDate":"2024-09-30T21:00:27Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"691","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3719)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/691/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution expressing support for the designation of May 17, 2024, as \"DIPG Pediatric Brain Cancer Awareness Day\" to raise awareness of, and encourage research on, diffuse intrinsic pontine glioma tumors and pediatric cancers in general.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3719)","sponsors.0.party":"R","number":"691","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-05-15","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/691/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/691/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/691/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/691/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-15","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":2,"introducedDate":"2024-05-15","cosponsors.count":5,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/691?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-09-30T21:00:27Z"}} +{"type":"node","id":"1565","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/690/text?format=json","updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"690","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3719)","committees.url":"https://api.congress.gov/v3/bill/118/hr/690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/690/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Taliban Rare Earth Minerals Sanctions Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"690","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2024-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/690/cosponsors?format=json","sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/690/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/690/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/690/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/690?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo impose sanctions on persons engaging in transactions in\nAfghanistan rare earth minerals.\n[Page H578]\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"1566","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/689/text?format=json","relatedBills.count":1,"updateDate":"2024-05-24T10:56:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"689","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3718-3719)","committees.url":"https://api.congress.gov/v3/bill/118/s/689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/689/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"A bill to amend the Controlled Substances Act to define currently accepted medical use with severe restrictions, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/689/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/689/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/689/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/689/actions?format=json","latestAction.actionDate":"2023-03-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/689/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2023-03-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/689?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-05-24T10:56:42Z"}} +{"type":"node","id":"1567","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/688/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"688","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3714-3715)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/688/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/688/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution recognizing widening threats to freedom of the press and free expression around the world, reaffirming the vital role that a free and independent press plays in combating the growing threats of authoritarianism, misinformation, and disinformation, and reaffirming freedom of the press as a priority of the United States Government in promoting democracy, human rights, and good governance in commemoration of World Press Freedom Day on May 3, 2024.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3714-3715)","sponsors.0.party":"D","number":"688","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/688/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/688/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/688/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/688/actions?format=json","latestAction.actionDate":"2024-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/688/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":2,"introducedDate":"2024-05-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/688?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1568","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/687/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"687","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3713-3714)","committees.url":"https://api.congress.gov/v3/bill/118/sres/687/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/687/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States \"One China Policy\".","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3713-3714)","sponsors.0.party":"R","number":"687","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-05-15","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/687/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/687/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/687/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2024-05-15","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/687?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/686/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T16:24:00Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"686","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3689; text: CR S3689)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/686/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"SRES","title":"A resolution designating May 18, 2024, as \"Kids to Parks Day\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3689; text: CR S3689)","sponsors.0.party":"D","number":"686","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-05-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/686/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/686/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/686/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/686/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/686/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2024-05-14","cosponsors.count":6,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/686?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-12-04T16:24:00Z"}} +{"type":"node","id":"1570","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/685/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"685","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3688-3689)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/685/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/685/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution welcoming President Santiago Pena of Paraguay and commemorating the bilateral relationship between the Republic of Paraguay and the United States.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3688-3689)","sponsors.0.party":"D","number":"685","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-05-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/685/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/685/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/685/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/685/actions?format=json","latestAction.actionDate":"2024-05-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":2,"introducedDate":"2024-05-14","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/685?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/684/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"684","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3687-3688)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/684/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/684/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the role of the United States in helping save the lives of children and protecting the health of people in low-income countries with vaccines and immunization through Gavi, the Vaccine Alliance (\"Gavi\").","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3687-3688)","sponsors.0.party":"R","number":"684","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/684/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/684/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/684/actions?format=json","latestAction.actionDate":"2024-05-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/684/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":2,"introducedDate":"2024-05-14","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/684?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1572","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/683/text?format=json","relatedBills.count":1,"updateDate":"2024-11-20T21:55:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"De La Cruz","sponsors.0.isByRequest":"N","request.billNumber":"683","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3667; text: CR S3660-3661)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/683/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/683/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Expressing support for the diplomatic relations required to encourage the Government of Mexico to fulfill its water deliveries on an annual basis to the United States under the treaty between the United States and Mexico regarding the utilization of the Colorado and Tijuana Rivers and of the Rio Grande.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"683","cosponsors.countIncludingWithdrawnCosponsors":52,"request.format":"json","latestAction_actionDate":"2024-05-09","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/683/cosponsors?format=json","sponsors.0.bioguideId":"D000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/683/actions?format=json","latestAction.actionDate":"2023-11-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/683/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","latestAction.actionTime":"18:36:19","titles.count":2,"introducedDate":"2023-09-13","cosponsors.count":52,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/683?format=json","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2024-11-20T21:55:32Z"}} +{"type":"node","id":"1573","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/682/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"682","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3659-3660)","committees.url":"https://api.congress.gov/v3/bill/118/sres/682/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/682/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution condemning the decision by the Biden Administration to halt the shipment of United States made ammunition and weapons to the State of Israel.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3659-3660)","sponsors.0.party":"R","number":"682","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2024-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/682/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/682/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/682/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/682/actions?format=json","latestAction.actionDate":"2024-05-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-05-09","cosponsors.count":47,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/682?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1574","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/681/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"681","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S3659)","committees.url":"https://api.congress.gov/v3/bill/118/sres/681/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/681/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the designation of May 10, 2024, as \"National Asian American, Native Hawaiian, and Pacific Islander Mental Health Day\".","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S3659)","sponsors.0.party":"D","number":"681","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/681/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/681/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/681/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/681/actions?format=json","latestAction.actionDate":"2024-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/681/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2024-05-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/681?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1575","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/680/text?format=json","relatedBills.count":1,"updateDate":"2024-11-05T14:51:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sherrill","sponsors.0.isByRequest":"N","request.billNumber":"680","sponsors.0.url":"https://api.congress.gov/v3/member/S001207?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S3659)","committees.url":"https://api.congress.gov/v3/bill/118/hr/680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/680/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Tax Relief for Middle Class Families Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"680","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/680/cosponsors?format=json","sponsors.0.bioguideId":"S001207","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/680/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/680/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/680/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/680/relatedbills?format=json","sponsors.0.fullName":"Rep. Sherrill, Mikie [D-NJ-11]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/680?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SHERRILL:\nH.R. 680.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1 of the Constitution of\nthe United States of America\nThe single subject of this legislation is:\nImproving Affordability\n[Page H578]\n","sponsors.0.district":11,"sponsors.0.firstName":"Mikie","updateDateIncludingText":"2024-11-05T14:51:17Z"}} +{"type":"node","id":"1576","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2023-04-19T19:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3626; text: S3599-3600)","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-97.","sponsors.0.party":"R","number":"679","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/679/cosponsors?format=json","sponsors.0.bioguideId":"S001217","laws.0.number":"118-97","actions.url":"https://api.congress.gov/v3/bill/118/s/679/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/679/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-25","textVersions.url":"https://api.congress.gov/v3/bill/118/s/679/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"679","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/679/committees?format=json","title":"GAO Database Modernization Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59087","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/25?format=json","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/679/summaries?format=json","cboCostEstimates.0.title":"S. 679, GAO Database Modernization Act of 2023","introducedDate":"2023-03-07","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/679?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1577","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/678/text?format=json","relatedBills.count":1,"updateDate":"2024-11-21T15:11:43Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"678","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3626; text: CR S3599)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/678/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution designating May 3, 2024, as \"United States Foreign Service Day\" in recognition of the men and women who have served, or are presently serving, in the Foreign Service of the United States, and honoring the members of the Foreign Service who have given their lives in the line of duty.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3626; text: CR S3599)","sponsors.0.party":"R","number":"678","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-08","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/678/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/678/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/678/actions?format=json","latestAction.actionDate":"2024-05-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/678/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-05-08","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/678?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-11-21T15:11:43Z"}} +{"type":"node","id":"1578","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/677/text?format=json","relatedBills.count":2,"updateDate":"2024-12-04T20:20:40Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"677","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR 3626; text: CR S3599)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/677/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution recognizing the roles and contributions of the teachers of the United States in building and enhancing the civic, cultural, and economic well-being of the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR 3626; text: CR S3599)","sponsors.0.party":"D","number":"677","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2024-05-08","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/677/cosponsors?format=json","sponsors.0.bioguideId":"B000944","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/677/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/677/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/677/actions?format=json","latestAction.actionDate":"2024-05-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/677/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":2,"introducedDate":"2024-05-08","cosponsors.count":29,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/677?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2024-12-04T20:20:40Z"}} +{"type":"node","id":"1579","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/505/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cohen","sponsors.0.isByRequest":"N","request.billNumber":"505","sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 379.","committees.url":"https://api.congress.gov/v3/bill/118/hr/505/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/505/subjects?format=json","policyArea.name":"Labor and Employment","title":"Living Wage Now Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"505","request.format":"json","latestAction_actionDate":"2024-05-07","summaries.count":1,"sponsors.0.bioguideId":"C001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/505/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/505/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/505/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","titles.count":3,"introducedDate":"2023-01-25","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/505?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1580","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (text: CR S5365-5366)","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-11-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1581","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/396/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Weber","sponsors.0.isByRequest":"N","request.billNumber":"396","sponsors.0.url":"https://api.congress.gov/v3/member/W000814?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S5366-5367; text: 10/04/2023 CR S4953-4954)","committees.url":"https://api.congress.gov/v3/bill/118/hres/396/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/396/subjects?format=json","policyArea.name":"Families","type":"HRES","title":"In honor of mothers, recognizing the significance of motherhood and the impact mothers have on raising the next generation, on the occasion of Mother's Day.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"396","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-11-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/396/cosponsors?format=json","sponsors.0.bioguideId":"W000814","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/396/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/396/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/396/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-11","sponsors.0.fullName":"Rep. Weber, Randy K., Sr. [R-TX-14]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":44,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/396?format=json","sponsors.0.district":14,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1582","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/452/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T17:37:33Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Murray","sponsors.0.isByRequest":"N","request.billNumber":"452","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5366; text: CR S5362-5363)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/452/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SRES","title":"A resolution designating October 30, 2023, as a national day of remembrance for the workers of the nuclear weapons program of the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5366; text: CR S5362-5363)","sponsors.0.party":"D","number":"452","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-11-06","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/452/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/452/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/452/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/452/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/452/relatedbills?format=json","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":2,"introducedDate":"2023-11-06","cosponsors.count":12,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/452?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2024-12-19T17:37:33Z"}} +{"type":"node","id":"1583","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/451/text?format=json","updateDate":"2024-12-21T09:05:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bice","sponsors.0.isByRequest":"N","request.billNumber":"451","sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S5366; text: CR S5362)","committees.url":"https://api.congress.gov/v3/bill/118/hr/451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/451/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Families from Fertility Fraud Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"451","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2023-11-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/451/cosponsors?format=json","sponsors.0.bioguideId":"B000740","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/451/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":55,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/451?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Stephanie","updateDateIncludingText":"2024-12-21T09:05:46Z"}} +{"type":"node","id":"1584","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/450/text?format=json","updateDate":"2024-06-11T16:14:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burlison","sponsors.0.isByRequest":"N","request.billNumber":"450","sponsors.0.url":"https://api.congress.gov/v3/member/B001316?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5361-5362)","committees.url":"https://api.congress.gov/v3/bill/118/hr/450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/450/subjects?format=json","policyArea.name":"Taxation","title":"Repeal the NFA Act","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"450","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-11-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/450/cosponsors?format=json","sponsors.0.bioguideId":"B001316","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/450/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Burlison, Eric [R-MO-7]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/450?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-06-11T16:14:44Z"}} +{"type":"node","id":"1585","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/449/text?format=json","relatedBills.count":3,"updateDate":"2024-10-03T16:27:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"449","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5343-5344)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/449/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2023.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5343-5344)","sponsors.0.party":"R","number":"449","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/449/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/449/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/449/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/449?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-10-03T16:27:14Z"}} +{"type":"node","id":"1586","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/448/text?format=json","updateDate":"2024-12-06T18:52:39Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","request.billNumber":"448","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5342-5343)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/448/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution supporting the goals and ideals of National Domestic Violence Awareness Month.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5342-5343)","sponsors.0.party":"D","number":"448","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/448/cosponsors?format=json","sponsors.0.bioguideId":"B001320","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/448/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/448/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/448/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":5,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/448?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2024-12-06T18:52:39Z"}} +{"type":"node","id":"1587","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/447/text?format=json","updateDate":"2024-09-10T19:38:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"447","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5342)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/447/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SRES","title":"A resolution expressing support for the designation of October 23, 2023, as \"Beirut Veterans Remembrance Day\" to remember the tragic terrorist bombing of the Marine Corps headquarters in Beirut, Lebanon, in 1983.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5342)","sponsors.0.party":"R","number":"447","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2023-11-02","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/447/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/447/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/447/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/447/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":1,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/447?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-09-10T19:38:07Z"}} +{"type":"node","id":"1588","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/446/text?format=json","updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"446","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Committee on Rules and Administration.","committees.url":"https://api.congress.gov/v3/bill/118/s/446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/446/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Trading System Preservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"446","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/446/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/446/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/446?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-07-24T15:23:45Z"}} +{"type":"node","id":"1589","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Walberg","cboCostEstimates.0.pubDate":"2024-01-23T21:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5262; text: CR S5259)","policyArea.name":"Crime and Law Enforcement","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"443","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/443/cosponsors?format=json","sponsors.0.bioguideId":"W000798","actions.url":"https://api.congress.gov/v3/bill/118/hr/443/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":4,"sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-355","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/443/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"443","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/443/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/443/committees?format=json","title":"Enhancing Detection of Human Trafficking Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on January 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59912","request.format":"json","latestAction_actionDate":"2023-10-31","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/355?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/443/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/443/summaries?format=json","cboCostEstimates.0.title":"H.R. 443, Enhancing Detection of Human Trafficking Act","introducedDate":"2023-01-20","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/443?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 443.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\n[Page H252]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1590","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/442/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T17:13:10Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"442","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5262; text: CR S5259)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/442/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"SRES","title":"A resolution designating October 2023 as \"National Country Music Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5262; text: CR S5259)","sponsors.0.party":"R","number":"442","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-10-31","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/442/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/442/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/442/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/442/actions?format=json","latestAction.actionDate":"2023-10-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/442/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-10-31","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/442?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-12-06T17:13:10Z"}} +{"type":"node","id":"1591","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/441/text?format=json","relatedBills.count":2,"updateDate":"2024-11-20T21:24:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"441","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5232)","committees.url":"https://api.congress.gov/v3/bill/118/sres/441/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/441/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating October 2023 as \"National Learning Disabilities Awareness Month\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5232)","sponsors.0.party":"D","number":"441","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/441/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/441/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/441/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/441/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/441/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":2,"introducedDate":"2023-10-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/441?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-20T21:24:51Z"}} +{"type":"node","id":"1592","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/440/text?format=json","relatedBills.count":2,"updateDate":"2024-12-05T20:01:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"440","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5231-5232)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/440/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/440/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution expressing support for the designation of October 2023 as \"National Youth Justice Action Month\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5231-5232)","sponsors.0.party":"D","number":"440","request.format":"json","latestAction_actionDate":"2023-10-30","summaries.count":1,"sponsors.0.bioguideId":"W000802","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/440/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/440/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/440/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/440/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":2,"introducedDate":"2023-10-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/440?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-12-05T20:01:26Z"}} +{"type":"node","id":"1593","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/439/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"439","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","committees.url":"https://api.congress.gov/v3/bill/118/hr/439/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/439/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Public Land Search and Rescue Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"439","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/439/cosponsors?format=json","sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/439/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/439/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","titles.count":3,"introducedDate":"2023-01-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/439?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 439.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article I, Section 8, Clause 1\n[Page H252]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"1594","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/438/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"438","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","subjects.url":"https://api.congress.gov/v3/bill/118/s/438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/438/committees?format=json","policyArea.name":"Energy","title":"Natural Gas Export Expansion Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"438","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/438/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/438/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/438?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"1595","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/437/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"437","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/437/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution condemning antisemitism at institutions of higher education in the United States and encouraging college and university leaders, administrators, and faculty to speak out against antisemitism.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","sponsors.0.party":"R","number":"437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/437/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/437/actions?format=json","latestAction.actionDate":"2023-10-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/437/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-10-26","cosponsors.count":3,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/437?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-04-17T23:51:46Z"}} +{"type":"node","id":"1596","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/436/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"436","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5217-5218)","committees.url":"https://api.congress.gov/v3/bill/118/s/436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/436/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"SAFE Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"436","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/436/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/436/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/436?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1597","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/435/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"435","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5217)","subjects.url":"https://api.congress.gov/v3/bill/118/s/435/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/435/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Ensuring Military Readiness Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"435","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/435/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/435/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/435/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/435/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/435/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/435?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1598","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"434","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S5217)","committees.url":"https://api.congress.gov/v3/bill/118/s/434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/434/subjects?format=json","policyArea.name":"International Affairs","title":"PAID OFF Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S427)","sponsors.0.party":"R","number":"434","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/434/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/434/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/434/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/434?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1599","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/433/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"433","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Referred to the Committee on Environment and Public Works. (text: CR S5216-5217)","committees.url":"https://api.congress.gov/v3/bill/118/s/433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/433/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require the Secretary of Agriculture to convene a blue ribbon panel to review the forest inventory and analysis program of the Forest Service, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"433","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/433/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/433/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/433?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1600","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/99/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"99","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Star Print ordered on the reported resolution.","committees.url":"https://api.congress.gov/v3/bill/118/sres/99/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/99/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","latestAction.text":"Star Print ordered on the reported resolution.","sponsors.0.party":"D","number":"99","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-05-10","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/99/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/99/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/99/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/99/actions?format=json","latestAction.actionDate":"2023-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/99/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/99?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1601","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/204/text?format=json","updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"204","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: CR S1570)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/204/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution congratulating the University of Oklahoma women's gymnastics team for winning the 2023 National Collegiate Athletic Association championship, the program's sixth title overall.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: CR S1570)","sponsors.0.party":"R","number":"204","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/204/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/204/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/204/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/204/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/204?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"1602","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/157/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"157","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: 03/30/2023 CR S1107-1108)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/157/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/157/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution commemorating the 25th anniversary of the signing of the Good Friday Agreement, and for other purposes.","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: 03/30/2023 CR S1107-1108)","sponsors.0.party":"D","number":"157","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/157/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/157/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/157/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/157/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":3,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":14,"subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/157?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1603","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/202/text?format=json","updateDate":"2024-04-17T23:51:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"202","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S1569)","committees.url":"https://api.congress.gov/v3/bill/118/sres/202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/202/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"SRES","title":"A resolution expressing the sense of the Senate that the United States must continue to demonstrate leadership to achieve significant reforms to the rules of the World Trade Organization in order to promote the advancement of truly developing countries.","latestAction.text":"Referred to the Committee on Finance. (text: CR S1569)","sponsors.0.party":"R","number":"202","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/202/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/202/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/202?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:39Z"}} +{"type":"node","id":"1604","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/201/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"201","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1569)","committees.url":"https://api.congress.gov/v3/bill/118/sres/201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/201/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of National Nurses Week, to be observed from May 6 through May 12, 2023.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1569)","sponsors.0.party":"D","number":"201","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/201/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/201/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/201/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":28,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/201?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1605","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/200/text?format=json","relatedBills.count":1,"updateDate":"2024-11-18T14:55:37Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"200","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1543; text: CR S1538-1539)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/200/subjects?format=json","policyArea.name":"Commerce","type":"SRES","title":"A resolution expressing support for the designation of the week of April 30, 2023, through May 6, 2023, as \"National Small Business Week\" to celebrate the contributions of small businesses and entrepreneurs in every community in the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1543; text: CR S1538-1539)","sponsors.0.party":"D","number":"200","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/200/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/200/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/200/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/200/actions?format=json","latestAction.actionDate":"2023-05-04","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/200/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":2,"introducedDate":"2023-05-04","cosponsors.count":50,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/200?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2024-11-18T14:55:37Z"}} +{"type":"node","id":"1606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1543; text: 3/23/2023 CR S935-936)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}} +{"type":"node","id":"1607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/106/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"106","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 55.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/106/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/106/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"106","request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/106/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-07-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/106?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1608","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/199/text?format=json","relatedBills.count":1,"updateDate":"2024-11-18T15:21:40Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"199","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: CR S1538)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/199/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution designating May 5, 2023, as \"United States Foreign Service Day\" in recognition of the men and women who have served, or are presently serving, in the Foreign Service of the United States, and honoring the members of the Foreign Service who have given their lives in the line of duty.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: CR S1538)","sponsors.0.party":"R","number":"199","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/199/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/199/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/199/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/199/actions?format=json","latestAction.actionDate":"2023-05-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/199/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2023-05-04","cosponsors.count":1,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/199?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-11-18T15:21:40Z"}} +{"type":"node","id":"1609","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/198/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"198","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: CR S1538)","committees.url":"https://api.congress.gov/v3/bill/118/hres/198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/198/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Recognizing Girl Scouts of the United States of America on its 111th birthday and celebrating its legacy of providing girls with a safe, inclusive space where they can explore their world, build meaningful relationships, and have access to experiences that prepare them for a life of leadership.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"198","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/198/cosponsors?format=json","sponsors.0.bioguideId":"K000397","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/198/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/198/actions?format=json","latestAction.actionDate":"2023-03-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/198/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":2,"introducedDate":"2023-03-07","cosponsors.count":16,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/198?format=json","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1610","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/181/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"181","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: 4/27/2023 CR S1423)","committees.url":"https://api.congress.gov/v3/bill/118/s/181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/181/subjects?format=json","policyArea.name":"Health","title":"No Vaccine Passports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"181","request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/181/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/181/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":22,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/181?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1611","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/197/text?format=json","relatedBills.count":2,"updateDate":"2024-11-18T14:11:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Mullin","sponsors.0.isByRequest":"N","request.billNumber":"197","sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1537)","committees.url":"https://api.congress.gov/v3/bill/118/sres/197/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/197/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution designating the week of May 1, 2023, through May 7, 2023, as \"Tardive Dyskinesia Awareness Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S1537)","sponsors.0.party":"R","number":"197","request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"sponsors.0.bioguideId":"M001190","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/197/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/197/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/197/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/197/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-04","sponsors.0.fullName":"Sen. Mullin, Markwayne [R-OK]","titles.count":2,"introducedDate":"2023-05-04","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/197?format=json","sponsors.0.firstName":"Markwayne","updateDateIncludingText":"2024-11-18T14:11:27Z"}} +{"type":"node","id":"1612","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/196/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"196","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1537)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/196/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/196/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution recognizing the cultural and historical significance of the Cinco de Mayo holiday.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S1537)","sponsors.0.party":"D","number":"196","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/196/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/196/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/196/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/196/actions?format=json","latestAction.actionDate":"2023-05-04","textVersions.count":1,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2023-05-04","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/196?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1613","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/194/text?format=json","relatedBills.count":1,"updateDate":"2024-08-12T14:41:25Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"194","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1515)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/194/subjects?format=json","policyArea.name":"Native Americans","type":"SRES","title":"A resolution designating May 5, 2023, as the \"National Day of Awareness for Missing and Murdered Native Women and Girls\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1515)","sponsors.0.party":"R","number":"194","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/194/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/194/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/194/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/194/actions?format=json","latestAction.actionDate":"2023-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/194/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-05-03","cosponsors.count":22,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/194?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-08-12T14:41:25Z"}} +{"type":"node","id":"1614","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/193/text?format=json","relatedBills.count":3,"updateDate":"2024-07-31T15:27:48Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"193","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1514-1515)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/193/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution designating April 2023 as \"Second Chance Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1514-1515)","sponsors.0.party":"D","number":"193","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/193/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/193/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/193/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/193/actions?format=json","latestAction.actionDate":"2023-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/193/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-05-03","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/193?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2024-07-31T15:27:48Z"}} +{"type":"node","id":"1615","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1514)","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-06-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2023-05-03","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1616","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rounds","cboCostEstimates.0.pubDate":"2023-03-06T20:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: 4/27/2023 CR S1424-1425)","policyArea.name":"Native Americans","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"R","number":"185","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/185/cosponsors?format=json","sponsors.0.bioguideId":"R000605","actions.url":"https://api.congress.gov/v3/bill/118/s/185/actions?format=json","latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/185/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/185/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":2,"request.congress":"118","actions.count":4,"request.billNumber":"185","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/185/subjects?format=json","title":"Native American Direct Loan Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58958","request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/185/summaries?format=json","cboCostEstimates.0.title":"S. 185, Native American Direct Loan Improvement Act of 2023","introducedDate":"2023-01-31","subjects.count":6,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/185?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1617","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: 3/30/2023 CR S1104)","policyArea.name":"Transportation and Public Works","type":"HRES","latestAction.text":"Placed on the House Calendar, Calendar No. 100.","sponsors.0.party":"D","number":"152","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/152/cosponsors?format=json","sponsors.0.bioguideId":"M000312","actions.url":"https://api.congress.gov/v3/bill/118/hres/152/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/152/relatedbills?format=json","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":2,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-872","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/152/text?format=json","updateDate":"2025-02-04T20:41:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"152","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/152/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/152/committees?format=json","title":"Supporting the goals and ideals of \"move over\" laws.","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2023-05-03","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/872?format=json","summaries.count":2,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/152/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/152/summaries?format=json","introducedDate":"2023-02-24","subjects.count":5,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/152?format=json","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2025-02-04T20:41:13Z"}} +{"type":"node","id":"1618","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/191/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"191","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1511-1514)","committees.url":"https://api.congress.gov/v3/bill/118/s/191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/191/subjects?format=json","policyArea.name":"Armed Forces and National Security","title":"Restoring Military Focus Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"191","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/191/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/191/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/191/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/191/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/191/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":8,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/191?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"1619","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Miller","cboCostEstimates.0.pubDate":"2024-10-21T19:53:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1467-1468; text: CR S1467)","policyArea.name":"Taxation","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 696.","sponsors.0.party":"R","number":"190","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/190/cosponsors?format=json","sponsors.0.bioguideId":"M001205","actions.url":"https://api.congress.gov/v3/bill/118/hr/190/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/190/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":4,"cosponsors.count":48,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-857","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/190/text?format=json","updateDate":"2025-02-20T22:26:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"190","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/190/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/190/subjects?format=json","title":"Saving Gig Economy Taxpayers Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on September 11, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":48,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60838","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2023-05-02","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/857?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/190/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/190/summaries?format=json","cboCostEstimates.0.title":"H.R. 190, Saving Gig Economy Taxpayers Act","introducedDate":"2023-01-09","subjects.count":4,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/190?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 190.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H112]\n","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2025-02-20T22:26:13Z"}} +{"type":"node","id":"1620","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1968/text?format=json","updateDate":"2024-07-24T15:22:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1968","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Signed by President.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1968/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1968/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Centers for Disease Control and Prevention Injury Prevention and Control for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1968","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1968/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1968/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1968/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1968/actions?format=json","latestAction.actionDate":"2023-04-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1968?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1968.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1645]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:53Z"}} +{"type":"node","id":"1621","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1048/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"SMITH","sponsors.0.isByRequest":"N","request.billNumber":"1048","sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 9.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1048/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1048/committees?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Aviation Noise and Emissions Mitigation Act","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"D","number":"1048","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1048/cosponsors?format=json","sponsors.0.bioguideId":"S000510","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1048/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1048/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1048/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 1048.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\nThe single subject of this legislation is:\nAviation noise and emissions.\n[Page H842]\n","sponsors.0.district":9,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"1622","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2131/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2131","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2131/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Historical Publications and Records Commission, Grants Program for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2131","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2131/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2131/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2131/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2131?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2131.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is,\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1623","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2145/text?format=json","updateDate":"2024-07-24T15:22:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2145","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2145/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2145/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration, Office of Inspector General for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2145","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2145/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2145/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2145/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2145/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2145?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2145.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:47Z"}} +{"type":"node","id":"1624","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2157/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2157","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2157/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2157/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To provide for a limitation on availability of funds for U.S. Department of Interior, US Fish and Wildlife Service, Construction for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"2157","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2157/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2157/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2157/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2157/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2157?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2157.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1652]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1625","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2148/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2148","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2148/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2148/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration,, Business Loans Program Account, Administrative Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2148","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2148/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2148/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2148/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2148/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2148?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\n[Pages H1651-H1652]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[[Page H1652]]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1626","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2138/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2138","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2138/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2138/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Postal Regulatory Commission, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2138","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2138/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2138/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2138/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2138/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2138?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2138.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1627","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2137/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2137","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2137/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Office of Special Counsel, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2137","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2137/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2137/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2137/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2137/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2137?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2137.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1628","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2114/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2114","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2114/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Federal Trade Commission, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"R","number":"2114","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2114/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2114?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2114.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"1629","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2144/text?format=json","updateDate":"2024-07-24T15:22:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2144","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2144/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2144/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration, Entrepreneurial Development Programs for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2144","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2144/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2144/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2144/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2144/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2144?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2144.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:47Z"}} +{"type":"node","id":"1630","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2125/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2125/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Merit Systems Protection Board, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2125","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2125/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1631","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2149/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2149","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2149/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2149/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Small Business Administration, Disaster Loan Program for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"R","number":"2149","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2149/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2149/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2149/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2149/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2149?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2149.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1652]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1632","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2165/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2165","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2165/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2165/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To provide for a limitation on availability of funds for U.S. Department of Interior, National Park Service, Operation of the National Park System for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"2165","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2165/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2165/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2165/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2165/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2165?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2165.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1652]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1633","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2115/text?format=json","updateDate":"2024-07-24T15:22:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2115","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2115/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2115/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, General Services Administration, Real Property Activities, Federal Building Fund for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"2115","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2115/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2115/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2115?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2115.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:48Z"}} +{"type":"node","id":"1634","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2102/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2102","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2102/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for District of Columbia, Federal Payment for School Improvement for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2102","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2102/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2102/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2102/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2102/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2102?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2102.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1635","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2156/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2156","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2156/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2156/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To provide for a limitation on availability of funds for U.S. Department of Interior, US Fish and Wildlife Service, Resource Management for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"2156","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2156/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2156/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2156/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2156/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2156?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2156.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1652]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1636","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2110/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2110","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2110/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2110/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Federal Communications Commission, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"2110","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2110/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2110/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2110/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2110/actions?format=json","latestAction.actionDate":"2023-04-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2110?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2110.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1637","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2164/text?format=json","updateDate":"2024-07-24T15:22:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2164","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2164/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2164/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To provide for a limitation on availability of funds for U.S. Department of Interior, US Fish and Wildlife Service, State and Tribal Wildlife Grants for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"2164","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2164/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2164/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2164/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2164/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2164?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1652]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:46Z"}} +{"type":"node","id":"1638","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2108/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2108","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2108/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2108/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, Consumer Product Safety Commission, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"R","number":"2108","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2108/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2108/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2108/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2108/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"1639","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2130/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"2130","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2130/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2130/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Independent Agencies, National Archives and Records Administration, Repairs and Restoration for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2130/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2130/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/2130?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1640","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1935/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1935","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1935/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Labor-Management Standards, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1935","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1935/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1935/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1935/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1935/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1935?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1641","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1933/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1933","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1933/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Pension Benefit Guaranty Corporation, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1933","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1933/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1933/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1933?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1642","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1955/text?format=json","updateDate":"2024-07-24T15:22:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1955","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1955/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1955/committees?format=json","policyArea.name":"Health","type":"HR","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Health Resources and Services Administration Maternal and Child Health for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1955","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1955/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1955/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1955/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1955/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1955?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1955.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item:\n[Page H1645]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:53Z"}} +{"type":"node","id":"1643","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1917/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1917","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1917/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1917/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide for a limitation on availability of funds for Library of Congress, Government Publishing Office, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"1917","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1917/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1917/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1917/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1917/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1917?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1917.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"1644","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1963/text?format=json","updateDate":"2024-07-24T15:22:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1963","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1963/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1963/committees?format=json","policyArea.name":"Health","type":"HR","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Centers for Disease Control and Prevention Emerging and Zoonotic Infectious Diseases for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1963","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1963/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1963/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1963/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1963/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1963?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1963.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1645]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:54Z"}} +{"type":"node","id":"1645","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1953/text?format=json","updateDate":"2024-07-24T15:22:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1953","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1953/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1953/committees?format=json","policyArea.name":"Health","type":"HR","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Health Resources and Services Administration Primary Health Care for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1953","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1953/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1953/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1953/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1953/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1953?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1953.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1645]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:54Z"}} +{"type":"node","id":"1646","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1908/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1908","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Agriculture, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1908/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1908/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Joint Items, Capitol Power Plant for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"1908","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1908/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1908/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1908/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1908/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1908?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1908.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1643]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"1647","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1905/text?format=json","updateDate":"2024-07-24T15:22:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1905","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1905/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1905/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Joint Items, House Office Buildings for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"1905","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1905/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1905/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1905/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1905/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1905?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1643]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:56Z"}} +{"type":"node","id":"1648","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1938/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1938","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1938/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Workers' Compensation Benefits, Special Benefits for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1938","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1938/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1938/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1938/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1938/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1938.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1649","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1924/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1924","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1924/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1924/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Employment and Training Administration, Migrant and Seasonal Farmworker Programs for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1924","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1924/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1924/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1924/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1924/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1924?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1924.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1650","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1926/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1926","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1926/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Employment and Training Administration, Ex-Offender Activities for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1926","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1926/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1926/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1926/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1926/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1926?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1651","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1920/text?format=json","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1920","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1920/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1920/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Library of Congress, Congressional Office For International Leadership for fiscal year 2024.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"1920","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1920/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1920/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1920/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1920/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1920.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"1652","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1932/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1932","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1932/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Employee Benefits Security Administration, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1932","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1932/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1932/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1932/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1932/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1932?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1932.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1653","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1930/text?format=json","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1930","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1930/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1930/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, State Unemployment Insurance and Employment Service Operations for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1930","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1930/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1930/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1930/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1930/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1930?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1930.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"1654","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1898/text?format=json","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1898","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1898/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1898/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Joint Items, Joint Committee on Taxation for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1898","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1898/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1898/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1898/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1898/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1898?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1898.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1643]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"1655","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1928/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1928","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1928/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1928/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Community Service Employment for Older Americans for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1928","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1928/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1928/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1928/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1928/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1928?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1656","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1937/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1937","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1937/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Worker's Compensation Program, Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1937","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1937/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1937/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1937/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1937/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1937?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1937.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1657","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1927/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1927","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1927/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Job Corps for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1927","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1927/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1927/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1927/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1927/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1927?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1927.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1658","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1913/text?format=json","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1913","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1913/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1913/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Library of Congress, Copyright Office Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1913","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1913/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1913/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1913/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1913/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1913?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1913.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"1659","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1942/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1942","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1942/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1942/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Occupational Safety and Health Administration for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1942","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1942/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1942/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1942/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1942/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1942?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1942.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1645]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1660","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/718/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzalez-Colon","sponsors.0.isByRequest":"N","request.billNumber":"718","sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/718/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/718/committees?format=json","policyArea.name":"Emergency Management","type":"HR","title":"To amend the Bipartisan Budget Act of 2018 to include certain services in the definition of critical services for purposes of repair, restoration, and replacement of damaged facilities.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"718","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/718/cosponsors?format=json","sponsors.0.bioguideId":"G000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/718/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/718/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/718/actions?format=json","latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/718/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rescom. González-Colón, Jenniffer [R-PR-At Large]","titles.count":2,"introducedDate":"2023-02-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/718?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\n[Pages H629-H630]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. GONZALEZ-COLON:\nH.R. 718.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H630]]\nThe Congress has the power to enact this legislation\npursuant to Article I, Section 8, Clauses 1 and 18 of the\nU.S. Constitution, which provide as follows:\n-The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defense and general Welfare of the United States;\nThe single subject of this legislation is:\nAmendment to the definition of critical services eligible\nfor specified recovery funding.\n","sponsors.0.firstName":"Jenniffer","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"1661","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/690/text?format=json","updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"690","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/690/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Taliban Rare Earth Minerals Sanctions Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"690","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2025-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/690/cosponsors?format=json","sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/690/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/690/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/690/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/690?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo impose sanctions on persons engaging in transactions in\nAfghanistan rare earth minerals.\n[Page H578]\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"1662","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/641/text?format=json","updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"641","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/641/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/641/subjects?format=json","policyArea.name":"Private Legislation","type":"HR","title":"For the relief of Reverend Olusegun Samson Olaoye.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"641","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2025-02-28","summaries.count":1,"sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/641/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/641/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/641/actions?format=json","latestAction.actionDate":"2023-01-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":2,"introducedDate":"2023-01-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/641?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 641.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nImmigration Private Bill\n[Page H511]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"1663","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/622/text?format=json","updateDate":"2024-07-24T15:23:56Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"622","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/622/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"REAL House Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"622","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/622/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/622/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":4,"introducedDate":"2023-01-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/622?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 2, Clause 3\nThe single subject of this legislation is:\nThis legislation expands the voting membership of the U.S.\nHouse of Representatives.\n[Page H510]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2025-01-09T17:27:13Z"}} +{"type":"node","id":"1664","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"SMITH","cboCostEstimates.0.pubDate":"2024-07-11T15:29:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Nutrition and Foreign Agriculture.","policyArea.name":"Health","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 442.","sponsors.0.party":"R","number":"620","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/620/cosponsors?format=json","sponsors.0.bioguideId":"S000522","actions.url":"https://api.congress.gov/v3/bill/118/hr/620/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/620/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-31","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","titles.count":4,"cosponsors.count":101,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-531","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/620/text?format=json","updateDate":"2024-12-05T14:23:54Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"620","sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/620/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/620/subjects?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":101,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60511","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2025-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/531?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/620/summaries?format=json","cboCostEstimates.0.title":"H.R. 620, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/620?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 620.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 , Section 8\n[Page H510]\n","sponsors.0.district":4,"sponsors.0.firstName":"CHRISTOPHER","updateDateIncludingText":"2024-12-05T14:23:54Z"}} +{"type":"node","id":"1665","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/605/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hill","sponsors.0.isByRequest":"N","request.billNumber":"605","sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/605/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Special Drawing Rights Oversight Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"605","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2025-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/605/cosponsors?format=json","sponsors.0.bioguideId":"H001072","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/605/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/605/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/605/actions?format=json","latestAction.actionDate":"2023-01-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","titles.count":3,"introducedDate":"2023-01-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/605?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nSpecial Drawing Rights Act\n[Page H490]\n","sponsors.0.district":2,"sponsors.0.firstName":"J.","updateDateIncludingText":"2024-07-24T15:23:55Z"}} +{"type":"node","id":"1666","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/598/text?format=json","updateDate":"2024-11-19T09:05:21Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Espaillat","sponsors.0.isByRequest":"N","request.billNumber":"598","sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/598/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/598/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"Earth Act to Stop Climate Pollution by 2030","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"598","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2025-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/598/cosponsors?format=json","sponsors.0.bioguideId":"E000297","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/598/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/598/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/598/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-23","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","titles.count":3,"introducedDate":"2023-01-27","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/598?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 598.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 5 of Amendment XIV of the U.S. Constitution\nThe single subject of this legislation is:\nEnvironmental regulation\n[Page H490]\n","sponsors.0.district":13,"sponsors.0.firstName":"Adriano","updateDateIncludingText":"2024-11-19T09:05:21Z"}} +{"type":"node","id":"1667","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/575/text?format=json","updateDate":"2024-07-24T15:23:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steube","sponsors.0.isByRequest":"N","request.billNumber":"575","sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/575/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/575/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Moving H–2A to United States Department of Agriculture Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"575","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2025-02-28","summaries.count":1,"sponsors.0.bioguideId":"S001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/575/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/575/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/575/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","titles.count":3,"introducedDate":"2023-01-26","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/575?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 575.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H430]\n","sponsors.0.district":17,"sponsors.0.firstName":"W.","updateDateIncludingText":"2024-07-24T15:23:59Z"}} +{"type":"node","id":"1668","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/695/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NAPOLITANO","sponsors.0.isByRequest":"N","request.billNumber":"695","sponsors.0.url":"https://api.congress.gov/v3/member/N000179?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/695/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/695/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"State and Local General Sales Tax Protection Act","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"D","number":"695","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/695/cosponsors?format=json","sponsors.0.bioguideId":"N000179","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/695/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/695/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/695/relatedbills?format=json","sponsors.0.fullName":"Rep. Napolitano, Grace F. [D-CA-31]","titles.count":3,"introducedDate":"2023-02-01","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/695?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. NAPOLITANO:\nH.R. 695.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment X to the Constitution\nThe single subject of this legislation is:\nAviation.\n[Page H629]\n","sponsors.0.district":31,"sponsors.0.firstName":"GRACE","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"1669","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/469/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hern","sponsors.0.isByRequest":"N","request.billNumber":"469","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/469/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/469/committees?format=json","policyArea.name":"Immigration","title":"Asylum Abuse Reduction Act","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"469","request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"sponsors.0.bioguideId":"H001082","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/469/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/469/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/469/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/469/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/469?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"1670","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/250/text?format=json","relatedBills.count":1,"updateDate":"2024-08-14T12:25:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Garamendi","sponsors.0.isByRequest":"N","request.billNumber":"250","sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Rules and Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/250/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/250/subjects?format=json","policyArea.name":"Environmental Protection","title":"Clean Water SRF Parity Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"D","number":"250","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/250/cosponsors?format=json","sponsors.0.bioguideId":"G000559","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/250/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/250/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/250/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/250/relatedbills?format=json","sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","titles.count":3,"introducedDate":"2023-01-10","cosponsors.count":6,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/250?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 8 (Tuesday, January 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 250.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe U.S. Constitution\n[Page H152]\n","sponsors.0.district":8,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-08-14T12:25:51Z"}} +{"type":"node","id":"1671","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1745/text?format=json","updateDate":"2024-12-21T09:05:45Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"DOGGETT","sponsors.0.isByRequest":"N","request.billNumber":"1745","sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1745/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1745/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Medicare Fraud Detection and Deterrence Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1745","request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"sponsors.0.bioguideId":"D000399","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1745/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1745/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1745/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-37]","titles.count":3,"introducedDate":"2023-03-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1745?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 1745.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the U.S. Constitution\nThe single subject of this legislation is:\nTo prevent repeat Medicare fraud.\n[Page H1410]\n","sponsors.0.district":37,"sponsors.0.firstName":"LLOYD","updateDateIncludingText":"2024-12-21T09:05:45Z"}} +{"type":"node","id":"1672","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1712/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Kustoff","sponsors.0.isByRequest":"N","request.billNumber":"1712","sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1712/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1712/subjects?format=json","policyArea.name":"Health","title":"Rural Health Innovation Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1712","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1712/cosponsors?format=json","sponsors.0.bioguideId":"K000392","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1712/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1712/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1712/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1712/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","titles.count":3,"introducedDate":"2023-03-22","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1712?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KUSTOFF:\nH.R. 1712.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof.\nThe single subject of this legislation is:\nThis bill strengthens access to care in rural areas by\nincentivizing communities to leverage their existing\nresources to provide for the community's urgent care needs.\n[Page H1328]\n","sponsors.0.district":8,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-07-24T15:23:13Z"}} +{"type":"node","id":"1673","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1758/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:23:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Luetkemeyer","sponsors.0.isByRequest":"N","request.billNumber":"1758","sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1758/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1758/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"SIFT Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1758","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1758/cosponsors?format=json","sponsors.0.bioguideId":"L000569","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1758/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1758/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1758/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1758/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","titles.count":4,"introducedDate":"2023-03-23","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1758?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUETKEMEYER:\nH.R. 1758.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1; Article I, Section 8,\nClause 3.\nThe single subject of this legislation is:\nTo Amend the Controlled Substances Act to list fentanyl-\nrelated substances as schedule I controlled substances.\n[Page H1411]\n","sponsors.0.district":3,"sponsors.0.firstName":"Blaine","updateDateIncludingText":"2024-07-24T15:23:13Z"}} +{"type":"node","id":"1674","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1677/text?format=json","updateDate":"2024-07-24T15:23:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Guthrie","sponsors.0.isByRequest":"N","request.billNumber":"1677","sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1677/subjects?format=json","policyArea.name":"Science, Technology, Communications","title":"SMART Spectrum Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"1677","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1677/cosponsors?format=json","sponsors.0.bioguideId":"G000558","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1677/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1677/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1677/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","titles.count":4,"introducedDate":"2023-03-21","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1677?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 1677.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation would improve federal spectrum management\nby creating a new tool used by the National\nTelecommunications and Information Administration to improve\nthe coordination of federal spectrum and mitigate harmful\ninterference.\n[[Page H1302]]\n[Page H1301]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brett","updateDateIncludingText":"2024-07-24T15:23:15Z"}} +{"type":"node","id":"1675","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1733/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Owens","sponsors.0.isByRequest":"N","request.billNumber":"1733","sponsors.0.url":"https://api.congress.gov/v3/member/O000086?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1733/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1733/subjects?format=json","policyArea.name":"Education","title":"Kids in Classes Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1733","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1733/cosponsors?format=json","sponsors.0.bioguideId":"O000086","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1733/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1733/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1733/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1733/relatedbills?format=json","sponsors.0.fullName":"Rep. Owens, Burgess [R-UT-4]","titles.count":3,"introducedDate":"2023-03-23","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1733?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OWENS:\nH.R. 1733.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nFederal education funds\n[Page H1410]\n","sponsors.0.district":4,"sponsors.0.firstName":"Burgess","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1676","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Salinas","cboCostEstimates.0.pubDate":"2023-09-22T19:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Native Americans","type":"HR","latestAction.text":"Became Public Law No: 118-32.","sponsors.0.party":"D","number":"1722","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1722/cosponsors?format=json","sponsors.0.bioguideId":"S001226","laws.0.number":"118-32","actions.url":"https://api.congress.gov/v3/bill/118/hr/1722/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2023-12-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1722/relatedbills?format=json","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":8,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-265","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1722/text?format=json","updateDate":"2024-11-09T04:52:00Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":29,"request.billNumber":"1722","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1722/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1722/committees?format=json","title":"Grand Ronde Reservation Act Amendment of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on July 26, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59594","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-02-27","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/265?format=json","summaries.count":5,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1722/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1722/summaries?format=json","cboCostEstimates.0.title":"H.R. 1722, Grand Ronde Reservation Act Amendment of 2023","introducedDate":"2023-03-22","subjects.count":6,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1722?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 1722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTribal Issues\n[Page H1329]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2024-11-09T04:52:00Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1677","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1689/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Spanberger","sponsors.0.isByRequest":"N","request.billNumber":"1689","sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1689/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Connecting Students with Mental Health Services Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1689/cosponsors?format=json","sponsors.0.bioguideId":"S001209","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1689/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1689/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1689/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","titles.count":3,"introducedDate":"2023-03-21","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1689?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 1689.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nTo support students' access to mental health services\nthrough telehealth programs.\n[Page H1302]\n","sponsors.0.district":7,"sponsors.0.firstName":"Abigail","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1678","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cartwright","cboCostEstimates.0.pubDate":"2023-07-26T12:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 666.","sponsors.0.party":"D","number":"1695","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1695/cosponsors?format=json","sponsors.0.bioguideId":"C001090","actions.url":"https://api.congress.gov/v3/bill/118/hr/1695/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1695/relatedbills?format=json","sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","titles.count":5,"cosponsors.count":20,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1695/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1695","sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1695/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1695/subjects?format=json","title":"Strengthening Agency Management and Oversight of Software Assets Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":20,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59418","request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1695/summaries?format=json","cboCostEstimates.0.title":"H.R. 1695, Strengthening Agency Management and Oversight of Software Assets Act","introducedDate":"2023-03-22","subjects.count":9,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1695?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\n[Pages H1327-H1328]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 1695.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H1328]]\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nOversight of federal purchasing of software\n","sponsors.0.district":8,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2025-02-04T17:04:03Z"}} +{"type":"node","id":"1679","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Phillips","cboCostEstimates.0.pubDate":"2023-05-26T21:39:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 77.","sponsors.0.party":"D","number":"1651","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1651/cosponsors?format=json","sponsors.0.bioguideId":"P000616","actions.url":"https://api.congress.gov/v3/bill/118/hr/1651/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-05","sponsors.0.fullName":"Rep. Phillips, Dean [D-MN-3]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-100","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59218","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1651/text?format=json","updateDate":"2024-11-09T04:42:28Z","originChamber":"House","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2023-05-26T21:39:00Z","actions.count":8,"request.billNumber":"1651","sponsors.0.url":"https://api.congress.gov/v3/member/P000616?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1651/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1651/committees?format=json","title":"Small Business 7(a) Loan Agent Transparency Act","cboCostEstimates.1.description":"As ordered reported by the House Committee on Small Business on\nMay 23, 2023\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on\nMay 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59218","request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/100?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1651/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1651/summaries?format=json","cboCostEstimates.0.title":"H.R. 1651, Small Business 7(a) Loan Agent Transparency Act","introducedDate":"2023-03-17","subjects.count":4,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1651?format=json","cboCostEstimates.1.title":"H.R. 1651, Small Business 7(a) Loan Agent Transparency Act ","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 50 (Friday, March 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PHILLIPS:\nH.R. 1651.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8, cl. 3 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nThis bill amends the Small Business Act to require the\nSmall Business Administration to establish a registration\nsystem for 7(a) loan agents.\n[Page H1296]\n","sponsors.0.district":3,"sponsors.0.firstName":"Dean","updateDateIncludingText":"2024-11-09T04:42:28Z"}} +{"type":"node","id":"1680","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1538/text?format=json","updateDate":"2024-12-21T09:05:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Carson","sponsors.0.isByRequest":"N","request.billNumber":"1538","sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1538/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1538/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"Emerging Business Encouragement Act of 2023","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"D","number":"1538","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1538/cosponsors?format=json","sponsors.0.bioguideId":"C001072","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1538/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1538/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1538/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-10","sponsors.0.fullName":"Rep. Carson, Andre [D-IN-7]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1538?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARSON:\nH.R. 1538.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nTo amend the Small Business Act to provide for contracting\npreferences and other benefits for emerging business\nenterprises, and for other purposes.\n[Page H1280]\n","sponsors.0.district":7,"sponsors.0.firstName":"André","updateDateIncludingText":"2024-12-21T09:05:53Z"}} +{"type":"node","id":"1681","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1545/text?format=json","updateDate":"2024-07-24T15:22:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","request.billNumber":"1545","sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1545/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1545/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Restoring Competitive Property Insurance Availability Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1545","request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"sponsors.0.bioguideId":"H001077","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1545/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1545/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1545/actions?format=json","latestAction.actionDate":"2023-03-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","titles.count":3,"introducedDate":"2023-03-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1545?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 1545.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nThis bill will incentivize property insurance companies to\nmaintain robust presence in an area after a federally\ndeclared disaster by providing tax relief in the 5 year\nperiod after said disaster.\n[Page H1280]\n","sponsors.0.district":3,"sponsors.0.firstName":"Clay","updateDateIncludingText":"2024-07-24T15:22:42Z"}} +{"type":"node","id":"1682","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1544/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1544","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1544/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Big Bend National Park Boundary Adjustment Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"1544","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1544/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1544/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1544/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1544/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1544/relatedbills?format=json","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1544?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 1544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV Section 3 clause 2: ``The Congress shall have\nPower to dispose of and make all needful Rules and\nRegulations respecting the Territory or other Property\nbelonging to the United States;''\nThe single subject of this legislation is:\nTo adjust the boundary of Big Bend National Park in the\nState of Texas.\n[Page H1280]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-11-09T01:57:44Z"}} +{"type":"node","id":"1683","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1540/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cartwright","sponsors.0.isByRequest":"N","request.billNumber":"1540","sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1540/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1540/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"National Flood Insurance Program Affordability Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"1540","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1540/cosponsors?format=json","sponsors.0.bioguideId":"C001090","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1540/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1540/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1540/actions?format=json","latestAction.actionDate":"2023-03-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1540?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 1540.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 (relating to the power of\nCongress to regulate Commerce with foreign Nations, and among\nthe several States, and with Indian Tribes.)\nThe single subject of this legislation is:\nTo create an NFIP affordability program.\n[Page H1280]\n","sponsors.0.district":8,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"1684","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Crow","cboCostEstimates.0.pubDate":"2023-05-25T20:05:03Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 74.","sponsors.0.party":"D","number":"1541","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1541/cosponsors?format=json","sponsors.0.bioguideId":"C001121","actions.url":"https://api.congress.gov/v3/bill/118/hr/1541/actions?format=json","latestAction.actionDate":"2023-06-05","textVersions.count":2,"sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","titles.count":4,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-97","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1541/text?format=json","updateDate":"2024-11-09T01:58:06Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"1541","sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1541/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1541/subjects?format=json","title":"Small Business Workforce Pipeline Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59211","request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/97?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1541/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1541/summaries?format=json","cboCostEstimates.0.title":"H.R. 1541, Small Business Workforce Pipeline Act of 2023","introducedDate":"2023-03-10","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1541?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 1541.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n``The Congress shall have Power to regulate Commerce with\nforeign Nations, and among the several States, and with the\nIndian Tribes.''\nThe single subject of this legislation is:\nThe bill allows Small Business Development Centers (SBDCs)\nto provide assistance to small businesses regarding\napprenticeship, pre-apprenticeship, and job training\nprograms.\n[Page H1280]\n","sponsors.0.district":6,"sponsors.0.firstName":"Jason","updateDateIncludingText":"2024-11-09T01:58:06Z"}} +{"type":"node","id":"1685","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1534/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"1534","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1534/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Dolores River National Conservation Area and Special Management Area Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"1534","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1534/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1534/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1534/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1534/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1534/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1534?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 1534.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nDesignates a portion of the Dolores River Canyon as a\nNational Conservation Area and a Special Management Area.\n[Page H1280]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:23:22Z"}} +{"type":"node","id":"1686","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1533/text?format=json","relatedBills.count":1,"updateDate":"2024-08-17T08:05:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Auchincloss","sponsors.0.isByRequest":"N","request.billNumber":"1533","sponsors.0.url":"https://api.congress.gov/v3/member/A000148?format=json","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1533/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1533/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Promoting New and Diverse Depository Institutions Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"1533","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1533/cosponsors?format=json","sponsors.0.bioguideId":"A000148","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1533/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1533/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1533/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1533/relatedbills?format=json","sponsors.0.fullName":"Rep. Auchincloss, Jake [D-MA-4]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1533?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AUCHINCLOSS:\nH.R. 1533.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nincreasing support for de novo finanical institutions.\n[Page H1280]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jake","updateDateIncludingText":"2024-08-17T08:05:20Z"}} +{"type":"node","id":"1687","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1542/text?format=json","updateDate":"2024-07-24T15:23:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"De La Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1542","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1542/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1542/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Mayorkas Must Fly Coach Until We Secure the Border Act","latestAction.text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","sponsors.0.party":"R","number":"1542","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1542/cosponsors?format=json","sponsors.0.bioguideId":"D000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1542/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1542/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1542/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-13","sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1542?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DE LA CRUZ:\nH.R. 1542.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII\nThe single subject of this legislation is:\nBill to help secure the border.\n[Page H1280]\n","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2024-07-24T15:23:23Z"}} +{"type":"node","id":"1688","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1524/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Tiffany","sponsors.0.isByRequest":"N","request.billNumber":"1524","sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","latestAction_text":"Referred to the House Committee on Education and Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1524/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1524/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","title":"FAIR Act of 2023","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Oversight and Accountability, Education and the Workforce, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1524","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1524/cosponsors?format=json","sponsors.0.bioguideId":"T000165","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1524/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1524/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1524/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","titles.count":4,"introducedDate":"2023-03-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 1524.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the constitution\nAmendment XIV, Section 5 of the constitution\nThe single subject of this legislation is:\nCivil rights\n[Page H1251]\n","sponsors.0.district":7,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1689","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1520/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stanton","sponsors.0.isByRequest":"N","request.billNumber":"1520","sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1520/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1520/committees?format=json","policyArea.name":"Energy","type":"HR","title":"To amend the Energy Independence and Security Act of 2007 to reauthorize the Energy Efficiency and Conservation Block Grant Program, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"D","number":"1520","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1520/cosponsors?format=json","sponsors.0.bioguideId":"S001211","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1520/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1520/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1520/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-4]","titles.count":2,"introducedDate":"2023-03-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1520?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 1520.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nEnergy\n[Page H1251]\n","sponsors.0.district":4,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1690","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1546/text?format=json","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"1546","sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1546/subjects?format=json","policyArea.name":"International Affairs","title":"Protecting American Sovereignty Act","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1546","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1546/cosponsors?format=json","sponsors.0.bioguideId":"J000304","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1546/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1546/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-10","sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1546?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 1546.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nProhibit federal funds from being used to implement any\nobligations of the United States under the World Health\nOrganization (WHO)'s Global Pandemic Treaty.\n[Page H1280]\n","sponsors.0.district":13,"sponsors.0.firstName":"Ronny","updateDateIncludingText":"2024-07-24T15:23:24Z"}} +{"type":"node","id":"1691","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1537/text?format=json","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"1537","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1537/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1537/subjects?format=json","policyArea.name":"Immigration","title":"PARENT Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1537","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1537/cosponsors?format=json","sponsors.0.bioguideId":"B001248","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1537/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1537/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1537/actions?format=json","latestAction.actionDate":"2023-03-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":4,"introducedDate":"2023-03-10","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1537?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 1537.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nKeeping unaccompanied alien children from harm.\n[Page H1280]\n","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:23:24Z"}} +{"type":"node","id":"1692","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1519/text?format=json","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SMITH","sponsors.0.isByRequest":"N","request.billNumber":"1519","sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1519/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1519/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Compensation for the Victims of State Misrepresentations to the World Health Organization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1519","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1519/cosponsors?format=json","sponsors.0.bioguideId":"S000522","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1519/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1519/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1519/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1519?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 1519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 1 of the U.S. Constitution\nThe single subject of this legislation is:\nVictims Compensation\n[Page H1251]\n","sponsors.0.district":4,"sponsors.0.firstName":"CHRISTOPHER","updateDateIncludingText":"2024-07-24T15:23:25Z"}} +{"type":"node","id":"1693","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1488/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"1488","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1488/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1488/subjects?format=json","policyArea.name":"Health","title":"Affordable Insulin Now Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1488","cosponsors.countIncludingWithdrawnCosponsors":102,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1488/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1488/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1488/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1488/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1488/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":102,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1488?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 1488.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nLowering insulin costs\n[Page H1250]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1694","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1476/text?format=json","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Timmons","sponsors.0.isByRequest":"N","request.billNumber":"1476","sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1476/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1476/committees?format=json","policyArea.name":"Commerce","title":"PPP Shell Company Discovery Act","type":"HR","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1476","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1476/cosponsors?format=json","sponsors.0.bioguideId":"T000480","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1476/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1476/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1476/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1476?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 1476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nA Bill to identify and report fraudulent PPP Reciepients.\n[Page H1208]\n","sponsors.0.district":4,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:23:24Z"}} +{"type":"node","id":"1695","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1465/text?format=json","updateDate":"2024-12-18T09:05:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","request.billNumber":"1465","sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1465/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1465/subjects?format=json","policyArea.name":"Animals","title":"Violet’s Law","type":"HR","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"1465","cosponsors.countIncludingWithdrawnCosponsors":100,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1465/cosponsors?format=json","sponsors.0.bioguideId":"M000194","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1465/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1465/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1465/actions?format=json","latestAction.actionDate":"2023-04-04","textVersions.count":1,"sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":100,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1465?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MACE:\nH.R. 1465.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution under the\nGeneral Welfare Clause.\nThe single subject of this legislation is:\nWould require all federal agencies to enact policies\nallowing for the retirement of surviving lab animals no\nlonger needed in taxpayer-funded experimentation.\n[Page H1208]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-12-18T09:05:36Z"}} +{"type":"node","id":"1696","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1481/text?format=json","updateDate":"2024-07-24T15:23:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"1481","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1481/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1481/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"CRUDE Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1481","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1481/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1481/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1481/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1481/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":4,"introducedDate":"2023-03-09","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1481?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 1481.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nThe single subject of this legislation is energy.\n[Page H1249]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:23:23Z"}} +{"type":"node","id":"1697","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1483/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"1483","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1483/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1483/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"End Oil and Gas Tax Subsidies Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"1483","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1483/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1483/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1483/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1483/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1483/relatedbills?format=json","sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1483?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\n[Pages H1249-H1250]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 1483.\n[[Page H1250]]\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nTaxation\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2024-11-09T01:28:25Z"}} +{"type":"node","id":"1698","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1503/text?format=json","relatedBills.count":1,"updateDate":"2024-09-07T08:05:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Harshbarger","sponsors.0.isByRequest":"N","request.billNumber":"1503","sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1503/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1503/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Prescription Information Modernization Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1503","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1503/cosponsors?format=json","sponsors.0.bioguideId":"H001086","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1503/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1503/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1503/actions?format=json","latestAction.actionDate":"2023-03-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1503/relatedbills?format=json","sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":32,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1503?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARSHBARGER:\nH.R. 1503.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHealthcare\n[Page H1250]\n","sponsors.0.district":1,"sponsors.0.firstName":"Diana","updateDateIncludingText":"2024-09-07T08:05:17Z"}} +{"type":"node","id":"1699","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1495/text?format=json","relatedBills.count":1,"updateDate":"2024-07-09T18:14:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1495","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1495/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1495/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Precision Agriculture Loan Program Act of 2023","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","number":"1495","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1495/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1495/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1495/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1495/actions?format=json","latestAction.actionDate":"2023-04-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1495/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1495?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Food, Conservation, and Energy Act of 2008 to\nestablish a precision agriculture loan program, and for other\npurposes.\n[Page H1250]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-07-09T18:14:45Z"}} +{"type":"node","id":"1700","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1279/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Buchanan","sponsors.0.isByRequest":"N","request.billNumber":"1279","sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1279/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1279/committees?format=json","policyArea.name":"Science, Technology, Communications","title":"Sunshine Protection Act of 2023","type":"HR","latestAction.text":"Motion to Discharge Committee filed by Mr. Steube. Petition No: 118-19. (Discharge petition text with signatures.)","sponsors.0.party":"R","number":"1279","cosponsors.countIncludingWithdrawnCosponsors":38,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1279/cosponsors?format=json","sponsors.0.bioguideId":"B001260","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1279/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1279/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1279/actions?format=json","latestAction.actionDate":"2024-11-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1279/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":38,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1279?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 1279.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8\nThe single subject of this legislation is:\nTo make daylight saving time permanent\n[Page H1050]\n","sponsors.0.district":16,"sponsors.0.firstName":"Vern","updateDateIncludingText":"2025-01-16T11:48:07Z"}} +{"type":"node","id":"1701","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1357/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"1357","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Referred to the Committee on Education and Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1357/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Congressional Oversight of Russian Sanctions Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1357","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1357/cosponsors?format=json","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1357/actions?format=json","latestAction.actionDate":"2023-03-03","textVersions.count":1,"sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1357?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 1357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nCongressional Oversight\n[Page H1115]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"1702","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1285/text?format=json","updateDate":"2024-07-24T15:23:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","request.billNumber":"1285","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1285/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1285/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Immigration Authorization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1285","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1285/cosponsors?format=json","sponsors.0.bioguideId":"D000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1285/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1285/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1285/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1285?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 1285.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nImmigration\n[Page H1050]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-07-24T15:23:29Z"}} +{"type":"node","id":"1703","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1302/text?format=json","relatedBills.count":1,"updateDate":"2024-07-09T18:14:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LEE","sponsors.0.isByRequest":"N","request.billNumber":"1302","sponsors.0.url":"https://api.congress.gov/v3/member/L000551?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1302/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1302/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Gun Records Restoration and Preservation Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1302","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1302/cosponsors?format=json","sponsors.0.bioguideId":"L000551","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1302/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1302/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1302/actions?format=json","latestAction.actionDate":"2023-03-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1302/relatedbills?format=json","sponsors.0.fullName":"Rep. Lee, Barbara [D-CA-12]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":28,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1302?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of California:\nH.R. 1302.\n=========================== NOTE ===========================\nOn page H1051, March 1, 2023, the following appeared: By Ms.\nLEE: H.R. 1302.\nThe online version has been corrected to read: By Ms. LEE of\nCalifornia: H.R. 1302.\n========================= END NOTE =========================\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution\nThe single subject of this legislation is:\nJudiciary\n[Page H1051]\n","sponsors.0.district":12,"sponsors.0.firstName":"BARBARA","updateDateIncludingText":"2024-07-09T18:14:44Z"}} +{"type":"node","id":"1704","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1296/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"1296","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1296/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1296/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Restoration of Employment Choice for Adults with Disabilities Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1296","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1296/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1296/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1296/actions?format=json","latestAction.actionDate":"2023-03-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1296?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1296.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nDisability employment\n[Page H1051]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1705","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Latta","cboCostEstimates.0.pubDate":"2023-04-20T20:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1339","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1339/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1339/actions?format=json","latestAction.actionDate":"2023-05-01","textVersions.count":4,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-42","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1339/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":21,"request.billNumber":"1339","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1339/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1339/subjects?format=json","title":"Precision Agriculture Satellite Connectivity Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 24, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59093","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-13","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/42?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1339/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1339/summaries?format=json","cboCostEstimates.0.title":"H.R. 1339, Precision Agriculture Satellite Connectivity Act","introducedDate":"2023-03-03","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1339?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1339.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo modernize FCC satellite regulations as it related to\nprecision agriculture.\n[Page H1114]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1706","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1311/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"1311","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1311/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1311/subjects?format=json","policyArea.name":"Education","type":"HR","title":"College Cost Transparency and Student Protection Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1311","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1311/cosponsors?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1311/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1311/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1311/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1311?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to direct the\nSecretary of Education to publish requirements for financial\naid offers to be provided by institutions of higher education\nto enrolled and prospective students.\n[Page H1052]\n","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1707","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1313/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T04:56:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mooney","sponsors.0.isByRequest":"N","request.billNumber":"1313","sponsors.0.url":"https://api.congress.gov/v3/member/M001195?format=json","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committees on Armed Services, Foreign Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1313/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1313/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Transparency in CFPB Cost-Benefit Analysis Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"1313","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"X.","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1313/cosponsors?format=json","sponsors.0.bioguideId":"M001195","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1313/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1313/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1313/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1313/relatedbills?format=json","sponsors.0.fullName":"Rep. Mooney, Alexander X. [R-WV-2]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1313?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOONEY:\nH.R. 1313.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nConsumer Financial Protection Bureau\n[Page H1052]\n","sponsors.0.district":2,"sponsors.0.firstName":"Alexander","updateDateIncludingText":"2024-11-09T04:56:59Z"}} +{"type":"node","id":"1708","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1358/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"1358","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1358/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1358/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"Combating Rural Inflation Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1358","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1358/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1358/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1358/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1358/actions?format=json","latestAction.actionDate":"2023-03-03","textVersions.count":1,"sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1358?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 1358.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEconomic Reporting\n[Page H1115]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1709","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1351/text?format=json","updateDate":"2024-11-27T09:05:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Grijalva","sponsors.0.isByRequest":"N","request.billNumber":"1351","sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","latestAction_text":"Referred to the House Committee on Education and Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1351/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1351/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Save Oak Flat From Foreign Mining Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"1351","cosponsors.countIncludingWithdrawnCosponsors":62,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1351/cosponsors?format=json","sponsors.0.bioguideId":"G000551","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1351/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1351/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1351/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":62,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1351?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 1351.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article 1 Sections 1 and 8\nThe single subject of this legislation is:\nTo repeal a land transfer to protect the sacred site of Oak\nFlat from desecration by foreign mining interests\n[Page H1114]\n","sponsors.0.district":7,"sponsors.0.firstName":"Raúl","updateDateIncludingText":"2024-11-27T09:05:20Z"}} +{"type":"node","id":"1710","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1356/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"1356","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1356/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1356/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Public Diplomacy Modernization Act of 2023","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1356","request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1356/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1356/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1356/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-03-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1356?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 1356.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nState Department modernization.\n[Page H1115]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"1711","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1344/text?format=json","updateDate":"2024-11-20T09:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Crockett","sponsors.0.isByRequest":"N","request.billNumber":"1344","sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1344/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1344/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To rename the Dallas Veterans Affairs Medical Center in Dallas, Texas, as the \"Eddie Bernice Johnson VA Medical Center\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1344","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1344/cosponsors?format=json","sponsors.0.bioguideId":"C001130","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1344/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1344/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1344/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","titles.count":2,"introducedDate":"2023-03-03","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1344?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CROCKETT:\nH.R. 1344.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection I, Article 8\nThe single subject of this legislation is:\nVeterans Affairs\n[Page H1114]\n","sponsors.0.district":30,"sponsors.0.firstName":"Jasmine","updateDateIncludingText":"2024-11-20T09:05:29Z"}} +{"type":"node","id":"1712","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1278/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"1278","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on the Budget, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1278/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1278/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"DRIVE Act","latestAction.text":"Subcommittee Consideration and Mark-up Session Held","sponsors.0.party":"D","number":"1278","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1278/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1278/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1278/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1278/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1278/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":4,"introducedDate":"2023-03-01","cosponsors.count":37,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1278?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 1278.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans\n[Page H1050]\n","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2024-07-24T15:23:31Z"}} +{"type":"node","id":"1713","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1300/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:31Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1300","sponsors.0.url":"https://api.congress.gov/v3/member/K000376?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1300/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1300/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"IRS Whistleblower Program Improvement Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1300","request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"sponsors.0.bioguideId":"K000376","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1300/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1300/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1300/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1300/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. Kelly, Mike [R-PA-16]","titles.count":3,"introducedDate":"2023-03-01","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1300?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Pennsylvania:\nH.R. 1300.\n=========================== NOTE ===========================\nOn page H1051, March 1, 2023, the following appeared: By Mr.\nKELLY: H.R. 1300.\nThe online version has been corrected to read: By Mr. KELLY of\nPennsylvania: H.R. 1300.\n========================= END NOTE =========================\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to modify and\nreform rules relating to investigations and whistleblowers,\nand for other purposes.\n[Page H1051]\n","sponsors.0.district":16,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:23:31Z"}} +{"type":"node","id":"1714","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1312/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"1312","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1312/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1312/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Deerfield River Wild and Scenic River Study Act of 2023","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"1312","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1312/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1312/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1312/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1312/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1312/relatedbills?format=json","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1312?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 1312.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nConservation of the Deerfield River and its tributaries in\nMassachusetts and Vermont.\n[Page H1052]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-11-09T01:57:44Z"}} +{"type":"node","id":"1715","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1325/text?format=json","relatedBills.count":2,"updateDate":"2024-11-21T09:05:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pingree","sponsors.0.isByRequest":"N","request.billNumber":"1325","sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1325/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1325/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Asylum Seeker Work Authorization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1325","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1325/cosponsors?format=json","sponsors.0.bioguideId":"P000597","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1325/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1325/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1325/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1325/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1325?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PINGREE:\nH.R. 1325.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAsylum seeker work authorization\n[Page H1052]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chellie","updateDateIncludingText":"2024-11-21T09:05:52Z"}} +{"type":"node","id":"1716","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1326/text?format=json","updateDate":"2024-07-24T15:23:32Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Porter","sponsors.0.isByRequest":"N","request.billNumber":"1326","sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1326/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1326/subjects?format=json","policyArea.name":"Health","type":"HR","title":"SALT Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1326","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1326/cosponsors?format=json","sponsors.0.bioguideId":"P000618","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1326/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1326/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1326/actions?format=json","latestAction.actionDate":"2023-03-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","titles.count":4,"introducedDate":"2023-03-01","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1326?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 1326.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo modify the limitation on the deduction by individuals of\ncertain State and local taxes and to provide coverage for\nhearing and vision care under the Medicare program.\n[Page H1052]\n","sponsors.0.district":47,"sponsors.0.firstName":"Katie","updateDateIncludingText":"2025-02-04T17:27:12Z"}} +{"type":"node","id":"1717","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1287/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1287","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1287/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1287/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Cattle Price Discovery and Transparency Act of 2023","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"1287","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1287/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1287/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1287/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1287/actions?format=json","latestAction.actionDate":"2023-04-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1287/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1287?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1287.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 4 of the Constitution\nThe single subject of this legislation is:\nTo establish mandatory minimum purchase volumes for packers\nthrough ``approved pricing mechanisms'', establish a maximum\npenalty for covered packers of $90,000 for mandatory minimum\nviolations, and to create a publicly available library of\nmarketing contracts.\n[Page H1051]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-07-24T15:23:31Z"}} +{"type":"node","id":"1718","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2023-04-03T14:51:00Z","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1343","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1343/cosponsors?format=json","sponsors.0.bioguideId":"C001103","actions.url":"https://api.congress.gov/v3/bill/118/hr/1343/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1343/relatedbills?format=json","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":10,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-40","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1343/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":19,"request.billNumber":"1343","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1343/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1343/subjects?format=json","title":"ITS Codification Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 24, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59037","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2025-02-13","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/40?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1343/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1343/summaries?format=json","cboCostEstimates.0.title":"H.R. 1343, ITS Codification Act","introducedDate":"2023-03-03","subjects.count":10,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1343?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 1343.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress is granted the authority to introduce and enact\nthis legislation pursuant to Article 1, Section 8 of the U.S.\nConstitution.\nThe single subject of this legislation is:\nThe bill codifies statutory authority for the Institute for\nTelecommunication Sciences (ITS), the research and\nengineering laboratory that supports the National\nTelecommunications and Information Administration's (NTIA)\nmission to manage radio frequency spectrum.\n[Page H1114]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1719","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1286/text?format=json","updateDate":"2024-07-24T15:23:31Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Fallon","sponsors.0.isByRequest":"N","request.billNumber":"1286","sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1286/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1286/subjects?format=json","policyArea.name":"Immigration","title":"Lone Star Reimbursement Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","sponsors.0.party":"R","number":"1286","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1286/cosponsors?format=json","sponsors.0.bioguideId":"F000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1286/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1286/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1286/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1286?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\n[Pages H1050-H1051]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 1286.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\n[[Page H1051]]\nBorder Security\n","sponsors.0.district":4,"sponsors.0.firstName":"Pat","updateDateIncludingText":"2024-07-24T15:23:31Z"}} +{"type":"node","id":"1720","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1102/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:40:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Roy","sponsors.0.isByRequest":"N","request.billNumber":"1102","sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1102/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"UNRWA Accountability and Transparency Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1102","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1102/cosponsors?format=json","sponsors.0.bioguideId":"R000614","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1102/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1102/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1102/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1102/relatedbills?format=json","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":43,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1102?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 1102\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation changes policy and funding for the United\nNations Relief and Works Agency for Palestine Refugees in the\nNear East (UNRWA).\n[Page H856]\n","sponsors.0.district":21,"sponsors.0.firstName":"Chip","updateDateIncludingText":"2024-06-11T15:40:43Z"}} +{"type":"node","id":"1721","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1046/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"SCHAKOWSKY","sponsors.0.isByRequest":"N","request.billNumber":"1046","sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1046/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1046/subjects?format=json","policyArea.name":"Social Welfare","title":"Social Security Expansion Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"D","number":"1046","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1046/cosponsors?format=json","sponsors.0.bioguideId":"S001145","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1046/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1046/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1046/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1046/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":37,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1046?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 1046.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nSocial Security\nBy Mr. SMITH of Washington\nH.R. 1047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\nThe single subject of this legislation is:\nAviation.\n[Page H842]\n","sponsors.0.district":9,"sponsors.0.firstName":"JANICE","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1722","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1086/text?format=json","relatedBills.count":4,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"1086","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1086/subjects?format=json","policyArea.name":"Energy","title":"Nuclear Fuel Security Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1086","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1086/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1086/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1086/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1086/relatedbills?format=json","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nto establish and expand U.S. nuclear fuel programs to boost\ndomestic nuclear energy.\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1723","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1041/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T08:05:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pressley","sponsors.0.isByRequest":"N","request.billNumber":"1041","sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1041/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1041/subjects?format=json","policyArea.name":"Taxation","title":"American Opportunity Accounts Act","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"1041","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1041/cosponsors?format=json","sponsors.0.bioguideId":"P000617","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1041/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1041/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1041/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1041/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":33,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1041?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PRESSLEY:\nH.R. 1041.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nThis bill will help reduce wealth inequality.\n[Page H842]\n","sponsors.0.district":7,"sponsors.0.firstName":"Ayanna","updateDateIncludingText":"2024-06-12T08:05:53Z"}} +{"type":"node","id":"1724","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1054/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Walberg","sponsors.0.isByRequest":"N","request.billNumber":"1054","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1054/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1054/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HR","title":"EEOC Transparency and Accountability Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1054","request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"sponsors.0.bioguideId":"W000798","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1054/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1054/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1054/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1054/relatedbills?format=json","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":3,"introducedDate":"2023-02-14","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1054?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 1054.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo amend title VII of the Civil Rights Act of 1964 to\nrequire the Equal Employment Opportunity Commission to\napprove commencing, intervening in, or participating in\ncertain litigation.\n[Page H842]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1725","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1106/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wexton","sponsors.0.isByRequest":"N","request.billNumber":"1106","sponsors.0.url":"https://api.congress.gov/v3/member/W000825?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1106/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1106/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"COST of Relocations Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1106","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1106/cosponsors?format=json","sponsors.0.bioguideId":"W000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1106/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1106/relatedbills?format=json","sponsors.0.fullName":"Rep. Wexton, Jennifer [D-VA-10]","titles.count":4,"introducedDate":"2023-02-17","cosponsors.count":5,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WEXTON:\nH.R. 1106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nRequiring a benefit-cost analysis for any proposed\nrelocation of a Federal agency.\n[Page H856]\n","sponsors.0.district":10,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1726","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1100/text?format=json","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Posey","sponsors.0.isByRequest":"N","request.billNumber":"1100","sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1100/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1100/subjects?format=json","policyArea.name":"Immigration","title":"SAFE for America Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1100","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1100/cosponsors?format=json","sponsors.0.bioguideId":"P000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1100/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1100/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1100/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","titles.count":4,"introducedDate":"2023-02-17","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1100?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POSEY:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nA Visa Lottery Immigration Bill\n[Page H856]\n","sponsors.0.district":8,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-12-04T09:05:25Z"}} +{"type":"node","id":"1727","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1053/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"1053","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1053/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1053/subjects?format=json","policyArea.name":"Housing and Community Development","title":"Housing Supply Expansion Act","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1053","request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1053/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1053/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1053/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1053/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2023-02-14","request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1053?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 1053.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nThis bill only updates regarding prevalent wage\ndeterminations in order to expand access to affordable\nhousing.\n[Page H842]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2025-02-19T17:27:12Z"}} +{"type":"node","id":"1728","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1080/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"1080","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"COVID–19 Federal Employee Reinstatement Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1080","request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1080/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":3,"introducedDate":"2023-02-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1080?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 1080.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nProvide for the reinstatement or compensation of Federal\nemployees forced to resign their careers between September 9,\n2021, and January 24, 2022, because of the Federal COVID-19\nvaccination mandate.\n[Page H855]\n","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1729","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Lesko","cboCostEstimates.0.pubDate":"2023-05-26T14:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 796.","sponsors.0.party":"R","number":"1089","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1089/cosponsors?format=json","sponsors.0.bioguideId":"L000589","actions.url":"https://api.congress.gov/v3/bill/118/hr/1089/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":2,"sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1089/text?format=json","updateDate":"2024-12-27T10:38:14Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1089","sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1089/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1089/subjects?format=json","title":"VA Medical Center Facility Transparency Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on\nApril 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59199","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1089/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1089/summaries?format=json","cboCostEstimates.0.title":"H.R. 1089, VA Medical Center Facility Transparency Act","introducedDate":"2023-02-17","subjects.count":14,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1089?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 1089.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nVeterans Health Care\n[Page H856]\n","sponsors.0.district":8,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-12-27T10:48:29Z"}} +{"type":"node","id":"1730","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1091/text?format=json","updateDate":"2024-06-11T15:42:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lieu","sponsors.0.isByRequest":"N","request.billNumber":"1091","sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1091/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1091/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Stop Hate Crimes Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1091","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1091/cosponsors?format=json","sponsors.0.bioguideId":"L000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1091/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1091/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1091/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":21,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1091?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 1091.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nCivil rights\n[Page H856]\n","sponsors.0.district":36,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-06-11T15:42:46Z"}} +{"type":"node","id":"1731","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Aguilar","cboCostEstimates.0.pubDate":"2023-07-21T17:40:09Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-110.","sponsors.0.party":"D","number":"1060","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1060/cosponsors?format=json","sponsors.0.bioguideId":"A000371","laws.0.number":"118-110","actions.url":"https://api.congress.gov/v3/bill/118/hr/1060/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2024-11-25","sponsors.0.fullName":"Rep. Aguilar, Pete [D-CA-33]","titles.count":2,"cosponsors.count":50,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60607","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1060/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","cboCostEstimates.1.pubDate":"2024-08-12T18:49:00Z","actions.count":27,"request.billNumber":"1060","sponsors.0.url":"https://api.congress.gov/v3/member/A000371?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1060/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1060/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 1663 East Date Place in San Bernardino, California, as the \"Dr. Margaret B. Hill Post Office Building\".","cboCostEstimates.1.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":50,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59411","request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1060/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1060/summaries?format=json","cboCostEstimates.0.title":"H.R. 1060, a bill to designate the facility of the United States Postal Service located at 1663 East Date Place in San Bernardino, California, as the “Dr. Margaret B. Hill Post Office Building”","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1060?format=json","cboCostEstimates.1.title":"H.R. 1060, an act to designate the facility of the United States Postal Service located at 1663 East Date Place in San Bernardino, California, as the “Dr. Margaret B. Hill Post Office Building”","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AGUILAR:\nH.R. 1060.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRenaming a Post Office in San Bernardino, California\n[Page H854]\n","sponsors.0.district":33,"sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-02-04T17:04:03Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1732","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1065/text?format=json","relatedBills.count":4,"updateDate":"2024-12-05T09:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Barragan","sponsors.0.isByRequest":"N","request.billNumber":"1065","sponsors.0.url":"https://api.congress.gov/v3/member/B001300?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1065/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1065/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Outdoors for All Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"1065","cosponsors.countIncludingWithdrawnCosponsors":81,"request.format":"json","sponsors.0.middleName":"Diaz","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1065/cosponsors?format=json","sponsors.0.bioguideId":"B001300","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1065/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1065/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1065/actions?format=json","latestAction.actionDate":"2023-03-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1065/relatedbills?format=json","sponsors.0.fullName":"Rep. Barragan, Nanette Diaz [D-CA-44]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":81,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1065?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BARRAGAN:\nH.R. 1065.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis bill codifies the existing Outdoor Recreation Legacy\nPartnership Program of the National Park Service.\n[Page H855]\n","sponsors.0.district":44,"sponsors.0.firstName":"Nanette","updateDateIncludingText":"2024-12-05T09:05:29Z"}} +{"type":"node","id":"1733","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Moulton","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Finance and Financial Sector","type":"HR","latestAction.text":"Became Public Law No: 118-10.","sponsors.0.party":"D","number":"1096","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1096/cosponsors?format=json","sponsors.0.bioguideId":"M001196","laws.0.number":"118-10","actions.url":"https://api.congress.gov/v3/bill/118/hr/1096/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1096/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2023-07-26","sponsors.0.fullName":"Rep. Moulton, Seth [D-MA-6]","titles.count":7,"cosponsors.count":301,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1096/text?format=json","updateDate":"2024-07-24T15:15:24Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":21,"request.billNumber":"1096","sponsors.0.url":"https://api.congress.gov/v3/member/M001196?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1096/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1096/subjects?format=json","title":"250th Anniversary of the United States Marine Corps Commemorative Coin Act","cosponsors.countIncludingWithdrawnCosponsors":301,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":4,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1096/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1096/summaries?format=json","introducedDate":"2023-02-17","subjects.count":5,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1096?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOULTON:\nH.R. 1096.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 5 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to mint coins in\ncommemoration of the 250th Anniversary of the United States\nMarine Corps, and to support programs at the Marine Corps\nHeritage Center.\n[Page H856]\n","sponsors.0.district":6,"sponsors.0.firstName":"Seth","updateDateIncludingText":"2024-07-24T15:15:24Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1734","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1039/text?format=json","updateDate":"2024-12-21T09:05:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Plaskett","sponsors.0.isByRequest":"N","request.billNumber":"1039","sponsors.0.url":"https://api.congress.gov/v3/member/P000610?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1039/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1039/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Territorial Tax Parity and Fairness Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"1039","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-06","summaries.count":1,"sponsors.0.bioguideId":"P000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1039/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1039/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1039/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Del. Plaskett, Stacey E. [D-VI-At Large]","titles.count":3,"introducedDate":"2023-02-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1039?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PLASKETT:\nH.R. 1039.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTax parity and fairness for the U.S. Virgin Islands.\n[Page H842]\n","sponsors.0.firstName":"Stacey","updateDateIncludingText":"2024-12-21T09:05:24Z"}} +{"type":"node","id":"1735","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1050/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stevens","sponsors.0.isByRequest":"N","request.billNumber":"1050","sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1050/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1050/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Data Science and Literacy Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"1050","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1050/cosponsors?format=json","sponsors.0.bioguideId":"S001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1050/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1050/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1050/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1050?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEVENS:\nH.R. 1050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nImproving data science and literacy education.\n[Page H842]\n","sponsors.0.district":11,"sponsors.0.firstName":"Haley","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1736","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"De La Cruz","cboCostEstimates.0.pubDate":"2023-03-06T19:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-79.","sponsors.0.party":"R","number":"1076","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1076/cosponsors?format=json","sponsors.0.bioguideId":"D000594","laws.0.number":"118-79","actions.url":"https://api.congress.gov/v3/bill/118/hr/1076/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1076/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","titles.count":7,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-75","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1076/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":4,"request.congress":"118","actions.count":35,"request.billNumber":"1076","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1076/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1076/subjects?format=json","title":"Preventing the Financing of Illegal Synthetic Drugs Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58982","request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/75?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1076/summaries?format=json","cboCostEstimates.0.title":"H.R. 1076, Preventing the Financing of Illegal Synthetic Drugs Act","introducedDate":"2023-02-17","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DE LA CRUZ:\nH.R. 1076.\nCongress has the power to enact this legislation pursuant\nto the following:\nRegulations with an Effect on Interstate Commerce Article\nI, Section 8, clause 3 (Commerce Clause)\nThe single subject of this legislation is:\nDrug Trafficking Funding\n[Page H855]\n","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1737","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1043/text?format=json","relatedBills.count":7,"updateDate":"2024-11-09T04:51:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"1043","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1043/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1043/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"To restore onshore energy production.","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","sponsors.0.party":"R","number":"1043","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1043/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1043/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1043/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1043/actions?format=json","latestAction.actionDate":"2023-03-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1043/relatedbills?format=json","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2023-02-14","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1043?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 1043.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation restarts the federal onshore leasing\nprogram and requires replacement sales when a sale is missed.\n[Page H842]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2024-11-09T04:51:58Z"}} +{"type":"node","id":"1738","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1040/text?format=json","updateDate":"2024-07-24T15:23:41Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"1040","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1040/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1040/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Flat Tax Act","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1040","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-02-06","summaries.count":1,"sponsors.0.bioguideId":"B001248","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1040/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1040/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1040/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":3,"introducedDate":"2023-02-14","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1040?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 1040.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nThis bill authorizes an individual or a person engaged in\nbusiness activity to make an irrevocable election to be\nsubject to a flat tax (in lieu of the existing income tax\nprovisions) of 19% for the first two years after an election\nis made, and 17% thereafter.\n[Page H842]\n","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:23:41Z"}} +{"type":"node","id":"1739","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"McCaul","cboCostEstimates.0.pubDate":"2023-03-07T19:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1093","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1093/cosponsors?format=json","sponsors.0.bioguideId":"M001157","actions.url":"https://api.congress.gov/v3/bill/118/hr/1093/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1093/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":2,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1093/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":14,"request.billNumber":"1093","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1093/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1093/committees?format=json","title":"To direct the Secretary of State to submit to Congress a report on implementation of the advanced capabilities pillar of the trilateral security partnership between Australia, the United Kingdom, and the United States.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58975","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2025-02-06","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1093/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1093/summaries?format=json","cboCostEstimates.0.title":"H.R. 1093, A bill to direct the Secretary of State to submit to Congress a report on implementation of the advanced capabilities pillar of the trilateral security partnership between Australia, the United Kingdom, and the United States","introducedDate":"2023-02-17","subjects.count":15,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1093?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 1093.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nImplementation of the advanced capabilities pillar of the\ntrilateral security partnership between Australia, the United\nKingdom, and the United States\n[Page H856]\n","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1740","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/765/text?format=json","relatedBills.count":1,"updateDate":"2024-07-03T08:05:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bowman","sponsors.0.isByRequest":"N","request.billNumber":"765","sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/765/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/765/subjects?format=json","policyArea.name":"Arts, Culture, Religion","title":"African American History Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"765","cosponsors.countIncludingWithdrawnCosponsors":122,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/765/cosponsors?format=json","sponsors.0.bioguideId":"B001223","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/765/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/765/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/765/actions?format=json","latestAction.actionDate":"2023-02-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/765/relatedbills?format=json","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":122,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/765?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOWMAN:\nH.R. 765.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nAfrican American history\n[Page H681]\n","sponsors.0.district":16,"sponsors.0.firstName":"Jamaal","updateDateIncludingText":"2024-07-27T16:27:11Z"}} +{"type":"node","id":"1741","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/749/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"749","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/749/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/749/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Turn OFF THE TAP Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"749","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/749/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/749/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/749/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/749/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/749/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2023-02-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/749?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nThe subject of this bill is preventing federal funds from\ngoing to sanctioned entities.\n[Page H680]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1742","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Finance and Financial Sector","type":"HR","latestAction.text":"Became Public Law No: 118-109.","sponsors.0.party":"R","number":"807","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/807/cosponsors?format=json","sponsors.0.bioguideId":"M001156","laws.0.number":"118-109","actions.url":"https://api.congress.gov/v3/bill/118/hr/807/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/807/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-11-25","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":6,"cosponsors.count":299,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/807/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":22,"request.billNumber":"807","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/807/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/807/subjects?format=json","title":"Working Dog Commemorative Coin Act","cosponsors.countIncludingWithdrawnCosponsors":299,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/807/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/807/summaries?format=json","introducedDate":"2023-02-02","subjects.count":4,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/807?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McHENRY:\nH.R. 807.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority on which this bill rests is\nthe power of Congress to to coin money, regulate the Value\nthereof, and of foreign coin, and to fix the Standard of\nWeights and Measures as enumerated in Article I, Section 8,\nClause 5 of the United States Constitution.\nThe single subject of this legislation is:\nU.S. Mint Commemorative Coin\n[Page H682]\n","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2025-01-14T18:24:14Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1743","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/772/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Davidson","sponsors.0.isByRequest":"N","request.billNumber":"772","sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/772/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/772/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Vaccine Passport Prevention Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"772","request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"sponsors.0.bioguideId":"D000626","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/772/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/772/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/772/actions?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","titles.count":3,"introducedDate":"2023-02-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/772?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 772.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nCommerce\n[Page H681]\n","sponsors.0.district":8,"sponsors.0.firstName":"Warren","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1744","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/805/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"MCGOVERN","sponsors.0.isByRequest":"N","request.billNumber":"805","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/805/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/805/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Industrial Agriculture Accountability Act of 2023","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"D","number":"805","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/805/cosponsors?format=json","sponsors.0.bioguideId":"M000312","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/805/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/805/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/805/actions?format=json","latestAction.actionDate":"2023-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/805/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/805?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nAgriculture disaster mitigation\n[Page H682]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1745","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/819/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stefanik","sponsors.0.isByRequest":"N","request.billNumber":"819","sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/819/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/819/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Protecting School Milk Choices Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"819","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/819/cosponsors?format=json","sponsors.0.bioguideId":"S001196","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/819/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/819/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/819/actions?format=json","latestAction.actionDate":"2023-02-02","textVersions.count":1,"sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/819?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 819.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nProtecting student choice of milk in schools\n[Page H683]\n","sponsors.0.district":21,"sponsors.0.firstName":"Elise","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1746","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/823/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:06:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"823","sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/823/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/823/subjects?format=json","policyArea.name":"Commerce","title":"Safer Heat Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"D","number":"823","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/823/cosponsors?format=json","sponsors.0.bioguideId":"T000486","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/823/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/823/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/823/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/823/relatedbills?format=json","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/823?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 823.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nFire Safety\n[Page H683]\n","sponsors.0.district":15,"sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2025-01-17T03:06:27Z"}} +{"type":"node","id":"1747","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/812/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":8,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"812","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/812/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/812/subjects?format=json","policyArea.name":"Taxation","title":"Inflation Reduction Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"812","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/812/cosponsors?format=json","sponsors.0.bioguideId":"O000175","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/812/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/812/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/812/actions?format=json","latestAction.actionDate":"2023-02-03","textVersions.count":1,"sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":24,"request.contentType":"application/json","subjects.count":280,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/812?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 812.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo repeal the Inflation Reduction Act of 2022\n[Page H683]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1748","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/777/text?format=json","updateDate":"2024-06-11T15:57:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Duncan","sponsors.0.isByRequest":"N","request.billNumber":"777","sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","latestAction_text":"Referred to the House Committee on Education and Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/777/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/777/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Visa Overstay Enforcement Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"777","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/777/cosponsors?format=json","sponsors.0.bioguideId":"D000615","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/777/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/777/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/777/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":11,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/777?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 777.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe single subject of this legislation is:\nThis legislation criminalizes overstaying a visa, including\nenforcement penalties.\n[Page H681]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-11T15:57:33Z"}} +{"type":"node","id":"1749","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/771/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Cole","sponsors.0.isByRequest":"N","request.billNumber":"771","sponsors.0.url":"https://api.congress.gov/v3/member/C001053?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/771/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/771/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Firearm Lockbox Protection Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"771","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/771/cosponsors?format=json","sponsors.0.bioguideId":"C001053","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/771/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/771/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/771/actions?format=json","latestAction.actionDate":"2023-02-02","textVersions.count":1,"sponsors.0.fullName":"Rep. Cole, Tom [R-OK-4]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/771?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COLE:\nH.R. 771.\nCongress has the power to enact this legislation pursuant\nto the following:\nSecond Amendment to the United States Constitution\nThe single subject of this legislation is:\nTo make certain that federal judges can protect themselves\nby utilizing their Second Amendment rights.\n[Page H681]\n","sponsors.0.district":4,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1750","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Foster","cboCostEstimates.0.pubDate":"2023-04-17T20:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the House Calendar, Calendar No. 32.","sponsors.0.party":"D","number":"783","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/783/cosponsors?format=json","sponsors.0.bioguideId":"F000454","actions.url":"https://api.congress.gov/v3/bill/118/hr/783/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-08-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/783/relatedbills?format=json","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-163","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/783/text?format=json","updateDate":"2024-11-09T04:42:18Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":10,"request.billNumber":"783","sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/783/subjects?format=json","title":"To designate the Department of Energy Integrated Engineering Research Center Federal Building located at the Fermi National Accelerator Laboratory in Batavia, Illinois, as the \"Helen Edwards Engineering Research Center\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59080","request.format":"json","latestAction_actionDate":"2025-01-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/163?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/783/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/783/summaries?format=json","cboCostEstimates.0.title":"H.R. 783, a bill to designate the Department of Energy Integrated Engineering Research Center Federal Building located at the Fermi National Accelerator Laboratory in Batavia, Illinois, as the ‘‘Helen Edwards Engineering Research Center’’","introducedDate":"2023-02-02","subjects.count":5,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/783?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 783.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nLegislating.\n[Page H681]\n","sponsors.0.district":11,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-11-09T04:42:18Z"}} +{"type":"node","id":"1751","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/768/text?format=json","relatedBills.count":4,"updateDate":"2024-11-02T08:05:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Carbajal","sponsors.0.isByRequest":"N","request.billNumber":"768","sponsors.0.url":"https://api.congress.gov/v3/member/C001112?format=json","latestAction_text":"Referred to the House Committee on Education and Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/768/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/768/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Extreme Risk Protection Order Expansion Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"768","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/768/cosponsors?format=json","sponsors.0.bioguideId":"C001112","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/768/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/768/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/768/actions?format=json","latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/768/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Carbajal, Salud O. [D-CA-24]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":9,"request.contentType":"application/json","subjects.count":28,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/768?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARBAJAL:\nH.R. 768.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nGun Violence Prevention\n[Page H681]\n","sponsors.0.district":24,"sponsors.0.firstName":"Salud","updateDateIncludingText":"2024-11-02T08:05:34Z"}} +{"type":"node","id":"1752","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/757/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"757","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/757/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/757/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Kids from Candy-Flavored Drugs Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"757","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/757/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/757/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/757/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/757/actions?format=json","latestAction.actionDate":"2023-02-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/757/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/757?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 757.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact thIs\nlegislation is provided by Article 1, section 8 of the United\nStatos Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carring out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nTo amend the Controlled Substanes Act to prohibit\nmanufacturing or distributing candy-flavored controlled\nsubstances for mInors, and for other purposes.\n[Page H680]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"1753","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2023-06-02T21:24:00Z","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Animals","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"764","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/764/cosponsors?format=json","sponsors.0.bioguideId":"B000825","actions.url":"https://api.congress.gov/v3/bill/118/hr/764/actions?format=json","latestAction.actionDate":"2024-05-01","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/764/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":5,"cosponsors.count":25,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-206","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/764/text?format=json","updateDate":"2024-11-09T04:56:36Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"764","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/764/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/764/subjects?format=json","title":"Trust the Science Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on April 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59239","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2025-01-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/206?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/764/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/764/summaries?format=json","cboCostEstimates.0.title":"H.R. 764, Trust the Science Act","introducedDate":"2023-02-02","subjects.count":6,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/764?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 764.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defense and general welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nPermanelty Delists Gray Wolves in the lower 48 United\nStates.\n[Page H681]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-01-09T00:18:25Z"}} +{"type":"node","id":"1754","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/794/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","request.billNumber":"794","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/794/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/794/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Ending Mandates on Head Start Educators Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"794","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/794/cosponsors?format=json","sponsors.0.bioguideId":"J000295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/794/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/794/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/794/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/794?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 794.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8\nThe single subject of this legislation is:\nTo prohibit the Secretary of Health and Human Services from\nimplementing, enforcing, or otherwise giving effect to the\nrule entitled ``Vaccine and Mask Requirements To Mitigate the\nSpread of COVID-19 in Head Start Programs.''\n[Page H682]\n","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1755","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/792/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"792","sponsors.0.url":"https://api.congress.gov/v3/member/J000299?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/792/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/792/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Child Interstate Abortion Notification Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"792","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/792/cosponsors?format=json","sponsors.0.bioguideId":"J000299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/792/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/792/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/792/actions?format=json","latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/792/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Johnson, Mike [R-LA-4]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":22,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/792?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Louisiana:\nH.R. 792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo deter the interstate transportation of minors to obtain\nabortions without first satisfying parental notification\nlaws.\n[Page H682]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"1756","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Loudermilk","cboCostEstimates.0.pubDate":"2024-07-03T20:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Housing and Community Development","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 514.","sponsors.0.party":"R","number":"802","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/802/cosponsors?format=json","sponsors.0.bioguideId":"L000583","actions.url":"https://api.congress.gov/v3/bill/118/hr/802/actions?format=json","latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/802/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","titles.count":4,"cosponsors.count":35,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-616","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/802/text?format=json","updateDate":"2025-01-16T06:06:29Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"802","sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/802/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/802/subjects?format=json","title":"Respect State Housing Laws Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on April 17, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":35,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60500","request.format":"json","latestAction_actionDate":"2025-01-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/616?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/802/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/802/summaries?format=json","cboCostEstimates.0.title":" H.R. 802, Respect State Housing Laws Act","introducedDate":"2023-02-02","subjects.count":4,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/802?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 802.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nStrikes section 4024(c) of the CARES Act (15 U.S.C. 9058)\nrelating to a federal notice-to-vacate.\n[Page H682]\n","sponsors.0.district":11,"sponsors.0.firstName":"Barry","updateDateIncludingText":"2025-01-16T06:06:29Z"}} +{"type":"node","id":"1757","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Lesko","cboCostEstimates.0.pubDate":"2023-05-05T16:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 36.","sponsors.0.party":"R","number":"801","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/801/cosponsors?format=json","sponsors.0.bioguideId":"L000589","actions.url":"https://api.congress.gov/v3/bill/118/hr/801/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-05-11","sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","titles.count":4,"cosponsors.count":14,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-53","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/801/text?format=json","updateDate":"2024-11-09T05:06:29Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"801","sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/801/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/801/subjects?format=json","title":"Securing the Border for Public Health Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 24, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":14,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59139","request.format":"json","latestAction_actionDate":"2025-01-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/53?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/801/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/801/summaries?format=json","cboCostEstimates.0.title":"H.R. 801, Securing the Border for Public Health Act of 2023","introducedDate":"2023-02-02","subjects.count":6,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/801?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 801.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nUsage of Title 42 to prevent the import of certain\ncontrolled substances.\n[Page H682]\n","sponsors.0.district":8,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-11-09T05:06:29Z"}} +{"type":"node","id":"1758","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/822/text?format=json","updateDate":"2024-06-12T08:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"822","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Referred to the House Committee on Small Business.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/822/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/822/committees?format=json","policyArea.name":"Health","title":"Student Mental Health Helpline Act","type":"HR","latestAction.text":"ASSUMING FIRST SPONSORSHIP - Ms. Bonamici asked unanimous consent that she may hereafter be considered as the first sponsor of H.R. 822, a bill originally introduced by Representative Stewart, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","sponsors.0.party":"R","number":"822","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/822/cosponsors?format=json","sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/822/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/822/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/822/actions?format=json","latestAction.actionDate":"2023-11-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","latestAction.actionTime":"10:52:00","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/822?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 822.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1, section 8\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to authorize the\nSecretary of Health and Human Services, acting through the\nAssistant Secretary for Mental Health and Substance Use, to\naward grants to eligible entities to establish or maintain a\nstudent mental health and safety helpline, and for other\npurposes.\n[Page H683]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-06-12T08:05:22Z"}} +{"type":"node","id":"1759","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/810/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"810","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/810/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"District of Columbia Police Home Rule Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"810","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2025-01-28","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/810/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/810/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/810/actions?format=json","latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/810/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-02-02","request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/810?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\n[Pages H682-H683]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 810.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 17 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would repeal the president's authority to\nfederalize the local District of Columbia police department,\nthe Metropolitan Police Department.\n[[Page H683]]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1760","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/507/text?format=json","relatedBills.count":6,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"507","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/507/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"HUMBLE Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on the Judiciary, Ethics, Rules, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"507","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/507/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/507/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/507/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/507/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/507/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/507?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nGovernment ethics.\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1761","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Kim","cboCostEstimates.0.pubDate":"2023-03-13T17:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Workforce.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"540","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/540/cosponsors?format=json","sponsors.0.bioguideId":"K000397","actions.url":"https://api.congress.gov/v3/bill/118/hr/540/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-16","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":6,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-293","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/540/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"540","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/540/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/540/subjects?format=json","title":"Taiwan Non-Discrimination Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58991","request.format":"json","latestAction_actionDate":"2025-01-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/293?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/540/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/540/summaries?format=json","cboCostEstimates.0.title":"H.R. 540, Taiwan Non-Discrimination Act of 2023","introducedDate":"2023-01-26","subjects.count":11,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/540?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 540.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to pursue more\nequitable treatment of Taiwan at the international financial\ninstitutions, and for other purposes.\n[Page H429]\n","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1762","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/508/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Crenshaw","sponsors.0.isByRequest":"N","request.billNumber":"508","sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/508/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/508/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"ATF Accountability Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"508","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/508/cosponsors?format=json","sponsors.0.bioguideId":"C001120","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/508/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/508/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/508/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/508/relatedbills?format=json","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":10,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/508?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 508.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8: To make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nProtect the Second Amendment by creating an appeals process\nto ATF rulings.\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1763","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/537/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"537","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/537/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/537/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Forgotten Heroes of the Holocaust Congressional Gold Medal Act","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"537","cosponsors.countIncludingWithdrawnCosponsors":295,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/537/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/537/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/537/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/537/actions?format=json","latestAction.actionDate":"2024-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/537/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":5,"introducedDate":"2023-01-26","cosponsors.count":295,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/537?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 537.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nHolocaust\n[Page H429]\n","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1764","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/470/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Huffman","sponsors.0.isByRequest":"N","request.billNumber":"470","sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/470/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/470/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"West Coast Ocean Protection Act of 2023","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","sponsors.0.party":"D","number":"470","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/470/cosponsors?format=json","sponsors.0.bioguideId":"H001068","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/470/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/470/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/470/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/470/relatedbills?format=json","sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":36,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/470?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"1765","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/520/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"McClintock","sponsors.0.isByRequest":"N","request.billNumber":"520","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/520/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/520/committees?format=json","policyArea.name":"Animals","type":"HR","title":"To amend the Endangered Species Act of 1973 to provide that artificially propagated animals shall be treated the same under that Act as naturally propagated animals, and for other purposes.","latestAction.text":"Subcommittee Hearings Held","sponsors.0.party":"R","number":"520","request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"sponsors.0.bioguideId":"M001177","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/520/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/520/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/520/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":2,"introducedDate":"2023-01-25","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/520?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 520.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nEndangered Species Act reform.\n[Page H325]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1766","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/521/text?format=json","updateDate":"2024-12-21T09:05:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mooney","sponsors.0.isByRequest":"N","request.billNumber":"521","sponsors.0.url":"https://api.congress.gov/v3/member/M001195?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/521/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/521/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Social Security Guarantee Act of 2023","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"521","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"X.","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/521/cosponsors?format=json","sponsors.0.bioguideId":"M001195","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/521/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/521/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/521/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Mooney, Alexander X. [R-WV-2]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":6,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/521?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOONEY:\nH.R. 521.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nSocial Security\n[Page H325]\n","sponsors.0.district":2,"sponsors.0.firstName":"Alexander","updateDateIncludingText":"2024-12-21T09:05:50Z"}} +{"type":"node","id":"1767","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/528/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Wagner","sponsors.0.isByRequest":"N","request.billNumber":"528","sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/528/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/528/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Put Trafficking Victims First Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"528","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/528/cosponsors?format=json","sponsors.0.bioguideId":"W000812","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/528/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/528/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/528/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/528/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":7,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/528?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 528.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThirteenth Amendment to the US Constitution\n[Page H325]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1768","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/489/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"489","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/489/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/489/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Expedited Removal Codification Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"489","request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/489/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/489/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/489/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/489/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/489?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"1769","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/515/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kustoff","sponsors.0.isByRequest":"N","request.billNumber":"515","sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/515/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/515/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Protecting American Savers and Retirees Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"515","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/515/cosponsors?format=json","sponsors.0.bioguideId":"K000392","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/515/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/515/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/515/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/515?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KUSTOFF:\nH.R. 515.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, SectIon 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof.\nThe single subject of this legislation is:\nThis legislation pertains to the excise tax on the\nrepurchase of certain corporate stock.\n[Page H325]\n","sponsors.0.district":8,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1770","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/473/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","request.billNumber":"473","sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/473/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/473/subjects?format=json","policyArea.name":"Armed Forces and National Security","title":"Parris Island Protection Act","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"473","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/473/cosponsors?format=json","sponsors.0.bioguideId":"M000194","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/473/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/473/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/473/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/473/relatedbills?format=json","sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/473?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"1771","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/535/text?format=json","updateDate":"2024-07-24T15:24:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"535","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/535/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/535/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Defending Ukraine’s Territorial Integrity Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"535","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/535/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/535/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/535/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/535/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/535?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nForeign Affairs--To counter Russian influence and\naggression in Ukraine.\n[Page H429]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-07-24T15:24:00Z"}} +{"type":"node","id":"1772","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"MCGOVERN","cboCostEstimates.0.pubDate":"2023-12-15T19:21:06Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"533","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/533/cosponsors?format=json","sponsors.0.bioguideId":"M000312","actions.url":"https://api.congress.gov/v3/bill/118/hr/533/actions?format=json","latestAction.actionDate":"2024-02-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/533/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","titles.count":5,"cosponsors.count":42,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/533/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":14,"request.billNumber":"533","sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/533/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/533/committees?format=json","title":"Promoting a Resolution to the Tibet-China Dispute Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on November 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59806","cosponsors.countIncludingWithdrawnCosponsors":42,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-01-16","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/533/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/533/summaries?format=json","cboCostEstimates.0.title":"H.R. 533, Promoting a Resolution to the Tibet-China Dispute Act","introducedDate":"2023-01-26","subjects.count":8,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/533?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 533.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H428]\n","sponsors.0.district":2,"sponsors.0.firstName":"JAMES","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1773","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/536/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"536","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/536/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/536/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"FAIR Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"536","cosponsors.countIncludingWithdrawnCosponsors":80,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/536/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/536/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/536/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/536/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/536/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":80,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/536?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 536.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFederal Employee Compensation\n[Page H429]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1774","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/548/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T05:26:32Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Fleischmann","sponsors.0.isByRequest":"N","request.billNumber":"548","sponsors.0.url":"https://api.congress.gov/v3/member/F000459?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/548/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/548/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Eastern Band of Cherokee Historic Lands Reacquisition Act","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"R","number":"548","request.format":"json","sponsors.0.middleName":"J. \"Chuck\"","latestAction_actionDate":"2025-01-16","summaries.count":2,"sponsors.0.bioguideId":"F000459","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/548/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/548/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/548/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/548/relatedbills?format=json","sponsors.0.fullName":"Rep. Fleischmann, Charles J. \"Chuck\" [R-TN-3]","titles.count":5,"introducedDate":"2023-01-26","request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/548?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FLEISCHMANN:\nH.R. 548.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18, which states the Congress\nhall have the power ``to make all laws which shall be\nnecessary and proper for carrying into execution the\nforegoing pwers, and all other powers vested by this\nConstitution in the government of the Unoted States, or in\nany department or office therof.''\n[Page H429]\n","sponsors.0.district":3,"sponsors.0.firstName":"Charles","updateDateIncludingText":"2025-01-16T05:26:32Z"}} +{"type":"node","id":"1775","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/526/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"526","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/526/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/526/subjects?format=json","policyArea.name":"Labor and Employment","title":"Health Freedom for All Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"526","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/526/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/526/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/526?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3,\nThe single subject of this legislation is:\nPreventing OSHA from enacting COVID-19 vaccine mandate.\n[Page H325]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1776","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/478/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T09:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"478","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/478/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/478/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"WFCA Act of 2023","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"478","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2025-01-16","summaries.count":1,"sponsors.0.bioguideId":"M001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/478/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/478/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/478/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/478/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":4,"introducedDate":"2023-01-24","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/478?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2024-12-21T09:05:18Z"}} +{"type":"node","id":"1777","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/474/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"474","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/474/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/474/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"RETURN Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"474","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/474/cosponsors?format=json","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/474/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/474/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/474/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/474/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/474?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:24:02Z"}} +{"type":"node","id":"1778","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/483/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"483","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/483/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/483/subjects?format=json","policyArea.name":"Law","type":"HR","title":"District of Columbia Courts Judicial Vacancy Reduction Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"483","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2025-01-16","summaries.count":1,"sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/483/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/483/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/483/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/483/relatedbills?format=json","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/483?format=json","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1779","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/500/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Wagner","sponsors.0.isByRequest":"N","request.billNumber":"500","sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/500/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/500/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Financial Exploitation Prevention Act of 2023","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"500","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/500/cosponsors?format=json","sponsors.0.bioguideId":"W000812","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/500/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/500/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/500/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/500/relatedbills?format=json","sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","titles.count":5,"introducedDate":"2023-01-25","cosponsors.count":13,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/500?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 500.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1780","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"McClintock","cboCostEstimates.0.pubDate":"2024-02-05T21:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Public Lands and Natural Resources","type":"HR","latestAction.text":"Reported (Amended) by the Committee on Natural Resources. H. Rept. 118-926, Part I.","sponsors.0.party":"R","number":"188","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/188/cosponsors?format=json","sponsors.0.bioguideId":"M001177","actions.url":"https://api.congress.gov/v3/bill/118/hr/188/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. McClintock, Tom [R-CA-5]","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-926","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/188/text?format=json","updateDate":"2025-03-07T14:26:14Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":12,"request.billNumber":"188","sponsors.0.url":"https://api.congress.gov/v3/member/M001177?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/188/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/188/subjects?format=json","title":"Proven Forest Management Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on June 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59940","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/926?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/188/summaries?format=json","cboCostEstimates.0.title":"H.R. 188, Proven Forest Management Act of 2023","introducedDate":"2023-01-09","subjects.count":8,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/188?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCLINTOCK:\nH.R. 188.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 (the Property Clause),\nwhich confers on Congress the power to make all needful Rules\nand Regulations respecting the property belonging to the\nUnited States.\n[Page H112]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-03-07T14:26:14Z"}} +{"type":"node","id":"1781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/171/text?format=json","relatedBills.count":6,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"171","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/171/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/171/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"HALT Fentanyl Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"171","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/171/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/171/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/171/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/171/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/171/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/171?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 171.\nCongress has the power to enace this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1782","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"No Pay for Disarray Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":1,"sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1783","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1784","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/81/text?format=json","updateDate":"2024-06-11T15:57:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"81","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/81/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/81/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Stop Imposing Woke Ideology Abroad Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"81","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/81/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/81/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/81/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/81/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/81?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 81.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-11T15:57:41Z"}} +{"type":"node","id":"1785","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/195/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"195","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/195/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide States with the authority to name post offices located in the State, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"195","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/195/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/195/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/195/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/195/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/195?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 195.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1786","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/163/text?format=json","updateDate":"2024-06-11T15:46:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"163","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","committees.url":"https://api.congress.gov/v3/bill/118/hr/163/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/163/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Security First Act","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","sponsors.0.party":"R","number":"163","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/163/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/163/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/163/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/163/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/163?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 163.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8. The Congress shall have Power To lay\nand collect Taxes, Duties, Imposts and Excises, to pay the\nDebts and provide for the common Defence and general Welfare\nof the United States; but all Duties, Imposts and Excises\nshall be uniform throughout the United States.\n[Page H111]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-06-11T15:46:27Z"}} +{"type":"node","id":"1787","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the Subcommittee on Emergency Management and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund Planned Parenthood Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","latestAction.actionDate":"2023-01-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1788","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/76/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"76","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","committees.url":"https://api.congress.gov/v3/bill/118/hr/76/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/76/subjects?format=json","policyArea.name":"Health","title":"Health Coverage Choice Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"76","request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/76/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/76/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/76/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/76/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/76?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 76.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1789","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/109/text?format=json","updateDate":"2025-02-14T19:34:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"109","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/109/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/109/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow an above-the-line deduction for health insurance premiums.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"109","request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/109/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/109/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/109?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 109.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-14T19:34:50Z"}} +{"type":"node","id":"1790","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1791","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/205/text?format=json","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ruppersberger","sponsors.0.isByRequest":"N","request.billNumber":"205","sponsors.0.url":"https://api.congress.gov/v3/member/R000576?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/205/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/205/subjects?format=json","policyArea.name":"Agriculture and Food","title":"SNAP Theft Protection Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"205","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"Dutch","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/205/cosponsors?format=json","sponsors.0.bioguideId":"R000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/205/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/205/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/205/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-13","sponsors.0.fullName":"Rep. Ruppersberger, C. A. Dutch [D-MD-2]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":18,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/205?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUPPERSBERGER:\nH.R. 205.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Sec. 8, cl. 1 and Article I,\nSec. 8, cl. 18.\n[Page H112]\n","sponsors.0.district":2,"sponsors.0.firstName":"C. A.","updateDateIncludingText":"2025-01-23T18:51:26Z"}} +{"type":"node","id":"1792","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/41/text?format=json","updateDate":"2024-11-21T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"41","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/41/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/41/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Same-Day Scheduling Act of 2023","latestAction.text":"Subcommittee Consideration and Mark-up Session Held.","sponsors.0.party":"R","number":"41","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/41/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/41/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/41/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/41/actions?format=json","latestAction.actionDate":"2023-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":71,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/41?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 41.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nauthorized by Congress' power to ``provide for the common\nDefense and general Welfare of the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-21T09:05:49Z"}} +{"type":"node","id":"1793","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/173/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:04Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"173","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/173/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/173/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Home Defense and Competitive Shooting Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"173","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/173/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/173/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/173/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/173/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/173/relatedbills?format=json","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/173?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 173.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H112]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-06-12T18:21:04Z"}} +{"type":"node","id":"1794","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/158/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Fitzpatrick","sponsors.0.isByRequest":"N","request.billNumber":"158","sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/158/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/158/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"CLEAN Public Service Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"158","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/158/cosponsors?format=json","sponsors.0.bioguideId":"F000466","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/158/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/158/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/158/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/158/relatedbills?format=json","sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/158?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZPATRICK:\nH.R. 158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, Clause XVIII of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1795","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/24/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"24","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/24/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/24/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Federal Reserve Transparency Act of 2023","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"24","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/24/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/24/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/24/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/24/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/24/relatedbills?format=json","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":72,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/24?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 24.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is authorized by Article 1, Section 8 of the\nConstitution, which gives Congress the power ``to coin money,\nregulate the value therof, and of foreign coin, and fix the\nstandard of weights and measures,'' and ``to provide for the\npunishment of counterfeiting the securities and current coin\nof the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1796","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Comer","cboCostEstimates.0.pubDate":"2023-03-02T20:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"140","amendments.count":10,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/140/cosponsors?format=json","sponsors.0.bioguideId":"C001108","actions.url":"https://api.congress.gov/v3/bill/118/hr/140/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/140/relatedbills?format=json","sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/140/amendments?format=json","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-5","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/140/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":48,"request.billNumber":"140","sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/140/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/140/subjects?format=json","title":"Protecting Speech from Government Interference Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58971","request.format":"json","latestAction_actionDate":"2025-01-03","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/5?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/140/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/140/summaries?format=json","cboCostEstimates.0.title":"H.R. 140, Protecting Speech from Government Interference Act","introducedDate":"2023-01-09","subjects.count":5,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/140?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 140.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution, in that\nthe legislation regulates forms of commerce specified in that\nclause; and, Article I, Section 8, clause 18 of the\nConstitution, in that the legislation ``is necessary and\nproper for carrying into Execution the foregoing Powers'' and\n``other Powers vested by this Constitution in the Government\nof the United States, or in any Department or Officer\nthereof,'' including the powers of the President specified in\nArticle II of the Constitution.\n[Page H110]\n","sponsors.0.district":1,"sponsors.0.firstName":"James","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1797","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/46/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"46","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/46/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/46/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Mental Health Access and Gun Violence Prevention Act of 2023","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"46","request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/46/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/46/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/46/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/46?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 46.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1, 3 and 18 of\nthe United States Constitution.\n[Page H108]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1798","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/168/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"168","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/168/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend chapter 44 of title 18, United States Code, to more comprehensively address the interstate transportation of firearms or ammunition.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/168/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/168/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1799","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Miller","cboCostEstimates.0.pubDate":"2024-10-21T19:53:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Taxation","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 696.","sponsors.0.party":"R","number":"190","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/190/cosponsors?format=json","sponsors.0.bioguideId":"M001205","actions.url":"https://api.congress.gov/v3/bill/118/hr/190/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/190/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","titles.count":4,"cosponsors.count":48,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-857","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/190/text?format=json","updateDate":"2025-02-20T22:26:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"190","sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/190/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/190/subjects?format=json","title":"Saving Gig Economy Taxpayers Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on September 11, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":48,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60838","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2025-01-03","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/857?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/190/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/190/summaries?format=json","cboCostEstimates.0.title":"H.R. 190, Saving Gig Economy Taxpayers Act","introducedDate":"2023-01-09","subjects.count":4,"sponsors.0.state":"WV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/190?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 190.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H112]\n","sponsors.0.district":1,"sponsors.0.firstName":"Carol","updateDateIncludingText":"2025-02-20T22:26:13Z"}} +{"type":"node","id":"1800","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1087/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1087","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1087/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1087/committees?format=json","policyArea.name":"International Affairs","title":"Think Tank Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1087","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1087/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1087/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1087?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1801","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/331/text?format=json","relatedBills.count":2,"updateDate":"2025-03-15T10:56:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"331","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/s/331/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/331/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"A bill to make 1 percent across-the-board rescissions in non-defense, non-homeland-security, and non-veterans-affairs discretionary spending for each of fiscal years 2024 and 2025.","latestAction.text":"Read twice and referred to the Committee on Appropriations.","sponsors.0.party":"R","number":"331","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/331/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/331/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/331/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/331/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-03-15T10:56:29Z"}} +{"type":"node","id":"1802","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1077","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Introduced in the Senate, read twice, considered, read the third time, and passed without amendment by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/s/1077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1077/subjects?format=json","policyArea.name":"Health","type":"S","title":"Home-Based Telemental Health Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1077","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1077/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1077/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1077/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1077?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1803","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1086/text?format=json","relatedBills.count":4,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"1086","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1086/subjects?format=json","policyArea.name":"Energy","title":"Nuclear Fuel Security Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1086","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1086/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1086/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1086/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1086/relatedbills?format=json","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nto establish and expand U.S. nuclear fuel programs to boost\ndomestic nuclear energy.\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1804","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1084/text?format=json","updateDate":"2024-07-24T15:22:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"1084","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1084/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1084/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"ERRPA","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1084","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1084/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1084/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1084/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1084/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":16,"subjects.count":15,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1084?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2024-07-24T15:22:59Z"}} +{"type":"node","id":"1805","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1082/text?format=json","updateDate":"2024-07-24T15:23:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gonzalez-Colon","sponsors.0.isByRequest":"N","request.billNumber":"1082","sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1082/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1082/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Military Sexual Trauma Retirement Equity Act","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1082","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1082/cosponsors?format=json","sponsors.0.bioguideId":"G000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1082/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1082/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1082/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rescom. González-Colón, Jenniffer [R-PR-At Large]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1082?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. GONZALEZ-COLON:\nH.R. 1082.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 18, Clause 18 of the U. S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution of the foregoing Powers, and all other Powers\nvested by this Constitution in the Government.of the United\nStates, or any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo amend title 10, United States Code, to extend\neligibility for certain special compensation to certain\nsurvivors of military sexual trauma.\n[Page H855]\n","sponsors.0.firstName":"Jenniffer","updateDateIncludingText":"2024-07-24T15:23:36Z"}} +{"type":"node","id":"1806","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 12.","sponsors.0.party":"R","number":"1085","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1085/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1085/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1085/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-20","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1085/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1085","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1085/subjects?format=json","title":"REFINER Act","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-03-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/20?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1085/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1085?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by directing the National Petroleum Council to\nissue a report examining the importance of petrochemical\nrefineries to energy security\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"1807","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1083/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1083","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1083/committees?format=json","policyArea.name":"Education","title":"School Security Enhancement Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1083","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1083/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1083/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1083?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1808","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1081/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1081","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1081/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1081/subjects?format=json","policyArea.name":"Education","title":"Protect Our Children's Schools Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1081","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1081/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1081/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1081/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1081?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1809","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/195/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"195","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 30.","committees.url":"https://api.congress.gov/v3/bill/118/hr/195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/195/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide States with the authority to name post offices located in the State, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"195","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/195/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/195/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/195/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/195/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/195?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 195.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1810","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1080/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"1080","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"COVID–19 Federal Employee Reinstatement Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1080","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1080/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":3,"introducedDate":"2023-02-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1080?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 1080.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nProvide for the reinstatement or compensation of Federal\nemployees forced to resign their careers between September 9,\n2021, and January 24, 2022, because of the Federal COVID-19\nvaccination mandate.\n[Page H855]\n","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1811","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1079/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1079","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1079/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1079/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"Assistance for Rural Water Systems Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1079","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1079/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1079/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1079/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1079/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1079?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1812","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1078/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1078","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1078/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"NRCS Wetland Compliance and Appeals Reform Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1078/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1078/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1078?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1813","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"De La Cruz","cboCostEstimates.0.pubDate":"2023-03-06T19:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-79.","sponsors.0.party":"R","number":"1076","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1076/cosponsors?format=json","sponsors.0.bioguideId":"D000594","laws.0.number":"118-79","actions.url":"https://api.congress.gov/v3/bill/118/hr/1076/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1076/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Rep. De La Cruz, Monica [R-TX-15]","titles.count":7,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-75","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1076/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":4,"request.congress":"118","actions.count":35,"request.billNumber":"1076","sponsors.0.url":"https://api.congress.gov/v3/member/D000594?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1076/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1076/subjects?format=json","title":"Preventing the Financing of Illegal Synthetic Drugs Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58982","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/75?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1076/summaries?format=json","cboCostEstimates.0.title":"H.R. 1076, Preventing the Financing of Illegal Synthetic Drugs Act","introducedDate":"2023-02-17","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DE LA CRUZ:\nH.R. 1076.\nCongress has the power to enact this legislation pursuant\nto the following:\nRegulations with an Effect on Interstate Commerce Article\nI, Section 8, clause 3 (Commerce Clause)\nThe single subject of this legislation is:\nDrug Trafficking Funding\n[Page H855]\n","sponsors.0.district":15,"sponsors.0.firstName":"Monica","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1814","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1075/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1075","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1075/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1075/subjects?format=json","policyArea.name":"Health","type":"S","title":"CARE for Mental Health Professionals Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"1075","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1075/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1075/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1075/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1075/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":4,"introducedDate":"2023-03-30","subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1075?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1815","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rubio","cboCostEstimates.0.pubDate":"2023-06-22T16:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 98.","sponsors.0.party":"R","number":"1074","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1074/cosponsors?format=json","sponsors.0.bioguideId":"R000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1074/actions?format=json","latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1074/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1074/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1074","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1074/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1074/subjects?format=json","title":"Taiwan Protection and National Resilience Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on June 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59279","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1074/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1074/summaries?format=json","cboCostEstimates.0.title":"S. 1074, Taiwan Protection and National Resilience Act of 2023","introducedDate":"2023-03-30","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1074?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1816","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1073/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"1073","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1073/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1073/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"AMERICA Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1073","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1073/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1073/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1073/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1073/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1073?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:22:45Z"}} +{"type":"node","id":"1817","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1072/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1072","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1072/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1072/subjects?format=json","policyArea.name":"Education","title":"PREP for All Students Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1072","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1072/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1072/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1072/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1072/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1072?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1818","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1071/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1071","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1071/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1071/committees?format=json","policyArea.name":"Education","type":"S","title":"RISE Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1071","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1071/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1071/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1071/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1071/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1071/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1071?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1819","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 13.","sponsors.0.party":"R","number":"1070","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1070/cosponsors?format=json","sponsors.0.bioguideId":"C001103","actions.url":"https://api.congress.gov/v3/bill/118/hr/1070/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1070/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":2,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-21","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1070/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1070","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1070/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1070/subjects?format=json","title":"To amend the Solid Waste Disposal Act to provide the owner or operator of a critical energy resource facility an interim permit under subtitle C that is subject to final approval by the Administrator of the Environmental Protection Agency, and for other purposes.","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2025-03-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/21?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1070/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1070/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1070?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 1070\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of article I of the U.S. Constitution\nprovides Congress with the power to regulate commerce.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by providing the owner or operator of a critical\nenergy resource facility an interim permit under subtitle C\nof the Solid Waste Disposal Act that is subject to final\napproval by the Administrator of the Environmental Protection\nAgency.\n[Page H855]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"1820","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/864/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"864","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/864/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/864/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"TASK Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"864","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/864/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/864/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/864/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/864/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-03-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1821","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/872/text?format=json","updateDate":"2025-01-17T03:11:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"872","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/872/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/872/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"SAFETY on Social Media Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"872","request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/872/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-03-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-17T03:11:17Z"}} +{"type":"node","id":"1822","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/871/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"871","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/871/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/871/subjects?format=json","policyArea.name":"Education","type":"S","title":"A bill to amend section 7014 of the Elementary and Secondary Education Act of 1965 to advance toward full Federal funding for impact aid, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"871","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/871/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/871/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/871/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/871/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/871/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":2,"introducedDate":"2023-03-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/871?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1823","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","relatedBills.count":5,"updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1824","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/869/text?format=json","relatedBills.count":1,"updateDate":"2025-01-30T13:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"869","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/869/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/869/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"CDFI Bond Guarantee Program Improvement Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"869","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/869/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/869/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/869/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/869/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/869/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":10,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/869?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-30T13:23:50Z"}} +{"type":"node","id":"1825","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/868/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"868","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/868/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/868/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Defending Our Defenders Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"868","request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/868/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/868/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/868/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/868/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-16","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/868?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:18Z"}} +{"type":"node","id":"1826","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/867/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"867","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/867/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/867/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"National Commission on Renaming the J. Edgar Hoover FBI Headquarters Building Act of 2023","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"867","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-03-05","summaries.count":1,"sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/867/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 867.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo establish a commission to redesignate the J. Edgar\nHoover F.B.I. Building.\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"1827","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/866/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"866","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1581)","committees.url":"https://api.congress.gov/v3/bill/118/hr/866/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/866/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Equal COLA Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"866","cosponsors.countIncludingWithdrawnCosponsors":95,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/866/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/866/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/866/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/866/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/866/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":95,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/866?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 866.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFederal retirement benefits\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1828","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/761/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"761","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/761/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/761/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Stop Forced Organ Harvesting Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"761","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/761/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/761/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/761/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/761/actions?format=json","latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/761/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":21,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/748/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"748","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/748/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/748/subjects?format=json","policyArea.name":"Armed Forces and National Security","title":"American Aviator Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"748","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/748/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/748/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/748/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/748/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/748/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/748?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1830","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/723/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"723","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/723/subjects?format=json","policyArea.name":"Health","type":"S","title":"Access to Prescription Digital Therapeutics Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"723","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/723/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/723/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/723/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/723/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/723?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-07-24T15:23:29Z"}} +{"type":"node","id":"1831","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/719/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"719","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/719/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/719/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Precision Agriculture Loan Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"719","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/719/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/719/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/719/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/719/actions?format=json","latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/719/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1832","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/689/text?format=json","relatedBills.count":1,"updateDate":"2024-05-24T10:56:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"689","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/689/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"A bill to amend the Controlled Substances Act to define currently accepted medical use with severe restrictions, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/689/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/689/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/689/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/689/actions?format=json","latestAction.actionDate":"2023-03-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/689/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2023-03-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-05-24T10:56:42Z"}} +{"type":"node","id":"1833","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rosen","cboCostEstimates.0.pubDate":"2023-09-28T22:58:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","policyArea.name":"Commerce","type":"S","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"673","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/673/cosponsors?format=json","sponsors.0.bioguideId":"R000608","actions.url":"https://api.congress.gov/v3/bill/118/s/673/actions?format=json","latestAction.actionDate":"2024-04-10","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/673/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/673/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":9,"request.billNumber":"673","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/673/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/673/subjects?format=json","title":"Small Business Child Care Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Small Business and Entrepreneurship on July 25, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59615","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/673/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/673/summaries?format=json","cboCostEstimates.0.title":"S. 673, Small Business Child Care Investment Act","introducedDate":"2023-03-07","subjects.count":8,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/673?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T17:17:47Z"}} +{"type":"node","id":"1834","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/642/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Casten","sponsors.0.isByRequest":"N","request.billNumber":"642","sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/hr/642/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/642/subjects?format=json","policyArea.name":"Law","type":"HR","title":"Restoring Judicial Separation of Powers Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"642","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/642/cosponsors?format=json","sponsors.0.bioguideId":"C001117","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/642/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/642/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/642/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/642?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 642.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nReforms the Supreme Court of the United States\n[Page H577]\n","sponsors.0.district":6,"sponsors.0.firstName":"Sean","updateDateIncludingText":"2024-07-24T15:23:55Z"}} +{"type":"node","id":"1835","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"1836","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","policyArea.name":"Labor and Employment","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1837","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/632/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Norman","sponsors.0.isByRequest":"N","request.billNumber":"632","sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/hr/632/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/632/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Ensuring Accurate and Complete Abortion Data Reporting Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"632","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/632/cosponsors?format=json","sponsors.0.bioguideId":"N000190","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/632/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/632/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/632/actions?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/632/relatedbills?format=json","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":36,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/632?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 632.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nIncentivize the reporting of abortion data to the Centers\nfor Disease Control and Prevention\n[Page H511]\n","sponsors.0.district":5,"sponsors.0.firstName":"Ralph","updateDateIncludingText":"2024-07-24T15:23:56Z"}} +{"type":"node","id":"1838","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/622/text?format=json","updateDate":"2024-07-24T15:23:56Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"BLUMENAUER","sponsors.0.isByRequest":"N","request.billNumber":"622","sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/hr/622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/622/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"REAL House Act","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"622","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/622/cosponsors?format=json","sponsors.0.bioguideId":"B000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/622/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","titles.count":4,"introducedDate":"2023-01-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/622?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 2, Clause 3\nThe single subject of this legislation is:\nThis legislation expands the voting membership of the U.S.\nHouse of Representatives.\n[Page H510]\n","sponsors.0.district":3,"sponsors.0.firstName":"EARL","updateDateIncludingText":"2025-01-09T17:27:13Z"}} +{"type":"node","id":"1839","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/621/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"621","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/621/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to amend the Food, Conservation, and Energy Act of 2008 to clarify propane storage as an eligible use for funds provided under the storage facility loan program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/621/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/621/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/621/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"introducedDate":"2023-03-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/621?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1840","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/630/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"630","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/630/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/630/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Sustaining Our Democracy Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"630","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2025-02-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/630/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/630/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/630/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/630/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/630/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":15,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/630?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1841","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/628/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gimenez","sponsors.0.isByRequest":"N","request.billNumber":"628","sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/628/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/628/committees?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"South Florida Ecosystem Enhancement Act of 2023","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","sponsors.0.party":"R","number":"628","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2025-02-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/628/cosponsors?format=json","sponsors.0.bioguideId":"G000593","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/628/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/628/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/628/actions?format=json","latestAction.actionDate":"2023-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/628/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-28]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 628.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo amend the Federal Water Pollution Control Act, to\nauthorize the South Florida Program\n[Page H511]\n","sponsors.0.district":28,"sponsors.0.firstName":"Carlos","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1842","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/629/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"629","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/629/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"UNITED Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"629","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2025-02-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/629/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/629/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/629/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2023-03-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/629?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"1843","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/627/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fallon","sponsors.0.isByRequest":"N","request.billNumber":"627","sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/627/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/627/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"VOTE Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"627","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/627/cosponsors?format=json","sponsors.0.bioguideId":"F000246","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/627/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/627/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/627/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/627/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","titles.count":4,"introducedDate":"2023-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 627.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nAmends the Voter Registration Act of 1993 to prohibit the\nregistration of individuals not providing proof of United\nStates Citizenship and applying criminal penalty for the\nattempt to do so.\n[Page H511]\n","sponsors.0.district":4,"sponsors.0.firstName":"Pat","updateDateIncludingText":"2024-07-24T15:23:50Z"}} +{"type":"node","id":"1844","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/626/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":20,"congress":118,"request.congress":"118","actions.count":29,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"626","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/626/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/626/committees?format=json","policyArea.name":"Emergency Management","type":"HR","title":"Breaking the Gridlock Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"626","request.format":"json","latestAction_actionDate":"2025-02-19","summaries.count":1,"sponsors.0.bioguideId":"D000623","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/626/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":3,"introducedDate":"2023-01-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/626?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H511]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1845","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/625/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"625","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/625/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/625/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"IRS Whistleblower Program Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"625","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/625/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/625/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/625/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/625/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/625/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/625?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-07-24T15:23:32Z"}} +{"type":"node","id":"1846","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/624/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"624","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S1011)","committees.url":"https://api.congress.gov/v3/bill/118/hr/624/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/624/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Recognizing Victims of Illicit Fentanyl Poisoning Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"624","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/624/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/624/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/624/actions?format=json","latestAction.actionDate":"2023-01-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/624?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 624.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\n[Page H510]\n","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2024-07-24T15:23:55Z"}} +{"type":"node","id":"1847","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Murkowski","cboCostEstimates.0.pubDate":"2023-08-07T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"623","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/623/cosponsors?format=json","sponsors.0.bioguideId":"M001153","actions.url":"https://api.congress.gov/v3/bill/118/s/623/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/623/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-20","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-56","textVersions.url":"https://api.congress.gov/v3/bill/118/s/623/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"623","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/623/committees?format=json","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on July 11, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59463","request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/56?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/623/summaries?format=json","cboCostEstimates.0.title":"S. 623, a bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes","latestAction.actionTime":"17:03:55","introducedDate":"2023-03-02","subjects.count":6,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/623?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1848","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Tonko","cboCostEstimates.0.pubDate":"2024-07-23T21:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Health","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 438.","sponsors.0.party":"D","number":"619","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/619/cosponsors?format=json","sponsors.0.bioguideId":"T000469","actions.url":"https://api.congress.gov/v3/bill/118/hr/619/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/619/relatedbills?format=json","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","titles.count":4,"cosponsors.count":144,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-526","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/619/text?format=json","updateDate":"2024-11-12T19:25:37Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"619","sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/619/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/619/subjects?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 24, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":144,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60575","request.format":"json","latestAction_actionDate":"2025-02-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/526?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/619/summaries?format=json","cboCostEstimates.0.title":"H.R. 619, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/619?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 619.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H510]\n","sponsors.0.district":20,"sponsors.0.firstName":"Paul","updateDateIncludingText":"2024-11-12T19:25:37Z"}} +{"type":"node","id":"1849","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/617/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"617","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/617/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/617/subjects?format=json","policyArea.name":"Energy","title":"COAST Anti-Drilling Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"617","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/617/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/617/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/617/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/617/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/617/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-01","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/617?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1850","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Smith","cboCostEstimates.0.pubDate":"2024-09-16T20:21:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 517.","sponsors.0.party":"D","number":"616","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/616/cosponsors?format=json","sponsors.0.bioguideId":"S001203","actions.url":"https://api.congress.gov/v3/bill/118/s/616/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":2,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-225","textVersions.url":"https://api.congress.gov/v3/bill/118/s/616/text?format=json","updateDate":"2025-01-21T21:26:14Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":7,"request.billNumber":"616","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/616/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/616/subjects?format=json","title":"Leech Lake Reservation Restoration Amendments","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nMay 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60720","request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/225?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/616/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/616/summaries?format=json","cboCostEstimates.0.title":"S. 616, Leech Lake Reservation Restoration Technical Corrections Act","introducedDate":"2023-03-01","subjects.count":8,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/616?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-21T21:26:14Z"}} +{"type":"node","id":"1851","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/615/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"615","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/615/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/615/committees?format=json","policyArea.name":"Transportation and Public Works","title":"Cabin Air Safety Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"615","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/615/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/615/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/615/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/615/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/615/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1852","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Walberg","cboCostEstimates.0.pubDate":"2024-06-18T20:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 472.","sponsors.0.party":"R","number":"618","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/618/cosponsors?format=json","sponsors.0.bioguideId":"W000798","actions.url":"https://api.congress.gov/v3/bill/118/hr/618/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/618/relatedbills?format=json","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":4,"cosponsors.count":55,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-571","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/618/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"618","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/618/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/618/subjects?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":55,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60427","request.format":"json","latestAction_actionDate":"2025-02-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/571?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/618/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/618/summaries?format=json","cboCostEstimates.0.title":"H.R. 618, Improving Access to Workers’ Compensation for Injured Federal Workers Act","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/618?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 618.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nTo amend chapter 81 of title 5, United States Code, to\ncover, for purposes of workers' compensation under such\nchapter, services by physician assistants and nurse\npractitioners provided to injured Federal workers, and for\nother purposes.\n[Page H510]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-15T21:26:11Z"}} +{"type":"node","id":"1853","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/614/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:23:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"614","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1010-1011)","committees.url":"https://api.congress.gov/v3/bill/118/s/614/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/614/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Americans from Fentanyl Trafficking Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"614","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/614/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/614/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/614/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/614/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/614/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":9,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/614?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:35Z"}} +{"type":"node","id":"1854","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/606/text?format=json","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"606","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/hr/606/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/606/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"No Track No Tax Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"606","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-18","summaries.count":1,"sponsors.0.bioguideId":"I000056","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/606/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/606/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/606/actions?format=json","latestAction.actionDate":"2023-01-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":3,"introducedDate":"2023-01-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/606?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 606.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the US Constitution\nThe single subject of this legislation is:\nTo prohibit the use of Federal funds to study, propose,\nestablish, implement, or enforce any mileage tax, including\nthrough the funding of a mileage tracking program.\n[Page H490]\n","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-07-24T15:23:58Z"}} +{"type":"node","id":"1855","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/605/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hill","sponsors.0.isByRequest":"N","request.billNumber":"605","sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/605/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Special Drawing Rights Oversight Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"605","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/605/cosponsors?format=json","sponsors.0.bioguideId":"H001072","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/605/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/605/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/605/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","titles.count":3,"introducedDate":"2023-01-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/605?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nSpecial Drawing Rights Act\n[Page H490]\n","sponsors.0.district":2,"sponsors.0.firstName":"J.","updateDateIncludingText":"2024-07-24T15:23:55Z"}} +{"type":"node","id":"1856","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/609/text?format=json","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SMITH","sponsors.0.isByRequest":"N","request.billNumber":"609","sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/609/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Education, Achievement, and Opportunity Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"609","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2025-02-18","summaries.count":1,"sponsors.0.bioguideId":"S000522","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/609/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/609/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/609/actions?format=json","latestAction.actionDate":"2023-01-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","titles.count":3,"introducedDate":"2023-01-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/609?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 609.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEducation\n[Page H491]\n","sponsors.0.district":4,"sponsors.0.firstName":"CHRISTOPHER","updateDateIncludingText":"2024-07-24T15:23:55Z"}} +{"type":"node","id":"1857","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Markey","cboCostEstimates.0.pubDate":"2023-10-20T19:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"608","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/608/cosponsors?format=json","sponsors.0.bioguideId":"M000133","actions.url":"https://api.congress.gov/v3/bill/118/s/608/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":5,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-151","textVersions.url":"https://api.congress.gov/v3/bill/118/s/608/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"608","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/608/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/608/committees?format=json","title":"Deerfield River Wild and Scenic River Study Act of 2023","cboCostEstimates.0.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59679","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-02-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/151?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/608/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/608/summaries?format=json","cboCostEstimates.0.title":"S. 608, Deerfield River Wild and Scenic River Study Act of 2023","latestAction.actionTime":"18:04:39","introducedDate":"2023-03-01","subjects.count":7,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/608?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1858","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/146/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":2,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"146","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/146/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/146/committees?format=json","policyArea.name":"Health","type":"S","title":"Cap Insulin Prices Act","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"R","number":"146","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/146/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/146/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/146/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/146/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/146/relatedbills?format=json","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/146?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"13:46:55"}} +{"type":"node","id":"1859","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/604/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Manchin","sponsors.0.isByRequest":"N","request.billNumber":"604","sponsors.0.url":"https://api.congress.gov/v3/member/M001183?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/604/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/604/subjects?format=json","policyArea.name":"Health","title":"Changing the Culture of the FDA Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"604","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/604/cosponsors?format=json","sponsors.0.bioguideId":"M001183","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/604/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/604/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/604/actions?format=json","latestAction.actionDate":"2023-03-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Manchin, Joe, III [D-WV]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/604?format=json","sponsors.0.firstName":"Joseph","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1860","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}} +{"type":"node","id":"1861","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"375","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/375/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/375/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Simplifying Grants Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"375","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/375/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/375/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/375/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/375?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1862","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"377","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/377/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/377/committees?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Domestic Reinvestment Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/377/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/377/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/377/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/377?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:47Z"}} +{"type":"node","id":"1863","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"1864","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/373/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"373","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/373/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/373/subjects?format=json","policyArea.name":"Energy","title":"RISEE Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 576.","sponsors.0.party":"D","number":"373","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/373/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/373/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/373/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":6,"introducedDate":"2023-02-09","cosponsors.count":26,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"1865","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/372/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"372","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/372/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Macadamia Tree Health Initiative Amendments Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"372","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/372/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/372/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/372/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/372/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/372/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/372?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1866","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/370/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"370","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/370/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/370/committees?format=json","policyArea.name":"Immigration","title":"Protecting America From Spies Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"370","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/370/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/370/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/370/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/370?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:48Z"}} +{"type":"node","id":"1867","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/367/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"367","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S546)","subjects.url":"https://api.congress.gov/v3/bill/118/s/367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/367/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"ECON Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"367","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/367/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/367/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/367/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/367?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1868","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/366/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"366","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S545-546)","committees.url":"https://api.congress.gov/v3/bill/118/s/366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/366/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Democracy in Design Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"366","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/366/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/366/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/366/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/366?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1869","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/369/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"369","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/369/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/369/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Protecting Military Installations and Ranges Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"369","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/369/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/369/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/369/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/369/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/369/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/369?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1870","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/368/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"368","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/368/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/368/subjects?format=json","policyArea.name":"Transportation and Public Works","title":"Aviation WORKS Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"368","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/368/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/368/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/368/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/368/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/368/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/368?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1871","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/363/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"363","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/363/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/363/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"North Platte Canteen Congressional Gold Medal Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"363","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/363/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/363/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/363/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/363/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/363/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":16,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/363?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1872","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/365/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"365","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/365/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/365/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To release the reversionary interest of the United States in certain non-Federal land in Salt Lake City, Utah, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"365","request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/365/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/365/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/365/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/365/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","titles.count":2,"introducedDate":"2023-01-13","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/365?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 11 (Friday, January 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 365.\nCongress has the power to enact this legislation pursuant\nto the following:\nTenth Amendment, United States Constitution Article IV,\nsection 3, clause 2, United States Constitution Article 1,\nsection 8, clause 18\n[Page H238]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:24:07Z"}} +{"type":"node","id":"1873","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/364/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"364","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/364/committees?format=json","policyArea.name":"Education","type":"S","title":"GAAME Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"364","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/364/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/364/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/364/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/364/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/364/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1874","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/360/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"360","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/s/360/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/360/subjects?format=json","policyArea.name":"Education","type":"S","title":"Stop Higher Education Espionage and Theft Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"360","request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/360/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/360/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/360?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1875","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/356/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"356","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/356/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/356/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Syria Detainee and Displaced Persons Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"356","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/356/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/356/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/356/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/356/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/356/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/356?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"1876","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/355/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"355","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/355/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/355/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Federal Price Gouging Prevention Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"355","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/355/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/355/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/355?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1877","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/361/text?format=json","updateDate":"2024-07-24T15:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"361","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/361/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/361/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Pistol Brace Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"361","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/361/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/361/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/361?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-07-24T15:23:50Z"}} +{"type":"node","id":"1878","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/357/text?format=json","relatedBills.count":3,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"357","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/357/subjects?format=json","policyArea.name":"Taxation","title":"No Tax Breaks for Outsourcing Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"357","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/357/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/357/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/357/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":16,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/357?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"1879","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/358/text?format=json","updateDate":"2024-04-17T23:51:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"358","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/358/committees?format=json","type":"S","title":"A bill for the relief of Cesar Carlos Silva Rodriguez.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"358","request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/358/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/358/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/358/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-02-09","request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/358?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-04-17T23:51:56Z"}} +{"type":"node","id":"1880","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/94/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"94","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/94/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/94/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Investing in State Energy Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"94","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-01-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/94/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/94/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/94/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/94/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/94?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"1881","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Warner","cboCostEstimates.0.pubDate":"2023-06-09T19:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S140)","policyArea.name":"Arts, Culture, Religion","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 120.","sponsors.0.party":"D","number":"92","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/92/cosponsors?format=json","sponsors.0.bioguideId":"W000805","actions.url":"https://api.congress.gov/v3/bill/118/s/92/actions?format=json","latestAction.actionDate":"2023-07-11","textVersions.count":2,"sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-48","textVersions.url":"https://api.congress.gov/v3/bill/118/s/92/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"92","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/92/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/92/committees?format=json","title":"A bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the \"Rick Boucher Amphitheater\".","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on May 17, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59261","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2025-01-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/48?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/92/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/92/summaries?format=json","cboCostEstimates.0.title":"S. 92, a bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the “Rick Boucher Amphitheater”","introducedDate":"2023-01-26","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/92?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"1882","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Became Public Law No: 118-149.","sponsors.0.party":"R","number":"91","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/91/cosponsors?format=json","sponsors.0.bioguideId":"H000601","laws.0.number":"118-149","actions.url":"https://api.congress.gov/v3/bill/118/s/91/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/91/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-12","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/91/amendments?format=json","titles.count":6,"cosponsors.count":72,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/91/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":22,"request.billNumber":"91","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/91/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/91/subjects?format=json","title":"Forgotten Heroes of the Holocaust Congressional Gold Medal Act","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/91/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/91/summaries?format=json","introducedDate":"2023-01-26","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/91?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1883","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2023-04-11T20:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 252.","sponsors.0.party":"R","number":"90","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/90/cosponsors?format=json","sponsors.0.bioguideId":"C001098","actions.url":"https://api.congress.gov/v3/bill/118/s/90/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/90/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-114","textVersions.url":"https://api.congress.gov/v3/bill/118/s/90/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"90","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/90/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/90/committees?format=json","title":"Informing Consumers about Smart Devices Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59063","request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/114?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/90/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/90/summaries?format=json","cboCostEstimates.0.title":"S. 90, Informing Consumers About Smart Devices Act","introducedDate":"2023-01-25","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/90?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1884","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/88/text?format=json","relatedBills.count":2,"updateDate":"2024-09-26T11:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"88","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/88/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/88/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"BLAST Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"88","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/88/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/88/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/88/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/88/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/88/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/88?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-09-26T11:03:18Z"}} +{"type":"node","id":"1885","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/87/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"87","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/87/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/87/subjects?format=json","policyArea.name":"Congress","type":"S","title":"EPIC Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"87","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/87/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/87/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/87/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/87/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/87/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/87?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1886","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/89/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"89","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/89/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/89/committees?format=json","policyArea.name":"Congress","type":"S","title":"No Budget, No Pay Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"89","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/89/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/89/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/89/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/89/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/89/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/89?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1887","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/86/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"86","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/86/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/86/subjects?format=json","policyArea.name":"Congress","type":"S","title":"Members of Congress Pension Opt Out Clarification Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"86","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/86/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/86/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/86/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/86/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/86/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/86?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/85/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"85","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/85/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/85/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"No TikTok on United States Devices Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"85","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/85/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/85/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/85/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/85/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/85/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/85?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1889","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/84/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"84","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/84/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/84/subjects?format=json","policyArea.name":"Health","title":"Defund EcoHealth Alliance Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"84","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/84/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/84/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/84/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/84/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/84/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/84?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1890","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/83/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"83","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/83/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/83/subjects?format=json","policyArea.name":"Labor and Employment","title":"American Apprenticeship Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"83","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/83/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/83/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/83/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/83/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/83/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/83?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1891","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/77/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"77","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/77/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/77/subjects?format=json","policyArea.name":"Commerce","title":"STEP Improvement Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"77","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/77/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/77/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/77/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/77?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"1892","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/76/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"76","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/76/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/76/subjects?format=json","policyArea.name":"Health","title":"Health Coverage Choice Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"76","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/76/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/76/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/76/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/76/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/76?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 76.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1893","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2023-07-06T18:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 18.","sponsors.0.party":"D","number":"79","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/79/cosponsors?format=json","sponsors.0.bioguideId":"D000563","actions.url":"https://api.congress.gov/v3/bill/118/s/79/actions?format=json","latestAction.actionDate":"2023-03-01","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/79/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/79/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"79","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/79/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/79/subjects?format=json","title":"Interagency Patent Coordination and Improvement Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on March 1, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59353","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-01-13","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/79/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/79/summaries?format=json","cboCostEstimates.0.title":"S. 79, Interagency Patent Coordination and Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":7,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/79?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:57:48Z"}} +{"type":"node","id":"1894","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":119,"sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2024-09-09T20:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Arts, Culture, Religion","type":"HR","latestAction.text":"Referred to the House Committee on Education and Workforce.","sponsors.0.party":"R","number":"82","amendments.count":14,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/82/cosponsors?format=json","sponsors.0.bioguideId":"B001302","laws.0.number":"118-273","actions.url":"https://api.congress.gov/v3/bill/119/hr/82/actions?format=json","latestAction.actionDate":"2025-01-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/82/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/82/amendments?format=json","titles.count":3,"cosponsors.count":330,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/119/hr/82/text?format=json","updateDate":"2025-02-06T17:42:01Z","originChamber":"House","committees.count":1,"request.congress":"119","actions.count":3,"request.billNumber":"82","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","subjects.url":"https://api.congress.gov/v3/bill/119/hr/82/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/119/hr/82/committees?format=json","title":"Defund National Endowment for the Humanities Act of 2025","cboCostEstimates.0.description":"As introduced in the House of Representatives on January 9, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":330,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60690","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/119/hr/82/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/119/hr/82/summaries?format=json","cboCostEstimates.0.title":"H.R. 82, Social Security Fairness Act of 2023","introducedDate":"2025-01-03","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/82?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 171, Number 1 (Friday, January 3, 2025)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS of Arizona:\nH.R. 82.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to provide that none of\nthe funds made available to the National Endowment for the\nHumanities for any fiscal year may be used to carry out\nsection 7 of the National Foundation on the Arts and the\nHumanities Act of 1965.\n[Page H38]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-06T17:42:01Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1895","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/75/text?format=json","updateDate":"2025-02-15T18:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"75","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/75/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/75/subjects?format=json","policyArea.name":"Health","title":"Prescription Freedom Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"75","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/75/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/75/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/75/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/75?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 75.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-15T18:41:12Z"}} +{"type":"node","id":"1896","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/81/text?format=json","updateDate":"2024-06-11T15:57:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"81","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/81/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/81/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Stop Imposing Woke Ideology Abroad Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"81","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/81/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/81/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/81/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/81/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/81?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 81.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-11T15:57:41Z"}} +{"type":"node","id":"1897","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/78/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:04Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"78","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/78/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/78/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Child Interstate Abortion Notification Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"78","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/78/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/78/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/78/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/78/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/78/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":17,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/78?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:24:04Z"}} +{"type":"node","id":"1898","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/80/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"80","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/80/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/80/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To terminate the designation of the Islamic Republic of Pakistan as a major non-NATO ally, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"80","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/80/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/80/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/80/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/80?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1899","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/73/text?format=json","updateDate":"2024-06-12T18:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"73","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/73/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/73/subjects?format=json","policyArea.name":"Health","title":"No Pro-Abortion Task Force Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"73","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/73/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/73/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/73/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/73/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/73?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 73.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-12T18:21:02Z"}} +{"type":"node","id":"1900","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/25/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"25","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 27.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/25/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/25/subjects?format=json","policyArea.name":"Immigration","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Adverse Effect Wage Rate Methodology for the Temporary Employment of H-2A Nonimmigrants in Non-Range Occupations in the United States\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"25","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/25/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/25/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/25/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/25/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/25/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2023-04-25","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/25?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2024-04-17T23:51:48Z"}} +{"type":"node","id":"1901","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/76/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"76","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/76/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/76/subjects?format=json","policyArea.name":"Health","title":"Health Coverage Choice Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"76","request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/76/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/76/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/76/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/76/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/76?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 76.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1902","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/75/text?format=json","updateDate":"2025-02-15T18:41:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"75","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/75/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/75/subjects?format=json","policyArea.name":"Health","title":"Prescription Freedom Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"75","request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/75/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/75/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/75/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/75?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 75.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-15T18:41:12Z"}} +{"type":"node","id":"1903","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2023-08-07T19:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 267.","sponsors.0.party":"I","number":"61","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/61/cosponsors?format=json","sponsors.0.bioguideId":"S001191","actions.url":"https://api.congress.gov/v3/bill/118/s/61/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/61/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-123","textVersions.url":"https://api.congress.gov/v3/bill/118/s/61/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"61","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/61/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/61/committees?format=json","title":"Combating Cartels on Social Media Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on June 14, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59462","request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/123?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/61/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/61/summaries?format=json","cboCostEstimates.0.title":"S. 61, Combating Cartels on Social Media Act of 2023","introducedDate":"2023-01-24","subjects.count":8,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1904","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Clyde","cboCostEstimates.0.pubDate":"2023-03-31T18:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Government Operations and Politics","type":"HJRES","latestAction.text":"The Chair directed the Clerk to notify the Senate of the action of the House.","sponsors.0.party":"R","number":"42","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/42/cosponsors?format=json","sponsors.0.bioguideId":"C001116","actions.url":"https://api.congress.gov/v3/bill/118/hjres/42/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/42/relatedbills?format=json","sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","titles.count":2,"cosponsors.count":19,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-33","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/42/text?format=json","updateDate":"2025-03-07T20:06:14Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":42,"request.billNumber":"42","sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/42/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/42/subjects?format=json","title":"Disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59033","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2025-03-06","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/33?format=json","summaries.count":4,"request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/42/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/42/summaries?format=json","cboCostEstimates.0.title":"H.J. Res. 42, a joint resolution disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022","latestAction.actionTime":"17:52:27","introducedDate":"2023-03-09","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/42?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.J. Res. 42.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec, 8, Clause 16 of the U.S. Constitution\nstates: The Congress shall have the power to ``Excercise\nexclusive legislation in all cases whatsoeverm over such\nDistrict (not exceeding 10 Miles square, as may, by Cession\nof particular States, and the Acceptance of Congress, become\nthe Seat of Government of the United States.''\nThe single subject of this legislation is:\nThis bill pertains to DC matters\n[Page H1251]\n","sponsors.0.district":9,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-03-07T20:06:14Z"}} +{"type":"node","id":"1905","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/73/text?format=json","updateDate":"2024-06-12T18:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"73","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/73/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/73/subjects?format=json","policyArea.name":"Health","title":"No Pro-Abortion Task Force Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"73","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/73/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/73/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/73/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/73/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/73?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 73.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-12T18:21:02Z"}} +{"type":"node","id":"1906","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/72/text?format=json","updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"72","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/72/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/72/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to maintain or collect information that can be used to identify any individual to whom a COVID-19 vaccine is administered, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"72","request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/72/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/72/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/72/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/72?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 72.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1907","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/74/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"74","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/74/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/74/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to propose, establish, implement, or enforce any requirement that an individual wear a mask or other face covering, or be vaccinated, to prevent the spread of COVID-19, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"74","request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/74/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/74/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/74/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/74?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 74.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1908","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2024-10-15T15:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 30 - 19.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-188.","sponsors.0.party":"I","number":"59","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/59/cosponsors?format=json","sponsors.0.bioguideId":"S001191","laws.0.number":"118-188","actions.url":"https://api.congress.gov/v3/bill/118/s/59/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","amendments.url":"https://api.congress.gov/v3/bill/118/s/59/amendments?format=json","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-250","textVersions.url":"https://api.congress.gov/v3/bill/118/s/59/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"59","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/59/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/59/subjects?format=json","title":"Chance to Compete Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60824","request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/250?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/59/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/59/summaries?format=json","cboCostEstimates.0.title":"S. 59, Chance to Compete Act of 2024","introducedDate":"2023-01-24","subjects.count":12,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/59?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"1909","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Presented to President.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-04","summaries.count":1,"sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1910","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 17.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z"}} +{"type":"node","id":"1911","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/71/text?format=json","updateDate":"2024-07-24T15:21:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"Crane","sponsors.0.isByRequest":"N","request.billNumber":"71","sponsors.0.url":"https://api.congress.gov/v3/member/C001132?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/71/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/71/subjects?format=json","policyArea.name":"Emergency Management","type":"HJRES","title":"Relating to a national emergency declared by the President on May 22, 2003.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"71","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/71/cosponsors?format=json","sponsors.0.bioguideId":"C001132","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/71/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/71/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/71/actions?format=json","latestAction.actionDate":"2023-07-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Crane, Elijah [R-AZ-2]","latestAction.actionTime":"18:13:56","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/71?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRANE:\nH.J. Res. 71.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 9, Clause 7: ``No money shall be drawn\nfrom Treasury, but in Consequence of Appropriations made by\nLaw; and a regular Statement and Account of Receipts and\nExpenditures of all public Money shall be published from time\nto time.''\nThe single subject of this legislation is:\nThe purpose of this bill is to end the national emergency\nproclamation in Iraw enacted in 2003.\n[Page H2934]\n","sponsors.0.district":2,"sponsors.0.firstName":"Elijah","updateDateIncludingText":"2024-07-24T15:21:55Z"}} +{"type":"node","id":"1912","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/69/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"69","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/69/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/69/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"NOSHA Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"69","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/69/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/69/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/69/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/69/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/69?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 69.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1913","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/70/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"70","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/70/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/70/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Credit Card Penalty Fees (Regulation Z)\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"70","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/70/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/70/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/70/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/70/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/70/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2024-04-08","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/70?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"1914","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/68/text?format=json","relatedBills.count":1,"updateDate":"2024-04-11T17:15:44Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"68","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/68/subjects?format=json","policyArea.name":"Congress","type":"SJRES","title":"A joint resolution providing for the issuance of a summons, providing for the appointment of a committee to receive and to report evidence, and establishing related procedures concerning the articles of impeachment against Alejandro Nicholas Mayorkas.","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 352.","sponsors.0.party":"R","number":"68","request.format":"json","latestAction_actionDate":"2025-03-03","sponsors.0.bioguideId":"L000577","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/68/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/68/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/68/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-03-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/68?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-04-11T17:15:44Z"}} +{"type":"node","id":"1915","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-04-17T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 282.","sponsors.0.party":"D","number":"66","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/66/cosponsors?format=json","sponsors.0.bioguideId":"K000367","actions.url":"https://api.congress.gov/v3/bill/118/s/66/actions?format=json","latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/66/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/66/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"66","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/66/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/66/subjects?format=json","title":"NOTAM Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59070","request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/66/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/66/summaries?format=json","cboCostEstimates.0.title":"S. 66, NOTAM Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/66?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1916","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/67/text?format=json","updateDate":"2025-02-07T21:53:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"67","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/67/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/67/committees?format=json","policyArea.name":"Labor and Employment","title":"Small Business Flexibility Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"67","request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/67/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/67/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/67/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hjres/67?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 67.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-07T21:53:44Z"}} +{"type":"node","id":"1917","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/64/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"64","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/64/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/64/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"The Infrastructure Investment and Jobs Act: Prevention and Elimination of Digital Discrimination\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"64","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/64/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/64/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/64/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/64/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/64/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/64?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1918","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/63/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"63","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/63/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/63/subjects?format=json","policyArea.name":"Labor and Employment","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Employee or Independent Contractor Classification Under the Fair Labor Standards Act\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"63","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/63/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/63/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/63/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/63/actions?format=json","latestAction.actionDate":"2024-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/63/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":2,"introducedDate":"2024-03-06","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/63?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1919","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/65/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"McConnell","sponsors.0.isByRequest":"N","request.billNumber":"65","sponsors.0.url":"https://api.congress.gov/v3/member/M000355?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/65/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/65/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","sponsors.0.party":"R","number":"65","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2025-02-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/65/cosponsors?format=json","sponsors.0.bioguideId":"M000355","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/65/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/65/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/65/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. McConnell, Mitch [R-KY]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":49,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/65?format=json","sponsors.0.firstName":"Mitch","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1920","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 31.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","type":"S","title":"SPR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1921","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/3/text?format=json","updateDate":"2024-04-17T23:51:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Message received in Senate: Returned to the Senate pursuant to the provisions of H.Res. 212.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/3/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/3/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to clarify the authority of Congress and the States to regulate corporations, limited liability companies, and other corporate entities established by the laws of any State, the United States, or any foreign state.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3","request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"sponsors.0.bioguideId":"T000464","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/3/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/3/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/3/actions?format=json","latestAction.actionDate":"2023-01-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":2,"introducedDate":"2023-01-23","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/3?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2024-04-17T23:51:47Z"}} +{"type":"node","id":"1922","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sjres/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"1923","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1924","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-05-22T17:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Presented to President.","policyArea.name":"Environmental Protection","type":"SJRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"11","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/11/cosponsors?format=json","sponsors.0.bioguideId":"F000463","actions.url":"https://api.congress.gov/v3/bill/118/sjres/11/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/11/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":2,"cosponsors.count":37,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/11/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":28,"request.billNumber":"11","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/11/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/11/subjects?format=json","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 16, 2023\nhttps://rules.house.gov/bill/118/sj-res-11\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59194","request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":3,"request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/11/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/11/summaries?format=json","cboCostEstimates.0.title":"S.J. Res. 11, a joint resolution providing for Congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to “Control of Air Pollution From New Motor Vehicles: Heavy-Duty","introducedDate":"2023-02-09","subjects.count":9,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/11?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:17:39Z"}} +{"type":"node","id":"1925","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/28/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"28","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Held at the Desk","committees.url":"https://api.congress.gov/v3/bill/118/sjres/28/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/28/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Roger W. Ferguson as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"28","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/28/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/28/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/28/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/28/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/28/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"18:41:31"}} +{"type":"node","id":"1926","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/34/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"34","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/34/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/34/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States authorizing the Congress to prohibit the physical desecration of the flag of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"34","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/34/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/34/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/34/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/34/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/34/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/34?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-04-17T23:51:48Z"}} +{"type":"node","id":"1927","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-10","summaries.count":1,"sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"1928","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/33?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z"}} +{"type":"node","id":"1929","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/32/text?format=json","relatedBills.count":6,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":27,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"32","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/32/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/32/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)\".","latestAction.text":"Failed of passage in Senate over veto by Yea-Nay Vote. 54 - 45. Record Vote Number: 5.","sponsors.0.party":"R","number":"32","cosponsors.countIncludingWithdrawnCosponsors":45,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/32/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/32/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/32/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/32/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/32/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-06-13","cosponsors.count":45,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/32?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:24:10Z"}} +{"type":"node","id":"1930","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/7/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"7","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 24.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/7/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/7/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Army, Corps of Engineers, Department of Defense and the Environmental Protection Agency relating to \"Revised Definition of 'Waters of the United States'\".","latestAction.text":"Star Print ordered on the joint resolution.","sponsors.0.party":"R","number":"7","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/7/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/7/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/7/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/7/actions?format=json","latestAction.actionDate":"2023-02-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/7/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":2,"introducedDate":"2023-02-02","cosponsors.count":49,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/7?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1931","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/30/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"30","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/30/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/30/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the appointment of Antoinette Bush as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"30","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/30/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/30/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/30/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/30/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/30/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/30?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1932","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/29/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"29","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/29/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/29/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Michael Govan as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"29","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/29/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/29/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/29/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/29/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/29/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/29?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1933","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/12/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"12","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/12/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/12/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution disapproving the action of the District of Columbia Council in approving the Revised Criminal Code Act of 2022.","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"12","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/12/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/12/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/12/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/12/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/12/relatedbills?format=json","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":47,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1934","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","relatedBills.count":1,"updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Failed of passage in Senate by Yea-Nay Vote. 47 - 52. Record Vote Number: 95. (consideration: CR S1364, S1367-1390)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":37,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/10?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-03-07T19:16:21Z"}} +{"type":"node","id":"1935","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/27/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"27","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/27/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/27/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"27","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/27/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/27/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/27/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/27/actions?format=json","latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/27/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1936","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/26/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"26","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/26/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/26/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"26","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/26/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/26/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/26/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/26/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/26/relatedbills?format=json","sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/26?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1937","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/25/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"25","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/25/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/25/subjects?format=json","policyArea.name":"Immigration","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Adverse Effect Wage Rate Methodology for the Temporary Employment of H-2A Nonimmigrants in Non-Range Occupations in the United States\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"25","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/25/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/25/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/25/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/25/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/25/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2023-04-25","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2024-04-17T23:51:48Z"}} +{"type":"node","id":"1938","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/24/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"24","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/hr/24/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/24/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Federal Reserve Transparency Act of 2023","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"24","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/24/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/24/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/24/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/24/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/24/relatedbills?format=json","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":72,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 24.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is authorized by Article 1, Section 8 of the\nConstitution, which gives Congress the power ``to coin money,\nregulate the value therof, and of foreign coin, and fix the\nstandard of weights and measures,'' and ``to provide for the\npunishment of counterfeiting the securities and current coin\nof the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1939","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2025-02-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z"}} +{"type":"node","id":"1940","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/17/text?format=json","relatedBills.count":3,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Guthrie","sponsors.0.isByRequest":"N","request.billNumber":"17","sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/17/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/17/subjects?format=json","policyArea.name":"Energy","type":"HCONRES","title":"Expressing the sense of Congress that the Federal Government should not impose any restrictions on the export of crude oil or other petroleum products.","latestAction.text":"Reported by the Committee on Energy and Commerce. H. Rept. 118-27.","sponsors.0.party":"R","number":"17","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/27?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/17/cosponsors?format=json","sponsors.0.bioguideId":"G000558","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/17/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/17/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/17/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/17/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":9,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/17?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Brett","updateDateIncludingText":"2025-01-15T18:51:50Z","committeeReports.0.citation":"H. Rept. 118-27"}} +{"type":"node","id":"1941","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/19/text?format=json","updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"19","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/19/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/19/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Prohibiting President Donald Trump and certain other individuals who attempted to undermine and overturn the 2020 presidential election from entering the United States Capitol.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"19","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/19/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/19/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/19/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/19/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/19?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"1942","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/18/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","request.billNumber":"18","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/18/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hconres/18/committees?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Establishing deadlines for the Joint Committee of Congress on the Library to approve or deny the statue of the Reverend William Franklin \"Billy\" Graham, Jr., for placement in the National Statuary Hall.","latestAction.text":"Referred to the Subcommittee on Oversight.","sponsors.0.party":"R","number":"18","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/18/cosponsors?format=json","sponsors.0.bioguideId":"M001156","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/18/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/18/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/18/actions?format=json","latestAction.actionDate":"2023-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/18/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/18?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"1943","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/16/text?format=json","updateDate":"2024-07-09T18:13:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"16","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/16/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hconres/16/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HCONRES","title":"Recognizing the victims of the Port Chicago explosion of July 17, 1944, the 79th anniversary of the greatest homeland loss of life of World War II, and exonerating the 50 African-American sailors unjustly court-martialed by the Navy.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"16","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/16/cosponsors?format=json","sponsors.0.bioguideId":"D000623","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/16/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/16/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/16/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":13,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/16?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-09T18:13:39Z"}} +{"type":"node","id":"1944","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/9/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T04:52:09Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":14,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"9","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Ordered to be Reported by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/9/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/9/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Denouncing the horrors of socialism.","type":"HCONRES","latestAction.text":"Received in the Senate and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"9","cosponsors.countIncludingWithdrawnCosponsors":108,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2025-02-26","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/9/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/9/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/9/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/9/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/9/relatedbills?format=json","sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":2,"introducedDate":"2023-01-25","cosponsors.count":108,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/9?format=json","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-11-09T04:52:09Z"}} +{"type":"node","id":"1945","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Sewell","sponsors.0.isByRequest":"N","latestAction_text":"On agreeing to the resolution, as amended Agreed to by the Yeas and Nays: 217 - 215 (Roll no. 50). (text: CR H818-823)","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/14/cosponsors?format=json","sponsors.0.bioguideId":"S001185","actions.url":"https://api.congress.gov/v3/bill/118/hr/14/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/14/relatedbills?format=json","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","titles.count":3,"cosponsors.count":218,"request.contentType":"application/json","latestAction_actionTime":"20:22:05","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/14/text?format=json","updateDate":"2024-12-13T09:05:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"14","sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/14/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/14/subjects?format=json","title":"John R. Lewis Voting Rights Advancement Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":218,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2025-02-25","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/14/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/14/summaries?format=json","introducedDate":"2023-09-19","subjects.count":10,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/14?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 14.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 5 of the Fourteenth Amendment to the Constitution.\nSection 2 of the Fifteenth Amendment, and\nArticle I, Section 4, Clause 1 of the United States\nConstitution\nThe single subject of this legislation is:\nThis bill advances the accesiblity of voting rights for all\nAmericans.\n[Page H4408]\n","sponsors.0.district":7,"sponsors.0.firstName":"Terri","updateDateIncludingText":"2024-12-20T17:27:13Z"}} +{"type":"node","id":"1946","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Perry","cboCostEstimates.0.pubDate":"2023-03-14T20:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Congress","type":"HCONRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"15","cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/15/cosponsors?format=json","sponsors.0.bioguideId":"P000605","actions.url":"https://api.congress.gov/v3/bill/118/hconres/15/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/15/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-11","textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/15/text?format=json","updateDate":"2024-11-09T04:42:26Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":20,"request.billNumber":"15","sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hconres/15/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/15/subjects?format=json","title":"Authorizing the use of the Capitol Grounds for the National Peace Officers Memorial Service and the National Honor Guard and Pipe Band Exhibition.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59008","request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":4,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/11?format=json","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/15/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/15/summaries?format=json","cboCostEstimates.0.title":"H. Con. Res. 15, a concurrent resolution authorizing the use of the Capitol Grounds for the National Peace Officers Memorial Service and the National Honor Guard and Pipe Band Exhibition","introducedDate":"2023-02-09","subjects.count":8,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/15?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-11-09T04:42:26Z"}} +{"type":"node","id":"1947","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-05-22T17:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Environmental Protection","type":"SJRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"11","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/11/cosponsors?format=json","sponsors.0.bioguideId":"F000463","actions.url":"https://api.congress.gov/v3/bill/118/sjres/11/actions?format=json","latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/11/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":2,"cosponsors.count":37,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/11/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":28,"request.billNumber":"11","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/11/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/11/subjects?format=json","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 16, 2023\nhttps://rules.house.gov/bill/118/sj-res-11\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59194","request.format":"json","latestAction_actionDate":"2025-02-20","summaries.count":3,"request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/11/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/11/summaries?format=json","cboCostEstimates.0.title":"S.J. Res. 11, a joint resolution providing for Congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to “Control of Air Pollution From New Motor Vehicles: Heavy-Duty","introducedDate":"2023-02-09","subjects.count":9,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/11?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:17:39Z"}} +{"type":"node","id":"1948","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/13/text?format=json","relatedBills.count":1,"updateDate":"2024-09-18T08:06:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Womack","sponsors.0.isByRequest":"N","request.billNumber":"13","sponsors.0.url":"https://api.congress.gov/v3/member/W000809?format=json","latestAction_text":"Referred to the House Committee on Rules.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/13/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/13/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HCONRES","title":"Supporting the Local Radio Freedom Act.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"13","cosponsors.countIncludingWithdrawnCosponsors":229,"request.format":"json","latestAction_actionDate":"2025-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/13/cosponsors?format=json","sponsors.0.bioguideId":"W000809","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/13/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/13/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/13/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/13/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-06","sponsors.0.fullName":"Rep. Womack, Steve [R-AR-3]","titles.count":2,"introducedDate":"2023-02-06","cosponsors.count":229,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/13?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-09-18T08:06:04Z"}} +{"type":"node","id":"1949","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/12/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"12","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/12/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/12/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution disapproving the action of the District of Columbia Council in approving the Revised Criminal Code Act of 2022.","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"12","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/12/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/12/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/12/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/12/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/12/relatedbills?format=json","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":47,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/12?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1950","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","relatedBills.count":1,"updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Referred to the House Committee on the Budget.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":37,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/10?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-03-07T19:16:21Z"}} +{"type":"node","id":"1951","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/8/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"8","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/8/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/8/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Establishing the Task Force on the Legislative Process.","latestAction.text":"Referred to the House Committee on Rules.","sponsors.0.party":"D","number":"8","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/8/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/8/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/8/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/8/actions?format=json","latestAction.actionDate":"2023-01-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":2,"introducedDate":"2023-01-11","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/8?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-07-24T15:24:14Z"}} +{"type":"node","id":"1952","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/4/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"4","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/4/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/4/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HCONRES","title":"Expressing support for the Nation's law enforcement agencies and condemning any efforts to defund or dismantle law enforcement agencies.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/4/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/4/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/4/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/4/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/4/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":28,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/4?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-07-24T15:24:15Z"}} +{"type":"node","id":"1953","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/7/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"7","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Referred to the House Committee on Rules.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/7/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/7/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Army, Corps of Engineers, Department of Defense and the Environmental Protection Agency relating to \"Revised Definition of 'Waters of the United States'\".","latestAction.text":"Star Print ordered on the joint resolution.","sponsors.0.party":"R","number":"7","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/7/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/7/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/7/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/7/actions?format=json","latestAction.actionDate":"2023-02-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/7/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":2,"introducedDate":"2023-02-02","cosponsors.count":49,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/7?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/6/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"6","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the House Committee on Rules.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/6/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/6/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Reclaiming Congress’s Constitutional Mandate in Trade Resolution","latestAction.text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-28","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/6/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/6/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/6/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/6?format=json","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:14Z"}} +{"type":"node","id":"1955","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/5/text?format=json","relatedBills.count":2,"updateDate":"2024-07-09T18:13:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tiffany","sponsors.0.isByRequest":"N","request.billNumber":"5","sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","latestAction_text":"Referred to the House Committee on Rules.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/5/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/5/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HCONRES","title":"Expressing support for the Nation's law enforcement agencies and condemning any efforts to defund or dismantle law enforcement agencies.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/5/cosponsors?format=json","sponsors.0.bioguideId":"T000165","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/5/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/5/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/5/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/5/relatedbills?format=json","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":12,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/5?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-07-09T18:13:40Z"}} +{"type":"node","id":"1956","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/3/text?format=json","updateDate":"2024-04-17T23:51:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/3/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/3/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to clarify the authority of Congress and the States to regulate corporations, limited liability companies, and other corporate entities established by the laws of any State, the United States, or any foreign state.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"sponsors.0.bioguideId":"T000464","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/3/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/3/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/3/actions?format=json","latestAction.actionDate":"2023-01-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":2,"introducedDate":"2023-01-23","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/3?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2024-04-17T23:51:47Z"}} +{"type":"node","id":"1957","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Received in the Senate.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2025-01-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"1958","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/2/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"2","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/2/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/2/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HCONRES","title":"Expressing support for the Nation's law enforcement agencies and condemning any efforts to defund or dismantle law enforcement agencies.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"2","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/2/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/2/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/2/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/2/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/2/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/2?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-07-24T15:24:15Z"}} +{"type":"node","id":"1959","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","relatedBills.count":1,"updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1668)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":37,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/10?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-03-07T19:16:21Z"}} +{"type":"node","id":"1960","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/9/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T04:52:09Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":14,"sponsors.0.lastName":"Salazar","sponsors.0.isByRequest":"N","request.billNumber":"9","sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1633-1634)","committees.url":"https://api.congress.gov/v3/bill/118/hconres/9/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/9/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Denouncing the horrors of socialism.","type":"HCONRES","latestAction.text":"Received in the Senate and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"9","cosponsors.countIncludingWithdrawnCosponsors":108,"request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2025-03-10","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/9/cosponsors?format=json","sponsors.0.bioguideId":"S000168","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/9/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/9/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/9/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/9/relatedbills?format=json","sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","titles.count":2,"introducedDate":"2023-01-25","cosponsors.count":108,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/9?format=json","sponsors.0.district":27,"sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-11-09T04:52:09Z"}} +{"type":"node","id":"1961","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/8/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"8","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S1463)","committees.url":"https://api.congress.gov/v3/bill/118/hconres/8/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/8/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Establishing the Task Force on the Legislative Process.","latestAction.text":"Referred to the House Committee on Rules.","sponsors.0.party":"D","number":"8","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/8/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/8/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/8/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/8/actions?format=json","latestAction.actionDate":"2023-01-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":2,"introducedDate":"2023-01-11","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/8?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-07-24T15:24:14Z"}} +{"type":"node","id":"1962","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/7/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"7","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Resolution agreed to in Senate with amendments by Yea-Nay Vote. 52 - 48. Record Vote Number: 87. (text: CR S1119-1125)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/7/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/7/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Army, Corps of Engineers, Department of Defense and the Environmental Protection Agency relating to \"Revised Definition of 'Waters of the United States'\".","latestAction.text":"Star Print ordered on the joint resolution.","sponsors.0.party":"R","number":"7","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/7/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/7/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/7/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/7/actions?format=json","latestAction.actionDate":"2023-02-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/7/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":2,"introducedDate":"2023-02-02","cosponsors.count":49,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/7?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"1963","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/6/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"6","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S374)","committees.url":"https://api.congress.gov/v3/bill/118/hconres/6/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/6/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Reclaiming Congress’s Constitutional Mandate in Trade Resolution","latestAction.text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-24","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/6/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/6/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/6/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/6?format=json","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:14Z"}} +{"type":"node","id":"1964","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/5/text?format=json","relatedBills.count":2,"updateDate":"2024-07-09T18:13:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tiffany","sponsors.0.isByRequest":"N","request.billNumber":"5","sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S187)","committees.url":"https://api.congress.gov/v3/bill/118/hconres/5/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/5/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HCONRES","title":"Expressing support for the Nation's law enforcement agencies and condemning any efforts to defund or dismantle law enforcement agencies.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2025-01-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/5/cosponsors?format=json","sponsors.0.bioguideId":"T000165","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/5/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/5/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/5/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/5/relatedbills?format=json","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":12,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/5?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-07-09T18:13:40Z"}} +{"type":"node","id":"1965","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/4/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"4","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/4/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/4/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HCONRES","title":"Expressing support for the Nation's law enforcement agencies and condemning any efforts to defund or dismantle law enforcement agencies.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/4/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/4/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/4/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/4/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/4/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":28,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/4?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-07-24T15:24:15Z"}} +{"type":"node","id":"1966","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/3/text?format=json","updateDate":"2024-04-17T23:51:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/3/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/3/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to clarify the authority of Congress and the States to regulate corporations, limited liability companies, and other corporate entities established by the laws of any State, the United States, or any foreign state.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3","request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"sponsors.0.bioguideId":"T000464","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/3/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/3/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/3/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-23","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":2,"introducedDate":"2023-01-23","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/3?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2024-04-17T23:51:47Z","latestAction_actionTime":"18:24:51"}} +{"type":"node","id":"1967","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/2/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"2","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/2/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/2/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HCONRES","title":"Expressing support for the Nation's law enforcement agencies and condemning any efforts to defund or dismantle law enforcement agencies.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"2","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/2/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/2/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/2/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/2/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/2/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/2?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-07-24T15:24:15Z","latestAction_actionTime":"18:23:19"}} +{"type":"node","id":"1968","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"18:21:55"}} +{"type":"node","id":"1969","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/224/text?format=json","updateDate":"2024-07-24T15:24:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"224","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/224/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/224/subjects?format=json","policyArea.name":"Economics and Public Finance","title":"Inaction Has Consequences Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"224","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/224/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/224/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/224/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/224?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 224.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 6 of the Constitution\n[Page H113]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:24:10Z"}} +{"type":"node","id":"1970","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/222/text?format=json","relatedBills.count":2,"updateDate":"2024-12-20T19:12:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"222","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/222/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/222/subjects?format=json","policyArea.name":"Taxation","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"222","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/222/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/222/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/222/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-18","sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-18","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/222?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 170 (Monday, November 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 222.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Internal Revenue\nService relating to ``Advanced Manufacturing Production\nCredit''.\n[Page H6078]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-20T19:12:09Z"}} +{"type":"node","id":"1971","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/221/text?format=json","updateDate":"2024-12-19T17:38:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"221","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/221/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Defense relating to \"Cybersecurity Maturity Model Certification (CMMC) Program\".","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"221","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-14","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/221/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/221/actions?format=json","latestAction.actionDate":"2024-11-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-15","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 169 (Friday, November 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Department of\nDefense relating to ``Cybersecurity Maturity Model\nCertification (CMMC) Program''.\n[Page H6027]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-19T17:38:30Z"}} +{"type":"node","id":"1972","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/225/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wittman","sponsors.0.isByRequest":"N","request.billNumber":"225","sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/225/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/225/subjects?format=json","policyArea.name":"Economics and Public Finance","title":"No Budget, No Pay Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"225","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/225/cosponsors?format=json","sponsors.0.bioguideId":"W000804","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/225/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/225/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/225/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/225/relatedbills?format=json","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/225?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 225.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 6 of the Constitution\n[Page H113]\n","sponsors.0.district":1,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"1973","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/226/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T09:06:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jacobs","sponsors.0.isByRequest":"N","request.billNumber":"226","sponsors.0.url":"https://api.congress.gov/v3/member/J000305?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/226/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/226/subjects?format=json","policyArea.name":"International Affairs","type":"HJRES","title":"Providing for congressional disapproval of the proposed foreign military sale to the Government of the United Arab Emirates of certain defense articles and services.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"226","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/226/cosponsors?format=json","sponsors.0.bioguideId":"J000305","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/226/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/226/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/226/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Jacobs, Sara [D-CA-51]","titles.count":2,"introducedDate":"2024-11-21","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/226?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 173 (Thursday, November 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACOBS:\nH.J. Res. 226.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nProviding for congressional disapproval of the proposed\nforeign military sale to the Government of the United Arab\nEmirates of certain defense articles and services.\n[Page H6193]\n","sponsors.0.district":51,"sponsors.0.firstName":"Sara","updateDateIncludingText":"2024-12-19T09:06:18Z"}} +{"type":"node","id":"1974","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/223/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T14:42:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"223","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/223/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/223/committees?format=json","policyArea.name":"Environmental Protection","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"223","request.format":"json","latestAction_actionDate":"2025-03-14","sponsors.0.bioguideId":"G000576","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/223/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/223/actions?format=json","latestAction.actionDate":"2024-11-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/223/relatedbills?format=json","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":2,"introducedDate":"2024-11-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/223?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 171 (Tuesday, November 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.J. Res. 223\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Environmental\nProtection Agency relating to ``Waste Emissions Charge for\nPetroleum and Natural Gas Systems: Procedures for\nFacilitating Compliance, Including Netting and Exemptions''.\n[Page H6110]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-01-03T14:42:45Z"}} +{"type":"node","id":"1975","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/195/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"195","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Ordered to be Reported Adversely by the Yeas and Nays: 24 - 18.","committees.url":"https://api.congress.gov/v3/bill/118/hr/195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/195/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To provide States with the authority to name post offices located in the State, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"195","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/195/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/195/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/195/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/195/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/195?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 195.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1976","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Ordered to be Reported Adversely by the Yeas and Nays: 25 - 18.","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1977","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/164/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"164","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Motion to discharge the Committee on Rules filed by Mrs. Luna. Assigned to the Discharge Calendar, Calendar No. 1.","subjects.url":"https://api.congress.gov/v3/bill/118/s/164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/164/committees?format=json","policyArea.name":"Health","type":"S","title":"Doss's Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"164","request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/164/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/164/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/164/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":5,"introducedDate":"2023-01-31","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hres/164?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"1978","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/214/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:20:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"214","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/214/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/214/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Supporting the goals and ideals of \"Deep Vein Thrombosis and Pulmonary Embolism Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"214","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/214/cosponsors?format=json","sponsors.0.bioguideId":"B001248","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/214/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/214/relatedbills?format=json","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":2,"introducedDate":"2023-03-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/214?format=json","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:20:17Z","latestAction_actionTime":"17:56:30"}} +{"type":"node","id":"1979","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/213/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Payne","sponsors.0.isByRequest":"N","request.billNumber":"213","sponsors.0.url":"https://api.congress.gov/v3/member/P000604?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/213/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/213/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Supporting the designation of March 2023 as National Colorectal Cancer Awareness Month.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"213","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/213/cosponsors?format=json","sponsors.0.bioguideId":"P000604","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/213/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/213/relatedbills?format=json","sponsors.0.fullName":"Rep. Payne, Donald M., Jr. [D-NJ-10]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":18,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/213?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-02-04T16:54:13Z","latestAction_actionTime":"17:56:04"}} +{"type":"node","id":"1980","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/198/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"198","sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hres/198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/198/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Recognizing Girl Scouts of the United States of America on its 111th birthday and celebrating its legacy of providing girls with a safe, inclusive space where they can explore their world, build meaningful relationships, and have access to experiences that prepare them for a life of leadership.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"198","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/198/cosponsors?format=json","sponsors.0.bioguideId":"K000397","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/198/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/198/actions?format=json","latestAction.actionDate":"2023-03-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/198/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":2,"introducedDate":"2023-03-07","cosponsors.count":16,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/198?format=json","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"1981","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/212/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:42Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Nickel","sponsors.0.isByRequest":"N","request.billNumber":"212","sponsors.0.url":"https://api.congress.gov/v3/member/N000194?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/212/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/212/subjects?format=json","policyArea.name":"Taxation","type":"HRES","title":"Opposing a national sales tax on working families and supporting a tax cut to benefit the middle class.","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"212","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/212/cosponsors?format=json","sponsors.0.bioguideId":"N000194","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/212/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/212/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/212/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/212/relatedbills?format=json","sponsors.0.fullName":"Rep. Nickel, Wiley [D-NC-13]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/212?format=json","sponsors.0.district":13,"sponsors.0.firstName":"Wiley","updateDateIncludingText":"2024-07-24T15:23:42Z","latestAction_actionTime":"14:15:53"}} +{"type":"node","id":"1982","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/211/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"211","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/211/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/211/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HRES","title":"Expressing support for the designation of March 8, 2023, as \"National Emily Warner and Women Airline Pilots Day\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"211","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/211/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/211/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/211/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/211/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/211/relatedbills?format=json","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/211?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-02-04T16:54:13Z","latestAction_actionTime":"14:06:25"}} +{"type":"node","id":"1983","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/220/text?format=json","updateDate":"2024-12-16T19:23:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"220","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/220/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Debt Collection Practices (Regulation F); Deceptive and Unfair Collection of Medical Debt\".","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"220","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-11","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/220/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/220/actions?format=json","latestAction.actionDate":"2024-11-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/220?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 167 (Wednesday, November 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 220.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Bureau of\nConsumer Financial Protection relating to ``Debt Collection\nPractices (Regulation F); Deceptive and Unfair Collection of\nMedical Debt''.\n[Page H5976]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-16T19:23:41Z"}} +{"type":"node","id":"1984","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/217/text?format=json","updateDate":"2024-12-16T19:22:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"217","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/217/subjects?format=json","policyArea.name":"Health","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to \"Medicare Program; FY 2025 Hospice Wage Index and Payment Rate Update, Hospice Conditions of Participation Updates, and Hospice Quality Reporting Program Requirements\".","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"217","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-11","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/217/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/217/actions?format=json","latestAction.actionDate":"2024-10-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-10-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/217?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 160 (Tuesday, October 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 217.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by by the Centers for\nMedicare & Medicaid Services relating to ``Medicare Program;\nFY 2025 Hospice Wage Index and Payment Rate Update, Hospice\nConditions of Participation Updates, and Hospice Quality\nReporting Program Requirements''.\n[Page H5902]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-16T19:22:13Z"}} +{"type":"node","id":"1985","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/219/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"219","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/219/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/219/subjects?format=json","policyArea.name":"Education","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Health and Human Services relating to \"Supporting the Head Start Workforce and Consistent Quality Programming\".","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"219","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-11","summaries.count":1,"sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/219/actions?format=json","latestAction.actionDate":"2024-11-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-11-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/219?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 167 (Wednesday, November 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 219.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Department of\nHealth and Human Services relating to ``Supporting the Head\nStart Workforce and Consistent Quality Programming''.\n[Page H5976]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"1986","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/215/text?format=json","updateDate":"2024-07-24T15:23:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LOFGREN","sponsors.0.isByRequest":"N","request.billNumber":"215","sponsors.0.url":"https://api.congress.gov/v3/member/L000397?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hres/215/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/215/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Recognizing the cultural and historical significance of Nowruz.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"215","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/215/cosponsors?format=json","sponsors.0.bioguideId":"L000397","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/215/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Lofgren, Zoe [D-CA-18]","titles.count":2,"introducedDate":"2023-03-09","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/215?format=json","sponsors.0.district":18,"sponsors.0.firstName":"ZOE","updateDateIncludingText":"2024-07-24T15:23:40Z"}} +{"type":"node","id":"1987","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/218/text?format=json","updateDate":"2024-12-16T19:23:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bucshon","sponsors.0.isByRequest":"N","request.billNumber":"218","sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","latestAction_text":"Referred to the House Committee on Education and Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/218/subjects?format=json","policyArea.name":"Energy","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Commercial Water Heating Equipment\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"218","request.format":"json","latestAction_actionDate":"2025-03-11","sponsors.0.bioguideId":"B001275","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/218/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/218/actions?format=json","latestAction.actionDate":"2024-11-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","titles.count":2,"introducedDate":"2024-11-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/218?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 166 (Tuesday, November 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.J. Res. 218.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H5956]\n","sponsors.0.district":8,"sponsors.0.firstName":"Larry","updateDateIncludingText":"2024-12-16T19:23:30Z"}} +{"type":"node","id":"1988","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/216/text?format=json","updateDate":"2024-12-16T19:21:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Palmer","sponsors.0.isByRequest":"N","request.billNumber":"216","sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","latestAction_text":"Referred to the House Committee on Ethics.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/216/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/216/subjects?format=json","policyArea.name":"Health","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to \"Medicare Program; Inpatient Rehabilitation Facility Prospective Payment System for Federal Fiscal Year 2025 and Updates to the IRF Quality Reporting Program\".","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"216","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-11","sponsors.0.bioguideId":"P000609","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/216/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/216/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","titles.count":2,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/216?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 157 (Friday, October 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.J. Res. 216.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Centers for\nMedicare & Medicaid Services relating to ``Medicare Program;\nInpatient Rehabilitation Facility Prospective Payment System\nfor Federal Fiscal Year 2025 and Updates to the IRF Quality\nReporting Program''.\n[Page H5879]\n","sponsors.0.district":6,"sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-16T19:21:13Z"}} +{"type":"node","id":"1989","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2025-03-14","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}} +{"type":"node","id":"1990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"1991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}} +{"type":"node","id":"1992","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund Planned Parenthood Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","latestAction.actionDate":"2023-01-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sres/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1993","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"1994","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/72/text?format=json","updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"72","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1751; text: 02/11/2025 CR S863)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/72/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/72/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to maintain or collect information that can be used to identify any individual to whom a COVID-19 vaccine is administered, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"72","request.format":"json","latestAction_actionDate":"2025-03-13","summaries.count":1,"sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/72/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/72/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/72/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 72.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"1995","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1716-1717)","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"1996","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1716)","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"1997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Armed Services. (text: CR S1716)","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FAIR Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"1998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1667-1668)","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}} +{"type":"node","id":"1999","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1633)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2025-03-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/122?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"2000","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S1632-1633)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}} +{"type":"node","id":"2001","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1632)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}} +{"type":"node","id":"2002","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"No Vaccine Passports Act","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"2003","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1616; text: CR S1609)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sres/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"2004","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1610)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}} +{"type":"node","id":"2005","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/116/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"116","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/116/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed enhancement or upgrade of sensitivity of technology or capability of certain major defense equipment for the Government of Israel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"I","number":"116","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/116/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/116/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/116/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"2006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Prescription Pricing for the People Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":21,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"2007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"2008","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","policyArea.name":"Economics and Public Finance","title":"Preventive Health Savings Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"2009","labels":["Law"],"properties":{"updateDate":"2025-03-12","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-59.","type":"S","title":"REPORT Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/474?format=json","laws_0_number":"118-59","number":"474","latestAction_actionDate":"2024-05-07","updateDateIncludingText":"2025-03-12","laws_0_type":"Public Law"}} +{"type":"node","id":"2010","labels":["Law"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-17T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-3.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Became Public Law No: 118-7.","sponsors.0.party":"D","number":"467","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/467/cosponsors?format=json","sponsors.0.bioguideId":"P000595","laws.0.number":"118-7","actions.url":"https://api.congress.gov/v3/bill/118/s/467/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/467/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2023-06-30","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":14,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-22","textVersions.url":"https://api.congress.gov/v3/bill/118/s/467/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/467/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/467/committees?format=json","title":"CADETS Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59072","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-04-10","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/22?format=json","summaries.count":5,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/s/467/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/467/summaries?format=json","cboCostEstimates.0.title":"S. 467, CADETS Act","introducedDate":"2023-02-16","subjects.count":7,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hjres/7?format=json","laws_0_number":"118-3","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2011","labels":["Law"],"properties":{"updateDate":"2025-03-01","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-120.","type":"HR","title":"BRIDGE for Workers Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5861?format=json","laws_0_number":"118-120","number":"5861","latestAction_actionDate":"2024-11-25","updateDateIncludingText":"2025-03-01","laws_0_type":"Public Law"}} +{"type":"node","id":"2012","labels":["Law"],"properties":{"updateDate":"2025-03-01","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-44.","type":"S","title":"Disaster Assistance Deadlines Alignment Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1858?format=json","laws_0_number":"118-44","number":"1858","latestAction_actionDate":"2024-03-18","updateDateIncludingText":"2025-03-01","laws_0_type":"Public Law"}} +{"type":"node","id":"2013","labels":["Law"],"properties":{"updateDate":"2025-02-01","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-229.","type":"HR","title":"FISHES Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5103?format=json","laws_0_number":"118-229","number":"5103","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-01","laws_0_type":"Public Law"}} +{"type":"node","id":"2014","labels":["Law"],"properties":{"congress":118,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-273.","policyArea.name":"Armed Forces and National Security","type":"HR","latestAction.text":"Became Public Law No: 118-82.","sponsors.0.party":"R","number":"9468","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9468/cosponsors?format=json","sponsors.0.bioguideId":"G000061","laws.0.number":"118-82","actions.url":"https://api.congress.gov/v3/bill/118/hr/9468/actions?format=json","latestAction.actionDate":"2024-09-20","textVersions.count":4,"sponsors.0.fullName":"Rep. Garcia, Mike [R-CA-27]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/9468/amendments?format=json","titles.count":5,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9468/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":20,"sponsors.0.url":"https://api.congress.gov/v3/member/G000061?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9468/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9468/subjects?format=json","title":"Veterans Benefits Continuity and Accountability Supplemental Appropriations Act, 2024","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-01-05","summaries.count":2,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hr/9468/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9468/summaries?format=json","introducedDate":"2024-09-06","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/82?format=json","laws_0_number":"118-273","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 138 (Friday, September 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MIKE GARCIA of California:\nH.R. 9468.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7(c) of rule XII of the Rules of the\nHouse of Representatives, the following statement is\nsubmitted regarding the specific powers granted to Congress\nin the Constitution to enact the accompanying bill or joint\nresolution.\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law. . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States.\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of supplemental\nappropriations for the Department of Veterans Affairs for\nfiscal year 2024.\n[Page H5032]\n","sponsors.0.district":27,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-14T02:41:12Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2015","labels":["Law"],"properties":{"updateDate":"2025-01-29","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-148.","type":"HR","title":"Federal Disaster Tax Relief Act of 2023","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5863?format=json","laws_0_number":"118-148","number":"5863","latestAction_actionDate":"2024-12-12","updateDateIncludingText":"2025-01-29","laws_0_type":"Public Law"}} +{"type":"node","id":"2016","labels":["Law"],"properties":{"updateDate":"2025-02-27","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-258.","type":"HR","title":"Supporting America’s Children and Families Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9076?format=json","laws_0_number":"118-258","number":"9076","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-27","laws_0_type":"Public Law"}} +{"type":"node","id":"2017","labels":["Law"],"properties":{"updateDate":"2025-01-17","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-272.","type":"S","title":"Thomas R. Carper Water Resources Development Act of 2024","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4367?format=json","laws_0_number":"118-272","number":"4367","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-01-17","laws_0_type":"Public Law"}} +{"type":"node","id":"2018","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-261.","type":"HR","title":"To designate the facility of the United States Postal Service located at 675 Wolf Ledges Parkway in Akron, Ohio, as the \"Judge James R. Williams Post Office Building\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9322?format=json","laws_0_number":"118-261","number":"9322","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2019","labels":["Law"],"properties":{"updateDate":"2025-02-15","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-274.","type":"HR","title":"D.C. Robert F. Kennedy Memorial Stadium Campus Revitalization Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4984?format=json","laws_0_number":"118-274","number":"4984","latestAction_actionDate":"2025-01-06","updateDateIncludingText":"2025-02-15","laws_0_type":"Public Law"}} +{"type":"node","id":"2020","labels":["Law"],"properties":{"updateDate":"2025-01-16","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-271.","type":"S","title":"Keeping Military Families Together Act of 2024","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2181?format=json","laws_0_number":"118-271","number":"2181","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-01-16","laws_0_type":"Public Law"}} +{"type":"node","id":"2021","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-270.","type":"HR","title":"To designate the facility of the United States Postal Service located at 802 North Tancahua Street in Corpus Christi, Texas, as the \"Captain Robert E. 'Bob' Batterson Post Office\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10065?format=json","laws_0_number":"118-270","number":"10065","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2022","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-269.","type":"HR","title":"To designate the facility of the United States Postal Service located at 119 North Anderson Street in Elwood, Indiana, as the \"Officer Noah Jacob Shahnavaz Post Office Building\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9775?format=json","laws_0_number":"118-269","number":"9775","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2023","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-268.","type":"HR","title":"To designate the facility of the United States Postal Service located at 119 Main Street in Plains, Georgia, as the \"Jimmy and Rosalynn Carter Post Office\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9600?format=json","laws_0_number":"118-268","number":"9600","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2024","labels":["Law"],"properties":{"updateDate":"2025-02-15","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-267.","type":"HR","title":"Federal Register Modernization Act of 2024","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9592?format=json","laws_0_number":"118-267","number":"9592","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-15","laws_0_type":"Public Law"}} +{"type":"node","id":"2025","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-266.","type":"HR","title":"To designate the facility of the United States Postal Service located at 2777 Brentwood Road in Raleigh, North Carolina, as the \"Millie Dunn Veasey Post Office\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9580?format=json","laws_0_number":"118-266","number":"9580","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2026","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-265.","type":"HR","title":"To designate the facility of the United States Postal Service located at 125 South 1st Avenue in Hillsboro, Oregon, as the \"Elizabeth Furse Post Office Building\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9549?format=json","laws_0_number":"118-265","number":"9549","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2027","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-264.","type":"HR","title":"To designate the facility of the United States Postal Service located at 340 South Loudon Avenue in Baltimore, Maryland, as the \"United States Representative Elijah E. Cummings Post Office Building\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9544?format=json","laws_0_number":"118-264","number":"9544","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2028","labels":["Law"],"properties":{"updateDate":"2025-01-17","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-263.","type":"HR","title":"House Office of Legislative Counsel Modernization Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9487?format=json","laws_0_number":"118-263","number":"9487","latestAction_actionDate":"2025-01-04","updateDateIncludingText":"2025-01-17","laws_0_type":"Public Law"}} +{"type":"node","id":"2029","labels":["Law"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-06-26T16:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-30.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Became Public Law No: 118-64.","sponsors.0.party":"R","number":"546","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/546/cosponsors?format=json","sponsors.0.bioguideId":"F000463","laws.0.number":"118-64","actions.url":"https://api.congress.gov/v3/bill/118/s/546/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/546/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-05-24","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":6,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/546/text?format=json","updateDate":"2024-12-19T13:04:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/546/subjects?format=json","title":"Recruit and Retain Act","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on June 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59307","request.format":"json","latestAction_actionDate":"2023-12-21","summaries.count":5,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/s/546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/546/summaries?format=json","cboCostEstimates.0.title":"S. 546, Recruit and Retain Act","introducedDate":"2023-02-28","subjects.count":11,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hjres/64?format=json","laws_0_number":"118-30","sponsors.0.firstName":"Deb","updateDateIncludingText":"2024-12-19T13:04:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2030","labels":["Law"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-12-05T16:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-28.","policyArea.name":"Energy","type":"HR","latestAction.text":"Became Public Law No: 118-62.","sponsors.0.party":"R","number":"1042","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1042/cosponsors?format=json","sponsors.0.bioguideId":"M001159","laws.0.number":"118-62","actions.url":"https://api.congress.gov/v3/bill/118/hr/1042/actions?format=json","latestAction.actionDate":"2024-05-13","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1042/relatedbills?format=json","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-296","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1042/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1042/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1042/subjects?format=json","title":"Prohibiting Russian Uranium Imports Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on December 1, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59805","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2023-12-21","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/296?format=json","summaries.count":5,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hr/1042/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1042/summaries?format=json","cboCostEstimates.0.title":"H.R. 1042, Prohibiting Russian Uranium Imports Act","introducedDate":"2023-02-14","subjects.count":6,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/62?format=json","laws_0_number":"118-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 1042.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 10\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by preventing imports of uranium from Russia.\n[Page H842]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-01-15T18:51:50Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2031","labels":["Law"],"properties":{"updateDate":"2024-11-09","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-24.","type":"HR","title":"National Guard and Reservists Debt Relief Extension Act of 2023","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3315?format=json","laws_0_number":"118-24","number":"3315","latestAction_actionDate":"2023-12-19","updateDateIncludingText":"2024-11-09","laws_0_type":"Public Law"}} +{"type":"node","id":"2032","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-25.","type":"S","title":"Duck Stamp Modernization Act of 2023","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/788?format=json","laws_0_number":"118-25","number":"788","latestAction_actionDate":"2023-12-19","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2033","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-27.","type":"S","title":"5G SALE Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2787?format=json","laws_0_number":"118-27","number":"2787","latestAction_actionDate":"2023-12-19","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2034","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-21.","type":"HR","title":"Wounded Warrior Access Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1226?format=json","laws_0_number":"118-21","number":"1226","latestAction_actionDate":"2023-11-13","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2035","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-20.","type":"HR","title":"Korean American VALOR Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/366?format=json","laws_0_number":"118-20","number":"366","latestAction_actionDate":"2023-11-13","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2036","labels":["Law"],"properties":{"updateDate":"2024-11-09","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-11.","type":"HR","title":"Pala Band of Mission Indians Land Transfer Act of 2023","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/423?format=json","laws_0_number":"118-11","number":"423","latestAction_actionDate":"2023-07-28","updateDateIncludingText":"2024-11-09","laws_0_type":"Public Law"}} +{"type":"node","id":"2037","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-15.","type":"HR","title":"Continuing Appropriations Act, 2024 and Other Extensions Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5860?format=json","laws_0_number":"118-15","number":"5860","latestAction_actionDate":"2023-09-30","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2038","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-17.","type":"HR","title":"Protecting Hunting Heritage and Education Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5110?format=json","laws_0_number":"118-17","number":"5110","latestAction_actionDate":"2023-10-06","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2039","labels":["Law"],"properties":{"congress":118,"sponsors.0.lastName":"Kim","cboCostEstimates.0.pubDate":"2024-02-28T17:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-18.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-112.","sponsors.0.party":"R","number":"3608","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3608/cosponsors?format=json","sponsors.0.bioguideId":"K000397","laws.0.number":"118-112","actions.url":"https://api.congress.gov/v3/bill/118/hr/3608/actions?format=json","latestAction.actionDate":"2024-11-25","textVersions.count":5,"sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","titles.count":2,"cosponsors.count":51,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60610","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3608/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","cboCostEstimates.1.pubDate":"2024-08-12T18:47:00Z","actions.count":26,"sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3608/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3608/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 28081 Marguerite Parkway in Mission Viejo, California, as the \"Major Megan McClung Post Office Building\".","cboCostEstimates.1.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 6, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60018","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2023-10-06","summaries.count":2,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hr/3608/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3608/summaries?format=json","cboCostEstimates.0.title":"H.R. 3608, a bill to designate the facility of the United States Postal Service located at 28081 Marguerite Parkway in Mission Viejo, California, as the “Major Megan McClung Post Office Building”","introducedDate":"2023-05-23","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/112?format=json","laws_0_number":"118-18","cboCostEstimates.1.title":"H.R. 3608, an act to designate the facility of the United States Postal Service located at 28081 Marguerite Parkway in Mission Viejo, California, as the “Major Megan McClung Post Office Building”","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 87 (Tuesday, May 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 3608.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nrenaming a post office\n[Page H2546]\n","sponsors.0.district":40,"sponsors.0.firstName":"Young","updateDateIncludingText":"2025-02-04T17:04:10Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2040","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-16.","type":"S","title":"A bill to designate the clinic of the Department of Veterans Affairs in Gallup, New Mexico, as the Hiroshi \"Hershey\" Miyamura VA Clinic.","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/475?format=json","laws_0_number":"118-16","number":"475","latestAction_actionDate":"2023-10-02","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2041","labels":["Law"],"properties":{"updateDate":"2024-11-09","originChamber":"Senate","congress":118,"latestAction_text":"Became Public Law No: 118-2.","type":"S","title":"COVID-19 Origin Act of 2023","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/619?format=json","laws_0_number":"118-2","number":"619","latestAction_actionDate":"2023-03-20","updateDateIncludingText":"2024-11-09","laws_0_type":"Public Law"}} +{"type":"node","id":"2042","labels":["Law"],"properties":{"updateDate":"2024-11-09","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-14.","type":"HR","title":"Securing the U.S. Organ Procurement and Transplantation Network Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2544?format=json","laws_0_number":"118-14","number":"2544","latestAction_actionDate":"2023-09-22","updateDateIncludingText":"2024-11-09","laws_0_type":"Public Law"}} +{"type":"node","id":"2043","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-5.","type":"HR","title":"Fiscal Responsibility Act of 2023","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3746?format=json","laws_0_number":"118-5","number":"3746","latestAction_actionDate":"2023-06-03","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2044","labels":["Law"],"properties":{"updateDate":"2024-11-09","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-13.","type":"HR","title":"United States-Taiwan Initiative on 21st-Century Trade First Agreement Implementation Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4004?format=json","laws_0_number":"118-13","number":"4004","latestAction_actionDate":"2023-08-07","updateDateIncludingText":"2024-11-09","laws_0_type":"Public Law"}} +{"type":"node","id":"2045","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-12.","type":"HR","title":"To designate the clinic of the Department of Veterans Affairs in Indian River, Michigan, as the \"Pfc. Justin T. Paton Department of Veterans Affairs Clinic\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3672?format=json","laws_0_number":"118-12","number":"3672","latestAction_actionDate":"2023-07-28","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2046","labels":["Law"],"properties":{"updateDate":"2024-07-24","originChamber":"House","congress":118,"latestAction_text":"Became Public Law No: 118-10.","type":"HR","title":"250th Anniversary of the United States Marine Corps Commemorative Coin Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1096?format=json","laws_0_number":"118-10","number":"1096","latestAction_actionDate":"2023-07-26","updateDateIncludingText":"2024-07-24","laws_0_type":"Public Law"}} +{"type":"node","id":"2047","labels":["Law"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Pappas","cboCostEstimates.0.pubDate":"2023-07-21T17:50:11Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-9.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-111.","sponsors.0.party":"D","number":"1098","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1098/cosponsors?format=json","sponsors.0.bioguideId":"P000614","laws.0.number":"118-111","actions.url":"https://api.congress.gov/v3/bill/118/hr/1098/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1098/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-11-25","sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60608","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1098/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","cboCostEstimates.1.pubDate":"2024-08-12T18:48:00Z","actions.count":25,"sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1098/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1098/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 50 East Derry Road in East Derry, New Hampshire, as the \"Chief Edward B. Garone Post Office\".","cboCostEstimates.1.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59412","request.format":"json","latestAction_actionDate":"2023-07-25","summaries.count":2,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hr/1098/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1098/summaries?format=json","cboCostEstimates.0.title":"H.R. 1098, a bill to designate the facility of the United States Postal Service located at 50 East Derry Road in East Derry, New Hampshire, as the “Chief Edward B. Garone Post Office”","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"NH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/111?format=json","laws_0_number":"118-9","cboCostEstimates.1.title":"H.R. 1098, an act to designate the facility of the United States Postal Service located at 50 East Derry Road in East Derry, New Hampshire, as the “Chief Edward B. Garone Post Office”","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 1098\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution states that ``Congress shall have the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and an other\nPowers vested by the Constitution in the Government of the\nUnited States or in any Department of Office thereof.''\nThe single subject of this legislation is:\nTo designate the East Derry Post Office as the Chief Edward\nB. Garone Post Office.\n[Page H856]\n","sponsors.0.district":1,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-02-04T17:04:03Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2048","labels":["Law"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-8.","policyArea.name":"Government Operations and Politics","type":"HJRES","latestAction.text":"Became Public Law No: 118-30.","sponsors.0.party":"R","number":"64","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/64/cosponsors?format=json","sponsors.0.bioguideId":"S001172","laws.0.number":"118-30","actions.url":"https://api.congress.gov/v3/bill/118/hjres/64/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2023-12-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/64/relatedbills?format=json","sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","titles.count":2,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/64/text?format=json","updateDate":"2025-01-14T17:21:40Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":22,"sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/64/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/64/committees?format=json","title":"Providing for the reappointment of Roger W. Ferguson as a citizen regent of the Board of Regents of the Smithsonian Institution.","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":4,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hjres/64/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/64/summaries?format=json","introducedDate":"2023-05-11","subjects.count":4,"sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/30?format=json","laws_0_number":"118-8","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\n[Pages H2313-H2314]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.J. Res. 64.\n[[Page H2314]]\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 17 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nReappoints Roger W. Ferguson as a citizen regent of the\nBoard of Regents of the Smithsonian Institution.\n","sponsors.0.district":3,"sponsors.0.firstName":"Adrian","updateDateIncludingText":"2025-01-14T17:24:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2049","labels":["Law"],"properties":{"updateDate":"2025-01-03","originChamber":"House","congress":117,"latestAction_text":"Became Private Law No: 117-3.","type":"HR","title":"For the relief of Arpita Kurdekar, Girish Kurdekar, and Vandana Kurdekar.","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/680?format=json","laws_0_number":"117-3","number":"680","latestAction_actionDate":"2023-01-05","updateDateIncludingText":"2025-01-03","laws_0_type":"Private Law"}} +{"type":"node","id":"2050","labels":["Law"],"properties":{"updateDate":"2025-01-03","originChamber":"House","congress":117,"latestAction_text":"Became Private Law No: 117-1.","type":"HR","title":"For the relief of Rebecca Trimble.","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/681?format=json","laws_0_number":"117-1","number":"681","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2025-01-03","laws_0_type":"Private Law"}} +{"type":"node","id":"2051","labels":["Law"],"properties":{"updateDate":"2024-04-17","originChamber":"House","congress":117,"latestAction_text":"Became Private Law No: 117-2.","type":"HR","title":"For the relief of Maria Isabel Bueso Barrera, Alberto Bueso Mendoza, and Karla Maria Barrera De Bueso.","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/785?format=json","laws_0_number":"117-2","number":"785","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2024-04-17","laws_0_type":"Private Law"}} +{"type":"node","id":"2052","labels":["Law"],"properties":{"updateDate":"2025-02-20","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-269.","type":"HR","title":"To designate the facility of the United States Postal Service located at 82422 Cadiz Jewett Road in Cadiz, Ohio, as the \"John Armor Bingham Post Office\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2472?format=json","laws_0_number":"117-269","number":"2472","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2025-02-20","laws_0_type":"Public Law"}} +{"type":"node","id":"2053","labels":["Law"],"properties":{"updateDate":"2025-01-28","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-358.","type":"S","title":"Don Young Recognition Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5066?format=json","laws_0_number":"117-358","number":"5066","latestAction_actionDate":"2023-01-05","updateDateIncludingText":"2025-01-28","laws_0_type":"Public Law"}} +{"type":"node","id":"2054","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-349.","type":"S","title":"Hualapai Tribe Water Rights Settlement Act of 2022","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4104?format=json","laws_0_number":"117-349","number":"4104","latestAction_actionDate":"2023-01-05","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2055","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-324.","type":"S","title":"Preventing Organizational Conflicts of Interest in Federal Acquisition Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3905?format=json","laws_0_number":"117-324","number":"3905","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2056","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-118.","type":"S","title":"Ukraine Democracy Defense Lend-Lease Act of 2022","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3522?format=json","laws_0_number":"117-118","number":"3522","latestAction_actionDate":"2022-05-09","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2057","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-319.","type":"S","title":"Small Business Cyber Training Act of 2022","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1687?format=json","laws_0_number":"117-319","number":"1687","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2058","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-219.","type":"S","title":"MAPS Act of 2021","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1941?format=json","laws_0_number":"117-219","number":"1941","latestAction_actionDate":"2022-12-05","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2059","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-316.","type":"S","title":"FLOODS Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/558?format=json","laws_0_number":"117-316","number":"558","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2060","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-84.","type":"S","title":"Willie O'Ree Congressional Gold Medal Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/452?format=json","laws_0_number":"117-84","number":"452","latestAction_actionDate":"2022-01-31","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2061","labels":["Law"],"properties":{"updateDate":"2025-01-24","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-114.","type":"HR","title":"Modernizing Access to Our Public Land Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3113?format=json","laws_0_number":"117-114","number":"3113","latestAction_actionDate":"2022-04-29","updateDateIncludingText":"2025-01-24","laws_0_type":"Public Law"}} +{"type":"node","id":"2062","labels":["Law"],"properties":{"updateDate":"2025-03-11","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-27.","type":"HR","title":"VOCA Fix to Sustain the Crime Victims Fund Act of 2021","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1652?format=json","laws_0_number":"117-27","number":"1652","latestAction_actionDate":"2021-07-22","updateDateIncludingText":"2025-03-11","laws_0_type":"Public Law"}} +{"type":"node","id":"2063","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-295.","type":"HR","title":"To designate the facility of the United States Postal Service located at 450 West Schaumburg Road in Schaumburg, Illinois, as the \"Veterans of Iraq and Afghanistan Memorial Post Office Building\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6386?format=json","laws_0_number":"117-295","number":"6386","latestAction_actionDate":"2022-12-27","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2064","labels":["Law"],"properties":{"updateDate":"2024-04-24","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-39.","type":"HR","title":"Emergency Repatriation Assistance for Returning Americans Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5085?format=json","laws_0_number":"117-39","number":"5085","latestAction_actionDate":"2021-08-31","updateDateIncludingText":"2024-04-24","laws_0_type":"Public Law"}} +{"type":"node","id":"2065","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-69.","type":"S","title":"Protecting Moms Who Served Act of 2021","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/796?format=json","laws_0_number":"117-69","number":"796","latestAction_actionDate":"2021-11-30","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2066","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-165.","type":"HR","title":"COVID-19 EIDL Fraud Statute of Limitations Act of 2022","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7334?format=json","laws_0_number":"117-165","number":"7334","latestAction_actionDate":"2022-08-05","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2067","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-166.","type":"HR","title":"PPP and Bank Fraud Enforcement Harmonization Act of 2022","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7352?format=json","laws_0_number":"117-166","number":"7352","latestAction_actionDate":"2022-08-05","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2068","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-146.","type":"S","title":"Ocean Shipping Reform Act of 2022","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3580?format=json","laws_0_number":"117-146","number":"3580","latestAction_actionDate":"2022-06-16","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2069","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-238.","type":"HR","title":"To designate the Department of Veterans Affairs community-based outpatient clinic located in Palm Desert, California, as the \r\n\"Sy Kaplan VA Clinic\".","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7925?format=json","laws_0_number":"117-238","number":"7925","latestAction_actionDate":"2022-12-20","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2070","labels":["Law"],"properties":{"congress":118,"sponsors.0.lastName":"Curtis","cboCostEstimates.0.pubDate":"2024-07-22T15:58:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-115.","policyArea.name":"Public Lands and Natural Resources","type":"HR","latestAction.text":"Became Public Law No: 118-233.","sponsors.0.party":"R","number":"6395","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6395/cosponsors?format=json","sponsors.0.bioguideId":"C001114","laws.0.number":"118-233","actions.url":"https://api.congress.gov/v3/bill/118/hr/6395/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":7,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-710","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6395/text?format=json","updateDate":"2025-01-17T03:11:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6395/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6395/committees?format=json","title":"Recognizing the Importance of Critical Minerals in Healthcare Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on June 12, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60564","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-05-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/710?format=json","summaries.count":2,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hr/6395/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6395/summaries?format=json","cboCostEstimates.0.title":"H.R. 6395, Recognizing the Importance of Critical Minerals in Healthcare Act of 2023","introducedDate":"2023-11-14","subjects.count":5,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/233?format=json","laws_0_number":"117-115","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 188 (Tuesday, November 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 6395.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nthe designation of critical minerals relevent to the United\nStates.\n[Page H5855]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-17T03:11:13Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2071","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-336.","type":"S","title":"Protecting American Intellectual Property Act of 2022","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1294?format=json","laws_0_number":"117-336","number":"1294","latestAction_actionDate":"2023-01-05","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2072","labels":["Law"],"properties":{"updateDate":"2025-01-03","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-13.","type":"S","title":"COVID-19 Hate Crimes Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/937?format=json","laws_0_number":"117-13","number":"937","latestAction_actionDate":"2021-05-20","updateDateIncludingText":"2025-01-03","laws_0_type":"Public Law"}} +{"type":"node","id":"2073","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-71.","type":"S","title":"Protecting Medicare and American Farmers from Sequester Cuts Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/610?format=json","laws_0_number":"117-71","number":"610","latestAction_actionDate":"2021-12-10","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2074","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-50.","type":"S","title":"Promoting Physical Activity for Americans Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1301?format=json","laws_0_number":"117-50","number":"1301","latestAction_actionDate":"2021-10-14","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2075","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-81.","type":"S","title":"National Defense Authorization Act for Fiscal Year 2022","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1605?format=json","laws_0_number":"117-81","number":"1605","latestAction_actionDate":"2021-12-27","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2076","labels":["Law"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3249/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Became Public Law No: 117-95.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3249/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3249/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"A bill to designate the outpatient clinic of the Department of Veterans Affairs in Wyandotte County, Kansas City, Kansas, as the \"Captain Elwin Shopteese VA Clinic\".","latestAction.text":"Became Public Law No: 118-75.","sponsors.0.party":"R","number":"3249","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-03-11","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3249/cosponsors?format=json","laws_0_type":"Public Law","sponsors.0.bioguideId":"M000934","titles.url":"https://api.congress.gov/v3/bill/118/s/3249/titles?format=json","laws.0.number":"118-75","summaries.url":"https://api.congress.gov/v3/bill/118/s/3249/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3249/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3249/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/75?format=json","laws_0_number":"117-95","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:05:19Z","laws.0.type":"Public Law"}} +{"type":"node","id":"2077","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-70.","type":"HR","title":"Further Extending Government Funding \r\nAct","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6119?format=json","laws_0_number":"117-70","number":"6119","latestAction_actionDate":"2021-12-03","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2078","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-86.","type":"HR","title":"Further Additional Extending Government Funding Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6617?format=json","laws_0_number":"117-86","number":"6617","latestAction_actionDate":"2022-02-18","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2079","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-103.","type":"HR","title":"Consolidated Appropriations Act, 2022","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2471?format=json","laws_0_number":"117-103","number":"2471","latestAction_actionDate":"2022-03-15","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2080","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-43.","type":"HR","title":"Extending Government Funding and Delivering Emergency Assistance Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5305?format=json","laws_0_number":"117-43","number":"5305","latestAction_actionDate":"2021-09-30","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2081","labels":["Law"],"properties":{"updateDate":"2025-01-03","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-6.","type":"HR","title":"PPP Extension Act of 2021","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1799?format=json","laws_0_number":"117-6","number":"1799","latestAction_actionDate":"2021-03-30","updateDateIncludingText":"2025-01-03","laws_0_type":"Public Law"}} +{"type":"node","id":"2082","labels":["Law"],"properties":{"updateDate":"2025-01-03","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-2.","type":"HR","title":"American Rescue Plan Act of 2021","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1319?format=json","laws_0_number":"117-2","number":"1319","latestAction_actionDate":"2021-03-11","updateDateIncludingText":"2025-01-03","laws_0_type":"Public Law"}} +{"type":"node","id":"2083","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-31.","type":"HR","title":"Emergency Security Supplemental Appropriations Act, 2021","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3237?format=json","laws_0_number":"117-31","number":"3237","latestAction_actionDate":"2021-07-30","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2084","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-46.","type":"S","title":"HAVANA Act of 2021","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1828?format=json","laws_0_number":"117-46","number":"1828","latestAction_actionDate":"2021-10-08","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2085","labels":["Law"],"properties":{"updateDate":"2025-02-14","originChamber":"House","congress":117,"latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"HR","title":"Infrastructure Investment and Jobs Act","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3684?format=json","laws_0_number":"117-58","number":"3684","latestAction_actionDate":"2022-08-04","updateDateIncludingText":"2025-02-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2086","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-54.","type":"S","title":"RENACER Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1064?format=json","laws_0_number":"117-54","number":"1064","latestAction_actionDate":"2021-11-10","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2087","labels":["Law"],"properties":{"updateDate":"2024-10-01","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-78.","type":"HR","title":"To ensure that goods made with forced labor in the Xinjiang Uyghur Autonomous Region of the People's Republic of China do not enter the United States market, and for other purposes.","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6256?format=json","laws_0_number":"117-78","number":"6256","latestAction_actionDate":"2021-12-23","updateDateIncludingText":"2024-10-01","laws_0_type":"Public Law"}} +{"type":"node","id":"2088","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-108.","type":"HR","title":"Postal Service Reform Act of 2022","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3076?format=json","laws_0_number":"117-108","number":"3076","latestAction_actionDate":"2022-04-06","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2089","labels":["Law"],"properties":{"updateDate":"2025-01-16","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-126.","type":"HR","title":"Safe Sleep for Babies Act of 2021","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3182?format=json","laws_0_number":"117-126","number":"3182","latestAction_actionDate":"2022-05-16","updateDateIncludingText":"2025-01-16","laws_0_type":"Public Law"}} +{"type":"node","id":"2090","labels":["Law"],"properties":{"updateDate":"2025-02-04","originChamber":"House","congress":117,"latestAction_text":"Became Public Law No: 117-127.","type":"HR","title":"Multinational Species Conservation Funds Semipostal Stamp Reauthorization Act of 2021","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6023?format=json","laws_0_number":"117-127","number":"6023","latestAction_actionDate":"2022-05-16","updateDateIncludingText":"2025-02-04","laws_0_type":"Public Law"}} +{"type":"node","id":"2091","labels":["Law"],"properties":{"updateDate":"2025-01-14","originChamber":"Senate","congress":117,"latestAction_text":"Became Public Law No: 117-125.","type":"S","title":"Courthouse Ethics and Transparency Act","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3059?format=json","laws_0_number":"117-125","number":"3059","latestAction_actionDate":"2022-05-13","updateDateIncludingText":"2025-01-14","laws_0_type":"Public Law"}} +{"type":"node","id":"2092","labels":["Law"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"McHenry","cboCostEstimates.0.pubDate":"2023-05-30T23:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 119-1.","policyArea.name":"Economics and Public Finance","type":"HR","latestAction.text":"Became Public Law No: 118-5.","sponsors.0.party":"R","number":"3746","amendments.count":45,"sponsors.0.bioguideId":"M001156","laws.0.number":"118-5","actions.url":"https://api.congress.gov/v3/bill/118/hr/3746/actions?format=json","latestAction.actionDate":"2023-06-03","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3746/relatedbills?format=json","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/3746/amendments?format=json","titles.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3746/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":14,"request.congress":"118","actions.count":44,"sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3746/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3746/subjects?format=json","title":"Fiscal Responsibility Act of 2023","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59225","request.format":"json","latestAction_actionDate":"2025-01-29","summaries.count":4,"laws_0_type":"Public Law","titles.url":"https://api.congress.gov/v3/bill/118/hr/3746/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3746/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Budgetary Effects of H.R. 3746, the Fiscal Responsibility Act of 2023","introducedDate":"2023-05-29","subjects.count":161,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/5?format=json","laws_0_number":"119-1","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 91 (Monday, May 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McHENRY:\nH.R. 3746.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAddressing America's debt\n[Page H2649]\n","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2025-02-04T16:28:27Z","laws.0.type":"Public Law"}} +{"type":"node","id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}} +{"type":"node","id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}} +{"type":"node","id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}} +{"type":"node","id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}} +{"type":"node","id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}} +{"type":"node","id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}} +{"type":"node","id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}} +{"type":"node","id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}} +{"type":"node","id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}} +{"type":"node","id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}} +{"type":"node","id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}} +{"type":"node","id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}} +{"type":"node","id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}} +{"type":"node","id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}} +{"type":"node","id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}} +{"type":"node","id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}} +{"type":"node","id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}} +{"type":"node","id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}} +{"type":"node","id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}} +{"type":"node","id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}} +{"type":"node","id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}} +{"type":"node","id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}} +{"type":"node","id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}} +{"type":"node","id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}} +{"type":"node","id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}} +{"type":"node","id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}} +{"type":"node","id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}} +{"type":"node","id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}} +{"type":"node","id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}} +{"type":"node","id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}} +{"type":"node","id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}} +{"type":"node","id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}} +{"type":"node","id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}} +{"type":"node","id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}} +{"type":"node","id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}} +{"type":"node","id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"
Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}} +{"type":"node","id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}} +{"type":"node","id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}} +{"type":"node","id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}} +{"type":"node","id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}} +{"type":"node","id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}} +{"type":"node","id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}} +{"type":"node","id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}} +{"type":"node","id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}} +{"type":"node","id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}} +{"type":"node","id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}} +{"type":"node","id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}} +{"type":"node","id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}} +{"type":"node","id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}} +{"type":"node","id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}} +{"type":"node","id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}} +{"type":"node","id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}} +{"type":"node","id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}} +{"type":"node","id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}} +{"type":"node","id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}} +{"type":"node","id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}} +{"type":"node","id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}} +{"type":"node","id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}} +{"type":"node","id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}} +{"type":"node","id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}} +{"type":"node","id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}} +{"type":"node","id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}} +{"type":"node","id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}} +{"type":"node","id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}} +{"type":"node","id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}} +{"type":"node","id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}} +{"type":"node","id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}} +{"type":"node","id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}} +{"type":"node","id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}} +{"type":"node","id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}} +{"type":"node","id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}} +{"type":"node","id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}} +{"type":"node","id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}} +{"type":"node","id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}} +{"type":"node","id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}} +{"type":"node","id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}} +{"type":"node","id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}} +{"type":"node","id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}} +{"type":"node","id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}} +{"type":"node","id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}} +{"type":"node","id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}} +{"type":"node","id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}} +{"type":"node","id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}} +{"type":"node","id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}} +{"type":"node","id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}} +{"type":"node","id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}} +{"type":"node","id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}} +{"type":"node","id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}} +{"type":"node","id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}} +{"type":"node","id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}} +{"type":"node","id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}} +{"type":"node","id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}} +{"type":"node","id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}} +{"type":"node","id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}} +{"type":"node","id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}} +{"type":"node","id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}} +{"type":"node","id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}} +{"type":"node","id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}} +{"type":"node","id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}} +{"type":"node","id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}} +{"type":"node","id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}} +{"type":"node","id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}} +{"type":"node","id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}} +{"type":"node","id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}} +{"type":"node","id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}} +{"type":"node","id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}} +{"type":"node","id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}} +{"type":"node","id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}} +{"type":"node","id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}} +{"type":"node","id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}} +{"type":"node","id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}} +{"type":"node","id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}} +{"type":"node","id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}} +{"type":"node","id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}} +{"type":"node","id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}} +{"type":"node","id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}} +{"type":"node","id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}} +{"type":"node","id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}} +{"type":"node","id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}} +{"type":"node","id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}} +{"type":"node","id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}} +{"type":"node","id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}} +{"type":"node","id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}} +{"type":"node","id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}} +{"type":"node","id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}} +{"type":"node","id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}} +{"type":"node","id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}} +{"type":"node","id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}} +{"type":"node","id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}} +{"type":"node","id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}} +{"type":"node","id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}} +{"type":"node","id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}} +{"type":"node","id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}} +{"type":"node","id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}} +{"type":"node","id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}} +{"type":"node","id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}} +{"type":"node","id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}} +{"type":"node","id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}} +{"type":"node","id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}} +{"type":"node","id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}} +{"type":"node","id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}} +{"type":"node","id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}} +{"type":"node","id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}} +{"type":"node","id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}} +{"type":"node","id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}} +{"type":"node","id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}} +{"type":"node","id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}} +{"type":"node","id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}} +{"type":"node","id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}} +{"type":"node","id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}} +{"type":"node","id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}} +{"type":"node","id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}} +{"type":"node","id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}} +{"type":"node","id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}} +{"type":"node","id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}} +{"type":"node","id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}} +{"type":"node","id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}} +{"type":"node","id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}} +{"type":"node","id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}} +{"type":"node","id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}} +{"type":"node","id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}} +{"type":"node","id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}} +{"type":"node","id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}} +{"type":"node","id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}} +{"type":"node","id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}} +{"type":"node","id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}} +{"type":"node","id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}} +{"type":"node","id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}} +{"type":"node","id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}} +{"type":"node","id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}} +{"type":"node","id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}} +{"type":"node","id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}} +{"type":"node","id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}} +{"type":"node","id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}} +{"type":"node","id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}} +{"type":"node","id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}} +{"type":"node","id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}} +{"type":"node","id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}} +{"type":"node","id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}} +{"type":"node","id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}} +{"type":"node","id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}} +{"type":"node","id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}} +{"type":"node","id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}} +{"type":"node","id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}} +{"type":"node","id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}} +{"type":"node","id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}} +{"type":"node","id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}} +{"type":"node","id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}} +{"type":"node","id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}} +{"type":"node","id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}} +{"type":"node","id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}} +{"type":"node","id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}} +{"type":"node","id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}} +{"type":"node","id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}} +{"type":"node","id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}} +{"type":"node","id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}} +{"type":"node","id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}} +{"type":"node","id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}} +{"type":"node","id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}} +{"type":"node","id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}} +{"type":"node","id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}} +{"type":"node","id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}} +{"type":"node","id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}} +{"type":"node","id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}} +{"type":"node","id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}} +{"type":"node","id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}} +{"type":"node","id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}} +{"type":"node","id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}} +{"type":"node","id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}} +{"type":"node","id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}} +{"type":"node","id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}} +{"type":"node","id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}} +{"type":"node","id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}} +{"type":"node","id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}} +{"type":"node","id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}} +{"type":"node","id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}} +{"type":"node","id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}} +{"type":"node","id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}} +{"type":"node","id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}} +{"type":"node","id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}} +{"type":"node","id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}} +{"type":"node","id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}} +{"type":"node","id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}} +{"type":"node","id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}} +{"type":"node","id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}} +{"type":"node","id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}} +{"type":"node","id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}} +{"type":"node","id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}} +{"type":"node","id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}} +{"type":"node","id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}} +{"type":"node","id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}} +{"type":"node","id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}} +{"type":"node","id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}} +{"type":"node","id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}} +{"type":"node","id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}} +{"type":"node","id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}} +{"type":"node","id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}} +{"type":"node","id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}} +{"type":"node","id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}} +{"type":"node","id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}} +{"type":"node","id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}} +{"type":"node","id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}} +{"type":"node","id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}} +{"type":"node","id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}} +{"type":"node","id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}} +{"type":"node","id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}} +{"type":"node","id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}} +{"type":"node","id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}} +{"type":"node","id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}} +{"type":"node","id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4170","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"STRATEGIC Minerals Act","url":"https://api.congress.gov/v3/bill/119/s/429?format=json","number":"429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4173","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Technological Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/305?format=json","number":"305","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4174","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Heartland Visa Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5644?format=json","number":"5644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"4175","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-18","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"FINISH Act","url":"https://api.congress.gov/v3/bill/118/s/5594?format=json","number":"5594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"4176","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Technological Advancement Act","url":"https://api.congress.gov/v3/bill/118/s/2330?format=json","number":"2330","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-18","latestAction_actionTime":""}} +{"type":"node","id":"4177","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"VETS Safe Travel Act","url":"https://api.congress.gov/v3/bill/118/s/5487?format=json","number":"5487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"4178","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Social Determinants Accelerator Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5474?format=json","number":"5474","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"4179","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-09","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 119 North Anderson Street in Elwood, Indiana, as the \"Officer Noah Jacob Shahnavaz Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/s/5452?format=json","number":"5452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}} +{"type":"node","id":"4180","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"STRATEGIC Minerals Act","url":"https://api.congress.gov/v3/bill/118/s/5451?format=json","number":"5451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"4181","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6855; text: 11/21/2024 CR S6728)","type":"SRES","title":"A resolution expressing support for the goals of Stomach Cancer Awareness Month.","url":"https://api.congress.gov/v3/bill/118/sres/908?format=json","number":"908","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"4182","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Ensuring Patient Access to Critical Breakthrough Products Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5349?format=json","number":"5349","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4184","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3264?format=json","number":"","amendmentNumber":"3264","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4185","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3240?format=json","number":"","amendmentNumber":"3240","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4186","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-02-02","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Early Educators Apprenticeship Act","url":"https://api.congress.gov/v3/bill/118/s/236?format=json","number":"236","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}} +{"type":"node","id":"4187","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3170?format=json","number":"","amendmentNumber":"3170","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4188","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate certain land administered by the Bureau of Land Management and the Forest Service in the State of Oregon as wilderness and national recreation areas, to withdraw certain land located in Curry County and Josephine County, Oregon, from all forms of entry, appropriation, or disposal under the public land laws, location, entry, and patent under the mining laws, and operation under the mineral leasing and geothermal leasing laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4189","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend expiring health provisions and improve health care delivery.","url":"https://api.congress.gov/v3/bill/119/s/891?format=json","number":"891","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4191","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 1156 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1156?format=json","number":"","amendmentNumber":"1156","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4192","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/974?format=json","number":"","amendmentNumber":"974","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4193","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/976?format=json","number":"","amendmentNumber":"976","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4194","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/975?format=json","number":"","amendmentNumber":"975","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4195","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/308?format=json","number":"","amendmentNumber":"308","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4196","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/310?format=json","number":"","amendmentNumber":"310","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4197","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/306?format=json","number":"","amendmentNumber":"306","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4198","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/305?format=json","number":"","amendmentNumber":"305","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4199","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/307?format=json","number":"","amendmentNumber":"307","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4200","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/304?format=json","number":"","amendmentNumber":"304","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4201","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/309?format=json","number":"","amendmentNumber":"309","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4202","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/303?format=json","number":"","amendmentNumber":"303","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4203","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for examination and disclosure with respect to Presidential income tax returns, to amend the chapter 131 of title 5, United States Code, to require the disclosure of certain tax returns by Presidents and certain candidates for the office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/588?format=json","number":"588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4204","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act relating to grants for beach monitoring, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/508?format=json","number":"508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4205","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Build Housing with Care Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/310?format=json","number":"310","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4206","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"108","introducedDate":"2003-06-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to provide for a public response to the public health crisis of pain, and for other purposes","url":"https://api.congress.gov/v3/bill/108/s/1278?format=json","number":"1278","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2003-06-18","latestAction_actionTime":""}} +{"type":"node","id":"4207","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"United States-Cuba Trade Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4208","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1157?format=json","number":"","amendmentNumber":"1157","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4209","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1011?format=json","number":"","amendmentNumber":"1011","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4210","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1012?format=json","number":"","amendmentNumber":"1012","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4211","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/762?format=json","number":"","amendmentNumber":"762","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4212","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/566?format=json","number":"","amendmentNumber":"566","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4213","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/512?format=json","number":"","amendmentNumber":"512","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4214","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/513?format=json","number":"","amendmentNumber":"513","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4215","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/297?format=json","number":"","amendmentNumber":"297","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4216","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/298?format=json","number":"","amendmentNumber":"298","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4217","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/230?format=json","number":"","amendmentNumber":"230","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4218","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/229?format=json","number":"","amendmentNumber":"229","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4219","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/227?format=json","number":"","amendmentNumber":"227","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4220","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/228?format=json","number":"","amendmentNumber":"228","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4221","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to limit cost-sharing for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/529?format=json","number":"529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4222","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S76; text: CR S81)","type":"SRES","title":"A resolution honoring the life and legacy of President Jimmy Carter and commending President Jimmy Carter for his life-long career of public service, humanitarian leadership, diplomacy, and courageous advocacy.","url":"https://api.congress.gov/v3/bill/119/sres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"4223","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6729)","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/911?format=json","number":"911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4224","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689)","type":"SRES","title":"A resolution expressing support for the designation of November 8, 2024, as \"National First-Generation College Celebration Day\".","url":"https://api.congress.gov/v3/bill/118/sres/903?format=json","number":"903","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4226","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-14","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Secretary of Commerce to submit to Congress a report containing an assessment of the value, cost, and feasibility of a trans-Atlantic submarine fiber optic cable connecting the contiguous United States, the United States Virgin Islands, Ghana, and Nigeria.","url":"https://api.congress.gov/v3/bill/118/s/5328?format=json","number":"5328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"4227","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-09-12","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3266?format=json","number":"","amendmentNumber":"3266","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4228","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1610)","type":"SRES","title":"A resolution memorializing those lost to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/119/sres/119?format=json","number":"119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4229","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1211?format=json","number":"","amendmentNumber":"1211","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4230","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1080?format=json","number":"","amendmentNumber":"1080","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4231","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1076?format=json","number":"","amendmentNumber":"1076","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4232","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1078?format=json","number":"","amendmentNumber":"1078","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4233","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1081?format=json","number":"","amendmentNumber":"1081","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4234","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1075?format=json","number":"","amendmentNumber":"1075","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4235","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1071?format=json","number":"","amendmentNumber":"1071","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4236","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1074?format=json","number":"","amendmentNumber":"1074","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4237","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1073?format=json","number":"","amendmentNumber":"1073","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4238","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1077?format=json","number":"","amendmentNumber":"1077","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4239","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1072?format=json","number":"","amendmentNumber":"1072","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4240","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1079?format=json","number":"","amendmentNumber":"1079","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4241","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1069?format=json","number":"","amendmentNumber":"1069","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4242","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1065?format=json","number":"","amendmentNumber":"1065","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4243","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1066?format=json","number":"","amendmentNumber":"1066","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4244","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1070?format=json","number":"","amendmentNumber":"1070","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4245","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1068?format=json","number":"","amendmentNumber":"1068","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4246","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1064?format=json","number":"","amendmentNumber":"1064","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4247","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1067?format=json","number":"","amendmentNumber":"1067","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4248","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1129?format=json","number":"","amendmentNumber":"1129","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4249","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/980?format=json","number":"","amendmentNumber":"980","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4250","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/979?format=json","number":"","amendmentNumber":"979","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4251","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/266?format=json","number":"","amendmentNumber":"266","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4252","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/265?format=json","number":"","amendmentNumber":"265","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4253","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/267?format=json","number":"","amendmentNumber":"267","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4254","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/98?format=json","number":"","amendmentNumber":"98","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4256","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Tax Breaks for Outsourcing Act","url":"https://api.congress.gov/v3/bill/119/s/409?format=json","number":"409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4257","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S599-600; text: CR S598-599)","type":"SRES","title":"A resolution recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/sres/55?format=json","number":"55","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4258","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Prior Authorization Relief Act","url":"https://api.congress.gov/v3/bill/118/s/5612?format=json","number":"5612","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"4259","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"COLLABORATE Act","url":"https://api.congress.gov/v3/bill/118/s/5441?format=json","number":"5441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"4260","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Medical Bankruptcy Fairness Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5399?format=json","number":"5399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4261","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Supreme Court Review Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5220?format=json","number":"5220","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4262","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Juvenile Justice and Delinquency Prevention Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5250?format=json","number":"5250","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4263","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6455)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Youth Justice Action Month\".","url":"https://api.congress.gov/v3/bill/118/sres/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4264","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Affordable Housing Construction Act","url":"https://api.congress.gov/v3/bill/118/s/5156?format=json","number":"5156","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"4265","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-16","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6068; text: CR S6055-6056)","type":"SRES","title":"A resolution expressing support for the designation of the week of September 21 through September 28, 2024, as \"National Estuaries Week\".","url":"https://api.congress.gov/v3/bill/118/sres/820?format=json","number":"820","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}} +{"type":"node","id":"4266","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-09-12","latestAction_text":"Read twice and referred to the Committee on the Budget.","type":"S","title":"Carbon Scoring Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5047?format=json","number":"5047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"4267","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3261?format=json","number":"","amendmentNumber":"3261","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4268","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the \"Rick Boucher Amphitheater\".","url":"https://api.congress.gov/v3/bill/119/s/815?format=json","number":"815","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"4269","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make the exclusion for certain employer payments of student loans under educational assistance programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/772?format=json","number":"772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4270","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend the Commander John Scott Hannon Veterans Mental Health Care Improvement Act of 2019 to modify and reauthorize the Staff Sergeant Parker Gordon Fox Suicide Prevention Grant Program of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/793?format=json","number":"793","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4271","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/906?format=json","number":"","amendmentNumber":"906","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4272","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/129?format=json","number":"","amendmentNumber":"129","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4273","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/128?format=json","number":"","amendmentNumber":"128","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4274","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"Amendment SA 130 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/130?format=json","number":"","amendmentNumber":"130","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4275","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/125?format=json","number":"","amendmentNumber":"125","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4276","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/131?format=json","number":"","amendmentNumber":"131","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4277","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/126?format=json","number":"","amendmentNumber":"126","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4278","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/127?format=json","number":"","amendmentNumber":"127","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4279","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/123?format=json","number":"","amendmentNumber":"123","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4280","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/119?format=json","number":"","amendmentNumber":"119","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4281","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/124?format=json","number":"","amendmentNumber":"124","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4282","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/120?format=json","number":"","amendmentNumber":"120","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4283","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/122?format=json","number":"","amendmentNumber":"122","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4284","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/121?format=json","number":"","amendmentNumber":"121","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4285","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/111?format=json","number":"","amendmentNumber":"111","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4286","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/113?format=json","number":"","amendmentNumber":"113","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4287","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/114?format=json","number":"","amendmentNumber":"114","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4288","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1231?format=json","number":"","amendmentNumber":"1231","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4290","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution reaffirming the fundamental principle prohibiting any state from forcibly acquiring the territory of another state.","url":"https://api.congress.gov/v3/bill/119/sres/113?format=json","number":"113","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4291","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to hold accountable operators of social media platforms that intentionally or knowingly host false election administration information.","url":"https://api.congress.gov/v3/bill/119/s/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4292","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1030?format=json","number":"","amendmentNumber":"1030","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4293","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1002?format=json","number":"","amendmentNumber":"1002","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4294","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/854?format=json","number":"","amendmentNumber":"854","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4295","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/823?format=json","number":"","amendmentNumber":"823","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4296","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/824?format=json","number":"","amendmentNumber":"824","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4297","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/822?format=json","number":"","amendmentNumber":"822","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4298","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/656?format=json","number":"","amendmentNumber":"656","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4299","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/657?format=json","number":"","amendmentNumber":"657","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4300","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/658?format=json","number":"","amendmentNumber":"658","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4301","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/654?format=json","number":"","amendmentNumber":"654","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4302","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/655?format=json","number":"","amendmentNumber":"655","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4303","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/651?format=json","number":"","amendmentNumber":"651","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4304","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/649?format=json","number":"","amendmentNumber":"649","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4305","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/650?format=json","number":"","amendmentNumber":"650","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4306","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/652?format=json","number":"","amendmentNumber":"652","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4307","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/646?format=json","number":"","amendmentNumber":"646","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4308","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to facilitate the development of treatments for cancers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/755?format=json","number":"755","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4309","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038 ; text: CR S1043)","type":"SRES","title":"A resolution congratulating the Jackson State University Tigers for winning the 2024 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/119/sres/85?format=json","number":"85","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4312","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to prohibit the application of certain private land use restrictions to amateur station antennas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/459?format=json","number":"459","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4313","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"PLAN for Broadband Act","url":"https://api.congress.gov/v3/bill/119/s/323?format=json","number":"323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4314","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-27","policyArea_name":"NONE","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported with an amendment favorably.","type":"S","title":"TORNADO Act","url":"https://api.congress.gov/v3/bill/119/s/258?format=json","number":"258","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4316","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"FoRGED Act","url":"https://api.congress.gov/v3/bill/118/s/5618?format=json","number":"5618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"4317","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6457)","type":"SRES","title":"A resolution honoring the life, legacy, and contributions of James Earl Jones.","url":"https://api.congress.gov/v3/bill/118/sres/878?format=json","number":"878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4318","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-09","latestAction_text":"Held at the desk.","type":"S","title":"Vicksburg National Military Park Boundary Modification Act","url":"https://api.congress.gov/v3/bill/118/s/4994?format=json","number":"4994","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:06:17"}} +{"type":"node","id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"4320","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-11","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 719.","type":"S","title":"PLAN for Broadband Act","url":"https://api.congress.gov/v3/bill/118/s/2238?format=json","number":"2238","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"4321","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-31","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5677; text: CR S5689-5690)","type":"SRES","title":"A resolution designating August 1, 2024, as \"Gold Star Children's Day\".","url":"https://api.congress.gov/v3/bill/118/sres/791?format=json","number":"791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}} +{"type":"node","id":"4322","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2023-05-04","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"LOCAL Infrastructure Act","url":"https://api.congress.gov/v3/bill/118/s/1453?format=json","number":"1453","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-04","latestAction_actionTime":""}} +{"type":"node","id":"4323","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3000?format=json","number":"","amendmentNumber":"3000","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4324","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2980?format=json","number":"","amendmentNumber":"2980","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4325","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2979?format=json","number":"","amendmentNumber":"2979","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4326","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2023-12-12","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Energizing American Shipbuilding Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3467?format=json","number":"3467","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}} +{"type":"node","id":"4327","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-01-26","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution honoring the lives of 2 fallen Mississippi police officers, Sergeant Steven Robin and Officer Branden Estorffe, and expressing condolences to their families.","url":"https://api.congress.gov/v3/bill/118/sres/15?format=json","number":"15","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-01-26","latestAction_actionTime":""}} +{"type":"node","id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4329","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution condemning the Armed Forces of the Russian Federation and officials of the Government of the Russian Federation for committing crimes against humanity and war crimes in Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/111?format=json","number":"111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4330","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Justice Thurgood Marshall National Historic Site in the State of Maryland as an affiliated area of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/791?format=json","number":"791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4331","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1108?format=json","number":"","amendmentNumber":"1108","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4332","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1109?format=json","number":"","amendmentNumber":"1109","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4333","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1107?format=json","number":"","amendmentNumber":"1107","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4334","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/981?format=json","number":"","amendmentNumber":"981","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4335","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/490?format=json","number":"","amendmentNumber":"490","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4336","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/247?format=json","number":"","amendmentNumber":"247","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4337","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/249?format=json","number":"","amendmentNumber":"249","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4338","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/248?format=json","number":"","amendmentNumber":"248","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4339","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/235?format=json","number":"","amendmentNumber":"235","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4340","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/240?format=json","number":"","amendmentNumber":"240","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4341","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/236?format=json","number":"","amendmentNumber":"236","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4342","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/237?format=json","number":"","amendmentNumber":"237","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4343","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/243?format=json","number":"","amendmentNumber":"243","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4344","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/244?format=json","number":"","amendmentNumber":"244","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4345","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/238?format=json","number":"","amendmentNumber":"238","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4346","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/246?format=json","number":"","amendmentNumber":"246","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4347","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/241?format=json","number":"","amendmentNumber":"241","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4348","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to furnish hyperbaric oxygen therapy to certain veterans with traumatic brain injury or post-traumatic stress disorder.","url":"https://api.congress.gov/v3/bill/119/s/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4349","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to recognize nurse registries for purposes of the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/635?format=json","number":"635","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4350","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to prohibit the purchase or lease of agricultural land in the United States by persons associated with certain foreign governments, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/618?format=json","number":"618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"4351","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the consideration of continuity of health care in determining best medical interest under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/540?format=json","number":"540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4352","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to modify eligibility requirements for amateur sports governing organizations.","url":"https://api.congress.gov/v3/bill/119/s/405?format=json","number":"405","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4353","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the inclusion in gross income of Social Security benefits.","url":"https://api.congress.gov/v3/bill/119/s/458?format=json","number":"458","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4354","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Graduate Opportunity and Affordable Loans Act","url":"https://api.congress.gov/v3/bill/119/s/308?format=json","number":"308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4355","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"FARM Act","url":"https://api.congress.gov/v3/bill/119/s/179?format=json","number":"179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"4357","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/6?format=json","number":"","amendmentNumber":"6","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"4360","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-25","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Alabama Underwater Forest National Marine Sanctuary and Protection Act","url":"https://api.congress.gov/v3/bill/118/s/4816?format=json","number":"4816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"4361","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-18","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"CHIPS Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/4568?format=json","number":"4568","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}} +{"type":"node","id":"4362","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Workforce DATA Act","url":"https://api.congress.gov/v3/bill/118/s/4506?format=json","number":"4506","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"4363","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-09","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/118/s/4297?format=json","number":"4297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-09","latestAction_actionTime":""}} +{"type":"node","id":"4364","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-01","latestAction_text":"Referred to the Committee on Veterans' Affairs. (text: CR S3138-3139)","type":"SRES","title":"A resolution expressing support for the designation of May as \"Fallen Heroes Memorial Month\".","url":"https://api.congress.gov/v3/bill/118/sres/667?format=json","number":"667","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}} +{"type":"node","id":"4365","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1719?format=json","number":"","amendmentNumber":"1719","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4366","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"VA Abortion Transparency Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4128?format=json","number":"4128","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}} +{"type":"node","id":"4367","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","introducedDate":"2024-03-22","policyArea_name":"","latestAction_text":"Amendment SA 1781 proposed by Senator Tuberville. (consideration: CR S2580-2581) To prohibit funding for entities that permit certain students to participate in girls' or women's athletics.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1781?format=json","number":"","amendmentNumber":"1781","latestAction":"","latestAction_actionDate":"2024-03-23","latestAction_actionTime":""}} +{"type":"node","id":"4368","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/317?format=json","number":"","amendmentNumber":"317","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4369","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/318?format=json","number":"","amendmentNumber":"318","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4370","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish limitations on advanced payments for bus rolling stock, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/660?format=json","number":"660","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4371","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Act of June 22, 1948.","url":"https://api.congress.gov/v3/bill/119/s/638?format=json","number":"638","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4372","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to accept the request to revoke the charter of incorporation of the Lower Sioux Indian Community in the State of Minnesota at the request of that Community, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/621?format=json","number":"621","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4373","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Leech Lake Reservation Restoration Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/622?format=json","number":"622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4374","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to expand employees eligible for leave and employers subject to leave requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/408?format=json","number":"408","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4375","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Investments in Rural Transit Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5626?format=json","number":"5626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"4376","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-19","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Childcare Supply Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5621?format=json","number":"5621","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"4377","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Held at the desk.","type":"S","title":"A bill to amend the Act of June 22, 1948.","url":"https://api.congress.gov/v3/bill/118/s/5595?format=json","number":"5595","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:06:33"}} +{"type":"node","id":"4378","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-12-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Mapping Housing Discrimination Act","url":"https://api.congress.gov/v3/bill/118/s/5534?format=json","number":"5534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"4379","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-09","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Rural Residency Planning and Development Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5456?format=json","number":"5456","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}} +{"type":"node","id":"4380","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-05","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6489-6850)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Co-Op Month\" and commending the cooperative business model and the member-owners, businesses, employees, farmers, ranchers, and practitioners who use the cooperative business model to positively impact the economy and society.","url":"https://api.congress.gov/v3/bill/118/sres/922?format=json","number":"922","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"4381","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Katherine’s Lung Cancer Early Detection and Survival Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5367?format=json","number":"5367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4382","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6729-6730)","type":"SRES","title":"A resolution designating November 2024 as \"National Lung Cancer Awareness Month\" and expressing support for early detection and treatment of lung cancer.","url":"https://api.congress.gov/v3/bill/118/sres/912?format=json","number":"912","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4383","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Employee and Retiree Access to Justice Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5169?format=json","number":"5169","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4384","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"No Shame at School Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5200?format=json","number":"5200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4385","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6456-6457)","type":"SRES","title":"A resolution designating October 2024 as \"National Principals Month\".","url":"https://api.congress.gov/v3/bill/118/sres/876?format=json","number":"876","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4386","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution supporting afterschool programs and Lights On Afterschool, a national celebration of afterschool programs held on October 24, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/880?format=json","number":"880","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4387","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Homes Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5078?format=json","number":"5078","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"4388","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Small Business Act and the Small Business Investment Act of 1958 to increase the maximum loan amount for certain loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/901?format=json","number":"901","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4389","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Camp Lejeune Justice Act of 2022 to make technical corrections.","url":"https://api.congress.gov/v3/bill/119/s/907?format=json","number":"907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4390","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XI of the Social Security Act to equalize the negotiation period between small-molecule and biologic candidates under the Drug Price Negotiation Program.","url":"https://api.congress.gov/v3/bill/119/s/832?format=json","number":"832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4391","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide a phase-in for plasma-derived products under the manufacturer discount program.","url":"https://api.congress.gov/v3/bill/119/s/694?format=json","number":"694","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4392","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S931)","type":"SRES","title":"A resolution expressing the sense of the Senate that member countries of NATO must commit at least 2 percent of their national gross domestic product to national defense spending to hold leadership or benefit at the expense of those countries who meet their obligations.","url":"https://api.congress.gov/v3/bill/119/sres/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4393","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/s/475?format=json","number":"475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4394","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Disaster Mitigation and Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/336?format=json","number":"336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"4395","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Victims of Sanctuary Cities Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/185?format=json","number":"185","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4399","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Biodiesel Tax Credit Extension Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5582?format=json","number":"5582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"4400","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to rescind funds for green energy loans.","url":"https://api.congress.gov/v3/bill/118/s/5383?format=json","number":"5383","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4401","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-11-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill making supplemental appropriations for small business disaster relief for the fiscal year ending September 30, 2025.","url":"https://api.congress.gov/v3/bill/118/s/5341?format=json","number":"5341","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-18","latestAction_actionTime":""}} +{"type":"node","id":"4402","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"RELIEF Act","url":"https://api.congress.gov/v3/bill/118/s/5332?format=json","number":"5332","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"4403","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-02-16","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/521?format=json","number":"521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-16","latestAction_actionTime":""}} +{"type":"node","id":"4404","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Ensuring Justice for Camp Lejeune Victims Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5257?format=json","number":"5257","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4405","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"SHIELD Act","url":"https://api.congress.gov/v3/bill/118/s/5166?format=json","number":"5166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4406","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-09-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"VETS Opportunity Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5138?format=json","number":"5138","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"4407","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-06-22","latestAction_text":"Held at the desk.","type":"S","title":"TRACE Act","url":"https://api.congress.gov/v3/bill/118/s/2120?format=json","number":"2120","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":"16:03:02"}} +{"type":"node","id":"4408","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill making continuing appropriations for military pay in the event of a Government shutdown.","url":"https://api.congress.gov/v3/bill/119/s/876?format=json","number":"876","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4409","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the Secretary of Veterans Affairs to improve telephone communication by the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/831?format=json","number":"831","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4410","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to extend the Alaska Native Vietnam era Veterans Land Allotment Program.","url":"https://api.congress.gov/v3/bill/119/s/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4411","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to combat illegal, unreported, and unregulated fishing at its sources globally.","url":"https://api.congress.gov/v3/bill/119/s/688?format=json","number":"688","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4412","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1316; text: CR S1316)","type":"SRES","title":"A resolution designating February 16, 2025, as \"National Elizabeth Peratrovich Day\".","url":"https://api.congress.gov/v3/bill/119/sres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4413","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1221?format=json","number":"","amendmentNumber":"1221","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4414","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 1029 agreed to in Senate by Yea-Nay Vote. 51 - 49. Record Vote Number: 70.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1029?format=json","number":"","amendmentNumber":"1029","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4415","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide for the application of a cost-of-living adjustment to the non-labor related portion for hospital outpatient department services furnished in Alaska and Hawaii.","url":"https://api.congress.gov/v3/bill/119/s/551?format=json","number":"551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4416","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide for the treatment of critical access hospital services furnished by a critical access hospital located in a noncontiguous State.","url":"https://api.congress.gov/v3/bill/119/s/552?format=json","number":"552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4417","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to establish a floor on payments to sole community hospitals located in Alaska and Hawaii under the hospital outpatient prospective payment system.","url":"https://api.congress.gov/v3/bill/119/s/553?format=json","number":"553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4420","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit United States cooperation with the International Criminal Court, the use of the Economic Support Fund to support the Palestinian Authority, and any Federal funding for the ICC.","url":"https://api.congress.gov/v3/bill/119/s/493?format=json","number":"493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"4421","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ADS for Mental Health Services Act","url":"https://api.congress.gov/v3/bill/119/s/414?format=json","number":"414","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4422","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"INFORM Act","url":"https://api.congress.gov/v3/bill/119/s/417?format=json","number":"417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4423","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to protect regular order for budgeting for the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/423?format=json","number":"423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4424","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to modify the organization and authorities of the Assistant Secretaries of Defense with duties relating to industrial base policy and homeland defense.","url":"https://api.congress.gov/v3/bill/119/s/436?format=json","number":"436","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4425","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to improve the missile defense capabilities of the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/435?format=json","number":"435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4426","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Archie Cavanaugh Migratory Bird Treaty Amendment Act","url":"https://api.congress.gov/v3/bill/119/s/255?format=json","number":"255","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"4427","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ARTIST Act","url":"https://api.congress.gov/v3/bill/119/s/254?format=json","number":"254","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"4428","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1607-1609)","type":"S","title":"A bill to improve disaster assistance programs of the Department of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/904?format=json","number":"904","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4429","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1581)","type":"S","title":"A bill to require executive agencies to take steps to better meet the statutory deadline for processing communications use applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/866?format=json","number":"866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4430","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Trust Land Homeownership Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/723?format=json","number":"723","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4432","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S861-862)","type":"S","title":"A bill to enhance the participation of precision agriculture in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/507?format=json","number":"507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4433","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S668)","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 to establish country of origin labeling requirements for beef, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/421?format=json","number":"421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4434","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S794)","type":"S","title":"A bill to amend the Healthy Forests Restoration Act of 2003 to require the Secretary of Agriculture to expedite hazardous fuel or insect and disease risk reduction projects on certain National Forest System land, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/449?format=json","number":"449","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"4436","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S136; text: CR S140-141)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/26?format=json","number":"26","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"4438","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution informing the House of Representatives that a quorum of the Senate is assembled.","url":"https://api.congress.gov/v3/bill/119/sres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}} +{"type":"node","id":"4439","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution to elect Charles E. Grassley, a Senator from the State of Iowa, to be President pro tempore of the Senate of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4440","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution notifying the House of Representatives of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}} +{"type":"node","id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4442","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SCONRES","title":"A concurrent resolution extending the life of the Joint Congressional Committee on Inaugural Ceremonies.","url":"https://api.congress.gov/v3/bill/119/sconres/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:21:55"}} +{"type":"node","id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4445","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7-8; text: CR S8)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/9?format=json","number":"9","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4446","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SCONRES","title":"A concurrent resolution to provide for the counting on January 6, 2025, of the electoral votes for President and Vice President of the United States.","url":"https://api.congress.gov/v3/bill/119/sconres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:23:19"}} +{"type":"node","id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4448","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture and the Secretary of the Interior to establish a standard for the response time to wildfire incidents, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4450","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture and the Secretary of the Interior to develop a plan to reorganize Federal wildland fire response, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/441?format=json","number":"441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4451","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Homeowner Energy Freedom Act","url":"https://api.congress.gov/v3/bill/119/s/333?format=json","number":"333","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"4452","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"No Tax Dollars for Terrorists Act","url":"https://api.congress.gov/v3/bill/119/s/226?format=json","number":"226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4453","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/160?format=json","number":"160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4454","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"VA Home Loan Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/138?format=json","number":"138","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4456","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title VI of the Civil Rights Act of 1964 to prohibit discrimination under any program or activity receiving Federal financial assistance on the ground of religion, to amend the Higher Education Act of 1965 to provide for rigorous enforcement of prohibitions against discrimination by institutions of higher education on the basis of antisemitism, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/826?format=json","number":"826","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4457","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to call for the immediate extradition or return to the United States of convicted felon Joanne Chesimard, William \"Guillermo\" Morales, and all other fugitives who are receiving safe haven in Cuba to escape prosecution or confinement for criminal offenses committed in the United States.","url":"https://api.congress.gov/v3/bill/119/s/834?format=json","number":"834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"4459","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies to repeal ten existing regulations before issuing a new regulation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/712?format=json","number":"712","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4461","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1358)","type":"SRES","title":"A resolution expressing support for the designation of February 23, 2025, to March 1, 2025, as \"National Fentanyl Awareness Week\" and raising awareness of the negative impacts of fentanyl in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4462","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to combat the fentanyl crisis.","url":"https://api.congress.gov/v3/bill/119/s/690?format=json","number":"690","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4463","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Miccosukee Reserved Area Amendments Act","url":"https://api.congress.gov/v3/bill/119/s/673?format=json","number":"673","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4464","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish the CCP Initiative program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/672?format=json","number":"672","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4465","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to require States to verify certain eligibility criteria for individuals enrolled for medical assistance quarterly, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/678?format=json","number":"678","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4466","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to improve the communications between social media platforms and law enforcement agencies, to establish the Federal Trade Commission Platform Safety Advisory Committee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/626?format=json","number":"626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4467","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to permit the Attorney General to award grants for accurate data on opioid-related overdoses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/617?format=json","number":"617","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"4468","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to reform the Federal hiring process, to restore merit to Government service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4469","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-13","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981)","type":"SRES","title":"A resolution honoring the memories of the victims of the senseless attack at Marjory Stoneman Douglas High School on February 14, 2018.","url":"https://api.congress.gov/v3/bill/119/sres/79?format=json","number":"79","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4470","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Policy Reauthorization Act of 1998 to require a Caribbean border counternarcotics strategy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/548?format=json","number":"548","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4471","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S797-798)","type":"SRES","title":"An original resolution authorizing expenditures by the Special Committee on Aging.","url":"https://api.congress.gov/v3/bill/119/sres/62?format=json","number":"62","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4472","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the Secretary of Homeland Security from procuring certain foreign-made batteries, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/450?format=json","number":"450","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4473","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to prohibit Big Cypress National Preserve from being designated as wilderness or as a component of the National Wilderness Preservation System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/446?format=json","number":"446","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4474","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to include screening for loneliness and coordination of supportive services and health care to address the negative health effects of loneliness, to require a report on loneliness, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/473?format=json","number":"473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4475","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1181?format=json","number":"","amendmentNumber":"1181","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4476","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/670?format=json","number":"","amendmentNumber":"670","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4477","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/669?format=json","number":"","amendmentNumber":"669","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4478","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 664 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 78.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/664?format=json","number":"","amendmentNumber":"664","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4479","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/667?format=json","number":"","amendmentNumber":"667","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4480","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/665?format=json","number":"","amendmentNumber":"665","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4481","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/668?format=json","number":"","amendmentNumber":"668","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4482","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/666?format=json","number":"","amendmentNumber":"666","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4483","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Digital Citizenship and Media Literacy Act","url":"https://api.congress.gov/v3/bill/118/hr/9584?format=json","number":"9584","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"4484","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"VOICE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9583?format=json","number":"9583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"4485","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-03","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Protecting Military Bases from Connected Vehicles of Concern Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9454?format=json","number":"9454","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"4486","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"American Made Pharmaceuticals Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9321?format=json","number":"9321","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"4487","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of the Army to provide a briefing to Congress on the future role and structure of Multi-Domain Task Forces, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9292?format=json","number":"9292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4488","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Under Secretary of Defense for Intelligence and Security to provide to the congressional defense committees a briefing on challenges relating to information operations, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9293?format=json","number":"9293","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4489","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Chief Information Officer of the Department of Defense to provide a briefing to Congress on security options for the Joint Warfighter Cloud Capability program, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9295?format=json","number":"9295","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4490","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Prioritizing PFAS-Free Cleaning Products Act","url":"https://api.congress.gov/v3/bill/118/hr/9288?format=json","number":"9288","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4491","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to carry out a pilot program under which the Secretary shall use classified commercial shared spaces and professionalize industrial security protections for shared sensitive compartmented information facility and subject matter experts.","url":"https://api.congress.gov/v3/bill/118/hr/9287?format=json","number":"9287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4492","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of the Army to provide a briefing to Congress on the efforts of the Army to field passive multi-static radar detection technology for mobile counter-UAS systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9291?format=json","number":"9291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4493","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Next Generation Civilian Leaders Program Act","url":"https://api.congress.gov/v3/bill/118/hr/9296?format=json","number":"9296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4494","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Accelerating DoD PFAS Cleanups Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9286?format=json","number":"9286","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"4495","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish a permanent rural housing preservation and revitalization program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/885?format=json","number":"885","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4496","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1581-1583)","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","url":"https://api.congress.gov/v3/bill/119/sres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4497","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to support democracy and the rule of law in Georgia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/868?format=json","number":"868","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4498","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Consolidated Farm and Rural Development Act to provide additional assistance to rural water, wastewater, and waste disposal systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/783?format=json","number":"783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4499","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1401-1402)","type":"SRES","title":"A resolution dissenting from the United States delegation's February 24, 2025, vote at the United Nations General Assembly.","url":"https://api.congress.gov/v3/bill/119/sres/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4501","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1026?format=json","number":"","amendmentNumber":"1026","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4502","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/989?format=json","number":"","amendmentNumber":"989","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4503","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/973?format=json","number":"","amendmentNumber":"973","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4504","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/965?format=json","number":"","amendmentNumber":"965","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4505","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/963?format=json","number":"","amendmentNumber":"963","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4506","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/964?format=json","number":"","amendmentNumber":"964","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4507","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/924?format=json","number":"","amendmentNumber":"924","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4508","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/447?format=json","number":"","amendmentNumber":"447","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4509","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/444?format=json","number":"","amendmentNumber":"444","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4510","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/445?format=json","number":"","amendmentNumber":"445","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4511","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/446?format=json","number":"","amendmentNumber":"446","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4512","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/440?format=json","number":"","amendmentNumber":"440","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4513","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/441?format=json","number":"","amendmentNumber":"441","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4514","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/442?format=json","number":"","amendmentNumber":"442","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4515","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Individuals with Disabilities Education Act to require notification with respect to individualized education program teams, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/745?format=json","number":"745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4516","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1130?format=json","number":"","amendmentNumber":"1130","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4517","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1131?format=json","number":"","amendmentNumber":"1131","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4519","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to establish a national plan to coordinate research on epilepsy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/494?format=json","number":"494","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"4520","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Dismantle DEI Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/382?format=json","number":"382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4521","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S487-488; text: CR S486-487)","type":"SRES","title":"A resolution supporting the contributions of Catholic schools in the United States and celebrating the 51st annual National Catholic Schools Week.","url":"https://api.congress.gov/v3/bill/119/sres/45?format=json","number":"45","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4522","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported with an amendment favorably.","type":"S","title":"TICKET Act","url":"https://api.congress.gov/v3/bill/119/s/281?format=json","number":"281","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4523","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize the Stop, Observe, Ask, and Respond to Health and Wellness Training Program.","url":"https://api.congress.gov/v3/bill/119/s/208?format=json","number":"208","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4524","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-23","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S329; text: CR S341)","type":"SRES","title":"A resolution congratulating the Washington University in St. Louis Bears women's soccer team for winning the 2024 NCAA Division III Women's Soccer Championship.","url":"https://api.congress.gov/v3/bill/119/sres/34?format=json","number":"34","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4526","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Energy for America’s Economic Future Act","url":"https://api.congress.gov/v3/bill/119/s/168?format=json","number":"168","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4527","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/81?format=json","number":"","amendmentNumber":"81","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4529","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/77?format=json","number":"","amendmentNumber":"77","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4530","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/75?format=json","number":"","amendmentNumber":"75","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4531","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/76?format=json","number":"","amendmentNumber":"76","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"4533","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"COLLUDE Act","url":"https://api.congress.gov/v3/bill/119/s/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"4534","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Censorship Accountability Act","url":"https://api.congress.gov/v3/bill/119/s/67?format=json","number":"67","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"4535","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 to require the Committee on Foreign Investment in the United States to review and prohibit certain transactions relating to agriculture.","url":"https://api.congress.gov/v3/bill/119/s/903?format=json","number":"903","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4536","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to require the Secretary of Agriculture, in consultation with the United States Trade Representative, to develop and finalize a vaccination strategy for poultry.","url":"https://api.congress.gov/v3/bill/119/s/908?format=json","number":"908","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4539","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require the United States Postal Service to apply certain requirements when closing a processing, shipping, delivery, or other facility supporting a post office.","url":"https://api.congress.gov/v3/bill/119/s/661?format=json","number":"661","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4541","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to require the Federal financial institutions regulatory agencies to take risk profiles and business models of institutions into account when taking regulatory actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/427?format=json","number":"427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4542","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend section 1030 of title 18, United States Code, to include conspiracy in the offenses and penalties relating to computer fraud.","url":"https://api.congress.gov/v3/bill/119/s/431?format=json","number":"431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4543","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend the Homeland Security Act of 2002 to provide for education and training programs and resources of the Cybersecurity and Infrastructure Security Agency of the Department of Homeland Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/438?format=json","number":"438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4544","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to require certain forest supervisors of units of the National Forest System to submit to the Chief of the Forest Service a harvesting improvement report, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/480?format=json","number":"480","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4545","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Marcella LeBeau Recognition Act","url":"https://api.congress.gov/v3/bill/119/s/287?format=json","number":"287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4547","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-10-17","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Artificial Intelligence Advancement Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3050?format=json","number":"3050","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-17","latestAction_actionTime":""}} +{"type":"node","id":"4548","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend the Robert T. Stafford Disaster Relief and Emergency Assistance Act to adjust the definition of \"small impoverished community\".","url":"https://api.congress.gov/v3/bill/118/s/5489?format=json","number":"5489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"4549","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Fence Line Fairness Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5496?format=json","number":"5496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"4550","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Modernizing Law Enforcement Notification Act","url":"https://api.congress.gov/v3/bill/118/s/5450?format=json","number":"5450","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"4551","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-07-19","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Food and Agriculture Industry Cybersecurity Support Act","url":"https://api.congress.gov/v3/bill/118/s/2393?format=json","number":"2393","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}} +{"type":"node","id":"4552","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Returning Education to Our States Act","url":"https://api.congress.gov/v3/bill/118/s/5384?format=json","number":"5384","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"4553","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-01-31","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"S","title":"PASS Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/168?format=json","number":"168","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-28","latestAction_actionTime":""}} +{"type":"node","id":"4554","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"MedShield Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5222?format=json","number":"5222","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4555","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to establish a competitive grant program to support the conservation and recovery of native plant, fungi, and animal species in the State of Hawaii, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4556","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/713?format=json","number":"","amendmentNumber":"713","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4557","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/714?format=json","number":"","amendmentNumber":"714","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4558","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/715?format=json","number":"","amendmentNumber":"715","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4559","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/645?format=json","number":"","amendmentNumber":"645","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4560","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/644?format=json","number":"","amendmentNumber":"644","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4561","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/643?format=json","number":"","amendmentNumber":"643","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4562","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/642?format=json","number":"","amendmentNumber":"642","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4563","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/641?format=json","number":"","amendmentNumber":"641","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4564","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/640?format=json","number":"","amendmentNumber":"640","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4565","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/471?format=json","number":"","amendmentNumber":"471","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4566","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/472?format=json","number":"","amendmentNumber":"472","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4567","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/474?format=json","number":"","amendmentNumber":"474","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4568","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/470?format=json","number":"","amendmentNumber":"470","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4569","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1042)","type":"SRES","title":"A resolution designating February 2025 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/119/sres/83?format=json","number":"83","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4570","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Improving Flood and Agricultural Forecasts Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/613?format=json","number":"613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"4571","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to amend the Native American Tourism and Improving Visitor Experience Act to authorize grants to Indian tribes, tribal organizations, and Native Hawaiian organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/612?format=json","number":"612","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4572","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require the Under Secretary of Commerce for Oceans and Atmosphere to maintain the National Mesonet Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/590?format=json","number":"590","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4573","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-28","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Kids Off Social Media Act","url":"https://api.congress.gov/v3/bill/119/s/278?format=json","number":"278","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4574","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S373)","type":"SRES","title":"A resolution expressing the sense of the Senate that the people of the United States should have continuous access to timely, up-to-date, and accurate health information.","url":"https://api.congress.gov/v3/bill/119/sres/37?format=json","number":"37","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"4575","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Natural Gas Act to allow the Federal Energy Regulatory Commission to approve or deny applications for the siting, construction, expansion, or operation of facilities to export or import natural gas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/883?format=json","number":"883","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4577","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/s/735?format=json","number":"735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4579","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to suspend the entry of covered aliens in response to the fentanyl public health crisis.","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","number":"628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4582","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to modify the deadline for filing beneficial ownership information reports for reporting companies formed or registered before January 1, 2024.","url":"https://api.congress.gov/v3/bill/119/s/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4583","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Banking, Housing, and Urban Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/58?format=json","number":"58","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4584","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to reprogram all remaining unobligated funds from the IRS enforcement account.","url":"https://api.congress.gov/v3/bill/119/s/481?format=json","number":"481","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4585","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to expand opportunity through greater choice in education, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/487?format=json","number":"487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4586","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"STOP MADNESS Act","url":"https://api.congress.gov/v3/bill/119/s/363?format=json","number":"363","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"4587","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 23.","type":"S","title":"SBA Disaster Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/371?format=json","number":"371","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4588","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S486)","type":"SRES","title":"A resolution designating the week of January 26 through February 1, 2025, as \"National School Choice Week\".","url":"https://api.congress.gov/v3/bill/119/sres/44?format=json","number":"44","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4589","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-28","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/95?format=json","number":"","amendmentNumber":"95","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4590","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Families’ Rights and Responsibilities Act","url":"https://api.congress.gov/v3/bill/119/s/204?format=json","number":"204","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4591","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"SBA Disaster Transparency Act","url":"https://api.congress.gov/v3/bill/118/s/5357?format=json","number":"5357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"4592","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Blocking Bad Batteries Act","url":"https://api.congress.gov/v3/bill/118/s/5190?format=json","number":"5190","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4593","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6638-6639; text: 9/25/2024 CR S6450-6451)","type":"SRES","title":"A resolution expressing support for the designation of September 2024 as \"Sickle Cell Disease Awareness Month\" in order to educate communities across the United States about sickle cell disease and the need for research, early detection methods, effective treatments, and preventative care programs with respect to complications from sickle cell disease and conditions related to sickle cell disease.","url":"https://api.congress.gov/v3/bill/118/sres/861?format=json","number":"861","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"4594","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-23","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Empowering Main Street in America Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5139?format=json","number":"5139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"4595","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1605-1606)","type":"S","title":"A bill to require the Secretary of the Treasury to mint commemorative coins in recognition of the life and legacy of Roberto Clemente.","url":"https://api.congress.gov/v3/bill/119/s/877?format=json","number":"877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4596","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1166?format=json","number":"","amendmentNumber":"1166","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4597","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1167?format=json","number":"","amendmentNumber":"1167","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4598","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1168?format=json","number":"","amendmentNumber":"1168","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4599","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1169?format=json","number":"","amendmentNumber":"1169","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4600","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1170?format=json","number":"","amendmentNumber":"1170","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4601","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1043?format=json","number":"","amendmentNumber":"1043","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4602","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1042?format=json","number":"","amendmentNumber":"1042","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4603","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1040?format=json","number":"","amendmentNumber":"1040","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4604","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1039?format=json","number":"","amendmentNumber":"1039","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4605","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1041?format=json","number":"","amendmentNumber":"1041","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4606","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/777?format=json","number":"","amendmentNumber":"777","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4607","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 776 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/776?format=json","number":"","amendmentNumber":"776","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4608","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 454 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/454?format=json","number":"","amendmentNumber":"454","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4609","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S796-797)","type":"S","title":"A bill to provide that unauthorized access to the central payment systems of the Bureau of the Fiscal Service is unlawful.","url":"https://api.congress.gov/v3/bill/119/s/490?format=json","number":"490","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4610","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S43)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/17?format=json","number":"17","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4612","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Gary B. Myrick, of Virginia, as Secretary for the Minority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/15?format=json","number":"15","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"4613","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"118","introducedDate":"2024-12-20","policyArea_name":"","latestAction_text":"SA 3358 fell when SA SA 3357 withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3358?format=json","number":"","amendmentNumber":"3358","latestAction":"","latestAction_actionDate":"2024-12-21","latestAction_actionTime":""}} +{"type":"node","id":"4614","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"118","introducedDate":"2024-12-20","policyArea_name":"","latestAction_text":"SA 3356 fell when SA SA 3355 withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3356?format=json","number":"","amendmentNumber":"3356","latestAction":"","latestAction_actionDate":"2024-12-21","latestAction_actionTime":""}} +{"type":"node","id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4616","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1583)","type":"SRES","title":"A resolution expressing the sense of the Senate that Russian President Vladimir Putin should immediately withdraw Russian forces from Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/109?format=json","number":"109","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4618","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4619","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/26?format=json","number":"26","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4620","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4621","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1035?format=json","number":"","amendmentNumber":"1035","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4622","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/903?format=json","number":"","amendmentNumber":"903","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4623","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/478?format=json","number":"","amendmentNumber":"478","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4626","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4628","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"10 Percent Credit Card Interest Rate Cap Act","url":"https://api.congress.gov/v3/bill/119/s/381?format=json","number":"381","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4629","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/63?format=json","number":"","amendmentNumber":"63","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4630","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","introducedDate":"2024-12-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3334?format=json","number":"","amendmentNumber":"3334","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4631","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","introducedDate":"2024-12-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3333?format=json","number":"","amendmentNumber":"3333","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4632","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","introducedDate":"2024-12-10","policyArea_name":"","latestAction_text":"Amendment SA 3314 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3314?format=json","number":"","amendmentNumber":"3314","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"4633","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/118/sjres/112?format=json","number":"112","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4634","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-25","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 18 - 79. Record Vote Number: 292. (consideration: CR S6653-6665)","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/118/sjres/111?format=json","number":"111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"4635","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1089?format=json","number":"","amendmentNumber":"1089","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4636","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1034?format=json","number":"","amendmentNumber":"1034","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4637","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/948?format=json","number":"","amendmentNumber":"948","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4638","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/946?format=json","number":"","amendmentNumber":"946","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4639","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/947?format=json","number":"","amendmentNumber":"947","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4640","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/313?format=json","number":"","amendmentNumber":"313","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4641","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/315?format=json","number":"","amendmentNumber":"315","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4642","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/314?format=json","number":"","amendmentNumber":"314","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4643","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 316 not agreed to in Senate by Yea-Nay Vote. 48 - 52. Record Vote Number: 69.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/316?format=json","number":"","amendmentNumber":"316","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4644","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/312?format=json","number":"","amendmentNumber":"312","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4645","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-03-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Judicial Integrity Act","url":"https://api.congress.gov/v3/bill/118/hr/7676?format=json","number":"7676","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-13","latestAction_actionTime":""}} +{"type":"node","id":"4646","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Investigative Integrity Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9884?format=json","number":"9884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}} +{"type":"node","id":"4647","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CARE Act","url":"https://api.congress.gov/v3/bill/118/hr/9706?format=json","number":"9706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"4648","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Transnational Repression Reporting Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9707?format=json","number":"9707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"4649","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Artsakh Revenue Recovery Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9666?format=json","number":"9666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"4650","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-17","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"AI Ads Act","url":"https://api.congress.gov/v3/bill/118/hr/9639?format=json","number":"9639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"4651","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-08-06","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SCOPE Act","url":"https://api.congress.gov/v3/bill/118/hr/9319?format=json","number":"9319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}} +{"type":"node","id":"4652","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"MAIL Act","url":"https://api.congress.gov/v3/bill/118/hr/9229?format=json","number":"9229","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"4653","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Judicial FOIA Expansion Act","url":"https://api.congress.gov/v3/bill/118/hr/9108?format=json","number":"9108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"4654","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-10","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"ATF DATA Act","url":"https://api.congress.gov/v3/bill/118/hr/8990?format=json","number":"8990","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"4655","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/s/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4657","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to include information on improper payments under Federal programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/747?format=json","number":"747","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4658","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1359; text: CR S1358-1359)","type":"SRES","title":"A resolution honoring the life of Nebraska community leader Howard L. Hawks.","url":"https://api.congress.gov/v3/bill/119/sres/97?format=json","number":"97","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4660","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Dignity for Aborted Children Act","url":"https://api.congress.gov/v3/bill/119/s/242?format=json","number":"242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"4661","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-12-17","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7068-7069; text: S7107)","type":"SRES","title":"A resolution honoring the life of Nebraska community leader John Edmund Gottschalk.","url":"https://api.congress.gov/v3/bill/118/sres/928?format=json","number":"928","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"4662","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Capital Gains Allowance for American Adversaries Act","url":"https://api.congress.gov/v3/bill/118/s/5233?format=json","number":"5233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4663","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Protecting Endowments from Our Adversaries Act","url":"https://api.congress.gov/v3/bill/118/s/5234?format=json","number":"5234","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4664","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"No China in Index Funds Act","url":"https://api.congress.gov/v3/bill/118/s/5237?format=json","number":"5237","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4665","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"PRC Military and Human Rights Capital Markets Sanctions Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5244?format=json","number":"5244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4666","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Securing American Agriculture Act","url":"https://api.congress.gov/v3/bill/118/s/5277?format=json","number":"5277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"4668","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3178?format=json","number":"","amendmentNumber":"3178","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4669","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2957?format=json","number":"","amendmentNumber":"2957","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4670","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2956?format=json","number":"","amendmentNumber":"2956","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4671","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2825?format=json","number":"","amendmentNumber":"2825","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4672","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2826?format=json","number":"","amendmentNumber":"2826","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4673","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2823?format=json","number":"","amendmentNumber":"2823","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4674","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2822?format=json","number":"","amendmentNumber":"2822","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4675","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/778?format=json","number":"778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4676","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4677","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1216?format=json","number":"","amendmentNumber":"1216","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4678","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1217?format=json","number":"","amendmentNumber":"1217","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4679","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1031?format=json","number":"","amendmentNumber":"1031","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4680","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1032?format=json","number":"","amendmentNumber":"1032","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4681","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1033?format=json","number":"","amendmentNumber":"1033","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4682","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/865?format=json","number":"","amendmentNumber":"865","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4683","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/863?format=json","number":"","amendmentNumber":"863","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4684","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/869?format=json","number":"","amendmentNumber":"869","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4685","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/867?format=json","number":"","amendmentNumber":"867","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4686","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/868?format=json","number":"","amendmentNumber":"868","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4687","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/864?format=json","number":"","amendmentNumber":"864","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4688","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/866?format=json","number":"","amendmentNumber":"866","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4689","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/870?format=json","number":"","amendmentNumber":"870","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4690","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/861?format=json","number":"","amendmentNumber":"861","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4691","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/862?format=json","number":"","amendmentNumber":"862","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4692","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/860?format=json","number":"","amendmentNumber":"860","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4693","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/857?format=json","number":"","amendmentNumber":"857","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4694","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/856?format=json","number":"","amendmentNumber":"856","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4695","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Assistance Simplification Act","url":"https://api.congress.gov/v3/bill/119/s/861?format=json","number":"861","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4696","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Lobbying Disclosure Improvement Act","url":"https://api.congress.gov/v3/bill/119/s/865?format=json","number":"865","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4697","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Expanding Whistleblower Protections for Contractors Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/874?format=json","number":"874","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4698","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to create intergovernmental coordination between State, local, Tribal, and territorial jurisdictions, and the Federal Government to combat United States reliance on the People's Republic of China and other covered countries for critical minerals and rare earth metals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/823?format=json","number":"823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"4699","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"U.S. Customs and Border Protection Officer Retirement Technical Corrections Act","url":"https://api.congress.gov/v3/bill/119/s/727?format=json","number":"727","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4700","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to expand eligibility for incentives under the Medicare health professional shortage area bonus program to practitioners furnishing mental health and substance use disorder services.","url":"https://api.congress.gov/v3/bill/119/s/683?format=json","number":"683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4701","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve the effectiveness of body armor issued to female agents and officers of the Department of Homeland Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/693?format=json","number":"693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4702","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1186?format=json","number":"","amendmentNumber":"1186","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4703","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1184?format=json","number":"","amendmentNumber":"1184","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4704","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1185?format=json","number":"","amendmentNumber":"1185","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4705","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1183?format=json","number":"","amendmentNumber":"1183","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4706","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1182?format=json","number":"","amendmentNumber":"1182","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4707","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1009?format=json","number":"","amendmentNumber":"1009","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4708","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1010?format=json","number":"","amendmentNumber":"1010","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4709","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1003?format=json","number":"","amendmentNumber":"1003","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4710","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1004?format=json","number":"","amendmentNumber":"1004","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4711","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1008?format=json","number":"","amendmentNumber":"1008","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4712","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1005?format=json","number":"","amendmentNumber":"1005","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4713","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1007?format=json","number":"","amendmentNumber":"1007","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4714","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1006?format=json","number":"","amendmentNumber":"1006","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4717","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to modify the information about countries exporting methamphetamine that is included in the annual International Narcotics Control Strategy Report, to require a report to Congress on the seizure and production of certain illicit drugs, to impose sanctions with respect to the production and trafficking into the United States, of synthetic opioids, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/860?format=json","number":"860","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4719","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1400-1401)","type":"SRES","title":"A resolution condemning Beijing's destruction of Hong Kong's democracy and rule of law.","url":"https://api.congress.gov/v3/bill/119/sres/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4721","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S1314)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Foreign Relations.","url":"https://api.congress.gov/v3/bill/119/sres/90?format=json","number":"90","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4723","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill to amend the Small Business Act to require that plain writing statements regarding the solicitation of subcontractors be included in certain subcontracting plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4724","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to exempt certain 16- and 17-year-old individuals employed in logging operations from child labor laws.","url":"https://api.congress.gov/v3/bill/119/s/509?format=json","number":"509","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4725","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"American Values Act","url":"https://api.congress.gov/v3/bill/119/s/334?format=json","number":"334","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"4726","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Freedom from Government Surveys Act","url":"https://api.congress.gov/v3/bill/119/s/265?format=json","number":"265","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"4727","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"PEACE Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/227?format=json","number":"227","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4729","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Northwest Energy Security Act","url":"https://api.congress.gov/v3/bill/119/s/182?format=json","number":"182","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4730","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"No Retaining Every Gun In a System That Restricts Your Rights Act","url":"https://api.congress.gov/v3/bill/119/s/119?format=json","number":"119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4731","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Dismantle Iran’s Proxy Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/145?format=json","number":"145","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4732","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-14","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Sporting Firearms Access Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"4733","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-08","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"VALOR Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/37?format=json","number":"37","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}} +{"type":"node","id":"4734","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"118","introducedDate":"2023-09-07","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Cyber Resiliency Act","url":"https://api.congress.gov/v3/bill/118/s/2740?format=json","number":"2740","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-07","latestAction_actionTime":""}} +{"type":"node","id":"4735","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1347)","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act with respect to molecularly targeted pediatric cancer investigations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/705?format=json","number":"705","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4736","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/742?format=json","number":"","amendmentNumber":"742","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4737","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/712?format=json","number":"","amendmentNumber":"712","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4738","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/710?format=json","number":"","amendmentNumber":"710","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4739","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/711?format=json","number":"","amendmentNumber":"711","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4740","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/709?format=json","number":"","amendmentNumber":"709","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4741","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 299 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 76.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/299?format=json","number":"","amendmentNumber":"299","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4742","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/300?format=json","number":"","amendmentNumber":"300","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4743","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/275?format=json","number":"","amendmentNumber":"275","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4744","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/253?format=json","number":"","amendmentNumber":"253","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4745","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/208?format=json","number":"","amendmentNumber":"208","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4746","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/209?format=json","number":"","amendmentNumber":"209","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4747","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/207?format=json","number":"","amendmentNumber":"207","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4748","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 172 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/172?format=json","number":"","amendmentNumber":"172","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4749","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/149?format=json","number":"","amendmentNumber":"149","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4750","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/151?format=json","number":"","amendmentNumber":"151","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4751","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/150?format=json","number":"","amendmentNumber":"150","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4752","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/152?format=json","number":"","amendmentNumber":"152","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4753","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/143?format=json","number":"","amendmentNumber":"143","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4754","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/145?format=json","number":"","amendmentNumber":"145","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4756","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1430-1431)","type":"S","title":"A bill to amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/779?format=json","number":"779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4757","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to reaffirm the applicability of the Indian Reorganization Act to the Lytton Rancheria of California, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/748?format=json","number":"748","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4759","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tule River Tribe Reserved Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4760","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1226?format=json","number":"","amendmentNumber":"1226","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4761","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1225?format=json","number":"","amendmentNumber":"1225","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4762","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1224?format=json","number":"","amendmentNumber":"1224","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4763","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1218?format=json","number":"","amendmentNumber":"1218","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4764","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1192?format=json","number":"","amendmentNumber":"1192","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4765","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1193?format=json","number":"","amendmentNumber":"1193","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4766","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1189?format=json","number":"","amendmentNumber":"1189","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4767","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1190?format=json","number":"","amendmentNumber":"1190","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4768","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1188?format=json","number":"","amendmentNumber":"1188","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4769","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1191?format=json","number":"","amendmentNumber":"1191","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4770","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1187?format=json","number":"","amendmentNumber":"1187","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4771","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1141?format=json","number":"","amendmentNumber":"1141","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4772","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1142?format=json","number":"","amendmentNumber":"1142","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4773","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1119?format=json","number":"","amendmentNumber":"1119","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4774","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1121?format=json","number":"","amendmentNumber":"1121","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4775","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand and modify the grant program of the Department of Veterans Affairs to provide innovative transportation options to veterans in highly rural areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/784?format=json","number":"784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4776","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to encourage States to report to the Attorney General certain information regarding inmates who give birth in the custody of law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/687?format=json","number":"687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"4777","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 407 not agreed to in Senate by Yea-Nay Vote. 49 - 51. Record Vote Number: 72.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/407?format=json","number":"","amendmentNumber":"407","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4778","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/406?format=json","number":"","amendmentNumber":"406","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4779","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/405?format=json","number":"","amendmentNumber":"405","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4780","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Forest and Rangeland Renewable Resources Research Act of 1978 to modify the forest inventory and analysis program.","url":"https://api.congress.gov/v3/bill/119/s/517?format=json","number":"517","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4781","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Supporting Victims of Human Trafficking Act","url":"https://api.congress.gov/v3/bill/119/s/361?format=json","number":"361","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"4782","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-12-19","policyArea_name":"","latestAction_text":"Amendment SA 3350 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3350?format=json","number":"","amendmentNumber":"3350","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"4783","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Youth Sports Facilities Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5560?format=json","number":"5560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"4784","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-17","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"BCRA","url":"https://api.congress.gov/v3/bill/118/s/5565?format=json","number":"5565","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"4785","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Family Notification of Death, Injury, or Illness in Custody Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5477?format=json","number":"5477","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"4786","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 119 Main Street in Plains, Georgia, as the \"Jimmy and Rosalynn Carter Post Office\".","url":"https://api.congress.gov/v3/bill/118/s/5345?format=json","number":"5345","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"4787","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-11-14","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Border Smuggling Crackdown Act","url":"https://api.congress.gov/v3/bill/118/s/5322?format=json","number":"5322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"4788","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-12","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Veterans Home Loan Fairness Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5301?format=json","number":"5301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}} +{"type":"node","id":"4789","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Held at the desk.","type":"S","title":"Lieutenant Osvaldo Albarati Stopping Prison Contraband Act","url":"https://api.congress.gov/v3/bill/118/s/5284?format=json","number":"5284","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":"10:04:12"}} +{"type":"node","id":"4790","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Fresh Food Act","url":"https://api.congress.gov/v3/bill/118/s/5120?format=json","number":"5120","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"4791","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Postmaster General Reform Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5080?format=json","number":"5080","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"4792","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3255?format=json","number":"","amendmentNumber":"3255","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4793","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"VA Transportation Programs Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4922?format=json","number":"4922","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"4794","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Access to Homeownership Act","url":"https://api.congress.gov/v3/bill/118/s/4944?format=json","number":"4944","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"4795","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Risky Research Review Act","url":"https://api.congress.gov/v3/bill/119/s/854?format=json","number":"854","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4796","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Royalty Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/855?format=json","number":"855","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4797","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 999 not agreed to in Senate by Yea-Nay Vote. 24 - 76. Record Vote Number: 77.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/999?format=json","number":"","amendmentNumber":"999","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4798","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/515?format=json","number":"","amendmentNumber":"515","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4799","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to replace the National Institute of Allergy and Infectious Diseases with 3 separate national research institutes.","url":"https://api.congress.gov/v3/bill/119/s/664?format=json","number":"664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4800","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit assistance to foreign governments that violate human rights with respect to religious freedom.","url":"https://api.congress.gov/v3/bill/119/s/676?format=json","number":"676","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4801","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S979-980)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Homeland Security and Governmental Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/77?format=json","number":"77","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4802","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to remove restrictions from a parcel of land in Paducah, Kentucky.","url":"https://api.congress.gov/v3/bill/119/s/601?format=json","number":"601","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4804","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to amend title 31, United States Code, to provide for automatic continuing resolutions.","url":"https://api.congress.gov/v3/bill/119/s/499?format=json","number":"499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4806","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-28","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/97?format=json","number":"","amendmentNumber":"97","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4807","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-27","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"FAIR Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/263?format=json","number":"263","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}} +{"type":"node","id":"4808","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution directing the removal of United States Armed Forces from hostilities in Syria that have not been authorized by Congress.","url":"https://api.congress.gov/v3/bill/119/sjres/6?format=json","number":"6","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4810","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution directing the removal of United States Armed Forces from hostilities in Ukraine that have not been authorized by Congress.","url":"https://api.congress.gov/v3/bill/119/sjres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4811","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Free Speech Protection Act","url":"https://api.congress.gov/v3/bill/119/s/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}} +{"type":"node","id":"4814","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/94?format=json","number":"","amendmentNumber":"94","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4815","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to renew the application of the Medicare payment rate floor to primary care services furnished under the Medicaid program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/760?format=json","number":"760","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4817","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/895?format=json","number":"","amendmentNumber":"895","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4818","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/883?format=json","number":"","amendmentNumber":"883","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4819","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/885?format=json","number":"","amendmentNumber":"885","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4820","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/882?format=json","number":"","amendmentNumber":"882","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4821","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/890?format=json","number":"","amendmentNumber":"890","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4822","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/894?format=json","number":"","amendmentNumber":"894","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4823","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/888?format=json","number":"","amendmentNumber":"888","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4824","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/881?format=json","number":"","amendmentNumber":"881","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4825","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/887?format=json","number":"","amendmentNumber":"887","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4826","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/886?format=json","number":"","amendmentNumber":"886","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4827","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/893?format=json","number":"","amendmentNumber":"893","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4828","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/889?format=json","number":"","amendmentNumber":"889","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4829","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/884?format=json","number":"","amendmentNumber":"884","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4830","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/891?format=json","number":"","amendmentNumber":"891","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4831","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/892?format=json","number":"","amendmentNumber":"892","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4832","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/879?format=json","number":"","amendmentNumber":"879","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4833","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 878 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 66.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/878?format=json","number":"","amendmentNumber":"878","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4834","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 880 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/880?format=json","number":"","amendmentNumber":"880","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4835","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit displaying the flag of a country other than the United States on Capitol Hill and to prohibit Members of Congress from using official funds to purchase the flag of a country other than the United States.","url":"https://api.congress.gov/v3/bill/119/s/849?format=json","number":"849","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4836","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish an enhanced deduction for wages paid to automobile manufacturing workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/711?format=json","number":"711","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4837","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to declare English as the official language of the United States, to establish a uniform English language rule for naturalization, and to avoid misconstructions of the English language texts of the laws of the United States, pursuant to Congress' powers to provide for the general welfare of the United States and to establish a uniform rule of naturalization under article I, section 8, of the Constitution.","url":"https://api.congress.gov/v3/bill/119/s/542?format=json","number":"542","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4838","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S526-527; text: CR S525)","type":"SRES","title":"A resolution congratulating The Ohio State University football team for winning the 2025 College Football Playoff National Championship.","url":"https://api.congress.gov/v3/bill/119/sres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"4839","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"RULES Act","url":"https://api.congress.gov/v3/bill/119/s/200?format=json","number":"200","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4840","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to rescind the unobligated balances of amounts appropriated for Internal Revenue Service enhancements and use such funding for an External Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/175?format=json","number":"175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4841","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to authorize the Secretary of the Treasury to make payments to the Quapaw Nation and certain members of the Quapaw Nation in accordance with the recommendation of the United States Court of Federal Claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/630?format=json","number":"630","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"4842","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to provide for the equitable settlement of certain Indian land disputes regarding land in Illinois, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/550?format=json","number":"550","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4843","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Quapaw Tribal Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5619?format=json","number":"5619","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"4844","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-29","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Small Businesses before Bureaucrats Act","url":"https://api.congress.gov/v3/bill/118/s/4823?format=json","number":"4823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-29","latestAction_actionTime":""}} +{"type":"node","id":"4845","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3026?format=json","number":"","amendmentNumber":"3026","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4846","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2973?format=json","number":"","amendmentNumber":"2973","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4847","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2947?format=json","number":"","amendmentNumber":"2947","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4848","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 503.","type":"S","title":"Traumatic Brain Injury Program Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4755?format=json","number":"4755","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"4849","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2880?format=json","number":"","amendmentNumber":"2880","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4850","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2582?format=json","number":"","amendmentNumber":"2582","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4851","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2583?format=json","number":"","amendmentNumber":"2583","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4852","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-05-31","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide for the equitable settlement of certain Indian land disputes regarding land in Illinois, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/1783?format=json","number":"1783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-31","latestAction_actionTime":""}} +{"type":"node","id":"4853","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4308; text: CR S4271)","type":"SRES","title":"A resolution designating the week of May 5, 2024, through May 11, 2024, as \"Tardive Dyskinesia Awareness Week\".","url":"https://api.congress.gov/v3/bill/118/sres/757?format=json","number":"757","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}} +{"type":"node","id":"4854","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"WIOA Planning Extension Act","url":"https://api.congress.gov/v3/bill/118/s/4498?format=json","number":"4498","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"4855","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"WIOA Performance Accountability Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/4501?format=json","number":"4501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"4856","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/sjres/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"4857","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-05-02","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1944?format=json","number":"","amendmentNumber":"1944","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4858","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Behavioral Health Information Technology Coordination Act","url":"https://api.congress.gov/v3/bill/118/s/2688?format=json","number":"2688","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"4859","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"MVP Act","url":"https://api.congress.gov/v3/bill/118/s/4204?format=json","number":"4204","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"4860","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-11-15","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Lowering Broadband Costs for Consumers Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3321?format=json","number":"3321","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":""}} +{"type":"node","id":"4861","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1037?format=json","number":"","amendmentNumber":"1037","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4862","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1038?format=json","number":"","amendmentNumber":"1038","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4863","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1036?format=json","number":"","amendmentNumber":"1036","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4864","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/966?format=json","number":"","amendmentNumber":"966","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4865","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/902?format=json","number":"","amendmentNumber":"902","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4866","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/901?format=json","number":"","amendmentNumber":"901","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4867","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/294?format=json","number":"","amendmentNumber":"294","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4868","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/296?format=json","number":"","amendmentNumber":"296","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4869","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/295?format=json","number":"","amendmentNumber":"295","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4870","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/226?format=json","number":"","amendmentNumber":"226","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4871","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/225?format=json","number":"","amendmentNumber":"225","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4872","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/222?format=json","number":"","amendmentNumber":"222","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4873","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/220?format=json","number":"","amendmentNumber":"220","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4874","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/224?format=json","number":"","amendmentNumber":"224","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4875","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/221?format=json","number":"","amendmentNumber":"221","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4876","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/223?format=json","number":"","amendmentNumber":"223","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4877","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish the Office of Gun Violence Prevention, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/595?format=json","number":"595","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4878","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to prohibit certain discrimination against athletes on the basis of sex by State athletic associations, intercollegiate athletic associations, and covered institutions of higher education, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/543?format=json","number":"543","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4879","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Stop Sports Blackouts Act","url":"https://api.congress.gov/v3/bill/119/s/328?format=json","number":"328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"4880","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-01-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/84?format=json","number":"","amendmentNumber":"84","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4883","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to modify the Precision Medicine for Veterans Initiative of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/800?format=json","number":"800","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4885","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish an external provider scheduling program to assist the Department of Veterans Affairs in scheduling appointments for care and services under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/654?format=json","number":"654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"4887","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to carry out a pilot program to coordinate, navigate, and manage care and benefits for veterans enrolled in both the Medicare program and the system of annual patient enrollment of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/506?format=json","number":"506","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4888","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the publicly traded partnership ownership structure to energy power generation projects and transportation fuels, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/510?format=json","number":"510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4889","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to transfer the functions, duties, responsibilities, assets, liabilities, orders, determinations, rules, regulations, permits, grants, loans, contracts, agreements, certificates, licenses, and privileges of the United States Agency for International Development relating to implementing and administering the Food for Peace Act to the Department of Agriculture.","url":"https://api.congress.gov/v3/bill/119/s/525?format=json","number":"525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4892","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 11, District of Columbia Official Code, to revise references in such title to individuals with intellectual disabilities.","url":"https://api.congress.gov/v3/bill/119/s/402?format=json","number":"402","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4893","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the advanced manufacturing production credit to include distribution transformers.","url":"https://api.congress.gov/v3/bill/119/s/448?format=json","number":"448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4895","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Stop GREED Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/396?format=json","number":"396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4896","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Veterans’ Assuring Critical Care Expansions to Support Servicemembers (ACCESS) Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/275?format=json","number":"275","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"4897","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Fiscal Year 2025 Veterans Affairs Major Medical Facility Authorization Act","url":"https://api.congress.gov/v3/bill/119/s/183?format=json","number":"183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4898","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Restore VA Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/124?format=json","number":"124","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4899","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Farm to Fly Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/144?format=json","number":"144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4900","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"EMPSA","url":"https://api.congress.gov/v3/bill/119/s/73?format=json","number":"73","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"4901","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to enhance the longevity, dignity, empowerment, and respect of older individuals who are Native Americans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/870?format=json","number":"870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4904","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Forest Protection Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4905","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1020?format=json","number":"","amendmentNumber":"1020","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4906","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1025?format=json","number":"","amendmentNumber":"1025","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4907","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1022?format=json","number":"","amendmentNumber":"1022","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4908","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1021?format=json","number":"","amendmentNumber":"1021","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4909","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1023?format=json","number":"","amendmentNumber":"1023","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4910","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1024?format=json","number":"","amendmentNumber":"1024","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4911","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1019?format=json","number":"","amendmentNumber":"1019","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4912","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1018?format=json","number":"","amendmentNumber":"1018","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4913","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-18","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Veterinary Services to Improve Public Health in Rural Communities Act","url":"https://api.congress.gov/v3/bill/119/s/620?format=json","number":"620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4914","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate a mountain in the State of Alaska as Denali.","url":"https://api.congress.gov/v3/bill/119/s/573?format=json","number":"573","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4915","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the exemption from the excise tax on alternative motorboat fuels sold as supplies for vessels or aircraft to include certain vessels serving only one coast.","url":"https://api.congress.gov/v3/bill/119/s/549?format=json","number":"549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"4916","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672-673)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Indian Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/60?format=json","number":"60","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4917","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"FASD Respect Act","url":"https://api.congress.gov/v3/bill/119/s/139?format=json","number":"139","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"4918","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-03-02","latestAction_text":"Held at the desk.","type":"S","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/623?format=json","number":"623","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":"17:03:55"}} +{"type":"node","id":"4919","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","introducedDate":"2023-04-20","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Bruce's Law","url":"https://api.congress.gov/v3/bill/118/s/1235?format=json","number":"1235","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-20","latestAction_actionTime":""}} +{"type":"node","id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}} +{"type":"node","id":"4921","labels":["Legislation"],"properties":{"sponsored_by":"M001244","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1017?format=json","number":"","amendmentNumber":"1017","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"4923","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to provide a moratorium on all Federal research grants provided to any institution of higher education or other research institute that is conducting dangerous gain-of-function research.","url":"https://api.congress.gov/v3/bill/119/s/738?format=json","number":"738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"4924","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/732?format=json","number":"732","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4925","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/994?format=json","number":"","amendmentNumber":"994","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4927","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-05","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Phasedown of Hydrofluorocarbons: Management of Certain Hydrofluorocarbons and Substitutes Under the American Innovation and Manufacturing Act of 2020\".","url":"https://api.congress.gov/v3/bill/119/sjres/14?format=json","number":"14","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"4928","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Regulatory Reduction Act","url":"https://api.congress.gov/v3/bill/119/s/387?format=json","number":"387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4929","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Whole Milk for Healthy Kids Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/222?format=json","number":"222","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4930","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Increased TSP Access Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/156?format=json","number":"156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4931","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Animals","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to remove the lesser prairie-chicken from the lists of threatened species and endangered species published pursuant to the Endangered Species Act of 1973, to amend that Act to exclude the lesser prairie-chicken from the authority of that Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/171?format=json","number":"171","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"4932","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/69?format=json","number":"","amendmentNumber":"69","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4933","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/70?format=json","number":"","amendmentNumber":"70","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4934","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-14","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/43?format=json","number":"","amendmentNumber":"43","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4935","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-14","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/42?format=json","number":"","amendmentNumber":"42","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4936","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-07-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require that information on spending associated with national emergencies be subject to the same reporting requirements as other Federal funds under the Federal Funding Accountability and Transparency Act of 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/2300?format=json","number":"2300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-13","latestAction_actionTime":""}} +{"type":"node","id":"4937","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-12-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"No Surprises Act Enforcement Act","url":"https://api.congress.gov/v3/bill/118/s/5535?format=json","number":"5535","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"4938","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"HELP Copays Act","url":"https://api.congress.gov/v3/bill/118/s/1375?format=json","number":"1375","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}} +{"type":"node","id":"4939","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"STOP Act","url":"https://api.congress.gov/v3/bill/118/s/5424?format=json","number":"5424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}} +{"type":"node","id":"4940","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Defining Male and Female Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5356?format=json","number":"5356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"4941","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Small Energy Producers Performance Enhancement Act","url":"https://api.congress.gov/v3/bill/118/s/5198?format=json","number":"5198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"4942","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/119/s/790?format=json","number":"790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"4944","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1202?format=json","number":"","amendmentNumber":"1202","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4945","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1203?format=json","number":"","amendmentNumber":"1203","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4946","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1206?format=json","number":"","amendmentNumber":"1206","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4947","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1205?format=json","number":"","amendmentNumber":"1205","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4948","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1204?format=json","number":"","amendmentNumber":"1204","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4949","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1201?format=json","number":"","amendmentNumber":"1201","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4950","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1200?format=json","number":"","amendmentNumber":"1200","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"4952","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-06","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Forest Service of the Department of Agriculture relating to \"Law Enforcement; Criminal Prohibitions\".","url":"https://api.congress.gov/v3/bill/119/sjres/17?format=json","number":"17","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"4953","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Critical Water Resources Prioritization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/386?format=json","number":"386","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4954","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Emergency Fuel Reduction Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/395?format=json","number":"395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"4955","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Grizzly Bear State Management Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/316?format=json","number":"316","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"4956","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Congressional Award Program Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"4958","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"FREE Act","url":"https://api.congress.gov/v3/bill/119/s/238?format=json","number":"238","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"4959","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"LICENSE Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/191?format=json","number":"191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"4960","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-08","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate the mountain at the Devils Tower National Monument, Wyoming, as Devils Tower, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}} +{"type":"node","id":"4961","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"118","introducedDate":"2024-11-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/118/s/5307?format=json","number":"5307","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-13","latestAction_actionTime":""}} +{"type":"node","id":"4962","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to prohibit institutions of higher education participating in Federal student assistance programs from giving preferential treatment in the admissions process to legacy students or donors.","url":"https://api.congress.gov/v3/bill/119/s/880?format=json","number":"880","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4965","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 1207 not agreed to in Senate by Yea-Nay Vote. 49 - 51. Record Vote Number: 86.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1207?format=json","number":"","amendmentNumber":"1207","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4966","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/877?format=json","number":"","amendmentNumber":"877","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4967","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/741?format=json","number":"","amendmentNumber":"741","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4968","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/633?format=json","number":"","amendmentNumber":"633","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4969","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/635?format=json","number":"","amendmentNumber":"635","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4970","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/637?format=json","number":"","amendmentNumber":"637","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4971","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/636?format=json","number":"","amendmentNumber":"636","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4972","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/634?format=json","number":"","amendmentNumber":"634","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4973","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/624?format=json","number":"","amendmentNumber":"624","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4974","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/632?format=json","number":"","amendmentNumber":"632","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4975","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/629?format=json","number":"","amendmentNumber":"629","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4976","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/628?format=json","number":"","amendmentNumber":"628","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4977","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/630?format=json","number":"","amendmentNumber":"630","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4978","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/626?format=json","number":"","amendmentNumber":"626","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4979","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/627?format=json","number":"","amendmentNumber":"627","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4980","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/625?format=json","number":"","amendmentNumber":"625","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4981","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/631?format=json","number":"","amendmentNumber":"631","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"4984","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to ensure that there are no reductions in funding for critical education programs for fiscal years 2025, 2026, and 2027, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/810?format=json","number":"810","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"4985","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1214?format=json","number":"","amendmentNumber":"1214","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4986","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1136?format=json","number":"","amendmentNumber":"1136","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4987","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1139?format=json","number":"","amendmentNumber":"1139","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4988","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1137?format=json","number":"","amendmentNumber":"1137","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4989","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1138?format=json","number":"","amendmentNumber":"1138","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4990","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1133?format=json","number":"","amendmentNumber":"1133","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4991","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1135?format=json","number":"","amendmentNumber":"1135","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4992","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1134?format=json","number":"","amendmentNumber":"1134","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4993","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/991?format=json","number":"","amendmentNumber":"991","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4994","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/993?format=json","number":"","amendmentNumber":"993","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4995","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/992?format=json","number":"","amendmentNumber":"992","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4996","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/990?format=json","number":"","amendmentNumber":"990","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4997","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/912?format=json","number":"","amendmentNumber":"912","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"4998","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 911 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/911?format=json","number":"","amendmentNumber":"911","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"4999","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/914?format=json","number":"","amendmentNumber":"914","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5000","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/913?format=json","number":"","amendmentNumber":"913","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5002","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1616; text: CR S1609)","type":"SRES","title":"A resolution providing for members on the part of the Senate of the Joint Committee on Printing and the Joint Committee of Congress on the Library.","url":"https://api.congress.gov/v3/bill/119/sres/117?format=json","number":"117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5004","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Director of the Bureau of Prisons to be appointed by and with the advice and consent of the Senate.","url":"https://api.congress.gov/v3/bill/119/s/698?format=json","number":"698","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5005","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize certain programs under the SUPPORT for Patients and Communities Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/500?format=json","number":"500","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"5006","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture and the Secretary of the Interior to carry out activities to provide for white oak restoration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/476?format=json","number":"476","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5007","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-01-27","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S387-388; text: CR S398-399)","type":"SRES","title":"A resolution authorizing the Sergeant at Arms and Doorkeeper of the Senate to conduct quarterly blood donation drives during the 119th Congress.","url":"https://api.congress.gov/v3/bill/119/sres/41?format=json","number":"41","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}} +{"type":"node","id":"5008","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-04-25","latestAction_text":"Held at the desk.","type":"S","title":"Mammoth Cave National Park Boundary Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1277?format=json","number":"1277","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":"18:25:35"}} +{"type":"node","id":"5009","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S6446-6447)","type":"S","title":"White Oak Resilience Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5289?format=json","number":"5289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5010","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-09-24","policyArea_name":"","latestAction_text":"Amendment SA 3297 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3297?format=json","number":"","amendmentNumber":"3297","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5011","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-09-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3281?format=json","number":"","amendmentNumber":"3281","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5012","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2534?format=json","number":"","amendmentNumber":"2534","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5013","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-08","latestAction_text":"Held at the desk.","type":"S","title":"A bill to designate the United States courthouse annex located at 310 South Main Street in London, Kentucky, as the \"Eugene E. Siler, Jr. United States Courthouse Annex\".","url":"https://api.congress.gov/v3/bill/118/s/4293?format=json","number":"4293","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":"10:04:07"}} +{"type":"node","id":"5014","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S2708-2709)","type":"S","title":"SHOP Act","url":"https://api.congress.gov/v3/bill/118/s/4095?format=json","number":"4095","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"5015","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/754?format=json","number":"","amendmentNumber":"754","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5016","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-14","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","url":"https://api.congress.gov/v3/bill/118/sjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-14","latestAction_actionTime":""}} +{"type":"node","id":"5017","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-04-05","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 553.","type":"S","title":"Land Between the Lakes Recreation and Heritage Act","url":"https://api.congress.gov/v3/bill/117/s/3997?format=json","number":"3997","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-17","latestAction_actionTime":""}} +{"type":"node","id":"5018","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-12","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S2366)","type":"S","title":"Federal Prisons Accountability Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2284?format=json","number":"2284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-12","latestAction_actionTime":""}} +{"type":"node","id":"5019","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2023-06-14","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2099)","type":"S","title":"CAREER Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1991?format=json","number":"1991","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-14","latestAction_actionTime":""}} +{"type":"node","id":"5020","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-11-17","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","type":"S","title":"Mammoth Cave National Park Boundary Adjustment Act of 2022","url":"https://api.congress.gov/v3/bill/117/s/5129?format=json","number":"5129","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-01","latestAction_actionTime":""}} +{"type":"node","id":"5021","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2023-02-02","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S240; text: CR S238-239)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Eighteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/118/sres/31?format=json","number":"31","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}} +{"type":"node","id":"5022","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to increase the standard charitable mileage rate for delivery of meals to elderly, disabled, frail, and at-risk individuals.","url":"https://api.congress.gov/v3/bill/119/s/895?format=json","number":"895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5023","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Housing Act of 1949 to permit certain grants to be used for accessory dwelling units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/686?format=json","number":"686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5024","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1158?format=json","number":"","amendmentNumber":"1158","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5025","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/967?format=json","number":"","amendmentNumber":"967","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5026","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/968?format=json","number":"","amendmentNumber":"968","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5027","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/949?format=json","number":"","amendmentNumber":"949","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5028","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/950?format=json","number":"","amendmentNumber":"950","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5029","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/720?format=json","number":"","amendmentNumber":"720","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5030","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/716?format=json","number":"","amendmentNumber":"716","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5031","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/718?format=json","number":"","amendmentNumber":"718","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5032","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/719?format=json","number":"","amendmentNumber":"719","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5033","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/721?format=json","number":"","amendmentNumber":"721","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5034","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/717?format=json","number":"","amendmentNumber":"717","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5035","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/455?format=json","number":"","amendmentNumber":"455","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5036","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/452?format=json","number":"","amendmentNumber":"452","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5037","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/453?format=json","number":"","amendmentNumber":"453","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5038","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/364?format=json","number":"","amendmentNumber":"364","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5039","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/365?format=json","number":"","amendmentNumber":"365","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5040","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/363?format=json","number":"","amendmentNumber":"363","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5041","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/345?format=json","number":"","amendmentNumber":"345","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5042","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act to establish a process for science-focused drug development meetings led by the Reagan-Udall Foundation for the Food and Drug Administration with respect to drugs for rare diseases and conditions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5044","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to recognize Indian tribal governments for purposes of determining under the adoption credit whether a child has special needs.","url":"https://api.congress.gov/v3/bill/119/s/757?format=json","number":"757","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5045","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to support the establishment of an apprenticeship college consortium.","url":"https://api.congress.gov/v3/bill/119/s/758?format=json","number":"758","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5047","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide incentives to physicians to practice in rural and medically underserved communities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/709?format=json","number":"709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5049","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/507?format=json","number":"","amendmentNumber":"507","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5050","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/511?format=json","number":"","amendmentNumber":"511","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5051","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/506?format=json","number":"","amendmentNumber":"506","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5052","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/509?format=json","number":"","amendmentNumber":"509","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5053","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/505?format=json","number":"","amendmentNumber":"505","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5054","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/508?format=json","number":"","amendmentNumber":"508","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5055","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/510?format=json","number":"","amendmentNumber":"510","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5056","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/497?format=json","number":"","amendmentNumber":"497","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5057","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/500?format=json","number":"","amendmentNumber":"500","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5058","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/498?format=json","number":"","amendmentNumber":"498","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5059","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/501?format=json","number":"","amendmentNumber":"501","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5060","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/502?format=json","number":"","amendmentNumber":"502","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5061","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/495?format=json","number":"","amendmentNumber":"495","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5062","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to provide for a memorandum of understanding to address the impacts of a certain record of decision on the Upper Colorado River Basin Fund.","url":"https://api.congress.gov/v3/bill/119/s/887?format=json","number":"887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5063","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to abolish the Board of Governors of the Federal Reserve System and the Federal reserve banks, to repeal the Federal Reserve Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/869?format=json","number":"869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5065","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Government Spectrum Valuation Act","url":"https://api.congress.gov/v3/bill/119/s/792?format=json","number":"792","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5066","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require the Assistant Secretary of Commerce for Communications and Information to audit Federal spectrum.","url":"https://api.congress.gov/v3/bill/119/s/794?format=json","number":"794","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5068","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to provide for fiscal accountability, to require institutions of higher education to publish information regarding student success, to provide for school accountability for student loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5069","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Right to Financial Privacy Act of 1978 to preserve the confidentiality of certain records, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/809?format=json","number":"809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5070","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require certain interactive computer services to adopt and operate technology verification measures to ensure that users of the platform are not minors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/737?format=json","number":"737","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5072","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 922 agreed to in Senate by Yea-Nay Vote. 53 - 47. Record Vote Number: 85.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/922?format=json","number":"","amendmentNumber":"922","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5073","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/919?format=json","number":"","amendmentNumber":"919","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5074","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/921?format=json","number":"","amendmentNumber":"921","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5075","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/918?format=json","number":"","amendmentNumber":"918","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5076","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/920?format=json","number":"","amendmentNumber":"920","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5077","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/915?format=json","number":"","amendmentNumber":"915","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5078","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/917?format=json","number":"","amendmentNumber":"917","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5079","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/916?format=json","number":"","amendmentNumber":"916","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5080","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to terminate membership by the United States in the United Nations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5081","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve retrospective reviews of Federal regulations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/644?format=json","number":"644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5083","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to pilot the use of image technician positions in the U.S. Customs and Border Protection Office of Field Operations.","url":"https://api.congress.gov/v3/bill/119/s/578?format=json","number":"578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5084","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify the Methane Emissions Reduction Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/514?format=json","number":"514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5085","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for modifications to ending trafficking in government contracting, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/426?format=json","number":"426","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5086","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to maintain the prohibition on allowing any deduction or credit associated with a trade or business involved in trafficking marijuana.","url":"https://api.congress.gov/v3/bill/119/s/471?format=json","number":"471","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5087","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S596-597)","type":"SRES","title":"A resolution recognizing religious freedom as a fundamental right, expressing support for international religious freedom as a cornerstone of United States foreign policy, and expressing concern over increased threats to and attacks on religious freedom around the world.","url":"https://api.congress.gov/v3/bill/119/sres/52?format=json","number":"52","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5088","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Investing in Community Resilience Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/372?format=json","number":"372","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5089","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stopping Political Discrimination in Disaster Assistance Act","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5090","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Direct Property Acquisitions Act","url":"https://api.congress.gov/v3/bill/119/s/374?format=json","number":"374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5091","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Expediting Hazard Mitigation Assistance Projects Act","url":"https://api.congress.gov/v3/bill/119/s/378?format=json","number":"378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5092","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Charitable Act","url":"https://api.congress.gov/v3/bill/119/s/317?format=json","number":"317","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5093","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Emergency Management","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Natural Disaster Resilience and Recovery Accountability Act","url":"https://api.congress.gov/v3/bill/119/s/270?format=json","number":"270","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"5094","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Budget.","type":"S","title":"Fairness for Crime Victims Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/285?format=json","number":"285","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"5095","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Promoting Domestic Energy Production Act","url":"https://api.congress.gov/v3/bill/119/s/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5098","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-15","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 52 - 47. Record Vote Number: 11. (CR S294-295)","type":"S","title":"Born-Alive Abortion Survivors Protection Act","url":"https://api.congress.gov/v3/bill/119/s/6?format=json","number":"6","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5099","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Telework Reform Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/82?format=json","number":"82","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"5100","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SMART Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/76?format=json","number":"76","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"5101","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Improving Federal Financial Management Act","url":"https://api.congress.gov/v3/bill/119/s/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5104","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Infrastructure Investment and Jobs Act to require the Secretary of Energy to establish an abandoned wells research, development, and demonstration program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/818?format=json","number":"818","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5105","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to amend regulations to allow for certain packers to have an interest in market agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5106","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to increase the accountability of the Office of Special Counsel in enforcing certain provisions of that title vigorously, consistently, and without regard to the political affiliation, career status, or personal characteristics of individuals subject to those provisions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/806?format=json","number":"806","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5107","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/996?format=json","number":"","amendmentNumber":"996","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5108","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/997?format=json","number":"","amendmentNumber":"997","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5109","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/998?format=json","number":"","amendmentNumber":"998","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5110","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 957 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 84.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/957?format=json","number":"","amendmentNumber":"957","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5111","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/697?format=json","number":"","amendmentNumber":"697","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5112","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 699 not agreed to in Senate by Yea-Nay Vote. 48 - 52. Record Vote Number: 81.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/699?format=json","number":"","amendmentNumber":"699","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5113","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/700?format=json","number":"","amendmentNumber":"700","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5114","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/698?format=json","number":"","amendmentNumber":"698","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5115","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/695?format=json","number":"","amendmentNumber":"695","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5116","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/696?format=json","number":"","amendmentNumber":"696","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5117","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/688?format=json","number":"","amendmentNumber":"688","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5118","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/694?format=json","number":"","amendmentNumber":"694","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5119","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/692?format=json","number":"","amendmentNumber":"692","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5120","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/689?format=json","number":"","amendmentNumber":"689","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5121","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/690?format=json","number":"","amendmentNumber":"690","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5123","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture to convey the Pleasant Valley Ranger District Administrative Site to Gila County, Arizona.","url":"https://api.congress.gov/v3/bill/119/s/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5124","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1126?format=json","number":"","amendmentNumber":"1126","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5125","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1125?format=json","number":"","amendmentNumber":"1125","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5126","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/985?format=json","number":"","amendmentNumber":"985","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5127","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 984 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/984?format=json","number":"","amendmentNumber":"984","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5128","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/986?format=json","number":"","amendmentNumber":"986","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5129","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/489?format=json","number":"","amendmentNumber":"489","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5130","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/488?format=json","number":"","amendmentNumber":"488","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5131","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/324?format=json","number":"","amendmentNumber":"324","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5132","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/329?format=json","number":"","amendmentNumber":"329","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5133","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/326?format=json","number":"","amendmentNumber":"326","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5134","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/327?format=json","number":"","amendmentNumber":"327","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5135","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/330?format=json","number":"","amendmentNumber":"330","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5136","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/331?format=json","number":"","amendmentNumber":"331","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5137","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/323?format=json","number":"","amendmentNumber":"323","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5138","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/332?format=json","number":"","amendmentNumber":"332","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5139","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/328?format=json","number":"","amendmentNumber":"328","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5140","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/322?format=json","number":"","amendmentNumber":"322","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5141","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/325?format=json","number":"","amendmentNumber":"325","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5142","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1000?format=json","number":"","amendmentNumber":"1000","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5143","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/969?format=json","number":"","amendmentNumber":"969","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5144","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/905?format=json","number":"","amendmentNumber":"905","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5145","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/904?format=json","number":"","amendmentNumber":"904","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5146","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/528?format=json","number":"","amendmentNumber":"528","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5147","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/529?format=json","number":"","amendmentNumber":"529","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5148","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/527?format=json","number":"","amendmentNumber":"527","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5149","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution supporting the goals and ideals of Korean American Day.","url":"https://api.congress.gov/v3/bill/119/sres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"5150","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-21","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Foreign Affairs, Financial Services, Ways and Means, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"National Security Officials’ Foreign Employment Disclosure Act","url":"https://api.congress.gov/v3/bill/118/hr/10224?format=json","number":"10224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5151","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stop Militarizing Our Streets Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9266?format=json","number":"9266","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"5152","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","introducedDate":"2024-06-28","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide that certain payments to foreign related parties subject to sufficient foreign tax are not treated as base erosion payments.","url":"https://api.congress.gov/v3/bill/118/hr/8895?format=json","number":"8895","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}} +{"type":"node","id":"5153","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-05-10","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"BUILD Veterans Businesses Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8357?format=json","number":"8357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-13","latestAction_actionTime":""}} +{"type":"node","id":"5154","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-07","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Enhanced Cybersecurity for SNAP Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7585?format=json","number":"7585","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"5155","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-09","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Protecting our Veterans’ Memories Act","url":"https://api.congress.gov/v3/bill/118/hr/6343?format=json","number":"6343","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-27","latestAction_actionTime":""}} +{"type":"node","id":"5156","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Responsible Gun Ownership Licensing Act","url":"https://api.congress.gov/v3/bill/118/hr/6154?format=json","number":"6154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-01","latestAction_actionTime":""}} +{"type":"node","id":"5157","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-22","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"American Volunteering Corporation Act","url":"https://api.congress.gov/v3/bill/118/hr/5680?format=json","number":"5680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"5158","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-22","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"A Chance To Serve Act","url":"https://api.congress.gov/v3/bill/118/hr/5682?format=json","number":"5682","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}} +{"type":"node","id":"5159","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-22","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To expand opportunities for employment of recent graduates in Federal Government positions, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5681?format=json","number":"5681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"5160","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","introducedDate":"2023-09-22","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Learn and Serve America Reinvestment Act","url":"https://api.congress.gov/v3/bill/118/hr/5679?format=json","number":"5679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"5161","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","introducedDate":"2023-09-22","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Service Starts At Home Act","url":"https://api.congress.gov/v3/bill/118/hr/5678?format=json","number":"5678","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"5162","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize the National Flood Insurance Program.","url":"https://api.congress.gov/v3/bill/119/s/824?format=json","number":"824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5163","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to enhance compliance with hospital price transparency requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5164","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1222?format=json","number":"","amendmentNumber":"1222","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5165","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1162?format=json","number":"","amendmentNumber":"1162","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5166","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1163?format=json","number":"","amendmentNumber":"1163","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5167","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1164?format=json","number":"","amendmentNumber":"1164","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5168","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1165?format=json","number":"","amendmentNumber":"1165","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5171","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the independent and objective conduct and supervision of audits and investigations relating to the programs and operations funded with amounts appropriated or otherwise made available to Ukraine for military, economic, and humanitarian aid.","url":"https://api.congress.gov/v3/bill/119/s/682?format=json","number":"682","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5172","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 36, United States Code, to revise the Federal charter for the Foundation of the Federal Bar Association.","url":"https://api.congress.gov/v3/bill/119/s/616?format=json","number":"616","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"5173","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Environmental Protection Agency from using assessments generated by the Integrated Risk Information System as a tier 1 data source in rulemakings and other regulatory, enforcement, or permitting actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/623?format=json","number":"623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"5174","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Trichloroethylene (TCE); Regulation Under the Toxic Substances Control Act (TSCA)\".","url":"https://api.congress.gov/v3/bill/119/sjres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5175","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Securities Exchange Act of 1934 to expand access to capital for rural-area small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/577?format=json","number":"577","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5177","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to prohibit Federal funding for the Corporation for Public Broadcasting, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/519?format=json","number":"519","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5178","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to implement a minimum work requirement for able-bodied adults enrolled in State Medicaid programs.","url":"https://api.congress.gov/v3/bill/119/s/447?format=json","number":"447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5180","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Controlled Substances Act and the Controlled Substances Import and Export Act to modify the offenses relating to fentanyl, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/477?format=json","number":"477","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5181","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-04","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Ocean Energy Management relating to \"Protection of Marine Archaeological Resources\".","url":"https://api.congress.gov/v3/bill/119/sjres/11?format=json","number":"11","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:21:55"}} +{"type":"node","id":"5182","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to authorize the Caribbean Basin Security Initiative, to enhance the United States-Caribbean security partnership, to prioritize natural disaster resilience, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/820?format=json","number":"820","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5183","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1213?format=json","number":"","amendmentNumber":"1213","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5184","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/982?format=json","number":"","amendmentNumber":"982","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5185","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/983?format=json","number":"","amendmentNumber":"983","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5186","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/978?format=json","number":"","amendmentNumber":"978","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5187","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/909?format=json","number":"","amendmentNumber":"909","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5188","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/639?format=json","number":"","amendmentNumber":"639","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5189","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/638?format=json","number":"","amendmentNumber":"638","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5190","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/412?format=json","number":"","amendmentNumber":"412","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5191","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/403?format=json","number":"","amendmentNumber":"403","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5192","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/398?format=json","number":"","amendmentNumber":"398","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5193","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/400?format=json","number":"","amendmentNumber":"400","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5194","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/399?format=json","number":"","amendmentNumber":"399","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5195","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/401?format=json","number":"","amendmentNumber":"401","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5196","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/396?format=json","number":"","amendmentNumber":"396","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5197","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/402?format=json","number":"","amendmentNumber":"402","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5198","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/397?format=json","number":"","amendmentNumber":"397","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5199","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/395?format=json","number":"","amendmentNumber":"395","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5200","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/394?format=json","number":"","amendmentNumber":"394","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5201","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/393?format=json","number":"","amendmentNumber":"393","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5202","labels":["Legislation"],"properties":{"sponsored_by":"H001104","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-03-03","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Air Plan Approval; Ohio; Withdrawal of Technical Amendment\".","url":"https://api.congress.gov/v3/bill/119/sjres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5204","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act to provide for the inspection of foreign facilities that manufacture, process, pack, or hold shrimp for consumption in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/667?format=json","number":"667","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5205","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to direct the Secretary of Health and Human Services to establish an Office of Rural Health, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/403?format=json","number":"403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5206","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the CARES Act to remove a requirement on lessors to provide notice to vacate, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/470?format=json","number":"470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5207","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Saving American Workers’ Benefits Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/268?format=json","number":"268","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5209","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Promoting New Bank Formation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/113?format=json","number":"113","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5210","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-01-26","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"SAVE Moms and Babies Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/95?format=json","number":"95","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-26","latestAction_actionTime":""}} +{"type":"node","id":"5211","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6459)","type":"SRES","title":"A resolution designating the week of September 22 through September 28, 2024, as \"Gold Star Families Remembrance Week\".","url":"https://api.congress.gov/v3/bill/118/sres/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5212","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S5946; text: 08/01/2024 CR S5786-5787)","type":"SRES","title":"A resolution designating September 25, 2024, as \"National Ataxia Awareness Day\", and raising awareness of ataxia, ataxia research, and the search for a cure.","url":"https://api.congress.gov/v3/bill/118/sres/794?format=json","number":"794","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"5213","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"IDeA Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4968?format=json","number":"4968","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5214","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2310?format=json","number":"","amendmentNumber":"2310","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5215","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-13","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","type":"SRES","title":"A resolution honoring the life and legacy of Patrick Gottsch.","url":"https://api.congress.gov/v3/bill/118/sres/733?format=json","number":"733","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5216","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-13","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"RESTORE Act","url":"https://api.congress.gov/v3/bill/118/s/4533?format=json","number":"4533","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":""}} +{"type":"node","id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"5218","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"SERVE Act","url":"https://api.congress.gov/v3/bill/118/s/2076?format=json","number":"2076","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}} +{"type":"node","id":"5219","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-07","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 597.","type":"S","title":"Grand Village of the Natchez Indians and Jefferson College Affiliated Areas Establishment Act","url":"https://api.congress.gov/v3/bill/118/s/3241?format=json","number":"3241","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5220","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Health Sustainability Act","url":"https://api.congress.gov/v3/bill/118/s/4201?format=json","number":"4201","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-23","latestAction_actionTime":""}} +{"type":"node","id":"5221","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-07-26","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1064?format=json","number":"","amendmentNumber":"1064","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5222","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/369?format=json","number":"","amendmentNumber":"369","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5223","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-18","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Gun Owner Registration Information Protection Act","url":"https://api.congress.gov/v3/bill/118/s/1680?format=json","number":"1680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}} +{"type":"node","id":"5224","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Reducing the Federal Workforce Through Attrition Act","url":"https://api.congress.gov/v3/bill/119/s/295?format=json","number":"295","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5225","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"GOOD Act","url":"https://api.congress.gov/v3/bill/119/s/252?format=json","number":"252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"5226","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"CURD Act","url":"https://api.congress.gov/v3/bill/119/s/184?format=json","number":"184","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5227","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Midnight Rules Relief Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/164?format=json","number":"164","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"5228","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Stopping Overdoses of Fentanyl Analogues Act","url":"https://api.congress.gov/v3/bill/119/s/165?format=json","number":"165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"5229","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Reducing the Size of the Federal Government Through Attrition Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5608?format=json","number":"5608","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5230","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Treat Act","url":"https://api.congress.gov/v3/bill/118/s/5481?format=json","number":"5481","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"5231","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Interstate Commerce Simplification Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5158?format=json","number":"5158","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5232","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3141?format=json","number":"","amendmentNumber":"3141","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5233","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2819?format=json","number":"","amendmentNumber":"2819","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5234","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2820?format=json","number":"","amendmentNumber":"2820","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5235","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2821?format=json","number":"","amendmentNumber":"2821","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5236","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2817?format=json","number":"","amendmentNumber":"2817","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5237","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2818?format=json","number":"","amendmentNumber":"2818","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5238","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2339?format=json","number":"","amendmentNumber":"2339","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5239","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4564)","type":"SRES","title":"A resolution expressing support for the designation of July 2024 as \"National Sarcoma Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/sres/764?format=json","number":"764","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}} +{"type":"node","id":"5240","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Midnight Rules Relief Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4485?format=json","number":"4485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"5241","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-05-02","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1947?format=json","number":"","amendmentNumber":"1947","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5242","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"Amendment SA 1706 proposed by Senator Johnson. (consideration: CR S2582) To prohibit the disbursement of certain Federal funding to local jurisdictions that refuse to provide advance notice to the Department of Homeland Security regarding the release of illegal aliens from local custody.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1706?format=json","number":"","amendmentNumber":"1706","latestAction":"","latestAction_actionDate":"2024-03-23","latestAction_actionTime":""}} +{"type":"node","id":"5243","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1705?format=json","number":"","amendmentNumber":"1705","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5244","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Consolidated Farm and Rural Development Act to modify limitations on amounts of farm ownership loans and operating loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/899?format=json","number":"899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5246","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend title 49, United States Code, to provide for air traffic control training improvements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/697?format=json","number":"697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5247","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to contribute funds and artifacts to the Theodore Roosevelt Presidential Library in Medora, North Dakota.","url":"https://api.congress.gov/v3/bill/119/s/675?format=json","number":"675","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5249","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the Secretary of the Air Force to establish a permanent program to provide tuition assistance to members of the Air National Guard.","url":"https://api.congress.gov/v3/bill/119/s/489?format=json","number":"489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5251","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-15","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S196; text: CR S186-187)","type":"SRES","title":"A resolution congratulating the North Dakota State University Bison football team for winning the 2024 National Collegiate Athletic Association Division I Football Championship Subdivision title.","url":"https://api.congress.gov/v3/bill/119/sres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"5252","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-03-30","latestAction_text":"Held at the desk.","type":"S","title":"North Dakota Trust Lands Completion Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1088?format=json","number":"1088","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:04:56"}} +{"type":"node","id":"5253","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-12-17","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/118/sjres/122?format=json","number":"122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"5254","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating October 26, 2024, as the \"Day of the Deployed\".","url":"https://api.congress.gov/v3/bill/118/sres/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5255","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Animals","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6382; text: CR S6375)","type":"SRES","title":"A resolution designating November 2, 2024, as \"National Bison Day\".","url":"https://api.congress.gov/v3/bill/118/sres/851?format=json","number":"851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5256","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2024-09-09","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 637.","type":"S","title":"Dakota Water Resources Act Amendments of 2024","url":"https://api.congress.gov/v3/bill/118/s/4996?format=json","number":"4996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5257","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3132?format=json","number":"","amendmentNumber":"3132","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5258","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2234?format=json","number":"","amendmentNumber":"2234","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5259","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2236?format=json","number":"","amendmentNumber":"2236","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5260","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2235?format=json","number":"","amendmentNumber":"2235","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5261","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-13","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"United States-Israel Agriculture Cooperation Improvement and Expansion Act","url":"https://api.congress.gov/v3/bill/118/s/4551?format=json","number":"4551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":""}} +{"type":"node","id":"5262","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-21","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Livestock Disaster Relief Act","url":"https://api.congress.gov/v3/bill/118/s/2097?format=json","number":"2097","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}} +{"type":"node","id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"5264","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to improve the repayment by the Secretary of Veterans Affairs of benefits misused by a fiduciary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5266","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill for the relief of Vichai Sae Tung (also known as Chai Chaowasaree).","url":"https://api.congress.gov/v3/bill/119/s/716?format=json","number":"716","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5267","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the clean fuel production credit to provide a special rate for sustainable vessel fuel.","url":"https://api.congress.gov/v3/bill/119/s/692?format=json","number":"692","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5268","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/977?format=json","number":"","amendmentNumber":"977","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5269","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/825?format=json","number":"","amendmentNumber":"825","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5270","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/475?format=json","number":"","amendmentNumber":"475","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5271","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/259?format=json","number":"","amendmentNumber":"259","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5272","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/258?format=json","number":"","amendmentNumber":"258","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5273","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/254?format=json","number":"","amendmentNumber":"254","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5274","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/159?format=json","number":"","amendmentNumber":"159","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5275","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/158?format=json","number":"","amendmentNumber":"158","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5276","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/153?format=json","number":"","amendmentNumber":"153","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5277","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/154?format=json","number":"","amendmentNumber":"154","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5278","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/156?format=json","number":"","amendmentNumber":"156","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5279","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/157?format=json","number":"","amendmentNumber":"157","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5280","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/155?format=json","number":"","amendmentNumber":"155","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5281","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/141?format=json","number":"","amendmentNumber":"141","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5282","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/135?format=json","number":"","amendmentNumber":"135","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5283","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/140?format=json","number":"","amendmentNumber":"140","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5284","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to require the Secretary of Health and Human Services to carry out a pilot program to support evidence-based mental health peer support activities for students.","url":"https://api.congress.gov/v3/bill/119/s/906?format=json","number":"906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5285","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1140?format=json","number":"","amendmentNumber":"1140","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5286","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1044?format=json","number":"","amendmentNumber":"1044","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5287","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/945?format=json","number":"","amendmentNumber":"945","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5288","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/944?format=json","number":"","amendmentNumber":"944","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5289","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/939?format=json","number":"","amendmentNumber":"939","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5290","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/943?format=json","number":"","amendmentNumber":"943","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5291","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/937?format=json","number":"","amendmentNumber":"937","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5292","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/942?format=json","number":"","amendmentNumber":"942","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5293","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/936?format=json","number":"","amendmentNumber":"936","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5294","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/938?format=json","number":"","amendmentNumber":"938","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5295","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/940?format=json","number":"","amendmentNumber":"940","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5296","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/941?format=json","number":"","amendmentNumber":"941","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5297","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/932?format=json","number":"","amendmentNumber":"932","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5298","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/930?format=json","number":"","amendmentNumber":"930","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5299","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/933?format=json","number":"","amendmentNumber":"933","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5300","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/931?format=json","number":"","amendmentNumber":"931","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5301","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/927?format=json","number":"","amendmentNumber":"927","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5302","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/929?format=json","number":"","amendmentNumber":"929","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5303","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/928?format=json","number":"","amendmentNumber":"928","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5305","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify eligibility for 501(c)(3) status.","url":"https://api.congress.gov/v3/bill/119/s/497?format=json","number":"497","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"5306","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"GENIUS Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/394?format=json","number":"394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5307","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of Federal funds to remove the border wall or to dispose of materials previously acquired by the Federal Government to construct the border wall.","url":"https://api.congress.gov/v3/bill/118/s/5542?format=json","number":"5542","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"5308","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"Amendment SA 3299, not withstanding passage of the bill S.91, agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3299?format=json","number":"","amendmentNumber":"3299","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5309","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-09-24","policyArea_name":"","latestAction_text":"Amendment SA 3295 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3295?format=json","number":"","amendmentNumber":"3295","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5310","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-09-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Defending American Property Abroad Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5137?format=json","number":"5137","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"5311","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-19","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Accredited Investor Definition Review Act","url":"https://api.congress.gov/v3/bill/118/s/5121?format=json","number":"5121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"5312","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2769?format=json","number":"","amendmentNumber":"2769","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5313","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2358?format=json","number":"","amendmentNumber":"2358","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5314","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2338?format=json","number":"","amendmentNumber":"2338","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5315","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2166?format=json","number":"","amendmentNumber":"2166","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5316","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-12","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Consumer Financial Protection Bureau Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4521?format=json","number":"4521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"5318","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-03","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Transparency in Debt Issuance Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4439?format=json","number":"4439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}} +{"type":"node","id":"5319","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reshape Alternatives to Detention Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4364?format=json","number":"4364","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"5320","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-02","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require the head of each agency to submit to Congress and make publicly available information relating to the implementation of Executive Order 14019.","url":"https://api.congress.gov/v3/bill/118/s/4239?format=json","number":"4239","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-02","latestAction_actionTime":""}} +{"type":"node","id":"5321","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-05-01","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1929?format=json","number":"","amendmentNumber":"1929","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5322","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-04-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1864?format=json","number":"","amendmentNumber":"1864","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5323","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-04-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1865?format=json","number":"","amendmentNumber":"1865","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5324","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to accelerate workplace time-to-contract under the National Labor Relations Act.","url":"https://api.congress.gov/v3/bill/119/s/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5325","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit conflicts of interest among consulting firms that simultaneously contract with China or other covered foreign entities and the United States Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/731?format=json","number":"731","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5326","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/739?format=json","number":"","amendmentNumber":"739","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5327","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/516?format=json","number":"","amendmentNumber":"516","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5328","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/517?format=json","number":"","amendmentNumber":"517","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5329","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/518?format=json","number":"","amendmentNumber":"518","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5330","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate America's National Churchill Museum National Historic Landmark, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/650?format=json","number":"650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5331","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish the Office of the Inspector General for Ukraine, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/671?format=json","number":"671","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5332","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reauthorizing Support and Treatment for Officers in Crisis Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/419?format=json","number":"419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5333","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Jamie Reed Protecting Our Kids from Child Abuse Act","url":"https://api.congress.gov/v3/bill/119/s/312?format=json","number":"312","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5334","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Decoupling America's Artificial Intelligence Capabilities from China Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/321?format=json","number":"321","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5335","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","policyArea_name":"Labor and Employment","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Radiation Exposure Compensation Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/243?format=json","number":"243","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"5336","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/91?format=json","number":"","amendmentNumber":"91","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5337","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"End Taxpayer Funding for Abortion Providers Act","url":"https://api.congress.gov/v3/bill/119/s/125?format=json","number":"125","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5338","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/52?format=json","number":"","amendmentNumber":"52","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5339","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defense of Conscience in Health Care Act","url":"https://api.congress.gov/v3/bill/119/s/47?format=json","number":"47","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"5340","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (consideration: CR S7335-7336)","type":"SRES","title":"A resolution honoring the lives and service of Natalie and Davy Lloyd and expressing condolences to the family of Natalie and Davy Lloyd.","url":"https://api.congress.gov/v3/bill/118/sres/940?format=json","number":"940","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"5341","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"End Airline Extortion Act","url":"https://api.congress.gov/v3/bill/118/s/5470?format=json","number":"5470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"5342","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 743.","type":"S","title":"A bill to require a report by the Secretary of Homeland Security regarding the failed assassination attempt on the life of Donald J. Trump in Butler, Pennsylvania, on July 13, 2024.","url":"https://api.congress.gov/v3/bill/118/s/5105?format=json","number":"5105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5343","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Broadband Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/4930?format=json","number":"4930","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5344","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1232?format=json","number":"","amendmentNumber":"1232","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5345","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"REPORT Act","url":"https://api.congress.gov/v3/bill/119/s/848?format=json","number":"848","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5346","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/119/s/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5347","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend section 324 of the Robert T. Stafford Disaster Relief and Emergency Assistance Act to incentivize States, Indian Tribes, and Territories to close disaster recovery projects by authorizing the use of excess funds for management costs for other disaster recovery projects.","url":"https://api.congress.gov/v3/bill/119/s/773?format=json","number":"773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5348","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1215?format=json","number":"","amendmentNumber":"1215","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5349","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish an integrated project team to improve the process for scheduling appointments for health care from the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/607?format=json","number":"607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"5350","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Fair Credit Reporting Act to address the placement of security freezes for protected consumers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/619?format=json","number":"619","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"5351","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Rural Obstetrics Readiness Act","url":"https://api.congress.gov/v3/bill/119/s/380?format=json","number":"380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5352","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Improving Veteran Access to Care Act","url":"https://api.congress.gov/v3/bill/118/s/5624?format=json","number":"5624","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5353","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-12-12","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Multigenerational Care and Support Act","url":"https://api.congress.gov/v3/bill/118/s/5511?format=json","number":"5511","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5354","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Closing the Contraception Coverage Gap Act","url":"https://api.congress.gov/v3/bill/118/s/5445?format=json","number":"5445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"5355","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-20","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Coin Metal Modification Authorization and Cost Savings Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1228?format=json","number":"1228","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-20","latestAction_actionTime":""}} +{"type":"node","id":"5356","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Held at the desk.","title":"DETERRENCE Act","type":"S","url":"https://api.congress.gov/v3/bill/118/s/5398?format=json","number":"5398","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":"18:26:49"}} +{"type":"node","id":"5357","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-11-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Hospital Flexibility Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5308?format=json","number":"5308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-13","latestAction_actionTime":""}} +{"type":"node","id":"5358","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Government Service Delivery Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/5077?format=json","number":"5077","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"5359","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-09-18","policyArea_name":"Immigration","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 684.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/118/s/5092?format=json","number":"5092","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}} +{"type":"node","id":"5360","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6382; text: 09/12/2024 CR S6022)","type":"SRES","title":"A resolution supporting the designation of September 20, 2024, as \"National Concussion Awareness Day\".","url":"https://api.congress.gov/v3/bill/118/sres/812?format=json","number":"812","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5361","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-07-31","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Credit Freeze for Newborns Act","url":"https://api.congress.gov/v3/bill/118/s/4916?format=json","number":"4916","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}} +{"type":"node","id":"5362","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-25","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Flowers for Fallen Heroes Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4787?format=json","number":"4787","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"5363","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3007?format=json","number":"","amendmentNumber":"3007","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5364","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1127?format=json","number":"","amendmentNumber":"1127","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5365","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1128?format=json","number":"","amendmentNumber":"1128","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5366","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/900?format=json","number":"","amendmentNumber":"900","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5367","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/897?format=json","number":"","amendmentNumber":"897","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5368","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/899?format=json","number":"","amendmentNumber":"899","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5369","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/898?format=json","number":"","amendmentNumber":"898","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5370","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/896?format=json","number":"","amendmentNumber":"896","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5371","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/411?format=json","number":"","amendmentNumber":"411","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5372","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/302?format=json","number":"","amendmentNumber":"302","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5373","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/301?format=json","number":"","amendmentNumber":"301","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5374","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/103?format=json","number":"","amendmentNumber":"103","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5375","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/102?format=json","number":"","amendmentNumber":"102","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5376","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"Amendment SA 101 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/101?format=json","number":"","amendmentNumber":"101","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5377","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/99?format=json","number":"","amendmentNumber":"99","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5378","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/100?format=json","number":"","amendmentNumber":"100","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5379","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-13","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Rio San José and Rio Jemez Water Settlements Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/562?format=json","number":"562","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5380","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Ohkay Owingeh Rio Chama Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/563?format=json","number":"563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5381","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Zuni Indian Tribe Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/564?format=json","number":"564","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5382","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Navajo Nation Rio San José Stream System Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/565?format=json","number":"565","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5383","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S527; text: CR S525-526)","type":"SRES","title":"A resolution designating the week beginning February 3, 2025, as \"National Tribal Colleges and Universities Week\".","url":"https://api.congress.gov/v3/bill/119/sres/49?format=json","number":"49","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5384","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"","latestAction_text":"Referred to the Committee on the Judiciary.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1229?format=json","number":"","amendmentNumber":"1229","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5385","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"","latestAction_text":"Referred to the Committee on the Judiciary.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1230?format=json","number":"","amendmentNumber":"1230","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5390","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136)","type":"SRES","title":"A resolution designating March 7, 2025, as \"National Speech and Debate Education Day\".","url":"https://api.congress.gov/v3/bill/119/sres/88?format=json","number":"88","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5391","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to reauthorize and expand the National Threat Assessment Center of the Department of Homeland Security.","url":"https://api.congress.gov/v3/bill/119/s/560?format=json","number":"560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5392","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"OPTN Fee Collection Authority Act","url":"https://api.congress.gov/v3/bill/119/s/532?format=json","number":"532","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5393","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prevent unfair and deceptive acts or practices and the dissemination of false information related to pharmacy benefit management services for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/526?format=json","number":"526","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5394","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Federal Trade Commission to study the role of intermediaries in the pharmaceutical supply chain and provide Congress with appropriate policy recommendations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/527?format=json","number":"527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5395","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S799)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on the Judiciary.","url":"https://api.congress.gov/v3/bill/119/sres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5396","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Hospital Support Act","url":"https://api.congress.gov/v3/bill/119/s/335?format=json","number":"335","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5397","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-27","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S387-388; text: CR S397-398)","type":"SRES","title":"A resolution supporting the observation of National Trafficking and Modern Slavery Prevention Month during the period beginning on January 1, 2025, and ending on February 1, 2025, to raise awareness of, and opposition to, human trafficking and modern slavery.","url":"https://api.congress.gov/v3/bill/119/sres/39?format=json","number":"39","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}} +{"type":"node","id":"5398","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting First Responders from Secondary Exposure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/180?format=json","number":"180","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5399","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/162?format=json","number":"162","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"5400","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-02-01","latestAction_text":"Became Public Law No: 118-189.","type":"S","title":"A bill to amend the Controlled Substances Act to fix a technical error in the definitions.","url":"https://api.congress.gov/v3/bill/118/s/223?format=json","number":"223","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"5401","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"DUE PROCESS Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5578?format=json","number":"5578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5402","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","introducedDate":"2024-12-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3335?format=json","number":"","amendmentNumber":"3335","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5403","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Open Payments Expansion Act","url":"https://api.congress.gov/v3/bill/118/s/5510?format=json","number":"5510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5404","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 28 East Airy Street in Norristown, Pennsylvania, as the \"Charles L. Blockson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/s/814?format=json","number":"814","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5405","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Federal Crop Insurance Act to require research and development regarding a policy to insure the production of mushrooms.","url":"https://api.congress.gov/v3/bill/119/s/741?format=json","number":"741","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5406","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038; text: CR S1042-1043)","type":"SRES","title":"A resolution congratulating the Philadelphia Eagles on their victory in Super Bowl LIX in the successful 105th season of the National Football League.","url":"https://api.congress.gov/v3/bill/119/sres/84?format=json","number":"84","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"5407","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Banning SPR Oil Exports to Foreign Adversaries Act","url":"https://api.congress.gov/v3/bill/119/s/393?format=json","number":"393","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5408","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Whole-Home Repairs Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/127?format=json","number":"127","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5409","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-03","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to provide rules for payments to Havlish Settling Judgment Creditors.","url":"https://api.congress.gov/v3/bill/118/s/5413?format=json","number":"5413","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"5410","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Affordable Mental Health Care for Selected Reserve Act","url":"https://api.congress.gov/v3/bill/118/s/5217?format=json","number":"5217","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5411","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Dennis and Lois Krisfalusy Act","url":"https://api.congress.gov/v3/bill/118/s/5221?format=json","number":"5221","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5412","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-26","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to name the community-based outpatient clinic of the Department of Veterans Affairs in Monroeville, Pennsylvania, as the \"Henry Parham VA Clinic\".","url":"https://api.congress.gov/v3/bill/118/s/2549?format=json","number":"2549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":""}} +{"type":"node","id":"5413","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Tenants’ Right to Organize Act","url":"https://api.congress.gov/v3/bill/118/s/5087?format=json","number":"5087","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"5414","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-12","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Washington’s Trail—1753 National Historic Trail Feasibility Study Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5051?format=json","number":"5051","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"5415","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-03-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Railway Accountability Act","url":"https://api.congress.gov/v3/bill/118/s/1044?format=json","number":"1044","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-29","latestAction_actionTime":""}} +{"type":"node","id":"5416","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2023-11-02","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration.","type":"SRES","title":"A resolution prohibiting Senators charged with certain criminal offenses from receiving classified information, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/sres/446?format=json","number":"446","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-02","latestAction_actionTime":""}} +{"type":"node","id":"5417","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2623?format=json","number":"","amendmentNumber":"2623","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5418","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2624?format=json","number":"","amendmentNumber":"2624","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5419","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-06-12","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Nutrition Red Tape Reduction Act","url":"https://api.congress.gov/v3/bill/118/s/4523?format=json","number":"4523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"5420","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Reducing Regulatory Barriers to Housing Act","url":"https://api.congress.gov/v3/bill/118/s/4460?format=json","number":"4460","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"5421","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2024-05-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"United States Senate Commission on Mental Health Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4312?format=json","number":"4312","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-09","latestAction_actionTime":""}} +{"type":"node","id":"5422","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Promoting Affordable Connectivity Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4208?format=json","number":"4208","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"5423","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/969?format=json","number":"","amendmentNumber":"969","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5424","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1433)","type":"SRES","title":"A resolution condemning the rejection by the United States of a United Nations resolution condemning the illegal invasion of Ukraine by the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/sres/103?format=json","number":"103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5425","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/293?format=json","number":"","amendmentNumber":"293","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5426","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/189?format=json","number":"","amendmentNumber":"189","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5427","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/188?format=json","number":"","amendmentNumber":"188","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5428","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/186?format=json","number":"","amendmentNumber":"186","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5429","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/183?format=json","number":"","amendmentNumber":"183","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5430","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/187?format=json","number":"","amendmentNumber":"187","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5431","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/184?format=json","number":"","amendmentNumber":"184","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5432","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/185?format=json","number":"","amendmentNumber":"185","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5433","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/182?format=json","number":"","amendmentNumber":"182","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5434","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/181?format=json","number":"","amendmentNumber":"181","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5435","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Shadow Wolves Improvement Act","url":"https://api.congress.gov/v3/bill/119/s/572?format=json","number":"572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5436","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Water Cybersecurity Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/10483?format=json","number":"10483","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5437","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Dads Matter Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10214?format=json","number":"10214","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5438","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To direct the heads of certain agencies to review and submit to Congress a report on public-private partnerships for combating the illicit fentanyl trade, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9434?format=json","number":"9434","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"5439","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Foreign Affairs, Intelligence (Permanent Select), the Judiciary, and Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To establish a National Security Council Fentanyl Disruption Steering Group, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9435?format=json","number":"9435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"5440","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to conduct a threat analysis of any potential threats the illicit fentanyl drug trade poses to the defense interests of the United States.","url":"https://api.congress.gov/v3/bill/118/hr/9433?format=json","number":"9433","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"5441","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Keeping our Students in School Act","url":"https://api.congress.gov/v3/bill/118/hr/9307?format=json","number":"9307","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}} +{"type":"node","id":"5442","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-07-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to include room air conditioners as qualified energy property for purposes of the energy efficient home improvement credit.","url":"https://api.congress.gov/v3/bill/118/hr/9065?format=json","number":"9065","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}} +{"type":"node","id":"5443","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-06-28","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Voting Clarity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8888?format=json","number":"8888","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}} +{"type":"node","id":"5444","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1399-1400)","type":"S","title":"A bill to prohibit the Secretary of Health and Human Services from implementing, enforcing, or otherwise giving effect to a final rule regarding minimum staffing for nursing facilities, and to establish an advisory panel on the nursing home workforce.","url":"https://api.congress.gov/v3/bill/119/s/750?format=json","number":"750","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5446","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Credit Act of 1978 to remove barriers to agricultural producers in accessing funds to carry out emergency measures under the emergency conservation program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/629?format=json","number":"629","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5448","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish a tax on the sale of electric vehicles and batteries.","url":"https://api.congress.gov/v3/bill/119/s/536?format=json","number":"536","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5449","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to waive certain distance requirements for certain hospitals electing to be designated as critical access hospitals.","url":"https://api.congress.gov/v3/bill/119/s/521?format=json","number":"521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5450","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/400?format=json","number":"400","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5451","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Household Goods Shipping Consumer Protection Act","url":"https://api.congress.gov/v3/bill/119/s/337?format=json","number":"337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5452","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-27","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Foreign Adversary Communications Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/259?format=json","number":"259","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}} +{"type":"node","id":"5453","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-21","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported with an amendment in the nature of a substitute favorably.","type":"S","title":"She DRIVES Act","url":"https://api.congress.gov/v3/bill/119/s/161?format=json","number":"161","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5454","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Amtrak Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/174?format=json","number":"174","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"5455","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-11-20","latestAction_text":"Became Public Law No: 118-209.","type":"S","title":"NACIE Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/5355?format=json","number":"5355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"5456","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-03-08","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Precision Agriculture Loan Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-08","latestAction_actionTime":""}} +{"type":"node","id":"5457","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Supporting Access to Rural Community Hospitals Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5189?format=json","number":"5189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5458","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-09-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3279?format=json","number":"","amendmentNumber":"3279","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5459","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"ATTAIN Mental Health Act","url":"https://api.congress.gov/v3/bill/118/s/2444?format=json","number":"2444","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-20","latestAction_actionTime":""}} +{"type":"node","id":"5460","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-26","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"LAST ACRE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2542?format=json","number":"2542","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":""}} +{"type":"node","id":"5461","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Child Care and Development Block Grant Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4967?format=json","number":"4967","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5462","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3018?format=json","number":"","amendmentNumber":"3018","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5463","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-03-06","latestAction_text":"Became Public Law No: 118-95.","type":"S","title":"Veteran Improvement Commercial Driver License Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/656?format=json","number":"656","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"5464","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to reauthorize Long Island Sound programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5465","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXXIII of the Public Health Service Act with respect to flexibility and funding for the World Trade Center Health Program.","url":"https://api.congress.gov/v3/bill/119/s/739?format=json","number":"739","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5466","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to direct the Secretary of the Interior to conduct a study to assess the suitability and feasibility of establishing the African Burial Ground International Memorial Museum and Educational Center at the African Burial Ground National Monument, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/730?format=json","number":"730","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5467","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the African Burial Ground International Memorial Museum and Educational Center in New York, New York, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/728?format=json","number":"728","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5468","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/319?format=json","number":"","amendmentNumber":"319","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5469","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to increase access to mental health, substance use, and counseling services for first responders, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/666?format=json","number":"666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5470","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income any judgements, awards, and settlements with respect to sexual assault or sexual harassment claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/584?format=json","number":"584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5471","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 with respect to mandatory reporting of dairy products processing costs.","url":"https://api.congress.gov/v3/bill/119/s/581?format=json","number":"581","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5472","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Fort Ontario Holocaust Refugee Shelter National Historical Park in the State of New York as a unit of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/432?format=json","number":"432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5473","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to facilitate the implementation of security measures undertaken by the United States Postal Service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/463?format=json","number":"463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5474","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Setting Consumer Standards for Lithium-Ion Batteries Act","url":"https://api.congress.gov/v3/bill/119/s/389?format=json","number":"389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5475","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Postal Banking Act","url":"https://api.congress.gov/v3/bill/118/s/5627?format=json","number":"5627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5476","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Holcombe Rucker Park National Commemorative Site Act","url":"https://api.congress.gov/v3/bill/118/s/5591?format=json","number":"5591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5477","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"9/11 Memorial and Museum Act","url":"https://api.congress.gov/v3/bill/118/s/5589?format=json","number":"5589","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5478","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Strengthening America’s Turning Point Act","url":"https://api.congress.gov/v3/bill/118/s/5590?format=json","number":"5590","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5479","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Tax Fairness for Survivors Act","url":"https://api.congress.gov/v3/bill/118/s/5566?format=json","number":"5566","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"5480","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"COVID–19 Commuter Benefits Distribution Act","url":"https://api.congress.gov/v3/bill/118/s/5525?format=json","number":"5525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5481","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689-6690)","type":"SRES","title":"A resolution recognizing the 75th anniversary of the Antiquarian Booksellers' Association of America.","url":"https://api.congress.gov/v3/bill/118/sres/904?format=json","number":"904","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5482","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Data Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5170?format=json","number":"5170","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5483","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"HOPE Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5171?format=json","number":"5171","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5484","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agriculture Improvement Act of 2018 to prohibit the slaughter of equines for human consumption.","url":"https://api.congress.gov/v3/bill/119/s/775?format=json","number":"775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5485","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1431-1433)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5486","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S980-981)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on the Budget.","url":"https://api.congress.gov/v3/bill/119/sres/78?format=json","number":"78","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5487","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-02-13","latestAction_text":"Resolution agreed to in Senate with amendments by Yea-Nay Vote. 52 - 48. Record Vote Number: 87. (text: CR S1119-1125)","type":"SCONRES","title":"An original concurrent resolution setting forth the congressional budget for the United States Government for fiscal year 2025 and setting forth the appropriate budgetary levels for fiscal years 2026 through 2034.","url":"https://api.congress.gov/v3/bill/119/sconres/7?format=json","number":"7","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5488","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-11","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S863)","type":"SRES","title":"A resolution affirming that Hamas cannot retain any political or military control in the Gaza Strip.","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","number":"72","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5489","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Birthright Citizenship Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/304?format=json","number":"304","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5490","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-29","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S485-486)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/43?format=json","number":"43","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5491","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Parris Island Protection Act","url":"https://api.congress.gov/v3/bill/119/s/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"5492","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Countering Turkish Aggression Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5643?format=json","number":"5643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"5493","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7109)","type":"SRES","title":"A resolution recognizing the exceptional service of Ambassador Michael Herzog during his tenure as Ambassador of Israel to the United States.","url":"https://api.congress.gov/v3/bill/118/sres/931?format=json","number":"931","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"5494","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-12-09","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Disaster Relief and Resilience Act","url":"https://api.congress.gov/v3/bill/118/s/5457?format=json","number":"5457","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}} +{"type":"node","id":"5495","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6450)","type":"SRES","title":"A resolution designating the week of October 6, 2024, through October 12, 2024, as \"Religious Education Week\" to celebrate religious education in the United States.","url":"https://api.congress.gov/v3/bill/118/sres/860?format=json","number":"860","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5496","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Birthright Citizenship Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5223?format=json","number":"5223","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5497","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Federal Firearms Licensee Protection Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1907?format=json","number":"1907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}} +{"type":"node","id":"5498","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-19","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6226)","type":"SRES","title":"A resolution reaffirming the Republic of the Philippines' claim over Second Thomas Shoal and supporting the Filipino people in their efforts to combat aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/834?format=json","number":"834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"5499","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting American Industry and Labor from International Trade Crimes Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4955?format=json","number":"4955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5500","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution to authorize the use of military force against the Islamic Republic of Iran if the President determines that the Islamic Republic of Iran is planning or conducts an attack against any former, current, or incoming United States Government official or senior military personnel.","url":"https://api.congress.gov/v3/bill/118/sjres/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5501","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-31","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","url":"https://api.congress.gov/v3/bill/118/sjres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}} +{"type":"node","id":"5502","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-31","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S5686-5687)","type":"SRES","title":"A resolution deterring Hezbollah and the Islamic Republic of Iran for their repeated and continued acts of terrorism against the State of Israel and the United States and urging the United States to use all diplomatic tools available to hold them accountable for such actions.","url":"https://api.congress.gov/v3/bill/118/sres/784?format=json","number":"784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}} +{"type":"node","id":"5503","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Tariffs for Terrorism Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4761?format=json","number":"4761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}} +{"type":"node","id":"5504","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Review of Final Rule Reclassification of Major Sources as Area Sources Under Section 112 of the Clean Air Act\".","url":"https://api.congress.gov/v3/bill/119/sjres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5505","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to authorize the Secretary of the Interior to co-locate renewable energy projects on certain existing Federal leased areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/896?format=json","number":"896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5506","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the exclusion for certain conservation subsidies to include subsidies for water conservation or efficiency measures, storm water management measures, and wastewater management measures.","url":"https://api.congress.gov/v3/bill/119/s/857?format=json","number":"857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5508","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Glen Canyon National Recreation Area; Motor Vehicles\".","url":"https://api.congress.gov/v3/bill/119/sjres/30?format=json","number":"30","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5509","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"CCP IP Act","url":"https://api.congress.gov/v3/bill/119/s/330?format=json","number":"330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5510","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Federal Wildfire Relief Act of 2024.","url":"https://api.congress.gov/v3/bill/118/hr/10523?format=json","number":"10523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5511","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-12-19","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Co-Location Energy Act","url":"https://api.congress.gov/v3/bill/118/hr/10513?format=json","number":"10513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5512","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-11-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Cleaner Biofuels Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10252?format=json","number":"10252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}} +{"type":"node","id":"5513","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-11-21","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SCAM Platform Act","url":"https://api.congress.gov/v3/bill/118/hr/10212?format=json","number":"10212","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5514","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-11-19","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Expressing support for the designation of November 20, 2024, as \"National GIS Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1583?format=json","number":"1583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"5515","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-10-11","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Western Refined Fuel Reserve Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9957?format=json","number":"9957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}} +{"type":"node","id":"5516","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-10-11","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"HOMES Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9958?format=json","number":"9958","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}} +{"type":"node","id":"5517","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To permanently extend the first right of refusal for the purchase of Tribal assets, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9915?format=json","number":"9915","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"5518","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Combating Human Rights Abuses Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9772?format=json","number":"9772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5519","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Star-Spangled Summit Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9095?format=json","number":"9095","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"5520","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Interior relating to \"Conservation and Landscape Health\".","url":"https://api.congress.gov/v3/bill/118/hjres/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}} +{"type":"node","id":"5521","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-18","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Operational Flexibility Grazing Management Program Act","url":"https://api.congress.gov/v3/bill/118/hr/9062?format=json","number":"9062","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"5522","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"PROVE IT Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8957?format=json","number":"8957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"5523","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-04-11","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Water Systems PFAS Liability Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7944?format=json","number":"7944","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":""}} +{"type":"node","id":"5524","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/886?format=json","number":"886","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5525","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","type":"S","title":"A bill to improve the SBIR and STTR programs under the Small Business Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/853?format=json","number":"853","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5526","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stop Secret Spending Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5527","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Billion Dollar Boondoggle Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/766?format=json","number":"766","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5528","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the establishment of a process for the review of rules and sets of rules, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/648?format=json","number":"648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5529","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to repeal programs relating to funding for electric vehicle charging infrastructure, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/651?format=json","number":"651","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5530","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Presidential Allowance Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/534?format=json","number":"534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5531","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to reduce Federal spending and the deficit by terminating taxpayer financing of Presidential election campaigns.","url":"https://api.congress.gov/v3/bill/119/s/538?format=json","number":"538","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5534","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to require greater transparency for Federal regulatory decisions that impact small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/495?format=json","number":"495","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"5535","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to restore the exemption of family farms and small businesses from the definition of assets under title IV of the Higher Education Act of 1965.","url":"https://api.congress.gov/v3/bill/119/s/469?format=json","number":"469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5536","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 21.","type":"S","title":"Returning SBA to Main Street Act","url":"https://api.congress.gov/v3/bill/119/s/298?format=json","number":"298","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5537","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Snap Back Inaccurate SNAP Payments Act","url":"https://api.congress.gov/v3/bill/119/s/302?format=json","number":"302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5538","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SWAG Act","url":"https://api.congress.gov/v3/bill/119/s/210?format=json","number":"210","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5539","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Ensuring Accurate and Complete Abortion Data Reporting Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/178?format=json","number":"178","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5540","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protect Funding for Women's Health Care Act","url":"https://api.congress.gov/v3/bill/119/s/177?format=json","number":"177","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5541","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-17","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"RED TAPE Act","url":"https://api.congress.gov/v3/bill/119/s/148?format=json","number":"148","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}} +{"type":"node","id":"5542","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Sarah's Law","url":"https://api.congress.gov/v3/bill/119/s/84?format=json","number":"84","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"5543","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"Amendment SA 8, as amended, agreed to in Senate by Yea-Nay Vote. 75 - 24. Record Vote Number: 6.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/8?format=json","number":"","amendmentNumber":"8","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}} +{"type":"node","id":"5544","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/900?format=json","number":"900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5545","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of funds to implement, administer, or enforce measures requiring certain employees to refer to an individual by the preferred pronouns of such individual or a name other than the legal name of such individual, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/839?format=json","number":"839","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5546","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for the imposition of sanctions with respect to forced organ harvesting within the People's Republic of China, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/817?format=json","number":"817","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5547","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the indexing of certain assets for purposes of determining gain or loss.","url":"https://api.congress.gov/v3/bill/119/s/798?format=json","number":"798","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5548","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to amend title 14, United States Code, to make appropriations for Coast Guard pay in the event an appropriations Act expires before the enactment of a new appropriations Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5549","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Modernizing Access to Our Public Oceans Act","url":"https://api.congress.gov/v3/bill/119/s/759?format=json","number":"759","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5550","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to require the impaneling of a new jury if a jury fails to recommend by unanimous vote a sentence for conviction of a crime punishable by death.","url":"https://api.congress.gov/v3/bill/119/s/718?format=json","number":"718","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5552","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1013?format=json","number":"","amendmentNumber":"1013","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5553","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/951?format=json","number":"","amendmentNumber":"951","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5554","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/952?format=json","number":"","amendmentNumber":"952","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5555","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/954?format=json","number":"","amendmentNumber":"954","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5556","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/955?format=json","number":"","amendmentNumber":"955","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5557","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/956?format=json","number":"","amendmentNumber":"956","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5558","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/953?format=json","number":"","amendmentNumber":"953","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5559","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the designation of certain airports as ports of entry.","url":"https://api.congress.gov/v3/bill/119/s/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5560","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (consideration: CR S1041-1042)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Commerce, Science, and Transportation.","url":"https://api.congress.gov/v3/bill/119/sres/82?format=json","number":"82","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"5561","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the excise taxes on taxable chemicals and taxable substances.","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","number":"615","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"5562","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require benefit eligibility determination to be made within a certain period of time.","url":"https://api.congress.gov/v3/bill/119/s/571?format=json","number":"571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5563","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Astronaut Ground Travel Support Act","url":"https://api.congress.gov/v3/bill/119/s/582?format=json","number":"582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5564","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the exemption for telehealth services from certain high deductible health plan rules.","url":"https://api.congress.gov/v3/bill/119/s/763?format=json","number":"763","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5565","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/s/808?format=json","number":"808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5566","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Food Security Act of 1985 to reauthorize the voluntary public access and habitat incentive program.","url":"https://api.congress.gov/v3/bill/119/s/704?format=json","number":"704","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5567","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1154?format=json","number":"","amendmentNumber":"1154","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5568","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1152?format=json","number":"","amendmentNumber":"1152","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5569","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1153?format=json","number":"","amendmentNumber":"1153","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5570","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1155?format=json","number":"","amendmentNumber":"1155","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5571","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1149?format=json","number":"","amendmentNumber":"1149","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5572","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1150?format=json","number":"","amendmentNumber":"1150","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5573","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1151?format=json","number":"","amendmentNumber":"1151","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5574","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1148?format=json","number":"","amendmentNumber":"1148","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5575","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1147?format=json","number":"","amendmentNumber":"1147","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5577","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Mineral Leasing Act to eliminate an administrative fee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/451?format=json","number":"451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5578","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to promote domestic energy production, to require onshore and offshore oil and natural gas lease sales, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/460?format=json","number":"460","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5580","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/362?format=json","number":"362","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5582","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Next of Kin Collections Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/274?format=json","number":"274","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"5583","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Crow Tribe Water Rights Settlement Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/240?format=json","number":"240","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5584","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Secretary of Transportation to issue rules requiring the inclusion of new safety equipment in school buses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/828?format=json","number":"828","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5586","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1001?format=json","number":"","amendmentNumber":"1001","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5587","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 971 not agreed to in Senate by Yea-Nay Vote. 49 - 51. Record Vote Number: 82.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/971?format=json","number":"","amendmentNumber":"971","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5588","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/970?format=json","number":"","amendmentNumber":"970","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5589","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/972?format=json","number":"","amendmentNumber":"972","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5590","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/392?format=json","number":"","amendmentNumber":"392","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5591","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/210?format=json","number":"","amendmentNumber":"210","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5592","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/180?format=json","number":"","amendmentNumber":"180","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5593","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/179?format=json","number":"","amendmentNumber":"179","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5594","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure due process protections of individuals in the United States against unlawful detention based solely on a protected characteristic.","url":"https://api.congress.gov/v3/bill/119/s/634?format=json","number":"634","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"5595","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Youth Poisoning Protection Act","url":"https://api.congress.gov/v3/bill/119/s/289?format=json","number":"289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5596","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-27","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Bottles and Breastfeeding Equipment Screening Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/260?format=json","number":"260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5597","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/5?format=json","number":"","amendmentNumber":"5","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5598","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/2?format=json","number":"","amendmentNumber":"2","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5599","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/4?format=json","number":"","amendmentNumber":"4","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5600","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/3?format=json","number":"","amendmentNumber":"3","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5601","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Uniformed Services Leave Parity Act","url":"https://api.congress.gov/v3/bill/118/s/5348?format=json","number":"5348","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"5602","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-14","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Improving Access to Prenatal Care for Military Families Act","url":"https://api.congress.gov/v3/bill/118/s/5330?format=json","number":"5330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"5603","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-15","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Maternal Health for Veterans Act","url":"https://api.congress.gov/v3/bill/118/s/2026?format=json","number":"2026","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-15","latestAction_actionTime":""}} +{"type":"node","id":"5604","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/905?format=json","number":"905","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5605","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1583)","type":"SRES","title":"A resolution expressing support for the designation of the week of March 3 through March 7, 2025, as \"National Social and Emotional Learning Week\" to recognize the critical role social and emotional learning plays in supporting the academic success and overall well-being of students, educators, and families.","url":"https://api.congress.gov/v3/bill/119/sres/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5606","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1583)","type":"SRES","title":"A resolution affirming the rule of law and the legitimacy of judicial review.","url":"https://api.congress.gov/v3/bill/119/sres/108?format=json","number":"108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5607","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1583-1584)","type":"SRES","title":"A resolution condemning Russia's illegal abduction of Ukrainian children.","url":"https://api.congress.gov/v3/bill/119/sres/110?format=json","number":"110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5608","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1498-1499)","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 to establish a voluntary program to reduce food loss and waste, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/835?format=json","number":"835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5609","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1461-1462)","type":"S","title":"A bill to increase United States jobs through greater United States exports to Africa and Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5611","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1431)","type":"S","title":"A bill to terminate authorizations for the use of military force and declarations of war no later than 10 years after the enactment of such authorizations or declarations.","url":"https://api.congress.gov/v3/bill/119/s/804?format=json","number":"804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5613","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S1347-1348; text: CR S1348-1350)","type":"S","title":"A bill to amend title 31, United States Code, to prevent fraudulent transactions at virtual currency kiosks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5614","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1352)","type":"SRES","title":"A resolution expressing the sense of the Senate that the operations of the National Institutes of Health should not experience any interruption, delay, or funding disruption in violation of the law and that the workforce of the National Institutes of Health is essential to sustaining medical progress.","url":"https://api.congress.gov/v3/bill/119/sres/93?format=json","number":"93","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5616","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1212?format=json","number":"","amendmentNumber":"1212","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5617","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/876?format=json","number":"","amendmentNumber":"876","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5618","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/525?format=json","number":"","amendmentNumber":"525","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5619","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/521?format=json","number":"","amendmentNumber":"521","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5620","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/520?format=json","number":"","amendmentNumber":"520","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5621","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/526?format=json","number":"","amendmentNumber":"526","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5622","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/522?format=json","number":"","amendmentNumber":"522","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5623","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/519?format=json","number":"","amendmentNumber":"519","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5626","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Secure Rural Schools Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/356?format=json","number":"356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5629","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Finance. (text: CR S374)","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that tax-exempt fraternal benefit societies have historically provided and continue to provide critical benefits to the people and communities of the United States.","url":"https://api.congress.gov/v3/bill/119/sconres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5631","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"MAILS Act","url":"https://api.congress.gov/v3/bill/119/s/155?format=json","number":"155","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"5632","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to authorize an additional district judgeship for the district of Idaho.","url":"https://api.congress.gov/v3/bill/119/s/54?format=json","number":"54","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"5633","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-07","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 154 First Avenue East in Jerome, Idaho, as the \"Representative Maxine Bell Post Office\".","url":"https://api.congress.gov/v3/bill/119/s/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"5634","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-12-16","policyArea_name":"","latestAction_text":"Amendment SA 3331, under the order of 12/20/2024, not having achieved 60 votes in the affirmative, not agreed to in Senate by Yea-Nay Vote. 34 - 62. Record Vote Number: 336.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3331?format=json","number":"","amendmentNumber":"3331","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"5635","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6730-6731)","type":"SRES","title":"A resolution designating September 2024 as \"National Prostate Cancer Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/sres/915?format=json","number":"915","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5636","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-23","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6337; text: CR S6336)","type":"SRES","title":"A resolution recognizing and supporting the goals and ideals of National Forensic Science Week.","url":"https://api.congress.gov/v3/bill/118/sres/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"5637","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3283?format=json","number":"","amendmentNumber":"3283","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5638","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-07-13","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 730.","type":"S","title":"Bring Our Heroes Home Act","url":"https://api.congress.gov/v3/bill/118/s/2315?format=json","number":"2315","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5639","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of Steven D. Symms, former United States Senator for the State of Idaho.","url":"https://api.congress.gov/v3/bill/118/sres/813?format=json","number":"813","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"5640","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3172?format=json","number":"","amendmentNumber":"3172","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5641","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/118/s/2085?format=json","number":"2085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}} +{"type":"node","id":"5642","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2361?format=json","number":"","amendmentNumber":"2361","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5643","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2359?format=json","number":"","amendmentNumber":"2359","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5645","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Export-Import Bank Act of 1945 to exclude certain financing from the calculation of the default rate for purposes of determining when the lending cap under such Act applies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/753?format=json","number":"753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5646","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1178?format=json","number":"","amendmentNumber":"1178","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5647","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1180?format=json","number":"","amendmentNumber":"1180","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5648","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1179?format=json","number":"","amendmentNumber":"1179","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5649","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1177?format=json","number":"","amendmentNumber":"1177","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5650","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1176?format=json","number":"","amendmentNumber":"1176","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5651","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1173?format=json","number":"","amendmentNumber":"1173","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5652","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1174?format=json","number":"","amendmentNumber":"1174","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5653","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1175?format=json","number":"","amendmentNumber":"1175","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5654","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1172?format=json","number":"","amendmentNumber":"1172","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5655","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1171?format=json","number":"","amendmentNumber":"1171","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5656","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/493?format=json","number":"","amendmentNumber":"493","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5657","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/383?format=json","number":"","amendmentNumber":"383","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5658","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/385?format=json","number":"","amendmentNumber":"385","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5659","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/384?format=json","number":"","amendmentNumber":"384","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5660","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/381?format=json","number":"","amendmentNumber":"381","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5661","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/375?format=json","number":"","amendmentNumber":"375","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5662","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/380?format=json","number":"","amendmentNumber":"380","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5663","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/377?format=json","number":"","amendmentNumber":"377","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5664","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/119/s/829?format=json","number":"829","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5665","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to extend and modify the transportation grant program of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/827?format=json","number":"827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5667","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Unborn Child Support Act","url":"https://api.congress.gov/v3/bill/119/s/230?format=json","number":"230","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5668","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Chiropractic Medicare Coverage Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/106?format=json","number":"106","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5669","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Miracle on Ice Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/94?format=json","number":"94","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"5670","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Homeward Bound Act","url":"https://api.congress.gov/v3/bill/118/s/5113?format=json","number":"5113","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"5671","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-05-09","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Bank Service Company Examination Coordination Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1501?format=json","number":"1501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}} +{"type":"node","id":"5672","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3094?format=json","number":"","amendmentNumber":"3094","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5673","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3072?format=json","number":"","amendmentNumber":"3072","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5674","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2362?format=json","number":"","amendmentNumber":"2362","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5675","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-10","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Firearms Interstate Commerce Reform Act","url":"https://api.congress.gov/v3/bill/118/s/4652?format=json","number":"4652","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"5676","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Unlocking Capital for Small Businesses Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4493?format=json","number":"4493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"5677","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-23","latestAction_text":"Held at the desk.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/118/s/4404?format=json","number":"4404","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":"17:04:32"}} +{"type":"node","id":"5678","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-02-09","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1532?format=json","number":"","amendmentNumber":"1532","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5679","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2023-07-12","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/212?format=json","number":"","amendmentNumber":"212","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5680","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-19","latestAction_text":"Referred to the Committee on Foreign Relations.","type":"SRES","title":"A resolution reaffirming the deep and steadfast partnership between, and the ties that bind, the United States and Canada in support of economic and national security.","url":"https://api.congress.gov/v3/bill/118/sres/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-19","latestAction_actionTime":""}} +{"type":"node","id":"5681","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2023-11-13","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"EAGLE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3291?format=json","number":"3291","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}} +{"type":"node","id":"5682","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2023-10-31","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to include certain over-the-counter dietary supplement products and foods for special dietary uses as qualified medical expenses.","url":"https://api.congress.gov/v3/bill/118/s/3172?format=json","number":"3172","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-31","latestAction_actionTime":""}} +{"type":"node","id":"5683","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2022-03-24","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"S","title":"Dodd-Frank Material Disclosure Improvement Act","url":"https://api.congress.gov/v3/bill/117/s/3923?format=json","number":"3923","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-04-05","latestAction_actionTime":""}} +{"type":"node","id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5685","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to authorize the Secretary of Homeland Security or the Attorney General to deputize a State or local law enforcement officer to protect certain events with temporary flight restrictions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/663?format=json","number":"663","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5686","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863-864)","type":"SRES","title":"An original resolution authorizing expenditures by the Select Committee on Intelligence.","url":"https://api.congress.gov/v3/bill/119/sres/73?format=json","number":"73","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5687","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Focus on Learning Act","url":"https://api.congress.gov/v3/bill/119/s/404?format=json","number":"404","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5688","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/119/s/384?format=json","number":"384","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5689","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Restoring Trade Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/206?format=json","number":"206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5690","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Minors from Medical Malpractice Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/209?format=json","number":"209","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5691","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Not One More Inch or Acre Act","url":"https://api.congress.gov/v3/bill/119/s/176?format=json","number":"176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5692","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"PLO and PA Terror Payments Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/198?format=json","number":"198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"5693","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S140)","type":"SRES","title":"A resolution condemning the commutation of the death sentence of Marvin Charles Gabrion II granted by President Biden on December 23, 2024.","url":"https://api.congress.gov/v3/bill/119/sres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"5694","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S140)","type":"SRES","title":"A resolution condemning the commutation of the death sentence of Anthony George Battle granted by President Biden on December 23, 2024.","url":"https://api.congress.gov/v3/bill/119/sres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"5695","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Expel Illegal Chinese Police Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/49?format=json","number":"49","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"5696","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-08","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Justice for 9/11 Act","url":"https://api.congress.gov/v3/bill/119/s/34?format=json","number":"34","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}} +{"type":"node","id":"5697","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-19","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S7242)","type":"SRES","title":"A resolution condemning the commutation of Michael Conahan granted by President Biden on December 12, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/935?format=json","number":"935","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5698","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/118/s/5431?format=json","number":"5431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"5699","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-05","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","url":"https://api.congress.gov/v3/bill/118/sjres/119?format=json","number":"119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"5700","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protecting Our Essential Medicines Act","url":"https://api.congress.gov/v3/bill/118/s/5419?format=json","number":"5419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}} +{"type":"node","id":"5701","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Expel Illegal Chinese Police Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5410?format=json","number":"5410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"5702","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-02-01","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Illegitimate Court Counteraction Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}} +{"type":"node","id":"5703","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Anti-BDS Labeling Act","url":"https://api.congress.gov/v3/bill/118/s/5371?format=json","number":"5371","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5704","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Food, Conservation, and Energy Act of 2008 to provide families year-round access to nutrition incentives under the Gus Schumacher Nutrition Incentive Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/813?format=json","number":"813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5705","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for increased reporting regarding Department of State Taiwan guidelines.","url":"https://api.congress.gov/v3/bill/119/s/821?format=json","number":"821","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5706","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Research and Development, Competition, and Innovation Act to clarify the definition of foreign country for purposes of malign foreign talent recruitment restriction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5708","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish and implement a multi-year Legal Gold and Mining Partnership Strategy to reduce the negative environmental and social impacts of illicit gold mining in the Western Hemisphere, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/799?format=json","number":"799","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5711","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5712","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the exclusion for gain from qualified small business stock.","url":"https://api.congress.gov/v3/bill/119/s/695?format=json","number":"695","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5714","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"SAFE Orbit Act","url":"https://api.congress.gov/v3/bill/119/s/428?format=json","number":"428","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5715","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Fairness for Servicemembers and their Families Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/385?format=json","number":"385","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5716","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Promoting Resilient Buildings Act","url":"https://api.congress.gov/v3/bill/119/s/388?format=json","number":"388","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"5717","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Cattle Fever Tick Eradication Program Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/319?format=json","number":"319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5718","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-17","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Public Safety First Act","url":"https://api.congress.gov/v3/bill/119/s/149?format=json","number":"149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}} +{"type":"node","id":"5719","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to rename the medical center of the Department of Veterans Affairs in Dallas, Texas, as the \"Eddie Bernice Johnson VA Medical Center\".","url":"https://api.congress.gov/v3/bill/119/s/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5720","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"Amendment SA 14 agreed to in Senate by Yea-Nay Vote. 70 - 25. Record Vote Number: 3.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/14?format=json","number":"","amendmentNumber":"14","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"5721","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Constitutional Concealed Carry Reciprocity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"5722","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"118","introducedDate":"2024-12-21","policyArea_name":"","latestAction_text":"Amendment SA 3362 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3362?format=json","number":"","amendmentNumber":"3362","latestAction":"","latestAction_actionDate":"2024-12-21","latestAction_actionTime":""}} +{"type":"node","id":"5723","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"COINS Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5648?format=json","number":"5648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5725","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to provide the President with authority to enter into a comprehensive trade agreement with the United Kingdom, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/776?format=json","number":"776","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5726","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/708?format=json","number":"708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5727","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"Amendment SA 1223 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1223?format=json","number":"","amendmentNumber":"1223","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5728","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1208?format=json","number":"","amendmentNumber":"1208","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5729","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1209?format=json","number":"","amendmentNumber":"1209","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5730","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1210?format=json","number":"","amendmentNumber":"1210","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5731","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/988?format=json","number":"","amendmentNumber":"988","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5732","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/987?format=json","number":"","amendmentNumber":"987","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5733","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/199?format=json","number":"","amendmentNumber":"199","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5734","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/200?format=json","number":"","amendmentNumber":"200","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5735","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/204?format=json","number":"","amendmentNumber":"204","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5736","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/202?format=json","number":"","amendmentNumber":"202","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5737","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/201?format=json","number":"","amendmentNumber":"201","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5738","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/203?format=json","number":"","amendmentNumber":"203","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5739","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/196?format=json","number":"","amendmentNumber":"196","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5740","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/193?format=json","number":"","amendmentNumber":"193","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5741","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/194?format=json","number":"","amendmentNumber":"194","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5742","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/195?format=json","number":"","amendmentNumber":"195","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5743","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/190?format=json","number":"","amendmentNumber":"190","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5744","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Combat-Injured Veterans Tax Fairness Act of 2016 to apply to members of the Coast Guard when the Coast Guard is not operating as a service in the Department of the Navy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/878?format=json","number":"878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5745","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to provide consumers with the right to delete their genomic data, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/863?format=json","number":"863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5746","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish a commission to review operations at the Veterans Health Administration and submit to Congress reports with respect to that review, and for other programs.","url":"https://api.congress.gov/v3/bill/119/s/787?format=json","number":"787","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5749","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/250?format=json","number":"","amendmentNumber":"250","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5750","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/251?format=json","number":"","amendmentNumber":"251","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5751","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/252?format=json","number":"","amendmentNumber":"252","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5752","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide an advance refundable credit to offset certain flood insurance premiums, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/586?format=json","number":"586","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5753","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S931-932)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Health, Education, Labor and Pensions.","url":"https://api.congress.gov/v3/bill/119/sres/76?format=json","number":"76","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5754","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to prohibit Federal Medicaid funding for the administrative costs of providing health benefits to individuals who are unauthorized immigrants.","url":"https://api.congress.gov/v3/bill/119/s/523?format=json","number":"523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"5756","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title II of the Social Security Act to increase the age threshold for eligibility for child's insurance benefits on the basis of disability.","url":"https://api.congress.gov/v3/bill/119/s/466?format=json","number":"466","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5759","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protecting Students on Campus Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/163?format=json","number":"163","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"5760","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Offshore Energy Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/109?format=json","number":"109","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5761","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Housing Reform for American Families Act","url":"https://api.congress.gov/v3/bill/119/s/120?format=json","number":"120","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5762","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Connected MOM Act","url":"https://api.congress.gov/v3/bill/119/s/141?format=json","number":"141","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5763","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/65?format=json","number":"","amendmentNumber":"65","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5764","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1498)","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize the program relating to lifespan respite care, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/830?format=json","number":"830","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5765","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1359; text: CR S1358)","type":"SRES","title":"A resolution designating the week of February 24 through February 28, 2025, as \"Public Schools Week\".","url":"https://api.congress.gov/v3/bill/119/sres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5766","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-12-10","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6936; text: CR S6914-6915)","type":"SRES","title":"A resolution designating December 14, 2024, as \"National Wreaths Across America Day\".","url":"https://api.congress.gov/v3/bill/118/sres/924?format=json","number":"924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"5767","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2023-05-02","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1465)","type":"S","title":"Educational Opportunity and Success Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1397?format=json","number":"1397","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-02","latestAction_actionTime":""}} +{"type":"node","id":"5768","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2023-06-07","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 184.","type":"S","title":"Special Diabetes Program Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1855?format=json","number":"1855","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5770","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S6371; Sponsor introductory remarks on measure: CR S6371)","type":"S","title":"Catching Up Family Caregivers Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5149?format=json","number":"5149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5771","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S6371)","type":"S","title":"Improving Retirement Security for Family Caregivers Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5148?format=json","number":"5148","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5772","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-16","latestAction_text":"Read twice and referred to the Committee on Armed Services. (Sponsor introductory remarks on measure: CR S6053-6054)","type":"S","title":"Armed Forces Crisis Intervention Notification Act","url":"https://api.congress.gov/v3/bill/118/s/5055?format=json","number":"5055","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}} +{"type":"node","id":"5773","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3242?format=json","number":"","amendmentNumber":"3242","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5774","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-30","policyArea_name":"","latestAction_text":"Amendment SA 3201 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3201?format=json","number":"","amendmentNumber":"3201","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"5775","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2885?format=json","number":"","amendmentNumber":"2885","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5776","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2884?format=json","number":"","amendmentNumber":"2884","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5777","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2580?format=json","number":"","amendmentNumber":"2580","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5778","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"117","introducedDate":"2022-05-12","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"NAPA Reauthorization Act","url":"https://api.congress.gov/v3/bill/117/s/4203?format=json","number":"4203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-05-12","latestAction_actionTime":""}} +{"type":"node","id":"5779","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-05-31","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S1846)","type":"S","title":"Comprehensive National Mercury Monitoring Act","url":"https://api.congress.gov/v3/bill/118/s/1772?format=json","number":"1772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-31","latestAction_actionTime":""}} +{"type":"node","id":"5780","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-22","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S3857)","type":"S","title":"Investing in Digital Skills Act","url":"https://api.congress.gov/v3/bill/118/s/4391?format=json","number":"4391","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}} +{"type":"node","id":"5781","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3719)","type":"SRES","title":"A resolution supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/sres/690?format=json","number":"690","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}} +{"type":"node","id":"5782","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-05-14","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 427.","type":"S","title":"Lifespan Respite Care Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4325?format=json","number":"4325","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}} +{"type":"node","id":"5783","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-05-02","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3319)","type":"S","title":"Loggers Economic Assistance and Relief Act","url":"https://api.congress.gov/v3/bill/118/s/4251?format=json","number":"4251","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-02","latestAction_actionTime":""}} +{"type":"node","id":"5784","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to expand and expedite access to cardiac rehabilitation programs and pulmonary rehabilitation programs under the Medicare program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/717?format=json","number":"717","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5785","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to enhance the rehabilitation credit for buildings in rural areas.","url":"https://api.congress.gov/v3/bill/119/s/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"5786","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the allowance for depreciation, amortization, or depletion for purposes of determining the income limitation on the deduction for business interest.","url":"https://api.congress.gov/v3/bill/119/s/559?format=json","number":"559","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"5787","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Environment and Public Works.","url":"https://api.congress.gov/v3/bill/119/sres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5788","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 6.","type":"S","title":"Brownfields Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/347?format=json","number":"347","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5789","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 7.","type":"S","title":"STEWARD Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/351?format=json","number":"351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5790","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Stop Funding Global Terrorists Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/313?format=json","number":"313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5791","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-15","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Rural Broadband Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5792","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Historic Tax Credit Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/5607?format=json","number":"5607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"5793","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Fiscally Responsible Highway Funding Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5235?format=json","number":"5235","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5794","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-02-07","latestAction_text":"Held at the desk.","type":"S","title":"Rural Broadband Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/275?format=json","number":"275","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":"10:03:42"}} +{"type":"node","id":"5795","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"CHANGE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2379?format=json","number":"2379","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}} +{"type":"node","id":"5796","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2865?format=json","number":"","amendmentNumber":"2865","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5797","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2206?format=json","number":"","amendmentNumber":"2206","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5798","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Energy","latestAction_text":"By Senator Carper from Committee on Environment and Public Works filed written report. Report No. 118-182.","type":"S","title":"ADVANCE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1111?format=json","number":"1111","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-17","latestAction_actionTime":""}} +{"type":"node","id":"5799","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Preserving JROTC Programs Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4513?format=json","number":"4513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"5800","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"New Source Performance Standards for Greenhouse Gas Emissions From New, Modified, and Reconstructed Fossil Fuel-Fired Electric Generating Units; Emission Guidelines for Greenhouse Gas Emissions From Existing Fossil Fuel-Fired Electric Generating Units; and Repeal of the Affordable Clean Energy Rule\".","url":"https://api.congress.gov/v3/bill/118/sjres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"5801","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Held at the desk.","type":"S","title":"Second Chance Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4477?format=json","number":"4477","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":"10:41:56"}} +{"type":"node","id":"5802","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-05-01","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1924?format=json","number":"","amendmentNumber":"1924","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5803","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Ally’s Act","url":"https://api.congress.gov/v3/bill/118/s/1135?format=json","number":"1135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}} +{"type":"node","id":"5804","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1219?format=json","number":"","amendmentNumber":"1219","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5805","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/923?format=json","number":"","amendmentNumber":"923","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5806","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/404?format=json","number":"","amendmentNumber":"404","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5807","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/341?format=json","number":"","amendmentNumber":"341","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5808","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/336?format=json","number":"","amendmentNumber":"336","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5809","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/338?format=json","number":"","amendmentNumber":"338","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5810","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/340?format=json","number":"","amendmentNumber":"340","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5811","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/339?format=json","number":"","amendmentNumber":"339","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5812","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/337?format=json","number":"","amendmentNumber":"337","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5813","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish the Health Engagement Hub Demonstration Program to increase access to treatment for opioid use disorder and other substance use disorders, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/665?format=json","number":"665","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5814","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Fire Ready Nation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/306?format=json","number":"306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5815","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-01-27","policyArea_name":"Commerce","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"S","title":"Promoting Resilient Supply Chains Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/257?format=json","number":"257","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5816","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Weather Act Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5601?format=json","number":"5601","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5817","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-12-18","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"NASA Transition Authorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5600?format=json","number":"5600","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5818","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Coast Guard Authorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5468?format=json","number":"5468","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"5819","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"National Quantum Initiative Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5411?format=json","number":"5411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"5820","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6451-6452)","type":"SRES","title":"A resolution expressing support for the designation of the week of September 23 through September 29, 2024, as \"Rail Safety Week\" and supporting the goals and ideals of Rail Safety Week to reduce highway-rail grade crossing and trespasser-related incidents, fatalities, injuries, and derailments, improve the safe transportation of hazardous materials by rail, and prevent rail worker fatalities.","url":"https://api.congress.gov/v3/bill/118/sres/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5821","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Quinault Indian Nation Land Transfer Act","url":"https://api.congress.gov/v3/bill/118/s/5273?format=json","number":"5273","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5822","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lower Elwha Klallam Tribe Project Lands Restoration Act","url":"https://api.congress.gov/v3/bill/118/s/5287?format=json","number":"5287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5823","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Stop Smuggling Illicit Synthetic Drugs on U.S. Transportation Networks Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5285?format=json","number":"5285","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5826","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to allow a period in which members of the clergy may revoke their exemption from Social Security coverage, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/639?format=json","number":"639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}} +{"type":"node","id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5828","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"WALL Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/293?format=json","number":"293","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5829","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-15","latestAction_text":"Referred to the Committee on Finance. (text: CR S187)","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that the proposed \"joint interpretation\" of Annex 14-C of the United States-Mexico-Canada Agreement prepared by United States Trade Representative Katherine Tai is of no legal effect with respect to the United States or any United States person unless it is approved by Congress.","url":"https://api.congress.gov/v3/bill/119/sconres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"5830","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-01-06","policyArea_name":"Immigration","latestAction_text":"Became Public Law No: 119-1.","type":"S","title":"Laken Riley Act","url":"https://api.congress.gov/v3/bill/119/s/5?format=json","number":"5","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5831","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S6371-6372)","type":"S","title":"Stop the Scroll Act","url":"https://api.congress.gov/v3/bill/118/s/5150?format=json","number":"5150","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"5832","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-12-12","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","type":"S","title":"Citizen Ballot Protection Act","url":"https://api.congress.gov/v3/bill/118/s/3470?format=json","number":"3470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5833","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5789-5790)","type":"SRES","title":"A resolution honoring the life and enduring legacy of William \"Willie\" Howard Mays, Jr.","url":"https://api.congress.gov/v3/bill/118/sres/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5834","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-31","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Retirement Fairness for Charities and Educational Institutions Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4917?format=json","number":"4917","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}} +{"type":"node","id":"5835","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Lulu’s Law","url":"https://api.congress.gov/v3/bill/118/s/4832?format=json","number":"4832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"5836","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2605?format=json","number":"","amendmentNumber":"2605","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5837","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-11-09","latestAction_text":"Committee on Indian Affairs. Hearings held.","type":"S","title":"Poarch Band of Creek Indians Parity Act","url":"https://api.congress.gov/v3/bill/118/s/3263?format=json","number":"3263","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"5838","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Water Research Optimization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4500?format=json","number":"4500","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"5839","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-06-11","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4023; text: CR S4022-4023)","type":"SRES","title":"A resolution commending the University of South Alabama on the occasion of its 60th anniversary and its years of service to the State of Alabama and the United States.","url":"https://api.congress.gov/v3/bill/118/sres/728?format=json","number":"728","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"5840","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-23","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small Entity Update Act","url":"https://api.congress.gov/v3/bill/118/s/4400?format=json","number":"4400","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"5841","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-05-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"MOMS Act","url":"https://api.congress.gov/v3/bill/118/s/4296?format=json","number":"4296","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-09","latestAction_actionTime":""}} +{"type":"node","id":"5842","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-04-16","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Clergy Act","url":"https://api.congress.gov/v3/bill/118/s/4126?format=json","number":"4126","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}} +{"type":"node","id":"5843","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/752?format=json","number":"","amendmentNumber":"752","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5844","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to require the Secretary of Defense and the Secretary of State to monitor efforts by the People's Republic of China to build or buy strategic foreign ports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/777?format=json","number":"777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5845","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat membership in a health care sharing ministry as a medical expense, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/653?format=json","number":"653","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5846","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to require the Secretary of Health and Human Services to develop a strategy for public health preparedness and response to artificial intelligence threats, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/501?format=json","number":"501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"5847","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income gain from the sale of qualified real property interests acquired under the authority of the Readiness and Environmental Protection Integration (REPI) program administered by the Department of Defense pursuant to section 2684a of title 10, United States Code, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/439?format=json","number":"439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5848","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Assistance Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/352?format=json","number":"352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5850","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Restoring Access to Mountain Homes Act","url":"https://api.congress.gov/v3/bill/119/s/267?format=json","number":"267","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"5851","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-24","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Interstate Transport Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/246?format=json","number":"246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5852","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"POLICE Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/212?format=json","number":"212","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5853","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-14","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/46?format=json","number":"","amendmentNumber":"46","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5854","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-11-06","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit Federal agencies from restricting the use of convertible virtual currency by a person to purchase goods or services for the person's own use, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/3229?format=json","number":"3229","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-06","latestAction_actionTime":""}} +{"type":"node","id":"5855","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Assistance Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/5514?format=json","number":"5514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5856","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-12","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Interstate Transport Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5513?format=json","number":"5513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5857","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-12","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"United States-Abraham Accords Cooperation and Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5517?format=json","number":"5517","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5858","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Flexible Compliance for Emergencies and Natural Disasters Act","url":"https://api.congress.gov/v3/bill/118/s/5518?format=json","number":"5518","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"5859","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Incentivizing Readiness and Environmental Protection Integration Sales Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5409?format=json","number":"5409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"5860","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Food and Drug Administration Foods Accountability Act","url":"https://api.congress.gov/v3/bill/118/s/5103?format=json","number":"5103","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"5861","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3260?format=json","number":"","amendmentNumber":"3260","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5862","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-18","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6029; text: CR S6024)","type":"SRES","title":"A resolution recognizing December 17 as \"Wright Brothers Day\" and commemorating the 120th anniversary of the first powered flight.","url":"https://api.congress.gov/v3/bill/118/sres/513?format=json","number":"513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5863","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Families Care Act","url":"https://api.congress.gov/v3/bill/118/s/4831?format=json","number":"4831","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"5864","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1132?format=json","number":"","amendmentNumber":"1132","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5865","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/740?format=json","number":"","amendmentNumber":"740","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5866","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 311 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/311?format=json","number":"","amendmentNumber":"311","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5867","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/274?format=json","number":"","amendmentNumber":"274","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5868","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/273?format=json","number":"","amendmentNumber":"273","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5869","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/272?format=json","number":"","amendmentNumber":"272","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5870","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/270?format=json","number":"","amendmentNumber":"270","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5871","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/268?format=json","number":"","amendmentNumber":"268","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5872","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/269?format=json","number":"","amendmentNumber":"269","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5873","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/271?format=json","number":"","amendmentNumber":"271","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5874","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on the Judiciary, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Know Who Owns Your Home Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10465?format=json","number":"10465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"5875","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-19","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Consumers LEARN AI Act","url":"https://api.congress.gov/v3/bill/118/hr/9673?format=json","number":"9673","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"5876","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Diaz Bonville.","url":"https://api.congress.gov/v3/bill/118/hres/1465?format=json","number":"1465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"5877","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-04","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Reducing Regulatory Barriers to Housing Act","url":"https://api.congress.gov/v3/bill/118/hr/8604?format=json","number":"8604","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":""}} +{"type":"node","id":"5878","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Advancing Menopause Care and Mid-Life Women’s Health Act","url":"https://api.congress.gov/v3/bill/118/hr/8223?format=json","number":"8223","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}} +{"type":"node","id":"5879","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-01-30","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Housing Supply and Affordability Act","url":"https://api.congress.gov/v3/bill/118/hr/7132?format=json","number":"7132","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-30","latestAction_actionTime":""}} +{"type":"node","id":"5880","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Artificial Intelligence Literacy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6791?format=json","number":"6791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"5881","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2023-12-13","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"WARM Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6743?format=json","number":"6743","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"5882","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2023-10-24","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the recognition of October 2023, as \"World Menopause Awareness Month\" and expressing the sense of the House of Representatives regarding global awareness and access to care during the menopausal transition and post-menopause.","url":"https://api.congress.gov/v3/bill/118/hres/806?format=json","number":"806","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}} +{"type":"node","id":"5883","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-09-28","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Blue Collar and Green Collar Jobs Development Act","url":"https://api.congress.gov/v3/bill/118/hr/5783?format=json","number":"5783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}} +{"type":"node","id":"5884","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1235?format=json","number":"","amendmentNumber":"1235","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5885","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1233?format=json","number":"","amendmentNumber":"1233","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5886","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1236?format=json","number":"","amendmentNumber":"1236","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5887","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1234?format=json","number":"","amendmentNumber":"1234","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5888","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Religious Freedom Restoration Act of 1993 to protect civil rights and otherwise prevent meaningful harm to third parties, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5890","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit discrimination based on an individual's texture or style of hair.","url":"https://api.congress.gov/v3/bill/119/s/751?format=json","number":"751","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5892","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish a demonstration project to improve outpatient clinical care for individuals with sickle cell disease.","url":"https://api.congress.gov/v3/bill/119/s/721?format=json","number":"721","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5893","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to extend the temporary scheduling order for fentanyl-related substances for 6 months.","url":"https://api.congress.gov/v3/bill/119/s/724?format=json","number":"724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5894","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1196?format=json","number":"","amendmentNumber":"1196","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5895","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1197?format=json","number":"","amendmentNumber":"1197","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5896","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1195?format=json","number":"","amendmentNumber":"1195","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5897","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1198?format=json","number":"","amendmentNumber":"1198","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5898","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1199?format=json","number":"","amendmentNumber":"1199","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5899","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1194?format=json","number":"","amendmentNumber":"1194","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5900","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1161?format=json","number":"","amendmentNumber":"1161","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5901","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1160?format=json","number":"","amendmentNumber":"1160","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5902","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1159?format=json","number":"","amendmentNumber":"1159","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5903","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1093?format=json","number":"","amendmentNumber":"1093","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"5905","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution recognizing the partnership between the United States and Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/112?format=json","number":"112","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5906","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Veterans' Affairs. (text: CR S1500)","type":"SRES","title":"A resolution condemning the mass terminations of employees of the Department of Veterans Affairs carried out with no justification or analysis of the impact on veterans and their families.","url":"https://api.congress.gov/v3/bill/119/sres/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5909","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1228?format=json","number":"","amendmentNumber":"1228","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5910","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1227?format=json","number":"","amendmentNumber":"1227","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5911","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1085?format=json","number":"","amendmentNumber":"1085","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5912","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1087?format=json","number":"","amendmentNumber":"1087","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5913","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1084?format=json","number":"","amendmentNumber":"1084","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5914","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1086?format=json","number":"","amendmentNumber":"1086","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5915","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1088?format=json","number":"","amendmentNumber":"1088","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5916","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/662?format=json","number":"","amendmentNumber":"662","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5917","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/661?format=json","number":"","amendmentNumber":"661","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5918","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/663?format=json","number":"","amendmentNumber":"663","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5919","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/660?format=json","number":"","amendmentNumber":"660","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5920","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 659 not agreed to in Senate by Yea-Nay Vote. 47 - 52. Record Vote Number: 83.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/659?format=json","number":"","amendmentNumber":"659","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"5921","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/170?format=json","number":"","amendmentNumber":"170","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5922","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/171?format=json","number":"","amendmentNumber":"171","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5923","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to improve mental health services of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/609?format=json","number":"609","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"5924","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S671)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Agriculture, Nutrition, and Forestry.","url":"https://api.congress.gov/v3/bill/119/sres/57?format=json","number":"57","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5925","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"PSA Screening for HIM Act","url":"https://api.congress.gov/v3/bill/119/s/297?format=json","number":"297","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5926","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Medicare Access to Radiology Care Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5492?format=json","number":"5492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"5927","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6690-6691)","type":"SRES","title":"A resolution commending and congratulating the United States Team for winning the 2024 Solheim Cup.","url":"https://api.congress.gov/v3/bill/118/sres/906?format=json","number":"906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5928","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6460)","type":"SRES","title":"A resolution expressing support for the designation of October 7 through October 12, 2024, as \"National 4-H Week\".","url":"https://api.congress.gov/v3/bill/118/sres/887?format=json","number":"887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"5929","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-18","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6149)","type":"SRES","title":"A resolution designating the week of September 15 through September 21, 2024, as \"National Truck Driver Appreciation Week\".","url":"https://api.congress.gov/v3/bill/118/sres/827?format=json","number":"827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"5930","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Physician Fee Stabilization Act","url":"https://api.congress.gov/v3/bill/118/s/4935?format=json","number":"4935","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"5931","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-09-28","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Targeting Emotional and Mental Stability Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2966?format=json","number":"2966","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}} +{"type":"node","id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}} +{"type":"node","id":"5933","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small LENDER Act","url":"https://api.congress.gov/v3/bill/118/s/1159?format=json","number":"1159","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}} +{"type":"node","id":"5934","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3961; text: CR S3958-3959)","type":"SRES","title":"A resolution expressing the gratitude and appreciation of the Senate for the acts of heroism and valor by the members of the United States Armed Forces who participated in the June 6, 1944, amphibious landing at Normandy, France, and commending those individuals for leadership and bravery in an operation that helped bring an end to World War II.","url":"https://api.congress.gov/v3/bill/118/sres/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":""}} +{"type":"node","id":"5935","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of David Hampton Pryor, former United States Senator for the State of Arkansas.","url":"https://api.congress.gov/v3/bill/118/sres/673?format=json","number":"673","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-03","latestAction_actionTime":""}} +{"type":"node","id":"5936","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-27","policyArea_name":"","latestAction_text":"Amendment SA 1089 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1089?format=json","number":"","amendmentNumber":"1089","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"5937","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/778?format=json","number":"","amendmentNumber":"778","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5938","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/750?format=json","number":"","amendmentNumber":"750","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5939","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/749?format=json","number":"","amendmentNumber":"749","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5940","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-03-22","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Sultana Steamboat Disaster Commemorative Coin Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4059?format=json","number":"4059","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}} +{"type":"node","id":"5941","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4958; text: CR S4957)","type":"SRES","title":"A resolution recognizing the 10th anniversary of the USA Rice-Ducks Unlimited Rice Stewardship Partnership.","url":"https://api.congress.gov/v3/bill/118/sres/403?format=json","number":"403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}} +{"type":"node","id":"5942","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4958; text: CR S4955)","type":"SRES","title":"A resolution expressing support for the designation of October 1 through October 7, 2023, as \"National 4-H Week\".","url":"https://api.congress.gov/v3/bill/118/sres/399?format=json","number":"399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}} +{"type":"node","id":"5943","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-27","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: S4717; text: CR S4726)","type":"SRES","title":"A resolution supporting the designation of September 21, 2023, as \"National Teach Ag Day\" and celebrating 75 years of the National Association of Agricultural Educators.","url":"https://api.congress.gov/v3/bill/118/sres/375?format=json","number":"375","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-27","latestAction_actionTime":""}} +{"type":"node","id":"5944","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1220?format=json","number":"","amendmentNumber":"1220","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5945","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1014?format=json","number":"","amendmentNumber":"1014","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5946","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1015?format=json","number":"","amendmentNumber":"1015","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5947","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1016?format=json","number":"","amendmentNumber":"1016","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5948","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/s/851?format=json","number":"851","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5949","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Export Control Reform Act of 2018 relating to licensing transparency.","url":"https://api.congress.gov/v3/bill/119/s/744?format=json","number":"744","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5950","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit Federal funding for National Public Radio, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/746?format=json","number":"746","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"5951","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Respect Parents’ Childcare Choices Act","url":"https://api.congress.gov/v3/bill/119/s/535?format=json","number":"535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5952","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Defending Defense Research from Chinese Communist Party Espionage Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/418?format=json","number":"418","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5953","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Border Security is National Security Act","url":"https://api.congress.gov/v3/bill/119/s/301?format=json","number":"301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5954","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"End Unaccountable Amnesty Act","url":"https://api.congress.gov/v3/bill/119/s/225?format=json","number":"225","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5955","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Qualified Immunity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/122?format=json","number":"122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5956","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"CBW Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/63?format=json","number":"63","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"5957","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Leadership in CET Act","url":"https://api.congress.gov/v3/bill/118/hr/10416?format=json","number":"10416","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"5958","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"End Executive Branch Amnesty Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10061?format=json","number":"10061","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-30","latestAction_actionTime":""}} +{"type":"node","id":"5959","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-08-20","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"SENIOR Act","url":"https://api.congress.gov/v3/bill/118/hr/9383?format=json","number":"9383","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-20","latestAction_actionTime":""}} +{"type":"node","id":"5960","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Visas for Violent Criminals Act","url":"https://api.congress.gov/v3/bill/118/hr/9117?format=json","number":"9117","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}} +{"type":"node","id":"5961","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-07-10","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HJRES","title":"Disapproving the rule submitted by the Department of Health and Human Services relating to \"Designated Placement Requirements for LGBTQI plus Children\".","url":"https://api.congress.gov/v3/bill/118/hjres/182?format=json","number":"182","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"5962","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-06-28","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"No Tax Dollars for College Encampments Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8883?format=json","number":"8883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}} +{"type":"node","id":"5963","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Conscience Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8857?format=json","number":"8857","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"5964","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-06-13","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Head Start Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/8723?format=json","number":"8723","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":""}} +{"type":"node","id":"5965","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-01","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Financial Services, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"CBW Fentanyl Act","url":"https://api.congress.gov/v3/bill/118/hr/8197?format=json","number":"8197","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}} +{"type":"node","id":"5966","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-19","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Defund NPR Act","url":"https://api.congress.gov/v3/bill/118/hr/8083?format=json","number":"8083","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"5967","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-04-17","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"American Students First Act","url":"https://api.congress.gov/v3/bill/118/hr/8039?format=json","number":"8039","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"5968","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-03-03","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S1463)","type":"SCONRES","title":"A concurrent resolution supporting the Local Radio Freedom Act.","url":"https://api.congress.gov/v3/bill/119/sconres/8?format=json","number":"8","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5972","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S1131-1135)","type":"S","title":"A bill to redesignate land within certain wilderness study areas in the State of Wyoming, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/681?format=json","number":"681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"5973","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/541?format=json","number":"541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"5974","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S862)","type":"S","title":"A bill to repeal a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/s/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"5976","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S795-796)","type":"S","title":"A bill to amend the Omnibus Parks and Public Lands Management Act of 1996 to provide for the establishment of a Ski Area Fee Retention Account, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/472?format=json","number":"472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5977","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S796)","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish a minimum Medicaid disproportionate share hospital allotment for States.","url":"https://api.congress.gov/v3/bill/119/s/474?format=json","number":"474","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"5978","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S481-482)","type":"S","title":"Making National Parks Safer Act","url":"https://api.congress.gov/v3/bill/119/s/290?format=json","number":"290","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"5979","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S336-337)","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","url":"https://api.congress.gov/v3/bill/119/s/211?format=json","number":"211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"5980","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S228-231)","type":"S","title":"Wildfire Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/140?format=json","number":"140","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5981","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S231-232)","type":"S","title":"Wildland Firefighters Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/142?format=json","number":"142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"5982","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-14","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S140)","type":"S","title":"Defending American Sovereignty in Global Pandemics Act","url":"https://api.congress.gov/v3/bill/119/s/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"5983","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1?format=json","number":"","amendmentNumber":"1","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5984","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"5985","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-06-15","latestAction_text":"Held at the desk.","title":"Connect Our Parks Act","type":"S","url":"https://api.congress.gov/v3/bill/118/s/2018?format=json","number":"2018","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:05:04"}} +{"type":"node","id":"5986","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"118","introducedDate":"2023-02-01","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Health Clinic Burden Reduction Act","url":"https://api.congress.gov/v3/bill/118/s/198?format=json","number":"198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}} +{"type":"node","id":"5987","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Combating Global Poverty Through Energy Development Act","url":"https://api.congress.gov/v3/bill/118/s/5374?format=json","number":"5374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"5988","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution expressing the sense of the Senate that the Russian Federation started the war against Ukraine by launching an unprovoked full-scale invasion of Ukraine on February 24, 2022.","url":"https://api.congress.gov/v3/bill/119/sres/114?format=json","number":"114","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"5989","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to provide for the designation of certain wilderness areas, recreation management areas, and conservation areas in the State of Colorado, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/764?format=json","number":"764","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5990","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-27","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S1433)","type":"SRES","title":"A resolution to recognize and celebrate the 30th anniversary of the Denver International Airport.","url":"https://api.congress.gov/v3/bill/119/sres/102?format=json","number":"102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"5991","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal to Edward J. Dwight, Jr., the first African American astronaut candidate in the United States.","url":"https://api.congress.gov/v3/bill/119/s/734?format=json","number":"734","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"5992","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1143?format=json","number":"","amendmentNumber":"1143","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5993","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1145?format=json","number":"","amendmentNumber":"1145","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5994","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1146?format=json","number":"","amendmentNumber":"1146","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5995","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1144?format=json","number":"","amendmentNumber":"1144","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5996","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1050?format=json","number":"","amendmentNumber":"1050","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5997","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1049?format=json","number":"","amendmentNumber":"1049","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5998","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1048?format=json","number":"","amendmentNumber":"1048","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"5999","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1047?format=json","number":"","amendmentNumber":"1047","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6000","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1045?format=json","number":"","amendmentNumber":"1045","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6001","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1046?format=json","number":"","amendmentNumber":"1046","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6002","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1027?format=json","number":"","amendmentNumber":"1027","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6003","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1028?format=json","number":"","amendmentNumber":"1028","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6004","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/961?format=json","number":"","amendmentNumber":"961","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6005","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/962?format=json","number":"","amendmentNumber":"962","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6006","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/960?format=json","number":"","amendmentNumber":"960","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6007","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/958?format=json","number":"","amendmentNumber":"958","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6008","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to remove the limitation on the amount of a civil penalty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/845?format=json","number":"845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6009","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/995?format=json","number":"","amendmentNumber":"995","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6010","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 276 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/276?format=json","number":"","amendmentNumber":"276","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6011","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/279?format=json","number":"","amendmentNumber":"279","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6012","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/277?format=json","number":"","amendmentNumber":"277","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6013","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/278?format=json","number":"","amendmentNumber":"278","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6014","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/280?format=json","number":"","amendmentNumber":"280","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6015","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/205?format=json","number":"","amendmentNumber":"205","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6016","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/206?format=json","number":"","amendmentNumber":"206","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6017","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Dairy Business Innovation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/420?format=json","number":"420","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6018","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the proper tax treatment of personal service income earned in pass-thru entities.","url":"https://api.congress.gov/v3/bill/119/s/445?format=json","number":"445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6019","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"COOL Online Act","url":"https://api.congress.gov/v3/bill/119/s/294?format=json","number":"294","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"6020","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2023-07-11","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Palliative Care and Hospice Education and Training Act","url":"https://api.congress.gov/v3/bill/118/s/2243?format=json","number":"2243","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-11","latestAction_actionTime":""}} +{"type":"node","id":"6021","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2024-12-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3332?format=json","number":"","amendmentNumber":"3332","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6022","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2024-12-04","policyArea_name":"","latestAction_text":"Amendment SA 3311 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3311?format=json","number":"","amendmentNumber":"3311","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}} +{"type":"node","id":"6023","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-11-07","latestAction_text":"Held at the desk.","title":"ACCESS Rural America Act","type":"S","url":"https://api.congress.gov/v3/bill/118/s/3242?format=json","number":"3242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":"10:41:40"}} +{"type":"node","id":"6024","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6451)","type":"SRES","title":"A resolution designating October 23, 2024, as \"National Marine Sanctuary Day\".","url":"https://api.congress.gov/v3/bill/118/sres/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6025","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6451)","type":"SRES","title":"A resolution designating October 12, 2024, as \"National Loggers Day\".","url":"https://api.congress.gov/v3/bill/118/sres/863?format=json","number":"863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6026","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2023-02-28","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"DAIRY PRIDE Act","url":"https://api.congress.gov/v3/bill/118/s/549?format=json","number":"549","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-28","latestAction_actionTime":""}} +{"type":"node","id":"6027","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Winter Recreation Small Business Recovery Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5049?format=json","number":"5049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6028","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to assure pharmacy access and choice for beneficiaries under prescription drug plans and MA-PD plans and to establish requirements of pharmacy benefit managers under Medicare part D.","url":"https://api.congress.gov/v3/bill/119/s/882?format=json","number":"882","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6029","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Romance Scam Prevention Act","url":"https://api.congress.gov/v3/bill/119/s/841?format=json","number":"841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6030","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Immigration and Nationality Act to deny immigration benefits to aliens who carried out, participated in, planned, financed, supported, or otherwise facilitated the October 2023 attacks against Israel.","url":"https://api.congress.gov/v3/bill/119/s/762?format=json","number":"762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6031","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization until certain conditions have been met.","url":"https://api.congress.gov/v3/bill/119/s/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6032","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to improve the cooperation between the United States and the authorities of Taiwan with respect to travel and tourism.","url":"https://api.congress.gov/v3/bill/119/s/733?format=json","number":"733","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6033","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the period of time for making S corporation elections, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/684?format=json","number":"684","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6034","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program within the Office of Juvenile Justice and Delinquency Prevention to award grants to States that require the recording of all child welfare interviews with children and adults, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/659?format=json","number":"659","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}} +{"type":"node","id":"6035","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Omnibus Crime Control and Safe Streets Act of 1968 to increase grants to combat domestic violence for States that implement domestic violence prevention training for cosmetologists and barbers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/520?format=json","number":"520","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6036","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Our Supreme Court Justices Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/399?format=json","number":"399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6037","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Federal Employee Performance and Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/359?format=json","number":"359","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6038","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SHOW UP Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/354?format=json","number":"354","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6039","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Federal Freeze Act","url":"https://api.congress.gov/v3/bill/119/s/357?format=json","number":"357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6040","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"RETIREES FIRST Act","url":"https://api.congress.gov/v3/bill/119/s/358?format=json","number":"358","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6041","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to provide for across-the-board rescissions of nonsecurity discretionary spending.","url":"https://api.congress.gov/v3/bill/119/s/360?format=json","number":"360","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6042","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a commission to study the relocation of certain agencies outside of the Washington, D.C. metropolitan area, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/353?format=json","number":"353","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6043","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"American Music Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/326?format=json","number":"326","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}} +{"type":"node","id":"6044","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Prison Staff Safety Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/307?format=json","number":"307","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"6045","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to release a Federal reversionary interest and convey mineral interests in Chester County, Tennessee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/277?format=json","number":"277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6046","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Master Sergeant Roddie Edmonds Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/262?format=json","number":"262","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}} +{"type":"node","id":"6047","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/119/s/244?format=json","number":"244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"6048","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","policyArea_name":"International Affairs","introducedDate":"2006-04-27","latestAction_text":"On motion to suspend the rules and pass the bill Failed by the Yeas and Nays: (2/3 required): 263 - 159 (Roll no. 294). (text: CR H4234)","type":"HR","title":"To require representatives of governments designated as State Sponsors of Terrorism to disclose to the Attorney General lobbying contacts with legislative branch officials, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hr/5228?format=json","number":"5228","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2006-06-20","latestAction_actionTime":"14:32:07"}} +{"type":"node","id":"6049","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-04-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on 21st Century Competitiveness.","type":"HR","title":"To amend the Illegal Immigration Reform and Immigrant Responsibility Act of 1996 to permit States to determine State residency for higher education purposes and to authorize the cancellation of removal and adjustment of status of certain alien students who are long-term United States residents and who entered the United States as children, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hr/5131?format=json","number":"5131","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-05-24","latestAction_actionTime":""}} +{"type":"node","id":"6050","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-03-10","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Immigration, Border Security, and Claims.","type":"HR","title":"To amend titles XIX and XXI of the Social Security Act to permit States the option of coverage of legal immigrants under the Medicaid Program and the State children's health insurance program (SCHIP).","url":"https://api.congress.gov/v3/bill/109/hr/1233?format=json","number":"1233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-04-04","latestAction_actionTime":""}} +{"type":"node","id":"6051","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-09-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 503) to amend the Horse Protection Act to prohibit the shipping, transporting, moving, delivering, receiving, possessing, purchasing, selling, or donation of horses and other equines to be slaughtered for human consumption, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/981?format=json","number":"981","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-09-07","latestAction_actionTime":"11:14:11"}} +{"type":"node","id":"6052","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-07-26","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4157) to amend the Social Security Act to encourage the dissemination, security, confidentiality, and usefulness of health information technology.","url":"https://api.congress.gov/v3/bill/109/hres/952?format=json","number":"952","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-07-27","latestAction_actionTime":"12:38:04"}} +{"type":"node","id":"6053","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-07-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 9) to amend the Voting Rights Act of 1965.","url":"https://api.congress.gov/v3/bill/109/hres/910?format=json","number":"910","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-07-13","latestAction_actionTime":"11:30:49"}} +{"type":"node","id":"6054","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-20","policyArea_name":"Congress","latestAction_text":"Pursuant to the provisions of H. Res. 890, H. Res. 878 is laid on the table.","type":"HRES","title":"Providing for consideration of the bill (H.R. 9) to amend the Voting Rights Act of 1965.","url":"https://api.congress.gov/v3/bill/109/hres/878?format=json","number":"878","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-27","latestAction_actionTime":"13:20:59"}} +{"type":"node","id":"6055","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-05-25","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5254) to set schedules for the consideration of permits for refineries.","url":"https://api.congress.gov/v3/bill/109/hres/842?format=json","number":"842","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-07","latestAction_actionTime":"16:54:04"}} +{"type":"node","id":"6056","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5252) to promote the deployment of broadband networks and services.","url":"https://api.congress.gov/v3/bill/109/hres/850?format=json","number":"850","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-08","latestAction_actionTime":"17:55:37"}} +{"type":"node","id":"6057","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-13","policyArea_name":"Congress","latestAction_text":"On agreeing to the resolution Agreed to by recorded vote: 221 - 194 (Roll no. 262). (text: CR H3818)","type":"HRES","title":"Providing for consideration of the bill (H.R. 5576) making appropriations for the Departments of Transportation, Treasury, and Housing and Urban Development, the Judiciary, District of Columbia, and independent agencies for the fiscal year ending September 30, 2007, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/865?format=json","number":"865","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-13","latestAction_actionTime":"16:14:54"}} +{"type":"node","id":"6058","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5522) making appropriations for foreign operations, export financing, and related programs for the fiscal year ending September 30, 2007, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/851?format=json","number":"851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-08","latestAction_actionTime":"11:13:00"}} +{"type":"node","id":"6059","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving a requirement of clause 6(a) of rule XIII with respect to consideration of certain resolutions reported from the Committee on Rules.","url":"https://api.congress.gov/v3/bill/109/hres/862?format=json","number":"862","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-13","latestAction_actionTime":"14:41:33"}} +{"type":"node","id":"6060","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-11-17","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving points of order against the conference report to accompany the bill (H.R. 3058) making appropriations for the Departments of Transportation, Treasury, and Housing and Urban Development, the Judiciary, District of Columbia, and independent agencies for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/565?format=json","number":"565","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-11-18","latestAction_actionTime":"09:29:51"}} +{"type":"node","id":"6061","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-11-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1065) to establish the United States Boxing Commission to protect the general welfare of boxers and to ensure fairness in the sport of professional boxing.","url":"https://api.congress.gov/v3/bill/109/hres/553?format=json","number":"553","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-11-16","latestAction_actionTime":"15:16:57"}} +{"type":"node","id":"6062","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-11-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving points of order against the conference report to accompany the bill (H.R. 3057) making appropriations for foreign operations, export financing, and related programs for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/532?format=json","number":"532","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-11-04","latestAction_actionTime":"09:57:56"}} +{"type":"node","id":"6063","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-10-06","policyArea_name":"Congress","latestAction_text":"The title of the measure was amended. Agreed to without objection.","type":"HRES","title":"Providing for the consideration of the bill (H.R. 3893) to expedite the construction of new refining capacity in the United States, to provide reliable and affordable energy for the American people, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/481?format=json","number":"481","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-10-07","latestAction_actionTime":"10:56:59"}} +{"type":"node","id":"6064","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-09-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of motions to suspend the rules.","url":"https://api.congress.gov/v3/bill/109/hres/426?format=json","number":"426","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-09-08","latestAction_actionTime":"11:55:09"}} +{"type":"node","id":"6065","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","policyArea_name":"International Affairs","introducedDate":"2005-07-26","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Expressing the sense of the House of Representatives regarding the July, 2005, measures of extreme repression on the part of the Cuban Government against members of Cuba's prodemocracy movement, calling for the immediate release of all political prisoners, the legalization of political parties and free elections in Cuba, urging the European Union to reexamine its policy toward Cuba, and calling on the representative of the United States to the 62d session of the United Nations Commission on Human Rights to ensure a resolution calling upon the Cuban regime to end its human rights violations, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/388?format=json","number":"388","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2005-09-29","latestAction_actionTime":"12:20:37"}} +{"type":"node","id":"6066","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-07-27","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving points of order against the conference report to accompany the bill (H.R. 2985) making appropriations for the Legislative Branch for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/396?format=json","number":"396","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-07-28","latestAction_actionTime":"13:24:48"}} +{"type":"node","id":"6067","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-06-27","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3058) making appropriations for the Departments of Transportation, Treasury, and Housing and Urban Development, the Judiciary, District of Columbia, and independent agencies for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/342?format=json","number":"342","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-06-28","latestAction_actionTime":"16:30:20"}} +{"type":"node","id":"6068","labels":["Legislation"],"properties":{"sponsored_by":"T000489","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Social Security Act to remove the Medicaid coverage exclusion for inmates in custody pending disposition of charges, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1510?format=json","number":"1510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6069","labels":["Legislation"],"properties":{"sponsored_by":"T000489","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","type":"HR","title":"DHS Cybersecurity On-the-Job Training Program Act","url":"https://api.congress.gov/v3/bill/119/hr/1034?format=json","number":"1034","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6070","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1962?format=json","number":"1962","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6071","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude from gross income certain federally subsidized loan repayments for dental school faculty.","url":"https://api.congress.gov/v3/bill/119/hr/1758?format=json","number":"1758","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6072","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Ways and Means, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Secretary of Homeland Security to notify the Commissioner of Social Security when there is a change to the citizenship status, status under the immigration laws, or work authorization status of an individual to whom a social security account number has been issued, and to require that an individual be a citizen or national of the United States to receive benefits under the Social Security Act.","url":"https://api.congress.gov/v3/bill/119/hr/1547?format=json","number":"1547","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6073","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To ensure the ability of public safety officers to retain their right to free speech on matters related to public safety, working conditions, and other matters.","url":"https://api.congress.gov/v3/bill/119/hr/1443?format=json","number":"1443","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6074","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to codify patients rights to hospital visitation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1358?format=json","number":"1358","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6075","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide that it is unlawful to knowingly distribute private intimate visual depictions with reckless disregard for the individual's lack of consent to the distribution, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1218?format=json","number":"1218","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6076","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to include over-the-counter oral healthcare products as qualified medical expenses which can be purchased with HSA and FSA funds.","url":"https://api.congress.gov/v3/bill/119/hr/1219?format=json","number":"1219","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6077","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to add alpha-gal to the definition of \"major food allergen\".","url":"https://api.congress.gov/v3/bill/119/hr/1178?format=json","number":"1178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"6078","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To require retail electric utilities to notify electric consumers of rate increases, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1149?format=json","number":"1149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"6079","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to require States to consider prohibiting cost recovery related to smart grid projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1148?format=json","number":"1148","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"6080","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"No Tax on Social Security","url":"https://api.congress.gov/v3/bill/119/hr/904?format=json","number":"904","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6081","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"POST IT Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6082","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Heroes’ Tax Exemption Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/823?format=json","number":"823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6083","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Child and Animal Abuse Detection and Reporting Act","url":"https://api.congress.gov/v3/bill/119/hr/712?format=json","number":"712","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6084","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Doctor Knows Best Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/639?format=json","number":"639","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"6085","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Detain and Deport Illegal Aliens Who Assault Cops Act","url":"https://api.congress.gov/v3/bill/119/hr/594?format=json","number":"594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"6086","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"No Child Tax Credit for Illegals Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/547?format=json","number":"547","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6087","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Foreign Medical Program Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/467?format=json","number":"467","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"6088","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"SHIELD Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10329?format=json","number":"10329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}} +{"type":"node","id":"6089","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"118","introducedDate":"2024-10-18","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to require States to consider prohibiting cost recovery related to smart grid projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10019?format=json","number":"10019","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}} +{"type":"node","id":"6090","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Crime and Law Enforcement","introducedDate":"1980-02-05","latestAction_text":"Referred to House Committee on the Judiciary.","type":"HR","title":"A bill to amend title 18, United States Code, to provide increased penalties for using a firearm to commit a felony or carrying a firearm unlawfully during the commission of a felony, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/hr/6411?format=json","number":"6411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6091","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-11-28","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend section 2040 of the Internal Revenue Code of 1954 to provide that a spouse's services shall be taken into account in determining whether that spouse furnished adequate consideration for jointly held property for purposes of qualifying for an exclusion from the Federal estate tax.","url":"https://api.congress.gov/v3/bill/96/hr/5974?format=json","number":"5974","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-11-28","latestAction_actionTime":""}} +{"type":"node","id":"6092","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-11-09","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide, for purposes of the deduction for real property taxes, that certain assessments on real property which are used to provide certain facilities and services of the type which might otherwise be provided by a municipal government shall be treated as real property taxes.","url":"https://api.congress.gov/v3/bill/96/hr/5854?format=json","number":"5854","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-11-09","latestAction_actionTime":""}} +{"type":"node","id":"6093","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-10-11","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide a basic $5,000 exemption from income tax for amounts received as annuities, pensions, or other retirement benefits.","url":"https://api.congress.gov/v3/bill/96/hr/5547?format=json","number":"5547","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-10-11","latestAction_actionTime":""}} +{"type":"node","id":"6094","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-10-10","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to exclude from gross income the interest on deposits in certain savings institutions.","url":"https://api.congress.gov/v3/bill/96/hr/5524?format=json","number":"5524","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-10-10","latestAction_actionTime":""}} +{"type":"node","id":"6095","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-09-28","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to allow a deduction of not more than $1,500 for amounts paid or incurred for maintaining a household a member of which is a dependent of the taxpayer who has attained the age of 65.","url":"https://api.congress.gov/v3/bill/96/hr/5459?format=json","number":"5459","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-09-28","latestAction_actionTime":""}} +{"type":"node","id":"6096","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Private Legislation","introducedDate":"1979-08-02","latestAction_text":"Reported to House from the Committee on the Judiciary with amendment, H. Rept. 96-1211.","type":"HR","title":"A bill to amend the Act entitled \"An Act for the relief of Alice W. Olson, Lisa Olson Hayward, Eric Olson, and Nils Olson\".","url":"https://api.congress.gov/v3/bill/96/hr/5160?format=json","number":"5160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-30","latestAction_actionTime":""}} +{"type":"node","id":"6097","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-02-26","policyArea_name":"Energy","latestAction_text":"Referred to House Committee on Interstate and Foreign Commerce.","type":"HR","title":"A bill to prohibit fuel adjustment clauses in electric utility rate schedules.","url":"https://api.congress.gov/v3/bill/96/hr/2368?format=json","number":"2368","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6098","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Transportation and Public Works","introducedDate":"1980-05-21","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HJRES","title":"A joint resolution to authorize and request the President to designate May 24, 1980 as \"Railroad Passenger Services Day\".","url":"https://api.congress.gov/v3/bill/96/hjres/553?format=json","number":"553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-05-21","latestAction_actionTime":""}} +{"type":"node","id":"6099","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Economics and Public Finance","introducedDate":"1979-02-26","latestAction_text":"Referred to House Committee on the Judiciary.","type":"HJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to provide that appropriations made by the United States shall not exceed its revenues, except in national emergency.","url":"https://api.congress.gov/v3/bill/96/hjres/225?format=json","number":"225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6100","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Sports and Recreation","introducedDate":"1980-07-28","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HRES","title":"A resolution to designate October 11, 1980, as \"National Jogging Day\".","url":"https://api.congress.gov/v3/bill/96/hres/755?format=json","number":"755","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-28","latestAction_actionTime":""}} +{"type":"node","id":"6101","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Public Lands and Natural Resources","introducedDate":"1980-07-28","latestAction_text":"Referred to House Committee on Interior and Insular Affairs.","type":"HCONRES","title":"A concurrent resolution expressing the sense of the Congress that the President should establish a long-range plan for the acquisition of essential minerals from foreign sources and report to the Congress with respect to such plan.","url":"https://api.congress.gov/v3/bill/96/hconres/392?format=json","number":"392","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-28","latestAction_actionTime":""}} +{"type":"node","id":"6102","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1982-12-03","policyArea_name":"Energy","latestAction_text":"Referred to Subcommittee on Fossil and Synthetic Fuels.","type":"HR","title":"A bill to ensure that rates charged by natural gas companies are market sensitive.","url":"https://api.congress.gov/v3/bill/97/hr/7358?format=json","number":"7358","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1982-12-10","latestAction_actionTime":""}} +{"type":"node","id":"6103","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1982-09-30","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to permit the rollover of gain from the sale (under a farmland preservation program) of farmland development rights to any State or political subdivision thereof or to certain charitable organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/97/hr/7226?format=json","number":"7226","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1982-09-30","latestAction_actionTime":""}} +{"type":"node","id":"6104","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1982-07-28","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to Subcommittee on International Economic Policy and Trade.","type":"HR","title":"A bill to improve the efficiency and strategic effectiveness of export regulation of strategic trade, to revise the Export Administration Act of 1979, and for other purposes.","url":"https://api.congress.gov/v3/bill/97/hr/6880?format=json","number":"6880","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1982-08-05","latestAction_actionTime":""}} +{"type":"node","id":"6105","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1981-06-18","policyArea_name":"Taxation","latestAction_text":"See H.R.4242.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide individuals a limited exclusion from gross income for interest on deposits in certain savings institutions.","url":"https://api.congress.gov/v3/bill/97/hr/3959?format=json","number":"3959","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1981-08-04","latestAction_actionTime":""}} +{"type":"node","id":"6106","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1981-06-04","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to allow a deduction of not more than $1,500 for amounts paid or incurred for maintaining a household a member of which is a dependent of the taxpayer who has attained the age of 65.","url":"https://api.congress.gov/v3/bill/97/hr/3819?format=json","number":"3819","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1981-06-04","latestAction_actionTime":""}} +{"type":"node","id":"6107","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1981-06-04","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide a basic $7,500 exemption from income tax for amounts received as annuities, pensions, or other retirement benefits.","url":"https://api.congress.gov/v3/bill/97/hr/3818?format=json","number":"3818","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1981-06-04","latestAction_actionTime":""}} +{"type":"node","id":"6108","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","policyArea_name":"Sports and Recreation","introducedDate":"1982-02-24","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HJRES","title":"A joint resolution to authorize and request the President to designate the week of May 2 through May 8, 1982 as \"National Physical Fitness and Sports for All Week\".","url":"https://api.congress.gov/v3/bill/97/hjres/411?format=json","number":"411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1982-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6109","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","policyArea_name":"Sports and Recreation","introducedDate":"1981-07-09","latestAction_text":"Referred to Subcommittee on Census and Population.","type":"HJRES","title":"A joint resolution to designate October 10, 1981 as \"National Jogging Day\".","url":"https://api.congress.gov/v3/bill/97/hjres/303?format=json","number":"303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1981-07-13","latestAction_actionTime":""}} +{"type":"node","id":"6110","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"102","introducedDate":"1991-03-19","policyArea_name":"Education","latestAction_text":"Referred to Subcommittee on Education, Arts, Humanities.","type":"S","title":"A bill to establish a National Foundation for Excellence for outstanding students who are committed to careers in teaching in public education and for other purposes.","url":"https://api.congress.gov/v3/bill/102/s/691?format=json","number":"691","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1991-04-09","latestAction_actionTime":""}} +{"type":"node","id":"6111","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"102","introducedDate":"1991-09-13","policyArea_name":"","latestAction_text":"Amendment SP 1135 agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/102/samdt/1135?format=json","number":"","amendmentNumber":"1135","latestAction":"","latestAction_actionDate":"1991-09-13","latestAction_actionTime":""}} +{"type":"node","id":"6112","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-11-12","policyArea_name":"Education","latestAction_text":"Referred to Senate Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to authorize funds for the Carl Albert Congressional Research Studies Center.","url":"https://api.congress.gov/v3/bill/96/s/3192?format=json","number":"3192","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-11-12","latestAction_actionTime":""}} +{"type":"node","id":"6113","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Government Operations and Politics","introducedDate":"1980-07-29","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"S","title":"A bill granting the consent of Congress to the Southern States Energy Compact, and for related purposes.","url":"https://api.congress.gov/v3/bill/96/s/2987?format=json","number":"2987","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-29","latestAction_actionTime":""}} +{"type":"node","id":"6114","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Labor and Employment","introducedDate":"1980-06-25","latestAction_text":"Referred to Senate Committee on Labor and Human Resources.","type":"S","title":"A bill to amend the Farm Labor Contractor Registration Act of 1963, as amended, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/2875?format=json","number":"2875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-06-25","latestAction_actionTime":""}} +{"type":"node","id":"6115","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-06-09","policyArea_name":"Health","latestAction_text":"Public Law 96-415.","type":"S","title":"A bill to designate the Indian Health Facility in Ada, Oklahoma the \"Carl Albert Indian Health Facility.","url":"https://api.congress.gov/v3/bill/96/s/2801?format=json","number":"2801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-10-09","latestAction_actionTime":""}} +{"type":"node","id":"6116","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Native Americans","introducedDate":"1980-06-03","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"S","title":"A bill conferring jurisdiction on the Court of Claims to hear, determine, and render judgement on a claim of the Seminole Nation of Oklahoma.","url":"https://api.congress.gov/v3/bill/96/s/2778?format=json","number":"2778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-06-03","latestAction_actionTime":""}} +{"type":"node","id":"6117","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Private Legislation","introducedDate":"1980-05-05","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"S","title":"A bill for the relief of the Tonkawa Indians of Oklahoma.","url":"https://api.congress.gov/v3/bill/96/s/2654?format=json","number":"2654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-05-05","latestAction_actionTime":""}} +{"type":"node","id":"6118","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-05-02","policyArea_name":"Taxation","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1954 to provide for the exclusion from income of interest on certain savings.","url":"https://api.congress.gov/v3/bill/96/s/2646?format=json","number":"2646","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-05-02","latestAction_actionTime":""}} +{"type":"node","id":"6119","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-02-28","policyArea_name":"Taxation","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1954 with respect to the treatment of gain on the sale or exchange of foreign investment company stock.","url":"https://api.congress.gov/v3/bill/96/s/2367?format=json","number":"2367","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-02-28","latestAction_actionTime":""}} +{"type":"node","id":"6120","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-02-26","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Powerplant and Industrial Fuel Use Act to alter certain provisions relating to natural gas.","url":"https://api.congress.gov/v3/bill/96/s/2335?format=json","number":"2335","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6121","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-02-26","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend title V of the Powerplant and Industrial Fuel Use Act relating to electric utility compliance options.","url":"https://api.congress.gov/v3/bill/96/s/2336?format=json","number":"2336","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6122","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Government Operations and Politics","introducedDate":"1979-11-26","latestAction_text":"Referred to Senate Committee on Governmental Affairs.","type":"S","title":"A bill to establish a procedure for Congressional review of all proposed agency rules, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/2042?format=json","number":"2042","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-11-26","latestAction_actionTime":""}} +{"type":"node","id":"6123","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-26","policyArea_name":"Social Welfare","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend title IV of the Social Security Act to provide for a demonstration program of block grants to States in lieu of Federal matching for aid to families with dependent children.","url":"https://api.congress.gov/v3/bill/96/s/1579?format=json","number":"1579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-26","latestAction_actionTime":""}} +{"type":"node","id":"6124","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-20","policyArea_name":"Taxation","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1954 to change the period for the payment of taxes under section 4161 (a) of such Code.","url":"https://api.congress.gov/v3/bill/96/s/1549?format=json","number":"1549","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-20","latestAction_actionTime":""}} +{"type":"node","id":"6125","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-13","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Council for Energy Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/1513?format=json","number":"1513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-13","latestAction_actionTime":""}} +{"type":"node","id":"6126","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Transportation and Public Works","introducedDate":"1980-01-31","latestAction_text":"Referred to Senate Committee on Commerce, Science, and Transportation.","type":"SJRES","title":"A joint resolution to require continuation of rail service by the Chicago, Rock Island, and Pacific Railroad through August 31, 1980.","url":"https://api.congress.gov/v3/bill/96/sjres/139?format=json","number":"139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6127","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-10-12","policyArea_name":"NONE","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to establish a ten year term of office for Federal judges.","url":"https://api.congress.gov/v3/bill/96/sjres/110?format=json","number":"110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-10-12","latestAction_actionTime":""}} +{"type":"node","id":"6128","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Private Legislation","introducedDate":"1980-05-05","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"SRES","title":"A resolution to refer the bill (S. 2654) entitled \"A bill for the relief of the Tonkawa Indians of Oklahoma\" to the Chief Commissioner of the United States Court of Claims for a report thereon.","url":"https://api.congress.gov/v3/bill/96/sres/420?format=json","number":"420","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-05-05","latestAction_actionTime":""}} +{"type":"node","id":"6129","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-03-05","policyArea_name":"Congress","latestAction_text":"Measure passed Senate.","type":"SRES","title":"A resolution relative to the death of the Honorable Dewey F. Bartlett, formerly a Senator from Oklahoma.","url":"https://api.congress.gov/v3/bill/96/sres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6130","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-09-11","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend sections 170, 2055, and 2522 of the Internal Revenue Code of 1954 to provide a deduction for income, estate, and gift tax purposes for contributions to a section 501(c)(10) organization for the purpose of building or maintaining a building.","url":"https://api.congress.gov/v3/bill/95/hr/14049?format=json","number":"14049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-09-11","latestAction_actionTime":""}} +{"type":"node","id":"6131","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Government Operations and Politics","introducedDate":"1978-04-12","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HR","title":"A bill to include civilian security police of the Department of Defense within the civil service retirement provisions applicable to law enforcement officers and firefighters.","url":"https://api.congress.gov/v3/bill/95/hr/12103?format=json","number":"12103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-04-12","latestAction_actionTime":""}} +{"type":"node","id":"6132","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-04-05","policyArea_name":"Social Welfare","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend section 218 of the Social Security Act to require that States having agreements entered into thereunder will continue to make social security payments and reports on a calendar-quarter basis.","url":"https://api.congress.gov/v3/bill/95/hr/11914?format=json","number":"11914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-04-05","latestAction_actionTime":""}} +{"type":"node","id":"6133","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-03-20","policyArea_name":"NONE","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to insure price and market protection for domestic tomato producers and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/11670?format=json","number":"11670","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-03-20","latestAction_actionTime":""}} +{"type":"node","id":"6134","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-03-14","policyArea_name":"NONE","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to provide price and income protection for agricultural producers by assuring such producers a price for their agricultural commodities of not less than the cost of producing such commodities; to assure consumers and adequate supply of food and fiber at reasonable prices; and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/11547?format=json","number":"11547","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-03-14","latestAction_actionTime":""}} +{"type":"node","id":"6135","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Agriculture and Food","introducedDate":"1978-02-22","latestAction_text":"Referred to House Committee on Agriculture.","type":"HR","title":"A bill to require that imported meat and meat food products made in whole or in part of imported meat be subjected to certain tests and that such meat or products be identified as having been imported; to require the inspection of imported dairy products and that such products comply with certain minimum standards of sanitation; to require that the cost of conducting such tests, inspections, and identification procedures on imported meat and meat food products and on dairy products, as the case may be, be borne by the exporters of such articles, and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/11091?format=json","number":"11091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-02-22","latestAction_actionTime":""}} +{"type":"node","id":"6136","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-02-23","policyArea_name":"Income tax","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide for automatic cost-of-living adjustments in the income tax and withholding rates.","url":"https://api.congress.gov/v3/bill/95/hr/11138?format=json","number":"11138","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-02-23","latestAction_actionTime":""}} +{"type":"node","id":"6137","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-02-15","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to increase the initial amount and the adjusted gross income limitation applicable to the credit for the elderly.","url":"https://api.congress.gov/v3/bill/95/hr/10972?format=json","number":"10972","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-02-15","latestAction_actionTime":""}} +{"type":"node","id":"6138","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Agriculture and Food","introducedDate":"1978-02-08","latestAction_text":"Referred to House Committee on Agriculture.","type":"HR","title":"A bill to require that imported meat and meat food products made in whole or in part of imported meat be subjected to certain tests and that such meat or products be identified as having been imported; to require the inspection of imported dairy products and that such products comply with certain minimum standards of sanitation; to require that the cost of conducting such tests, inspections, and identification procedures on imported meat and meat food products and on dairy products, as the case may be, be borne by the exporters of such articles, and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/10860?format=json","number":"10860","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-02-08","latestAction_actionTime":""}} +{"type":"node","id":"6139","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-11-29","policyArea_name":"Health","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to provide that reimbursements shall not be required of any provider of medical services with respect to payments made under the medicare program to such provider, if such payments were certified as correct by an agent of the Federal Government and the provider acted in good faith in applying for such payments.","url":"https://api.congress.gov/v3/bill/95/hr/10154?format=json","number":"10154","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-11-29","latestAction_actionTime":""}} +{"type":"node","id":"6140","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Economics and Public Finance","introducedDate":"1977-06-22","latestAction_text":"Referred to House Committee on Government Operations.","type":"HR","title":"A bill to amend section 109 of the State and Local Fiscal Assistance Act of 1972 to provide that user fees and service charges collected by States and local governments for public services be counted as taxes for purposes of allocating funds under that act.","url":"https://api.congress.gov/v3/bill/95/hr/7969?format=json","number":"7969","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1977-06-22","latestAction_actionTime":""}} +{"type":"node","id":"6141","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-03-21","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to exempt certain agricultural aircraft from the aircraft use tax, to provide for the refund of the gasoline tax to the agricultural aircraft operator.","url":"https://api.congress.gov/v3/bill/95/hr/5272?format=json","number":"5272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-03-21","latestAction_actionTime":""}} +{"type":"node","id":"6142","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Agriculture and Food","introducedDate":"1977-03-21","latestAction_text":"Referred to House Committee on Interstate and Foreign Commerce.","type":"HR","title":"A bill to amend the Federal Food, Drug and Cosmetic Act to authorize the Secretary increased flexibility in issuing regulations regarding food additives.","url":"https://api.congress.gov/v3/bill/95/hr/5271?format=json","number":"5271","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1977-03-21","latestAction_actionTime":""}} +{"type":"node","id":"6143","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-03-04","policyArea_name":"Social Welfare","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend title II of the Social Security Act to increase to $4,800 the amount of outside earnings permitted without deductions from benefits thereunder.","url":"https://api.congress.gov/v3/bill/95/hr/4527?format=json","number":"4527","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6144","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-03-04","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to provide for the recognition of nonprofit health maintenance organizations as charitable organizations.","url":"https://api.congress.gov/v3/bill/95/hr/4528?format=json","number":"4528","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6145","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Constitutional amendments","introducedDate":"1977-10-12","latestAction_text":"Referred to House Committee on the Judiciary.","type":"HJRES","title":"Joint resolution proposing an amendment to the Constitution of the United States to provide that aggregate expenditures of the Government of the United States may not exceed its net revenues during any fiscal year except in time of way or economic emergency declared by the Congress.","url":"https://api.congress.gov/v3/bill/95/hjres/623?format=json","number":"623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1977-10-12","latestAction_actionTime":""}} +{"type":"node","id":"6146","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-05-01","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1157?format=json","number":"1157","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-05-01","latestAction_actionTime":""}} +{"type":"node","id":"6147","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-04-05","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1116?format=json","number":"1116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-04-05","latestAction_actionTime":""}} +{"type":"node","id":"6148","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-03-20","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1096?format=json","number":"1096","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-03-20","latestAction_actionTime":""}} +{"type":"node","id":"6149","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-04-12","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1130?format=json","number":"1130","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-04-12","latestAction_actionTime":""}} +{"type":"node","id":"6150","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit the continuing availability of any portion of a Federal payment to the District of Columbia for a program of District of Columbia resident tuition support for a fiscal year which remains unobligated as of the end of the fiscal year, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1686?format=json","number":"1686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6151","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HJRES","title":"Disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/hjres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6152","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To direct the Secretary of Health and Human Services to establish a working group to formulate recommendations for standardizing the measurements of loneliness and isolation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1305?format=json","number":"1305","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6153","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to waive certain distance requirements for certain hospitals electing to be designated as critical access hospitals.","url":"https://api.congress.gov/v3/bill/119/hr/1191?format=json","number":"1191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6154","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Ending Green Giveaways Act","url":"https://api.congress.gov/v3/bill/119/hr/1066?format=json","number":"1066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6155","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Ranking a Member on a certain standing committee of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/39?format=json","number":"39","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":"12:12:10"}} +{"type":"node","id":"6156","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":"12:11:51"}} +{"type":"node","id":"6157","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Ending Green Giveaways Act","url":"https://api.congress.gov/v3/bill/118/hr/10454?format=json","number":"10454","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6158","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"No More D.C. Waste Act","url":"https://api.congress.gov/v3/bill/118/hr/10391?format=json","number":"10391","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6159","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Housing Supply and Innovation Frameworks Act","url":"https://api.congress.gov/v3/bill/118/hr/10351?format=json","number":"10351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6160","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"BONUS Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/10319?format=json","number":"10319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}} +{"type":"node","id":"6161","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Whole-Home Repairs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10213?format=json","number":"10213","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6162","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Supporting Access to Rural Community Hospitals Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9823?format=json","number":"9823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6163","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-08-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Sustainable Aviation Fuel Information Act","url":"https://api.congress.gov/v3/bill/118/hr/9327?format=json","number":"9327","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-09","latestAction_actionTime":""}} +{"type":"node","id":"6164","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Flood amendment (A003) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1089?format=json","number":"","amendmentNumber":"1089","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:00:56"}} +{"type":"node","id":"6165","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-04-15","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Name, Image, and Likeness for International Collegiate Athletes Act","url":"https://api.congress.gov/v3/bill/118/hr/7982?format=json","number":"7982","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}} +{"type":"node","id":"6166","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-02-01","latestAction_text":"The Chair directed the Clerk to notify the Senate of the action of the House.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Staff Accounting Bulletin No. 121\".","url":"https://api.congress.gov/v3/bill/118/hjres/109?format=json","number":"109","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"11:35:56"}} +{"type":"node","id":"6167","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-12-11","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Disapproving of recommendations by the United Nations to reduce meat consumption in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/920?format=json","number":"920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6168","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2023-11-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Improving Measurements for Loneliness and Isolation Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6284?format=json","number":"6284","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-10","latestAction_actionTime":""}} +{"type":"node","id":"6169","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2023-10-03","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of October as \"Manufacturing Month\".","url":"https://api.congress.gov/v3/bill/118/hres/759?format=json","number":"759","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":""}} +{"type":"node","id":"6170","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-29","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"JAIL for Alien Voters Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10066?format=json","number":"10066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}} +{"type":"node","id":"6171","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"HARRIS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10067?format=json","number":"10067","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}} +{"type":"node","id":"6172","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-22","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Expressing the sense of the House of Representatives on contract breaches and other failures under the F-35 aircraft program.","url":"https://api.congress.gov/v3/bill/118/hres/1549?format=json","number":"1549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}} +{"type":"node","id":"6173","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-18","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"National Motor Voter Clarification Act","url":"https://api.congress.gov/v3/bill/118/hr/10003?format=json","number":"10003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}} +{"type":"node","id":"6174","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-10-01","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BARRIER Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9895?format=json","number":"9895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"6175","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-08-20","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"ALIEN Act","url":"https://api.congress.gov/v3/bill/118/hr/9387?format=json","number":"9387","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-20","latestAction_actionTime":""}} +{"type":"node","id":"6176","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Prevention of Election Interference Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9147?format=json","number":"9147","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6177","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Resentencing Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9100?format=json","number":"9100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"6178","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-06-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow the payment of certain Federal taxes with bitcoin.","url":"https://api.congress.gov/v3/bill/118/hr/8822?format=json","number":"8822","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-25","latestAction_actionTime":""}} +{"type":"node","id":"6179","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Gaetz amendment (A016) Failed by recorded vote: 134 - 286 (Roll no. 264).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/974?format=json","number":"","amendmentNumber":"974","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"17:19:52"}} +{"type":"node","id":"6180","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-06-05","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"GAZA Act","url":"https://api.congress.gov/v3/bill/118/hr/8629?format=json","number":"8629","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"6181","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-03-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act with respect to certain victims.","url":"https://api.congress.gov/v3/bill/118/hr/7564?format=json","number":"7564","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6182","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-02-13","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"State Border Security Act","url":"https://api.congress.gov/v3/bill/118/hr/7330?format=json","number":"7330","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6183","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Expressing the sense of the House of Representatives that former President Donald J. Trump did not engage in insurrection or rebellion against the United States, or give aid or comfort to the enemies thereof.","url":"https://api.congress.gov/v3/bill/118/hres/1001?format=json","number":"1001","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6184","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Saudi Arabia December 6, 2019, Anti-Terror and Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/6626?format=json","number":"6626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"6185","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2023-11-14","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Parents’ Right to Know Act","url":"https://api.congress.gov/v3/bill/118/hr/6403?format=json","number":"6403","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}} +{"type":"node","id":"6186","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-10-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Security Clearance Revolving Door Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5900?format=json","number":"5900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6187","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2023-10-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Declaring the office of Speaker of the House of Representatives to be vacant.","url":"https://api.congress.gov/v3/bill/118/hres/757?format=json","number":"757","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":"16:45:35"}} +{"type":"node","id":"6188","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2023-08-18","policyArea_name":"Law","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Censuring and condemning United States District Court Judge Tanya Chutkan.","url":"https://api.congress.gov/v3/bill/118/hres/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-18","latestAction_actionTime":""}} +{"type":"node","id":"6189","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-08-15","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"USPIS Surveillance Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5211?format=json","number":"5211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-15","latestAction_actionTime":""}} +{"type":"node","id":"6190","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-20","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Lifesaving Gear for Police Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9745?format=json","number":"9745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-20","latestAction_actionTime":""}} +{"type":"node","id":"6191","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-06-27","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A037) Agreed to by recorded vote: 209 - 200 (Roll no. 321).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1065?format=json","number":"","amendmentNumber":"1065","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"16:11:43"}} +{"type":"node","id":"6192","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A026) Failed by recorded vote: 205 - 216 (Roll no. 274).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/984?format=json","number":"","amendmentNumber":"984","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"18:02:32"}} +{"type":"node","id":"6193","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-06-12","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A013) Agreed to by recorded vote: 238 - 187 (Roll no. 258).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/971?format=json","number":"","amendmentNumber":"971","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":"16:33:32"}} +{"type":"node","id":"6194","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Maritime Advantage Results In National Economic Resiliency and Security Act","url":"https://api.congress.gov/v3/bill/118/hr/8515?format=json","number":"8515","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"6195","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-04-15","latestAction_text":"Became Public Law No: 118-247.","type":"HR","title":"Jackie Robinson Ballpark National Commemorative Site Act","url":"https://api.congress.gov/v3/bill/118/hr/8012?format=json","number":"8012","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"6196","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-04-12","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A005) Agreed to by recorded vote: 227 - 193 (Roll no. 117).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/880?format=json","number":"","amendmentNumber":"880","latestAction":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":"12:44:55"}} +{"type":"node","id":"6197","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-12","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Preserving JROTC Programs Act","url":"https://api.congress.gov/v3/bill/118/hr/7977?format=json","number":"7977","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":""}} +{"type":"node","id":"6198","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-04-05","policyArea_name":"Health","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 37 - 6.","type":"HR","title":"FEHB Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7868?format=json","number":"7868","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"6199","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Contract Our Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7401?format=json","number":"7401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"6200","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-02-07","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"Protecting the Families of Our Fallen Patriots Act","url":"https://api.congress.gov/v3/bill/118/hr/7304?format=json","number":"7304","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6201","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"CONVENE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6846?format=json","number":"6846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"6202","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-05","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","type":"HR","title":"TIGER Act","url":"https://api.congress.gov/v3/bill/118/hr/6609?format=json","number":"6609","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6203","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2023-11-13","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Sturgeon Conservation and Sustainability Act","url":"https://api.congress.gov/v3/bill/118/hr/6393?format=json","number":"6393","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}} +{"type":"node","id":"6204","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2023-10-26","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Further Strengthening America’s Supply Chain and National Security Act","url":"https://api.congress.gov/v3/bill/118/hr/6112?format=json","number":"6112","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6205","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-10-06","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"PUNISH Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5912?format=json","number":"5912","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6206","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-09-26","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Abbey Gate Gold Star Families Dignified Transport Act","url":"https://api.congress.gov/v3/bill/118/hr/5738?format=json","number":"5738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}} +{"type":"node","id":"6207","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-20","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 518.","type":"HR","title":"Sanctions Lists Harmonization Act","url":"https://api.congress.gov/v3/bill/118/hr/5613?format=json","number":"5613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"6208","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"PAINTER Act","url":"https://api.congress.gov/v3/bill/118/hr/5164?format=json","number":"5164","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}} +{"type":"node","id":"6209","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2023-07-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"PAATCH Act","url":"https://api.congress.gov/v3/bill/118/hr/5093?format=json","number":"5093","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6210","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on actions taken by the Department of Government Efficiency.","url":"https://api.congress.gov/v3/bill/119/hr/1545?format=json","number":"1545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6211","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the head of the Department of Government Efficiency to submit a report to Congress on the personnel of the Department and present information to Congress on the activities carried out by the Department, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1544?format=json","number":"1544","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6212","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To designate the General George C. Marshall House, in the Commonwealth of Virginia, as an affiliated area of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1352?format=json","number":"1352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6213","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To direct the Secretary of State to establish a national registry of Korean American divided families, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1273?format=json","number":"1273","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6214","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Blue Ridge Fire Safety Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10306?format=json","number":"10306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"6215","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"No Discrimination in Housing Act","url":"https://api.congress.gov/v3/bill/118/hr/10195?format=json","number":"10195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6216","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Flexibility in Housing Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10194?format=json","number":"10194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6217","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-11-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Developing America’s Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/10122?format=json","number":"10122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"6218","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week beginning November 11, 2024, as \"National Pregnancy Center Week\" to recognize the vital role that community-supported pregnancy centers play in saving lives and serving women and men faced with difficult pregnancy decisions.","url":"https://api.congress.gov/v3/bill/118/hres/1509?format=json","number":"1509","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6219","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-27","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title 18, United States Code, to protect unborn children.","url":"https://api.congress.gov/v3/bill/118/hr/8855?format=json","number":"8855","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6220","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-05-23","latestAction_text":"Placed on the Union Calendar, Calendar No. 474.","type":"HR","title":"Protecting Student Athletes’ Economic Freedom Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8534?format=json","number":"8534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-05","latestAction_actionTime":""}} +{"type":"node","id":"6221","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protect Our Police Act","url":"https://api.congress.gov/v3/bill/118/hr/8432?format=json","number":"8432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6222","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-08","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SHUSH Act","url":"https://api.congress.gov/v3/bill/118/hr/8306?format=json","number":"8306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-08","latestAction_actionTime":""}} +{"type":"node","id":"6223","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Apprenticeship Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/8178?format=json","number":"8178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"6224","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-19","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"To prohibit Federal funding of National Public Radio and the use of Federal funds to acquire radio content.","url":"https://api.congress.gov/v3/bill/118/hr/8091?format=json","number":"8091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"6225","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Iran China Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7950?format=json","number":"7950","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}} +{"type":"node","id":"6226","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-04-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Every Town A Border Town Act","url":"https://api.congress.gov/v3/bill/118/hr/7875?format=json","number":"7875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-05","latestAction_actionTime":""}} +{"type":"node","id":"6227","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-05","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Denouncing calls for a cease-fire in Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1057?format=json","number":"1057","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6228","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-01-12","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Blue Ridge Fire Safety Act","url":"https://api.congress.gov/v3/bill/118/hr/6989?format=json","number":"6989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}} +{"type":"node","id":"6229","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"To prohibit the Administrator of the Environmental Protection Agency from finalizing, implementing, or enforcing the proposed rule related to revisions to the air emissions reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6813?format=json","number":"6813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"6230","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Regulation Through Litigation Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6667?format=json","number":"6667","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}} +{"type":"node","id":"6231","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-08","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Veterans Education is Timeless Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6300?format=json","number":"6300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-20","latestAction_actionTime":""}} +{"type":"node","id":"6232","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-11-03","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"No American Climate Corps Act","url":"https://api.congress.gov/v3/bill/118/hr/6215?format=json","number":"6215","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-10","latestAction_actionTime":""}} +{"type":"node","id":"6233","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-10-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of October 12, 2023, as \"National Loggers Day\".","url":"https://api.congress.gov/v3/bill/118/hres/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6234","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"Held at the desk.","type":"S","title":"International Trafficking Victims Protection Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/920?format=json","number":"920","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":"14:40:39"}} +{"type":"node","id":"6235","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-04-19","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 150.","type":"S","title":"Peace Corps Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1203?format=json","number":"1203","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6236","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"No Stolen Trademarks Honored in America Act","url":"https://api.congress.gov/v3/bill/118/s/746?format=json","number":"746","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-09","latestAction_actionTime":""}} +{"type":"node","id":"6237","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-02-07","latestAction_text":"Held at the desk.","type":"S","title":"End Tuberculosis Now Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/288?format=json","number":"288","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":"16:28:07"}} +{"type":"node","id":"6238","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Tech to Save Moms Act","url":"https://api.congress.gov/v3/bill/118/s/1699?format=json","number":"1699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}} +{"type":"node","id":"6239","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-02-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Maintaining Investments in New Innovation Act","url":"https://api.congress.gov/v3/bill/118/s/476?format=json","number":"476","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-16","latestAction_actionTime":""}} +{"type":"node","id":"6240","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-03-30","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-160.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to update the payment system of the Department of Veterans Affairs to allow for electronic fund transfer of educational assistance, administered by the Secretary, to a foreign institution of higher education, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/1090?format=json","number":"1090","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-26","latestAction_actionTime":""}} +{"type":"node","id":"6241","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Firefighter Cancer Registry Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2119?format=json","number":"2119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-22","latestAction_actionTime":""}} +{"type":"node","id":"6242","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-07-18","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 372.","type":"S","title":"MISSILES Act","url":"https://api.congress.gov/v3/bill/118/s/2336?format=json","number":"2336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}} +{"type":"node","id":"6243","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Education","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Economic Policy. Hearings held.","type":"S","title":"PSLF Payment Completion Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/1331?format=json","number":"1331","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"6244","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Autism Family Caregivers Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1333?format=json","number":"1333","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}} +{"type":"node","id":"6245","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1024?format=json","number":"","amendmentNumber":"1024","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6246","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/966?format=json","number":"","amendmentNumber":"966","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6247","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/967?format=json","number":"","amendmentNumber":"967","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6248","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/965?format=json","number":"","amendmentNumber":"965","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6249","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/962?format=json","number":"","amendmentNumber":"962","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6250","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/932?format=json","number":"","amendmentNumber":"932","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6251","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/933?format=json","number":"","amendmentNumber":"933","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6252","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/808?format=json","number":"","amendmentNumber":"808","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6253","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/807?format=json","number":"","amendmentNumber":"807","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"6254","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the need for enhanced public awareness of Huntington's Disease and support for the designation of a \"National Huntington's Disease Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1257?format=json","number":"1257","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}} +{"type":"node","id":"6255","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-05-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Bring Jobs Home Act","url":"https://api.congress.gov/v3/bill/118/hr/8506?format=json","number":"8506","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}} +{"type":"node","id":"6256","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-04-26","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"High Rise Fire Sprinkler Incentive Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8135?format=json","number":"8135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"6257","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-03-01","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the need for enhanced public awareness of traumatic brain injury and support for the designation of a National Brain Injury Awareness Month.","url":"https://api.congress.gov/v3/bill/118/hres/1049?format=json","number":"1049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}} +{"type":"node","id":"6258","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HCONRES","title":"Authorizing the use of Emancipation Hall in the Capitol Visitor Center for the 12th Annual Fallen Firefighters Congressional Flag Presentation Ceremony.","url":"https://api.congress.gov/v3/bill/118/hconres/91?format=json","number":"91","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"6259","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-02-01","policyArea_name":"Health","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 516.","type":"HR","title":"Dennis John Benigno Traumatic Brain Injury Program Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7208?format=json","number":"7208","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"6260","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-11-30","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Renewable Chemicals Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6532?format=json","number":"6532","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}} +{"type":"node","id":"6261","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2023-10-06","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Urging the people of the United States to observe the month of October 2023 as Italian and Italian-American Heritage Month.","url":"https://api.congress.gov/v3/bill/118/hres/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6262","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"HOPE Act","url":"https://api.congress.gov/v3/bill/118/hr/4747?format=json","number":"4747","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6263","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-07","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Reduce Excessive Decibels and Unwanted Commotion and Emissions to Heighten Enforcement and Limitation of Intrusive Chopper Operations to Protect Towns and Enhance Residents from Noise Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3921?format=json","number":"3921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}} +{"type":"node","id":"6264","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-06-05","policyArea_name":"Health","latestAction_text":"Became Public Law No: 118-147.","type":"HR","title":"Firefighter Cancer Registry Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3821?format=json","number":"3821","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6265","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-05-25","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"BOSS and SWIFT ACT of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3660?format=json","number":"3660","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-26","latestAction_actionTime":""}} +{"type":"node","id":"6266","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-05-18","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"STOP NJ CONGESTION Act","url":"https://api.congress.gov/v3/bill/118/hr/3531?format=json","number":"3531","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}} +{"type":"node","id":"6267","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-05-09","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of May 6, 2023, as \"National Sport Brain Health Day\".","url":"https://api.congress.gov/v3/bill/118/hres/379?format=json","number":"379","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-12","latestAction_actionTime":""}} +{"type":"node","id":"6268","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-04-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Ending Wall Street Tax Giveaway Act","url":"https://api.congress.gov/v3/bill/118/hr/2686?format=json","number":"2686","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-18","latestAction_actionTime":""}} +{"type":"node","id":"6269","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-03-27","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"FIRE STATION Act","url":"https://api.congress.gov/v3/bill/118/hr/1814?format=json","number":"1814","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-28","latestAction_actionTime":""}} +{"type":"node","id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}} +{"type":"node","id":"6271","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-01","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Law Enforcement Officers Equity Act","url":"https://api.congress.gov/v3/bill/118/hr/1322?format=json","number":"1322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}} +{"type":"node","id":"6272","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-01","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"LEO Fair Retirement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1323?format=json","number":"1323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}} +{"type":"node","id":"6273","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-02-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Crime Gun Tracing Modernization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/730?format=json","number":"730","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}} +{"type":"node","id":"6274","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-11-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Weldon Angelos Presidential Pardon Expungements Act","url":"https://api.congress.gov/v3/bill/118/hr/10248?format=json","number":"10248","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}} +{"type":"node","id":"6275","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Homeward Bound Act","url":"https://api.congress.gov/v3/bill/118/hr/9675?format=json","number":"9675","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6276","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Dakota Water Resources Act Amendments of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9554?format=json","number":"9554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6277","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Right to Trial Act","url":"https://api.congress.gov/v3/bill/118/hr/8856?format=json","number":"8856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"6278","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Armstrong amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/999?format=json","number":"","amendmentNumber":"999","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":"12:03:45"}} +{"type":"node","id":"6279","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-23","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"To designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/8516?format=json","number":"8516","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"6280","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-17","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/hjres/150?format=json","number":"150","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"6281","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Improving Protections for Workers in Temporary Agricultural Employment in the United States\".","url":"https://api.congress.gov/v3/bill/118/hjres/134?format=json","number":"134","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}} +{"type":"node","id":"6282","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-04-15","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Theodore Roosevelt Presidential Library Act","url":"https://api.congress.gov/v3/bill/118/hr/7992?format=json","number":"7992","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}} +{"type":"node","id":"6283","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"FTC REDO Act","url":"https://api.congress.gov/v3/bill/118/hr/7101?format=json","number":"7101","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}} +{"type":"node","id":"6284","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-12-07","policyArea_name":"Congress","latestAction_text":"Pursuant to the provisions of H. Res. 918, H. Res. 917 is considered passed House. (consideration: CR H6924; text: CR H6924)","type":"HRES","title":"Authorizing the enforcement of subpoenas issued by the Chairs of the Committees on Oversight and Accountability, Ways and Means, or the Judiciary as part of the inquiry into whether sufficient grounds exist for the House of Representatives to exercise its Constitutional power to impeach Joseph Biden, President of the United States of America, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/917?format=json","number":"917","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":"18:00:00"}} +{"type":"node","id":"6285","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-12-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Directing certain committees to continue their ongoing investigations as part of the existing House of Representatives inquiry into whether sufficient grounds exist for the House of Representatives to exercise its Constitutional power to impeach Joseph Biden, President of the United States of America, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/918?format=json","number":"918","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":"17:50:55"}} +{"type":"node","id":"6286","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-12-04","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"STOP Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6568?format=json","number":"6568","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-04","latestAction_actionTime":""}} +{"type":"node","id":"6287","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-28","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to permit payments to be made to the law firms of court-appointed attorneys, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5781?format=json","number":"5781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}} +{"type":"node","id":"6288","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-13","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 23 - 0.","type":"HR","title":"Prohibiting Punishment of Acquitted Conduct Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5430?format=json","number":"5430","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-02","latestAction_actionTime":""}} +{"type":"node","id":"6289","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-07-06","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Speech Privacy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4471?format=json","number":"4471","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-06","latestAction_actionTime":""}} +{"type":"node","id":"6290","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To require ports of entry along the northern border to remain open as many hours per day as they were open prior to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/118/hr/4961?format=json","number":"4961","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6291","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-07-20","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Honey Identification Verification and Enforcement Act","url":"https://api.congress.gov/v3/bill/118/hr/4764?format=json","number":"4764","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-24","latestAction_actionTime":""}} +{"type":"node","id":"6292","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-07-06","latestAction_text":"Referred to the Subcommittee on Elections.","type":"HR","title":"First Amendment Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/4472?format=json","number":"4472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6293","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Promoting Rural Exports Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4271?format=json","number":"4271","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-22","latestAction_actionTime":""}} +{"type":"node","id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6295","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"United States Reciprocal Trade Act","url":"https://api.congress.gov/v3/bill/119/hr/735?format=json","number":"735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"6296","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit proposition bets made with respect to the performance of a student athlete, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1552?format=json","number":"1552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6297","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 20 - 14.","type":"HR","title":"DETERRENT Act","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","number":"1048","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6298","labels":["Legislation"],"properties":{"sponsored_by":"W000829","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To repeal programs relating to funding for electric vehicle charging infrastructure, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1513?format=json","number":"1513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6299","labels":["Legislation"],"properties":{"sponsored_by":"W000829","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Endangered Species Act of 1973 to exclude certain populations of the lake sturgeon from the authority of such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1150?format=json","number":"1150","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"6300","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1866?format=json","number":"1866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6301","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/119/hr/1693?format=json","number":"1693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6302","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To redesignate land within certain wilderness study areas in the State of Wyoming, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1472?format=json","number":"1472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6303","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To require the United States Postal Service to apply certain requirements when closing a processing, shipping, delivery, or other facility supporting a post office, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1473?format=json","number":"1473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6304","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the General Education Provisions Act to require parental notification and consent with respect to certain activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1416?format=json","number":"1416","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6305","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1310?format=json","number":"1310","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6306","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To require the United States Postal Service to post notices of changes that will affect nationwide postal services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1249?format=json","number":"1249","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6307","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"PLCAA Federal Jurisdiction Act","url":"https://api.congress.gov/v3/bill/119/hr/1068?format=json","number":"1068","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6308","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported by Unanimous Consent.","type":"HR","title":"To provide for a memorandum of understanding to address the impacts of a certain record of decision on the Upper Colorado River Basin Fund.","url":"https://api.congress.gov/v3/bill/119/hr/1001?format=json","number":"1001","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6309","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Food Security Act of 1985 to repeal certain provisions relating to the acceptance and use of contributions for public-private partnerships, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/773?format=json","number":"773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6310","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No Net Gain in Federal Lands Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/775?format=json","number":"775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6311","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PASTURES Act","url":"https://api.congress.gov/v3/bill/119/hr/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6312","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To exempt Federal actions related to energy and mineral activities on certain Federal lands from the requirements of the National Environmental Policy Act of 1969.","url":"https://api.congress.gov/v3/bill/119/hr/676?format=json","number":"676","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6313","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Expression of Interest Sensibility Act","url":"https://api.congress.gov/v3/bill/119/hr/678?format=json","number":"678","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6314","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"EARA","url":"https://api.congress.gov/v3/bill/119/hr/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6315","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Regulatory Cooling Off Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/510?format=json","number":"510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6316","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Seventh Amendment Restoration Act","url":"https://api.congress.gov/v3/bill/119/hr/432?format=json","number":"432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"6317","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Grizzly Bear State Management Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/281?format=json","number":"281","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6318","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"COAL Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/280?format=json","number":"280","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6319","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Water Resources Development","introducedDate":"2025-01-07","latestAction_text":"Ordered to be Reported (Amended) by Unanimous Consent.","type":"HR","title":"Colorado River Basin System Conservation Extension Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/231?format=json","number":"231","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6320","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to authorize the Secretary of Health and Human Services, acting through the Assistant Secretary for Mental Health and Substance Use, to award grants for peer mental health first aid, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1448?format=json","number":"1448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6321","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Marsh-Billings-Rockefeller National Historical Park Establishment Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/986?format=json","number":"986","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6322","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Congratulating the University of Vermont men's soccer team on winning the 2024 National Collegiate Athletic Association Division I men's soccer national championship.","url":"https://api.congress.gov/v3/bill/119/hres/58?format=json","number":"58","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6323","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-12-17","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Financial Services, Education and the Workforce, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Combating Loneliness Act","url":"https://api.congress.gov/v3/bill/118/hr/10448?format=json","number":"10448","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6324","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-10-25","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing support for the recognition of October 26, 2024, as Intersex Awareness Day, and supporting the goals and ideals of Intersex Awareness Day.","url":"https://api.congress.gov/v3/bill/118/hres/1552?format=json","number":"1552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6325","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HRES","title":"Expressing support for the designation of the week of October 24, 2024, to October 31, 2024, as \"Bat Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1501?format=json","number":"1501","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-02","latestAction_actionTime":""}} +{"type":"node","id":"6326","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-19","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Marsh-Billings-Rockefeller National Historical Park Establishment Act Amendments Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9683?format=json","number":"9683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6327","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-23","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Lake Champlain Basin Program Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9097?format=json","number":"9097","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}} +{"type":"node","id":"6328","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-10","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Small Dollar Donor Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/8975?format=json","number":"8975","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"6329","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-21","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Stop Comstock Act.","url":"https://api.congress.gov/v3/bill/118/hr/8796?format=json","number":"8796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6330","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Juror Non-Discrimination Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8707?format=json","number":"8707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"6331","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-05","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Preventing the Algorithmic Facilitation of Rental Housing Cartels Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8622?format=json","number":"8622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"6332","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-05-16","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Mental Health Emergency Needs in Disasters Act","url":"https://api.congress.gov/v3/bill/118/hr/8422?format=json","number":"8422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}} +{"type":"node","id":"6333","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-02-13","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Community Housing Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7325?format=json","number":"7325","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6334","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-13","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"To make improvements in the enactment of title 41, United States Code, into a positive law title and to improve the Code.","url":"https://api.congress.gov/v3/bill/118/hr/7324?format=json","number":"7324","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}} +{"type":"node","id":"6335","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2023-11-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Emergency Medical Services Reimbursement for On-Scene and Support Act","url":"https://api.congress.gov/v3/bill/118/hr/6257?format=json","number":"6257","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6336","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-10-30","latestAction_text":"Sponsor introductory remarks on measure. (CR E1112-1113)","type":"HRES","title":"Commemorating the 80th anniversary of the establishment of the Missisquoi National Wildlife Refuge.","url":"https://api.congress.gov/v3/bill/118/hres/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-17","latestAction_actionTime":""}} +{"type":"node","id":"6337","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2023-10-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the recognition of October 26, 2023, as \"Intersex Awareness Day\", and supporting the goals and ideals of Intersex Awareness Day.","url":"https://api.congress.gov/v3/bill/118/hres/815?format=json","number":"815","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}} +{"type":"node","id":"6338","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2023-10-24","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HRES","title":"Expressing support for the designation of the week of October 24, 2023, to October 31, 2023, as \"BatWeek\".","url":"https://api.congress.gov/v3/bill/118/hres/805?format=json","number":"805","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}} +{"type":"node","id":"6339","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-09-21","latestAction_text":"Placed on the Union Calendar, Calendar No. 658.","type":"HR","title":"Addressing Addiction After Disasters Act","url":"https://api.congress.gov/v3/bill/118/hr/5623?format=json","number":"5623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}} +{"type":"node","id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6341","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Older Americans Act of 1965 to establish a grant program for multigenerational activities for long-term care facilities.","url":"https://api.congress.gov/v3/bill/119/hr/1812?format=json","number":"1812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"6342","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Public Health Service Act to provide for greater investments in research on rare diseases and conditions disproportionately affecting minority populations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1750?format=json","number":"1750","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6343","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 10, United States Code, to prohibit discrimination in the Armed Forces.","url":"https://api.congress.gov/v3/bill/119/hr/1543?format=json","number":"1543","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6344","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To award a Congressional Gold Medal collectively to the Buffalo Soldier regiments, authorized by Congress in 1866 to serve in the United States Armed Forces, in recognition of their superior, dedicated, and vital service to our Nation.","url":"https://api.congress.gov/v3/bill/119/hr/1437?format=json","number":"1437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6345","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To develop a database of members of the Armed Forces who died in non-combat military plane crashes and to provide support to the families of such members, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1030?format=json","number":"1030","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6346","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Fairness for Servicemembers and their Families Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/970?format=json","number":"970","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6347","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Colonel Young Oak Kim Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/hr/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6348","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to establish a compensation fund for military firefighters exposed to PFAS.","url":"https://api.congress.gov/v3/bill/119/hr/705?format=json","number":"705","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6349","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-06-03","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Capital for Beginning Farmers and Ranchers Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8598?format=json","number":"8598","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"6350","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Enhancing Oversight to End Discrimination in Policing Act","url":"https://api.congress.gov/v3/bill/118/hr/8509?format=json","number":"8509","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}} +{"type":"node","id":"6351","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-03-21","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Women and Underrepresented Minorities in STEM Booster Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7790?format=json","number":"7790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}} +{"type":"node","id":"6352","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-01-10","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to establish a compensation fund for military firefighters exposed to PFAS.","url":"https://api.congress.gov/v3/bill/118/hr/6946?format=json","number":"6946","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-10","latestAction_actionTime":""}} +{"type":"node","id":"6353","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Care Across Generations Act","url":"https://api.congress.gov/v3/bill/118/hr/6835?format=json","number":"6835","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-14","latestAction_actionTime":""}} +{"type":"node","id":"6354","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"REWARD Experience Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6537?format=json","number":"6537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}} +{"type":"node","id":"6355","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-09-21","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"To establish an Office of Public Engagement within the Pipeline and Hazardous Materials Safety Administration.","url":"https://api.congress.gov/v3/bill/118/hr/5666?format=json","number":"5666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"6356","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Equal and Uniform Treatment in the Military Act","url":"https://api.congress.gov/v3/bill/118/hr/5054?format=json","number":"5054","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"6357","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Reproductive Health Travel Fund Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4268?format=json","number":"4268","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}} +{"type":"node","id":"6358","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-06","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Office of Small Farms Establishment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3877?format=json","number":"3877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-06","latestAction_actionTime":""}} +{"type":"node","id":"6359","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","introducedDate":"2023-05-11","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ensuring Security for Military Spouses Act","url":"https://api.congress.gov/v3/bill/118/hr/3274?format=json","number":"3274","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-11","latestAction_actionTime":""}} +{"type":"node","id":"6360","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 5, United States Code, to clarify the nature of judicial review of agency interpretations of statutory and regulatory provisions.","url":"https://api.congress.gov/v3/bill/119/hr/1605?format=json","number":"1605","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6361","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Small Business, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose additional requirements for covered agencies in regulatory flexibility analysis.","url":"https://api.congress.gov/v3/bill/119/hr/1606?format=json","number":"1606","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6362","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Trade Commission relating to \"Premerger Notification; Reporting and Waiting Period Requirements\".","url":"https://api.congress.gov/v3/bill/119/hjres/39?format=json","number":"39","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6363","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stopping Overdoses of Fentanyl Analogues Act","url":"https://api.congress.gov/v3/bill/119/hr/1064?format=json","number":"1064","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6364","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Interstate Commerce Simplification Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/427?format=json","number":"427","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"6365","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"On agreeing to the Fitzgerald amendment (A002) Agreed to without objection.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1225?format=json","number":"","amendmentNumber":"1225","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:22"}} +{"type":"node","id":"6366","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Ensuring State Attorney General Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/9143?format=json","number":"9143","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6367","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-01","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"Keeping Violent Offenders Off Our Streets Act","url":"https://api.congress.gov/v3/bill/118/hr/8205?format=json","number":"8205","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}} +{"type":"node","id":"6368","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-04-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Interstate Commerce Simplification Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8021?format=json","number":"8021","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}} +{"type":"node","id":"6369","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-04-11","policyArea_name":"Law","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Restoring Court Authority Over Litigation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7947?format=json","number":"7947","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}} +{"type":"node","id":"6370","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-04-05","latestAction_text":"Placed on the Union Calendar, Calendar No. 548.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Board of Governors of the Federal Reserve System relating to \"Principles for Climate-Related Financial Risk Management for Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/118/hjres/125?format=json","number":"125","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-09","latestAction_actionTime":""}} +{"type":"node","id":"6371","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-04-02","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Accurate Credit Reporting for Homebuyers Act","url":"https://api.congress.gov/v3/bill/118/hr/7857?format=json","number":"7857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-02","latestAction_actionTime":""}} +{"type":"node","id":"6372","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-01","latestAction_text":"Became Public Law No: 118-127.","type":"HR","title":"To designate the facility of the United States Postal Service located at S74w16860 Janesville Road, in Muskego, Wisconsin, as the \"Colonel Hans Christian Heg Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/7199?format=json","number":"7199","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-25","latestAction_actionTime":""}} +{"type":"node","id":"6373","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-01-31","latestAction_text":"Placed on the Union Calendar, Calendar No. 490.","type":"HR","title":"Combating Money Laundering in Cyber Crime Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7156?format=json","number":"7156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}} +{"type":"node","id":"6374","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-01-10","latestAction_text":"Sponsor introductory remarks on measure. (CR H67-68)","type":"HR","title":"Expanding Access to Lending Options Act","url":"https://api.congress.gov/v3/bill/118/hr/6933?format=json","number":"6933","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}} +{"type":"node","id":"6375","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-21","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the victims of the devastating attack that took place at the Waukesha, Wisconsin, Christmas parade on November 21, 2021.","url":"https://api.congress.gov/v3/bill/118/hres/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6376","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-21","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Thwarting Regional Adversary Investments Now Act","url":"https://api.congress.gov/v3/bill/118/hr/5632?format=json","number":"5632","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}} +{"type":"node","id":"6377","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-19","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"BRIDGE Act","url":"https://api.congress.gov/v3/bill/118/hr/5565?format=json","number":"5565","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6378","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-09-18","latestAction_text":"Placed on the Union Calendar, Calendar No. 787.","type":"HR","title":"Insurance Data Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5535?format=json","number":"5535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"6379","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2023-09-14","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Prohibiting Adversarial Patents Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5475?format=json","number":"5475","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-14","latestAction_actionTime":""}} +{"type":"node","id":"6380","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to Rules for Supervisory Approval of Penalties.","url":"https://api.congress.gov/v3/bill/119/hjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6381","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow unreimbursed employee expenses to be taken into account as miscellaneous itemized deductions.","url":"https://api.congress.gov/v3/bill/119/hr/1691?format=json","number":"1691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6382","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Agriculture, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Environmental Protection Agency from using assessments generated by the Integrated Risk Information System for rulemakings and other regulatory actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1415?format=json","number":"1415","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6383","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Protecting Taxpayers from Student Loan Bailouts Act","url":"https://api.congress.gov/v3/bill/119/hr/937?format=json","number":"937","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6384","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Continuing Opportunities for People with Disabilities to Excel Act","url":"https://api.congress.gov/v3/bill/118/hr/10427?format=json","number":"10427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"6385","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Ending Racism in Government Contracting Act","url":"https://api.congress.gov/v3/bill/118/hr/10216?format=json","number":"10216","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6386","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-11-19","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/118/hjres/223?format=json","number":"223","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"6387","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Grothman amendment (A011) Failed by recorded vote: 193 - 218 (Roll no. 288).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1008?format=json","number":"","amendmentNumber":"1008","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":"16:07:30"}} +{"type":"node","id":"6388","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Grothman amendment (A017) Agreed to by recorded vote: 216 - 206 (Roll no. 265).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/975?format=json","number":"","amendmentNumber":"975","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"17:23:28"}} +{"type":"node","id":"6389","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-05","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"BIOSAFE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8632?format=json","number":"8632","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"6390","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-22","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Clean Elections in America Act","url":"https://api.congress.gov/v3/bill/118/hr/8499?format=json","number":"8499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}} +{"type":"node","id":"6391","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HRES","title":"Expressing the sense of the House of Representatives that certain welfare programs discourage marriage and hurt the institution of the family in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1235?format=json","number":"1235","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6392","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-04-18","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 20 - 13.","type":"HR","title":"Stop the Baseline Bloat Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8068?format=json","number":"8068","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6393","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-03-21","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Safeguarding Benefits for Americans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7772?format=json","number":"7772","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}} +{"type":"node","id":"6394","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-03-07","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Appropriations Transparency Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7584?format=json","number":"7584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}} +{"type":"node","id":"6395","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-02-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Empowering Learners through Competency-Based Education Act","url":"https://api.congress.gov/v3/bill/118/hr/7495?format=json","number":"7495","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-29","latestAction_actionTime":""}} +{"type":"node","id":"6396","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-02-07","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"No IRIS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7284?format=json","number":"7284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-09","latestAction_actionTime":""}} +{"type":"node","id":"6397","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-02-01","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 41 - 0.","type":"HR","title":"Congressional Budget Office Data Access Act","url":"https://api.congress.gov/v3/bill/118/hr/7184?format=json","number":"7184","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6398","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BOP Direct-Hire Authority Act","url":"https://api.congress.gov/v3/bill/118/hr/6628?format=json","number":"6628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"6399","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2023-11-08","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Cancer Drug Parity Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6301?format=json","number":"6301","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}} +{"type":"node","id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}} +{"type":"node","id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6403","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture Export Promotion Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6404","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on Armed Services, and Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/956?format=json","number":"956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6405","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"To provide for operations of the Federal Columbia River Power System pursuant to a certain operation plan for a specified period of time, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/626?format=json","number":"626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6406","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-07","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Federal Employee Return to Work Act","url":"https://api.congress.gov/v3/bill/119/hr/236?format=json","number":"236","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"6407","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-17","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Foreign Affairs, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Joint Task Force to Counter Illicit Synthetic Narcotics Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10459?format=json","number":"10459","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6408","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-10-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Federal Employee Return to Work Act","url":"https://api.congress.gov/v3/bill/118/hr/10014?format=json","number":"10014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}} +{"type":"node","id":"6409","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Upholding USPS Delivery Standards and Election Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9932?format=json","number":"9932","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"6410","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing support for the designation of the week of September 22 through September 28, 2024, as \"Gold Star Families Remembrance Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1447?format=json","number":"1447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6411","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-09-06","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9456?format=json","number":"9456","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6412","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Foreign Affairs, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9442?format=json","number":"9442","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"6413","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-08-02","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"REG Act","url":"https://api.congress.gov/v3/bill/118/hr/9277?format=json","number":"9277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-03","latestAction_actionTime":""}} +{"type":"node","id":"6414","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Patrick Gottsch.","url":"https://api.congress.gov/v3/bill/118/hres/1363?format=json","number":"1363","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}} +{"type":"node","id":"6415","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-09","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Uniform Credentials for IHS Providers Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8956?format=json","number":"8956","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}} +{"type":"node","id":"6416","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-06-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"No American Land for Communist China Act","url":"https://api.congress.gov/v3/bill/118/hr/8693?format=json","number":"8693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}} +{"type":"node","id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"6418","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Establishment of a Nonessential Experimental Population of Grizzly Bear in the North Cascades Ecosystem, Washington State\".","url":"https://api.congress.gov/v3/bill/118/hjres/149?format=json","number":"149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6419","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HRES","title":"Designating the month of May as \"National First Responder Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1185?format=json","number":"1185","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}} +{"type":"node","id":"6420","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To require income from the first year of an apprenticeship to be disregarded in determining eligibility for assistance under the program of block grants to States for temporary assistance for needy families.","url":"https://api.congress.gov/v3/bill/119/hr/1859?format=json","number":"1859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6421","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Prevent Tariff Abuse Act","url":"https://api.congress.gov/v3/bill/119/hr/407?format=json","number":"407","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"6422","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"United States Leadership in Immersive Technology Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10359?format=json","number":"10359","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6423","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"DAMS for Beavers Act","url":"https://api.congress.gov/v3/bill/118/hr/10303?format=json","number":"10303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"6424","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Expanding Support for Living Donors Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10282?format=json","number":"10282","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6425","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Prevent Tariff Abuse Act","url":"https://api.congress.gov/v3/bill/118/hr/10181?format=json","number":"10181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6426","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-10-01","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Science, Space, and Technology, Education and the Workforce, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Smart Cities and Communities Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9892?format=json","number":"9892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"6427","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Preventing Unnecessary Deaths During Life-Threatening Events Act","url":"https://api.congress.gov/v3/bill/118/hr/9122?format=json","number":"9122","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}} +{"type":"node","id":"6428","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Apprenticeship Opportunity Act","url":"https://api.congress.gov/v3/bill/118/hr/8225?format=json","number":"8225","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6429","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-07","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Manufacturing Jobs for Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7583?format=json","number":"7583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}} +{"type":"node","id":"6430","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-01-17","latestAction_text":"Placed on the Union Calendar, Calendar No. 745.","type":"HR","title":"National Landslide Preparedness Act Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7003?format=json","number":"7003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"6431","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Clean Competition Act","url":"https://api.congress.gov/v3/bill/118/hr/6622?format=json","number":"6622","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-08","latestAction_actionTime":""}} +{"type":"node","id":"6432","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2023-11-08","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Remote Seafood Employee Meals Tax Parity Act","url":"https://api.congress.gov/v3/bill/118/hr/6295?format=json","number":"6295","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}} +{"type":"node","id":"6433","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-08","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"SNAP E&T Enhancements Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5362?format=json","number":"5362","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}} +{"type":"node","id":"6434","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","number":"646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}} +{"type":"node","id":"6435","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2023-06-27","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Expressing support for the designation of June 26 as \"LGBTQI+ Equality Day\".","url":"https://api.congress.gov/v3/bill/118/hres/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-27","latestAction_actionTime":""}} +{"type":"node","id":"6436","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-09","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Hydrogen Aviation Development Act","url":"https://api.congress.gov/v3/bill/118/hr/3960?format=json","number":"3960","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-12","latestAction_actionTime":""}} +{"type":"node","id":"6437","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-05-18","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Portable Benefits for Independent Workers Pilot Program Act","url":"https://api.congress.gov/v3/bill/118/hr/3482?format=json","number":"3482","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}} +{"type":"node","id":"6438","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-04-18","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Transportation Innovation Coordination Act","url":"https://api.congress.gov/v3/bill/118/hr/2664?format=json","number":"2664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-19","latestAction_actionTime":""}} +{"type":"node","id":"6439","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-02-21","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Freedom to Invest in a Sustainable Future Act","url":"https://api.congress.gov/v3/bill/118/hr/1119?format=json","number":"1119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6440","labels":["Legislation"],"properties":{"sponsored_by":"V000138","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Support Military Families Act","url":"https://api.congress.gov/v3/bill/119/hr/977?format=json","number":"977","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6441","labels":["Legislation"],"properties":{"sponsored_by":"M001239","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To provide for the inclusion of uranium on the list of critical minerals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1622?format=json","number":"1622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6442","labels":["Legislation"],"properties":{"sponsored_by":"M001239","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Sponsor introductory remarks on measure. (CR H845)","type":"HR","title":"To amend title 23, United States Code, to increase the maximum gross vehicle weight for certain agricultural vehicles operating on a segment of the Interstate System in the Commonwealth of Virginia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1487?format=json","number":"1487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6443","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To amend the Research and Development, Competition, and Innovation Act to clarify the definition of foreign country for purposes of malign foreign talent recruitment restriction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1318?format=json","number":"1318","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6444","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Food and Nutrition Act of 2008 to modify work requirements under the supplemental nutrition assistance program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1198?format=json","number":"1198","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6445","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Utah Wildfire Research Institute Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1045?format=json","number":"1045","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6446","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-14","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Historic Roadways Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/376?format=json","number":"376","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"6447","labels":["Legislation"],"properties":{"sponsored_by":"J000310","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require an assessement of CBP and ICE staffing at the southern border, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1930?format=json","number":"1930","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6448","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To require $100 notes to include a portrait of Donald J. Trump, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1790?format=json","number":"1790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"6449","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To abolish the John E. Fogarty International Center for Advanced Study in the Health Sciences.","url":"https://api.congress.gov/v3/bill/119/hr/1120?format=json","number":"1120","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"6450","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"REMAIN in Mexico Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/273?format=json","number":"273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6451","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-21","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Glen Canyon National Recreation Area: Motor Vehicles\".","url":"https://api.congress.gov/v3/bill/119/hjres/60?format=json","number":"60","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6452","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To require the Director of the Bureau of Land Management to withdraw a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/hr/1206?format=json","number":"1206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6453","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-05","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Forest Service of the Department of Agriculture relating to \"Law Enforcement; Criminal Prohibitions\".","url":"https://api.congress.gov/v3/bill/119/hjres/36?format=json","number":"36","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6454","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"FREE Act","url":"https://api.congress.gov/v3/bill/119/hr/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6455","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Ending Presidential Overreach on Public Lands Act","url":"https://api.congress.gov/v3/bill/119/hr/521?format=json","number":"521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6456","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Daylight Act","url":"https://api.congress.gov/v3/bill/119/hr/300?format=json","number":"300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6457","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"GEO Act","url":"https://api.congress.gov/v3/bill/119/hr/301?format=json","number":"301","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6458","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Water Rights Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/302?format=json","number":"302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6459","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-10-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To require the Secretary of Health and Human Services to conduct a study on pharmacy benefit manager audit practices.","url":"https://api.congress.gov/v3/bill/118/hr/10050?format=json","number":"10050","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6460","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-18","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title 38, United States Code, to include eyeglass lens fittings in the category of medical services authorized to be furnished to veterans under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10012?format=json","number":"10012","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"6461","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-09-03","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Authorizing the use of Emancipation Hall in the Capitol Visitor Center for the unveiling of a statue of Martha Hughes Cannon.","url":"https://api.congress.gov/v3/bill/118/hconres/127?format=json","number":"127","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-26","latestAction_actionTime":""}} +{"type":"node","id":"6462","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-25","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Public Land Search and Rescue Act","url":"https://api.congress.gov/v3/bill/118/hr/9165?format=json","number":"9165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"6463","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-15","latestAction_text":"Reported by the Committee on Small Business. H. Rept. 118-854, Part I.","type":"HR","title":"Enhanced Regulatory Flexibility Assessment Act","url":"https://api.congress.gov/v3/bill/118/hr/9032?format=json","number":"9032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"6464","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-18","latestAction_text":"Placed on the Union Calendar, Calendar No. 791.","type":"HR","title":"FREE Act","url":"https://api.congress.gov/v3/bill/118/hr/8784?format=json","number":"8784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"6465","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Law","latestAction_text":"Became Public Law No: 118-250.","type":"HR","title":"To amend title 28, United States Code, to authorize holding court for the Central Division of Utah in Moab and Monticello.","url":"https://api.congress.gov/v3/bill/118/hr/8666?format=json","number":"8666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"6466","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-04-19","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"RECA Extension Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8097?format=json","number":"8097","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-19","latestAction_actionTime":""}} +{"type":"node","id":"6467","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-21","latestAction_text":"Placed on the Union Calendar, Calendar No. 703.","type":"HR","title":"Good Samaritan Remediation of Abandoned Hardrock Mines Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7779?format=json","number":"7779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6468","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-03-05","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Water Rights Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7544?format=json","number":"7544","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"6469","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-02-13","latestAction_text":"Became Public Law No: 118-181.","type":"HR","title":"Utah State Parks Adjustment Act","url":"https://api.congress.gov/v3/bill/118/hr/7332?format=json","number":"7332","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"6470","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-01-30","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"HR","title":"The WOSB Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7128?format=json","number":"7128","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6472","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Higher Education Act of 1965 to enhance teacher and school leader quality partnership grants.","url":"https://api.congress.gov/v3/bill/119/hr/1331?format=json","number":"1331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6473","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committees on Agriculture, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Coordination for Soil Carbon Research and Monitoring Act","url":"https://api.congress.gov/v3/bill/119/hr/641?format=json","number":"641","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6474","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To amend title 49, United States Code, to allow Amtrak to use grant funds to satisfy non-Federal share requirements of certain grant programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10382?format=json","number":"10382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6475","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-12-10","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Recognizing the importance of a continued commitment to ending pediatric HIV/AIDS worldwide.","url":"https://api.congress.gov/v3/bill/118/hres/1613?format=json","number":"1613","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"6476","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-11-21","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Nottoway Indian Tribe of Virginia Federal Recognition Act","url":"https://api.congress.gov/v3/bill/118/hr/10191?format=json","number":"10191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6477","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Get Toxic Substances Out of Schools Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10173?format=json","number":"10173","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"6478","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-11-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1581?format=json","number":"1581","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"6479","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-24","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"BUILT Act","url":"https://api.congress.gov/v3/bill/118/hr/9771?format=json","number":"9771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"6480","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-08-30","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Tobacco User Fee Modernization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9425?format=json","number":"9425","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"6481","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Improving Mentorship in STEM Higher Education Act","url":"https://api.congress.gov/v3/bill/118/hr/9134?format=json","number":"9134","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6482","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing the threat of extreme weather to children's health and well-being, and expressing the sense of Congress that solutions must be rapidly and equitably developed and deployed to address the unique vulnerabilities and needs of children.","url":"https://api.congress.gov/v3/bill/118/hres/1375?format=json","number":"1375","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}} +{"type":"node","id":"6484","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-26","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Celestial Time Standardization Act","url":"https://api.congress.gov/v3/bill/118/hr/8837?format=json","number":"8837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":""}} +{"type":"node","id":"6485","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permit qualified distributions from section 529 plans for certain transportation and parking expenses.","url":"https://api.congress.gov/v3/bill/118/hr/8438?format=json","number":"8438","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6486","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-10","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 10, United States Code, to establish a counseling pathway in the Transition Assistance Program for members of the reserve components of the Armed Forces.","url":"https://api.congress.gov/v3/bill/118/hr/8336?format=json","number":"8336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}} +{"type":"node","id":"6487","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-03-20","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"CONSENT Act","url":"https://api.congress.gov/v3/bill/118/hr/7736?format=json","number":"7736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":""}} +{"type":"node","id":"6488","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-15","latestAction_text":"Became Public Law No: 118-239.","type":"HR","title":"To designate the facility of the United States Postal Service located at 29 Franklin Street in Petersburg, Virginia, as the \"John Mercer Langston Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/7385?format=json","number":"7385","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"6489","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2023-11-17","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H5940-5941)","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/874?format=json","number":"874","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-29","latestAction_actionTime":""}} +{"type":"node","id":"6490","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-13","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Military OneSource Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/6386?format=json","number":"6386","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}} +{"type":"node","id":"6491","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to require the online publication of the docket of the Board of Veterans' Appeals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1741?format=json","number":"1741","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6492","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the name of military installation under jurisdiction of Secretary of the Army located in Fayetteville, North Carolina, to be known and designated as Fort Bragg, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1214?format=json","number":"1214","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6493","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 2600 Wesley Street in Greenville, Texas, as the \"Cooper Dawson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1025?format=json","number":"1025","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6494","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ensuring Justice for Victims of Partial-Birth Abortion Act","url":"https://api.congress.gov/v3/bill/119/hr/895?format=json","number":"895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6495","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Defund the CFPB Act","url":"https://api.congress.gov/v3/bill/119/hr/814?format=json","number":"814","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6496","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Funding is Zero for Zero Nutrition Options (FIZZ-NO) Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/813?format=json","number":"813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6497","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"MACARTHUR Act","url":"https://api.congress.gov/v3/bill/119/hr/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6498","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Venue Named Under Exception Act","url":"https://api.congress.gov/v3/bill/119/hr/194?format=json","number":"194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"6499","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-03","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/119/hr/195?format=json","number":"195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"6500","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/118/hr/10463?format=json","number":"10463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6501","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ensuring Justice for Victims of Partial-Birth Abortion Act","url":"https://api.congress.gov/v3/bill/118/hr/10349?format=json","number":"10349","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"6502","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-10-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Federal Program Integrity and Fraud Prevention Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9992?format=json","number":"9992","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-15","latestAction_actionTime":""}} +{"type":"node","id":"6503","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"VENUE Act","url":"https://api.congress.gov/v3/bill/118/hr/9582?format=json","number":"9582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6504","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-06","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Enhancing Faith-Based Support for Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9485?format=json","number":"9485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"6505","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"On agreeing to the Self amendment (A003) Failed by recorded vote: 149 - 262 (Roll no. 349).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1085?format=json","number":"","amendmentNumber":"1085","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"10:50:24"}} +{"type":"node","id":"6506","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"On agreeing to the Self amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1084?format=json","number":"","amendmentNumber":"1084","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"10:07:20"}} +{"type":"node","id":"6507","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-28","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Consumer Financial Protection Bureau Withdrawal Cap Adjustment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8908?format=json","number":"8908","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}} +{"type":"node","id":"6508","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-27","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"To rename the portion of United States Highway 75 between President George Bush Turnpike and United States Highway 380 as the \"U.S. Congressman and Prisoner of War Sam Johnson Memorial Highway\".","url":"https://api.congress.gov/v3/bill/118/hr/8870?format=json","number":"8870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}} +{"type":"node","id":"6509","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Self amendment (A027) Agreed to by recorded vote: 206 - 200 (Roll no. 241).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/954?format=json","number":"","amendmentNumber":"954","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"16:25:23"}} +{"type":"node","id":"6510","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Gaza Strip Travel Restriction Act","url":"https://api.congress.gov/v3/bill/118/hr/8558?format=json","number":"8558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"6511","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit the use of funds supporting any activities within the Xinjiang Uyghur Autonomous Region of the People's Republic of China.","url":"https://api.congress.gov/v3/bill/119/hr/1724?format=json","number":"1724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6512","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1574?format=json","number":"1574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6513","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Border Security Investment Act","url":"https://api.congress.gov/v3/bill/119/hr/445?format=json","number":"445","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"6514","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HRES","title":"Honoring the selfless acts of adoption, fostering, and unconditional love by Bishop W.C. Martin, First Lady Donna Martin, and the Bennett Chapel Missionary Baptist Church of Possum Trot, Texas, toward the children in their community, and recognizing families across America who strive to foster, adopt, and better the lives of vulnerable children in the foster care system.","url":"https://api.congress.gov/v3/bill/118/hres/1572?format=json","number":"1572","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"6515","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-08-30","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"SEAS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9440?format=json","number":"9440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-31","latestAction_actionTime":""}} +{"type":"node","id":"6516","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"RESTORE Patent Rights Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9221?format=json","number":"9221","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"6517","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Condemning the pro-abortion policies of the Biden administration.","url":"https://api.congress.gov/v3/bill/118/hres/1285?format=json","number":"1285","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}} +{"type":"node","id":"6518","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-04-17","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Supporting Parents in Education Act","url":"https://api.congress.gov/v3/bill/118/hr/8050?format=json","number":"8050","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"6519","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-02-05","policyArea_name":"Families","latestAction_text":"Placed on the Union Calendar, Calendar No. 633.","type":"HR","title":"Jenna Quinn Law of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7233?format=json","number":"7233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-26","latestAction_actionTime":""}} +{"type":"node","id":"6520","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-01-11","policyArea_name":"Immigration","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Denouncing the Biden administration's open-borders policies, condemning the national security and public safety crisis along the southwest border, and urging President Biden to end his administration's open-borders policies.","url":"https://api.congress.gov/v3/bill/118/hres/957?format=json","number":"957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-17","latestAction_actionTime":"17:18:59"}} +{"type":"node","id":"6521","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-05","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"No Technology for Terror Act","url":"https://api.congress.gov/v3/bill/118/hr/6603?format=json","number":"6603","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"6522","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-09-21","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Building Youth Workforce Skills Act","url":"https://api.congress.gov/v3/bill/118/hr/5649?format=json","number":"5649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}} +{"type":"node","id":"6523","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Strong Communities Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5029?format=json","number":"5029","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"6524","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-14","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Rural Weather Monitoring Systems Act","url":"https://api.congress.gov/v3/bill/118/hr/4654?format=json","number":"4654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-14","latestAction_actionTime":""}} +{"type":"node","id":"6525","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-07-10","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"American Confidence in Elections: District of Columbia Ballot Security Act","url":"https://api.congress.gov/v3/bill/118/hr/4523?format=json","number":"4523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-10","latestAction_actionTime":""}} +{"type":"node","id":"6526","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2023-07-06","latestAction_text":"Sponsor introductory remarks on measure. (CR H3601)","type":"HJRES","title":"Proposing a balanced budget amendment to the Constitution of the United States.","url":"https://api.congress.gov/v3/bill/118/hjres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-13","latestAction_actionTime":""}} +{"type":"node","id":"6527","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-06-12","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","type":"HR","title":"No Dollars to Uyghur Forced Labor Act","url":"https://api.congress.gov/v3/bill/118/hr/4039?format=json","number":"4039","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6528","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Visa Overstays Penalties Act","url":"https://api.congress.gov/v3/bill/118/hr/2436?format=json","number":"2436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}} +{"type":"node","id":"6529","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-24","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the President to impose sanctions against foreign persons determined to have knowingly engaged in significant corruption in Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/1779?format=json","number":"1779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-24","latestAction_actionTime":""}} +{"type":"node","id":"6530","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2023-03-10","latestAction_text":"Referred to the Subcommittee on Water, Wildlife, and Fisheries.","type":"HR","title":"Public Water Supply Invasive Species Compliance Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1560?format=json","number":"1560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-22","latestAction_actionTime":""}} +{"type":"node","id":"6531","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to provide that aliens who have been convicted of or who have committed an offense related to entering military, naval, or coast guard property, are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1935?format=json","number":"1935","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6532","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To direct the Secretary of Homeland Security to submit a report to Congress on crimes committed by individuals granted parole under the Immigration and Nationality Act.","url":"https://api.congress.gov/v3/bill/119/hr/1714?format=json","number":"1714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6533","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To direct the Secretary of Homeland Security to conduct a threat assessment of terrorist threats to the United States posed by individuals in Syria with an affiliation with a Foreign Terrorist Organization or a Specially Designated Global Terrorist Organization, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1327?format=json","number":"1327","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6534","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Sponsor introductory remarks on measure. (CR H668)","type":"HR","title":"To establish vetting standards for the placement of unaccompanied alien children with sponsors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1202?format=json","number":"1202","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6535","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To publicize U.S. Customs and Border Protection operational statistics and report on foreign terrorist organizations.","url":"https://api.congress.gov/v3/bill/119/hr/1079?format=json","number":"1079","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6536","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Specialist Joey Lenz Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1014?format=json","number":"1014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6537","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Empowering Law Enforcement To Fight Sex Trafficking Demand Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/520?format=json","number":"520","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6538","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-01","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Specialist Joey Lenz Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10093?format=json","number":"10093","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6539","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-10","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"SAVES Act","url":"https://api.congress.gov/v3/bill/118/hr/9525?format=json","number":"9525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"6540","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protecting Military Assets Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8969?format=json","number":"8969","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}} +{"type":"node","id":"6541","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","introducedDate":"2024-06-05","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Criminal Illegal Alien Report Act","url":"https://api.congress.gov/v3/bill/118/hr/8634?format=json","number":"8634","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"6542","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-10","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","type":"HR","title":"Veterans Claims Quality Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7919?format=json","number":"7919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}} +{"type":"node","id":"6543","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-21","latestAction_text":"Became Public Law No: 118-130.","type":"HR","title":"Veterans’ Compensation Cost-of-Living Adjustment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7777?format=json","number":"7777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-25","latestAction_actionTime":""}} +{"type":"node","id":"6544","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-21","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"STOP Enemies Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7767?format=json","number":"7767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}} +{"type":"node","id":"6545","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","introducedDate":"2024-03-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"CARTEL Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7566?format=json","number":"7566","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6546","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Empowering Law Enforcement To Fight Sex Trafficking Demand Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7382?format=json","number":"7382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"6547","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Jalisco Cartel Neutralization Act","url":"https://api.congress.gov/v3/bill/118/hr/7313?format=json","number":"7313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-09","latestAction_actionTime":""}} +{"type":"node","id":"6548","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-01","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Defend Our Borders From Armed Invaders Act","url":"https://api.congress.gov/v3/bill/118/hr/7182?format=json","number":"7182","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-01","latestAction_actionTime":""}} +{"type":"node","id":"6549","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-29","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Mark Our Place Act","url":"https://api.congress.gov/v3/bill/118/hr/6507?format=json","number":"6507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"6550","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-10-17","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"HR","title":"Improving Travel for Families Act","url":"https://api.congress.gov/v3/bill/118/hr/5969?format=json","number":"5969","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6551","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"Making continuing appropriations for military pay in the event of a Government shutdown.","url":"https://api.congress.gov/v3/bill/119/hr/1932?format=json","number":"1932","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6552","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Secretary of Education to award grants to local educational agencies to establish or improve world language or dual language programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1572?format=json","number":"1572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6553","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To authorize the Administrator of the National Aeronautics and Space Administration to reimburse the Town of Chincoteague, Virginia, for costs directly associated with the removal and replacement of certain drinking water wells.","url":"https://api.congress.gov/v3/bill/119/hr/1419?format=json","number":"1419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6554","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Representing our Seniors at VA Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6555","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"PRECEPT Nurses Act","url":"https://api.congress.gov/v3/bill/119/hr/392?format=json","number":"392","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"6556","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"Pay Our Troops Act","url":"https://api.congress.gov/v3/bill/118/hr/9699?format=json","number":"9699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6557","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-09-17","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Cheroenhaka (Nottoway) Indian Tribe of Virginia Federal Recognition Act","url":"https://api.congress.gov/v3/bill/118/hr/9630?format=json","number":"9630","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"6558","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-10","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To authorize NASA to reimburse Chincoteague for drinking water well replacement costs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8982?format=json","number":"8982","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"6559","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To extend the authority of the Secretary of the Army to enter into a contract, partnership, or grant with a non-profit organization for the purpose of providing financial support for the maintenance and sustainment of infrastructure and facilities at military service memorials and museums that highlight the role of women in the military.","url":"https://api.congress.gov/v3/bill/118/hr/8967?format=json","number":"8967","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}} +{"type":"node","id":"6560","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of June 12, 2024, as \"Women Veterans Appreciation Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"6561","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A010) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/937?format=json","number":"","amendmentNumber":"937","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:49:19"}} +{"type":"node","id":"6562","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A013) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/940?format=json","number":"","amendmentNumber":"940","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"14:03:07"}} +{"type":"node","id":"6563","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A011) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/938?format=json","number":"","amendmentNumber":"938","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:54:24"}} +{"type":"node","id":"6564","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A012) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/939?format=json","number":"","amendmentNumber":"939","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:58:39"}} +{"type":"node","id":"6565","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"To amend title XIX of the Social Security Act to add a Medicaid State plan requirement with respect to the determination of residency of certain individuals serving in the Armed Forces.","url":"https://api.congress.gov/v3/bill/118/hr/8108?format=json","number":"8108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"6566","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-11","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Servicemember Healthcare Freedom Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7953?format=json","number":"7953","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}} +{"type":"node","id":"6567","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-20","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"FORCE Act","url":"https://api.congress.gov/v3/bill/118/hr/7419?format=json","number":"7419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}} +{"type":"node","id":"6568","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-01-25","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Counting Veterans’ Cancer Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7091?format=json","number":"7091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6569","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-01-11","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 711.","type":"HR","title":"Securing Chain of Command Continuity Act","url":"https://api.congress.gov/v3/bill/118/hr/6972?format=json","number":"6972","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6570","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-09","latestAction_text":"Placed on the Union Calendar, Calendar No. 744.","type":"HR","title":"MVP Act","url":"https://api.congress.gov/v3/bill/118/hr/6342?format=json","number":"6342","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"6572","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"American Energy Worker Opportunity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9557?format=json","number":"9557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"6573","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-05-22","policyArea_name":"","latestAction_text":"On agreeing to the Casar amendment (A001) Failed by recorded vote: 204 - 209 (Roll no. 223).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/919?format=json","number":"","amendmentNumber":"919","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":"17:23:46"}} +{"type":"node","id":"6574","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-02-14","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Connect the Grid Act","url":"https://api.congress.gov/v3/bill/118/hr/7348?format=json","number":"7348","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-16","latestAction_actionTime":""}} +{"type":"node","id":"6575","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-26","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"No Photo for Food Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5701?format=json","number":"5701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}} +{"type":"node","id":"6576","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-07-27","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Fairness for Small-Scale Farmers and Ranchers Act","url":"https://api.congress.gov/v3/bill/118/hr/4979?format=json","number":"4979","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"6577","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-07-27","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Agricultural Worker Justice Act","url":"https://api.congress.gov/v3/bill/118/hr/4978?format=json","number":"4978","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}} +{"type":"node","id":"6578","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-04-25","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Child Labor Exploitation Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/2822?format=json","number":"2822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-25","latestAction_actionTime":""}} +{"type":"node","id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6580","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"To require the Secretary of Homeland Security to conduct annual assessments on terrorism threats to the United States posed by terrorist organizations utilizing generative artificial intelligence applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1736?format=json","number":"1736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6581","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1735?format=json","number":"1735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6582","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/hr/1579?format=json","number":"1579","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6583","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the National Telecommunications and Information Administration Organization Act to establish a Digital Economy and Cybersecurity Board of Advisors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1495?format=json","number":"1495","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6584","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To require the Assistant Secretary of Commerce for Communications and Information to submit to Congress a plan for the Assistant Secretary to track the acceptance, processing, and disposal of certain Form 299s, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1343?format=json","number":"1343","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6585","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To require the Secretary of Homeland Security to conduct annual assessments on terrorism threats to the United States posed by terrorist organizations utilizing foreign cloud-based mobile or desktop messaging applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1212?format=json","number":"1212","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6586","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Amateur Radio Emergency Preparedness Act","url":"https://api.congress.gov/v3/bill/119/hr/1094?format=json","number":"1094","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6587","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Presented to President.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/hjres/35?format=json","number":"35","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6588","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States to prohibit persons who are not citizens, nationals, or lawful permanent residents of the United States from voting in elections.","url":"https://api.congress.gov/v3/bill/119/hjres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6589","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"No Foreign Persons Administering Our Elections Act","url":"https://api.congress.gov/v3/bill/119/hr/882?format=json","number":"882","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6590","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Counter SNIPER Act","url":"https://api.congress.gov/v3/bill/119/hr/883?format=json","number":"883","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6591","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022.","url":"https://api.congress.gov/v3/bill/119/hr/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6592","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","url":"https://api.congress.gov/v3/bill/119/hr/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6593","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the definitions of firearm silencer and firearm muffler in section 921 of title 18, United States Code, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"6594","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"ACES Act","url":"https://api.congress.gov/v3/bill/119/hr/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6595","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"RACE Act","url":"https://api.congress.gov/v3/bill/119/hr/529?format=json","number":"529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6596","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Natural Gas Tax Repeal Act","url":"https://api.congress.gov/v3/bill/119/hr/313?format=json","number":"313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6597","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Energy","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","type":"HR","title":"Protecting American Energy Production Act","url":"https://api.congress.gov/v3/bill/119/hr/26?format=json","number":"26","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"6598","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/118/hjres/228?format=json","number":"228","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6599","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to ensure that the Secretary of Veterans Affairs repays members of the Armed Forces for certain contributions made by such members towards Post-9/11 Educational Assistance.","url":"https://api.congress.gov/v3/bill/119/hr/1872?format=json","number":"1872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6601","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To amend the Export Control Reform Act of 2018 relating to licensing transparency.","url":"https://api.congress.gov/v3/bill/119/hr/1316?format=json","number":"1316","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6602","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To direct the Secretary of State to submit to Congress a report on funding provided by the United States to the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1252?format=json","number":"1252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6603","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To exclude certain amounts relating to compensating victims of the Texas Panhandle fires, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1169?format=json","number":"1169","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"6604","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"AIM HIGH Act","url":"https://api.congress.gov/v3/bill/119/hr/1072?format=json","number":"1072","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6605","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No User Fees for Gun Owners Act","url":"https://api.congress.gov/v3/bill/119/hr/943?format=json","number":"943","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6606","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"FARM Act","url":"https://api.congress.gov/v3/bill/119/hr/620?format=json","number":"620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"6607","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HCONRES","title":"Expressing support for the Geneva Consensus Declaration on Promoting Women's Health and Strengthening the Family and urging that the United States rejoin this historic declaration.","url":"https://api.congress.gov/v3/bill/119/hconres/3?format=json","number":"3","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"6608","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 107 North Hoyne Avenue in Fritch, Texas, as the \"Chief Zeb Smith Post Office\".","url":"https://api.congress.gov/v3/bill/119/hr/282?format=json","number":"282","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6609","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-10-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 505 East 9th Avenue in Amarillo, Texas, as the \"Mayor Jerry H. Hodge Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/9923?format=json","number":"9923","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"6610","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Improving Military Recruitment at Senior Military Colleges Act","url":"https://api.congress.gov/v3/bill/118/hr/9208?format=json","number":"9208","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"6611","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Wildfire Victim Tax Relief and Recovery Act","url":"https://api.congress.gov/v3/bill/118/hr/9155?format=json","number":"9155","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6612","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A009) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1095?format=json","number":"","amendmentNumber":"1095","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:46:23"}} +{"type":"node","id":"6613","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A033) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1155?format=json","number":"","amendmentNumber":"1155","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"23:15:03"}} +{"type":"node","id":"6614","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A032) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1154?format=json","number":"","amendmentNumber":"1154","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"23:09:33"}} +{"type":"node","id":"6615","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Air Force Technical Training Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/9103?format=json","number":"9103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"6616","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A004) Failed by recorded vote: 128 - 289 (Roll no. 350).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1086?format=json","number":"","amendmentNumber":"1086","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"10:57:10"}} +{"type":"node","id":"6617","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 107 North Hoyne Avenue in Fritch, Texas, as the \"Chief Zeb Smith Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/8434?format=json","number":"8434","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6618","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-02","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"LIP Enhancement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8229?format=json","number":"8229","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"6619","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require renovation of certain U.S. Border Patrol checkpoints, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1861?format=json","number":"1861","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6620","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"Security First Act","url":"https://api.congress.gov/v3/bill/119/hr/506?format=json","number":"506","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6621","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-10-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"BE GONE Act","url":"https://api.congress.gov/v3/bill/118/hr/9920?format=json","number":"9920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"6622","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Expressing the sense of the House of Representatives that the third Friday of September shall be recognized as \"National POW/MIA Recognition Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1485?format=json","number":"1485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"6623","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protect the Permian Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9759?format=json","number":"9759","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"6624","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Border Weather Resiliency Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9368?format=json","number":"9368","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-16","latestAction_actionTime":""}} +{"type":"node","id":"6625","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-05-07","policyArea_name":"","latestAction_text":"On agreeing to the Gonzales, Tony amendment (A001) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/902?format=json","number":"","amendmentNumber":"902","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":"15:55:48"}} +{"type":"node","id":"6626","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-29","policyArea_name":"Immigration","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 715.","type":"HR","title":"Reducing Excessive Vetting Authorities to Maintain our Ports Act","url":"https://api.congress.gov/v3/bill/118/hr/8150?format=json","number":"8150","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6627","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Immigration","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"PEARL Act","url":"https://api.congress.gov/v3/bill/118/hr/8119?format=json","number":"8119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6628","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-05","policyArea_name":"Immigration","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Denouncing the Biden administration's immigration policies.","url":"https://api.congress.gov/v3/bill/118/hres/1112?format=json","number":"1112","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":"17:24:58"}} +{"type":"node","id":"6629","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-05","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To terminate the United States-People's Republic of China Income Tax Convention if the People's Liberation Army initiates an armed attack against Taiwan.","url":"https://api.congress.gov/v3/bill/118/hr/7874?format=json","number":"7874","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-05","latestAction_actionTime":""}} +{"type":"node","id":"6630","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-03-26","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Visa Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7822?format=json","number":"7822","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-26","latestAction_actionTime":""}} +{"type":"node","id":"6631","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-02-20","latestAction_text":"Referred to the Subcommittee on Counterterrorism, Law Enforcement, and Intelligence.","type":"HR","title":"National Strategy for School Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7414?format=json","number":"7414","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}} +{"type":"node","id":"6632","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"DIRE Act","url":"https://api.congress.gov/v3/bill/118/hr/7415?format=json","number":"7415","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}} +{"type":"node","id":"6633","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 500 Sergeant Gonzales Drive in Fort Davis, Texas, as the \"Sergeant Manuel Sillas Gonzales Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/7374?format=json","number":"7374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"6634","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-10-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To prohibit the use of Federal funds to be used to support drag theater performances.","url":"https://api.congress.gov/v3/bill/118/hr/5981?format=json","number":"5981","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6635","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2023-10-18","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Condemning foreign nationals in the United States who have endorsed and espoused the actions of foreign terrorist organizations (FTO) in Gaza who, on October 7, 2023, launched attacks against the State of Israel, and killed innocent Israeli and United States citizens.","url":"https://api.congress.gov/v3/bill/118/hres/796?format=json","number":"796","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6636","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2023-09-29","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SAFER Act","url":"https://api.congress.gov/v3/bill/118/hr/5838?format=json","number":"5838","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}} +{"type":"node","id":"6637","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-28","latestAction_text":"Became Public Law No: 118-141.","type":"HR","title":"James R. Dominguez Memorial Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5799?format=json","number":"5799","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6638","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2023-09-21","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing Hispanic Restaurant Week and the contributions of Hispanic restaurant owners and employees to the restaurant industry.","url":"https://api.congress.gov/v3/bill/118/hres/714?format=json","number":"714","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}} +{"type":"node","id":"6639","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Expressing the profound sorrow of the House of Representatives on the death of the Honorable Sylvester Turner.","url":"https://api.congress.gov/v3/bill/119/hres/191?format=json","number":"191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":"16:01:11"}} +{"type":"node","id":"6640","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To assist applicants for community development block grant recovery assistance not having traditionally accepted forms of documentation of ownership of property to prove such ownership, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1607?format=json","number":"1607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6642","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-04-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"HEIR Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8117?format=json","number":"8117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-23","latestAction_actionTime":""}} +{"type":"node","id":"6643","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Pink Tariffs Study Act","url":"https://api.congress.gov/v3/bill/118/hr/7927?format=json","number":"7927","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6644","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"PFAS Risk-Communication Strategy Act","url":"https://api.congress.gov/v3/bill/118/hr/6808?format=json","number":"6808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-02","latestAction_actionTime":""}} +{"type":"node","id":"6645","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-05-16","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"To amend the Middle Class Tax Relief and Job Creation Act of 2012 to reauthorize the First Responder Network Authority.","url":"https://api.congress.gov/v3/bill/118/hr/3366?format=json","number":"3366","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}} +{"type":"node","id":"6646","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-05-10","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"CLEAR Act","url":"https://api.congress.gov/v3/bill/118/hr/3182?format=json","number":"3182","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-12","latestAction_actionTime":""}} +{"type":"node","id":"6647","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-04-28","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"ACCESS Act","url":"https://api.congress.gov/v3/bill/118/hr/3004?format=json","number":"3004","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6648","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/118/hr/1497?format=json","number":"1497","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-17","latestAction_actionTime":""}} +{"type":"node","id":"6649","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-02-28","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Broadband Incentives for Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/1241?format=json","number":"1241","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}} +{"type":"node","id":"6650","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-02-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy and Mineral Resources.","type":"HR","title":"RISEE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/913?format=json","number":"913","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6651","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-02-02","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Ensuring Women’s Right to Reproductive Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-10","latestAction_actionTime":""}} +{"type":"node","id":"6652","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-09-29","policyArea_name":"Energy","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"RISEE Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9049?format=json","number":"9049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}} +{"type":"node","id":"6653","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-07-07","policyArea_name":"Health","latestAction_text":"Received in the Senate.","type":"HR","title":"Ensuring Women’s Right to Reproductive Freedom Act","url":"https://api.congress.gov/v3/bill/117/hr/8297?format=json","number":"8297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-18","latestAction_actionTime":""}} +{"type":"node","id":"6654","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-05-06","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to reauthorize the authority to grant certain exemptions, and for other purposes.","url":"https://api.congress.gov/v3/bill/117/hr/7679?format=json","number":"7679","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-05-06","latestAction_actionTime":""}} +{"type":"node","id":"6655","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","policyArea_name":"Environmental Protection","introducedDate":"2022-03-30","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","type":"HR","title":"Federal PFAS Research Evaluation Act","url":"https://api.congress.gov/v3/bill/117/hr/7289?format=json","number":"7289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-27","latestAction_actionTime":""}} +{"type":"node","id":"6656","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-03-08","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/117/hr/6977?format=json","number":"6977","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-03-09","latestAction_actionTime":""}} +{"type":"node","id":"6657","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-02-02","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy.","type":"HR","title":"CLEAR Act","url":"https://api.congress.gov/v3/bill/117/hr/6562?format=json","number":"6562","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6658","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2021-12-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Stopping Abortion Bounties Act","url":"https://api.congress.gov/v3/bill/117/hr/6300?format=json","number":"6300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-12-16","latestAction_actionTime":""}} +{"type":"node","id":"6659","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committees on Financial Services, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1668?format=json","number":"1668","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6660","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to prohibit transactions involving certain financial instruments by senior Federal employees, their spouses, or dependent children, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1599?format=json","number":"1599","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6661","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PATROL Act","url":"https://api.congress.gov/v3/bill/119/hr/992?format=json","number":"992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6662","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cost Estimates Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/991?format=json","number":"991","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6664","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-31","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SHUSH Act","url":"https://api.congress.gov/v3/bill/119/hr/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6665","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Regulation Through Litigation Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/849?format=json","number":"849","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6666","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"SWAG Act","url":"https://api.congress.gov/v3/bill/119/hr/757?format=json","number":"757","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6667","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"287(g) Program Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/756?format=json","number":"756","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6668","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-20","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Retaining Every Gun In a System That Restricts Your Rights Act","url":"https://api.congress.gov/v3/bill/119/hr/563?format=json","number":"563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}} +{"type":"node","id":"6669","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Federal Agency Sunset Commission Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/489?format=json","number":"489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6670","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-29","latestAction_text":"Became Public Law No: 118-270.","type":"HR","title":"To designate the facility of the United States Postal Service located at 802 North Tancahua Street in Corpus Christi, Texas, as the \"Captain Robert E. 'Bob' Batterson Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/10065?format=json","number":"10065","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"6671","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 23 - 17.","type":"HR","title":"Dismantle DEI Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8706?format=json","number":"8706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"6672","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-05-10","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 17 - 7.","type":"HR","title":"Cost Estimates Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/8341?format=json","number":"8341","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6673","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Preventing Aliens Through Rivers Or Land Act","url":"https://api.congress.gov/v3/bill/118/hr/6619?format=json","number":"6619","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6674","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-09-19","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Protecting the Right to Keep and Bear Arms Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5561?format=json","number":"5561","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"6675","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-07-06","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Freeing Americans Detained Abroad Act","url":"https://api.congress.gov/v3/bill/118/hr/4478?format=json","number":"4478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-06","latestAction_actionTime":""}} +{"type":"node","id":"6676","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2023-05-02","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"YODA","url":"https://api.congress.gov/v3/bill/118/hr/3045?format=json","number":"3045","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-02","latestAction_actionTime":""}} +{"type":"node","id":"6677","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Retaining Every Gun In a System That Restricts Your Rights Act","url":"https://api.congress.gov/v3/bill/118/hr/1271?format=json","number":"1271","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}} +{"type":"node","id":"6678","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-02-27","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Federal Agency Sunset Commission Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1206?format=json","number":"1206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6679","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To revise the authority provided to the President to impose export licensing requirements or other restrictions on the export of crude oil from the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1850?format=json","number":"1850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6680","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to modify the criteria for designation of rural emergency hospitals.","url":"https://api.congress.gov/v3/bill/119/hr/1775?format=json","number":"1775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"6681","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permanently extend the exemption for telehealth services from certain high deductible health plan rules.","url":"https://api.congress.gov/v3/bill/119/hr/1650?format=json","number":"1650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6682","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-24","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HCONRES","title":"Calling an Article V Convention for proposing a Fiscal Responsibility Amendment to the United States Constitution and stipulating ratification by a vote of We the People, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hconres/15?format=json","number":"15","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6683","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to maintain the prohibition on allowing any deduction or credit associated with a trade or business involved in trafficking marijuana.","url":"https://api.congress.gov/v3/bill/119/hr/1447?format=json","number":"1447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6684","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-02-18","latestAction_text":"On agreeing to the resolution, as amended Agreed to by the Yeas and Nays: 217 - 215 (Roll no. 50). (text: CR H818-823)","type":"HCONRES","title":"Establishing the congressional budget for the United States Government for fiscal year 2025 and setting forth the appropriate budgetary levels for fiscal years 2026 through 2034.","url":"https://api.congress.gov/v3/bill/119/hconres/14?format=json","number":"14","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":"20:22:05"}} +{"type":"node","id":"6685","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1367?format=json","number":"1367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6686","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Providing amounts for the expenses of the Committee on the Budget in the One Hundred Nineteenth Congress.","url":"https://api.congress.gov/v3/bill/119/hres/91?format=json","number":"91","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6687","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To provide that the final rule of the United States Fish and Wildlife Service titled \"Endangered and Threatened Wildlife and Plants; Endangered Species Status With Critical Habitat for Guadalupe Fatmucket, Texas Fatmucket, Guadalupe Orb, Texas Pimpleback, Balcones Spike, and False Spike, and Threatened Species Status With Section 4(d) Rule and Critical Habitat for Texas Fawnsfoot\" shall have no force or effect.","url":"https://api.congress.gov/v3/bill/119/hr/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6688","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To prohibit the implementation of a Land Protection Plan for Muleshoe National Wildlife Refuge.","url":"https://api.congress.gov/v3/bill/119/hr/839?format=json","number":"839","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6689","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/hr/842?format=json","number":"842","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6690","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend title 54, United States Code, to prohibit the acquisition of land, water, or an interest in land or water from a private landowner using amounts made available under the Land and Water Conservation Fund.","url":"https://api.congress.gov/v3/bill/119/hr/841?format=json","number":"841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6691","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Education and Workforce, Financial Services, Transportation and Infrastructure, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"America First Act","url":"https://api.congress.gov/v3/bill/119/hr/746?format=json","number":"746","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6692","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Abundant American Resources Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/745?format=json","number":"745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6693","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Small Business Investor Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/652?format=json","number":"652","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6694","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-22","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"WHO is Accountable Act","url":"https://api.congress.gov/v3/bill/119/hr/600?format=json","number":"600","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"6695","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Estate Tax Rate Reduction Act","url":"https://api.congress.gov/v3/bill/119/hr/601?format=json","number":"601","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"6696","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/hr/574?format=json","number":"574","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"6697","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Disapproving of the rule submitted by the Department of Homeland Security relating to \"Modernizing H-2 Program Requirements, Oversight, and Worker Protections\".","url":"https://api.congress.gov/v3/bill/119/hjres/21?format=json","number":"21","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6698","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Disapproving of the rule submitted by the Department of Homeland Security relating to \"Modernizing H-1B Requirements, Providing Flexibility in the F-1 Program, and Program Improvements Affecting Other Nonimmigrant Workers\".","url":"https://api.congress.gov/v3/bill/119/hjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6699","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Credit Union Act to provide more loan flexibility to credit unions, to amend the Federal Home Loan Bank Act to expand homeownership access, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1791?format=json","number":"1791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"6700","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Veterans Member Business Loan Act","url":"https://api.congress.gov/v3/bill/119/hr/507?format=json","number":"507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6701","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-06","latestAction_text":"Became Public Law No: 118-220.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1535 East Los Ebanos Boulevard in Brownsville, Texas, as the \"1st Lieutenant Andres Zermeno Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/6244?format=json","number":"6244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-02","latestAction_actionTime":""}} +{"type":"node","id":"6702","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-07-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Member Business Loan Expansion Act","url":"https://api.congress.gov/v3/bill/118/hr/4868?format=json","number":"4868","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6703","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-07-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Veterans Members Business Loan Act","url":"https://api.congress.gov/v3/bill/118/hr/4867?format=json","number":"4867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6704","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Safe Zones Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2946?format=json","number":"2946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}} +{"type":"node","id":"6705","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-03-27","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Honest Runway Labeling Act","url":"https://api.congress.gov/v3/bill/118/hr/1804?format=json","number":"1804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-27","latestAction_actionTime":""}} +{"type":"node","id":"6706","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-02-09","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Sgt. Fieldy Act","url":"https://api.congress.gov/v3/bill/118/hr/918?format=json","number":"918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6707","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-02-01","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Repatriate Our Patriots Act","url":"https://api.congress.gov/v3/bill/118/hr/717?format=json","number":"717","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}} +{"type":"node","id":"6708","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-12-06","policyArea_name":"","latestAction_text":"On agreeing to the Gonzalez, Vicente amendment (A002) Agreed to by the Yeas and Nays: 213 - 207 (Roll no. 502).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/117/hamdt/331?format=json","number":"","amendmentNumber":"331","latestAction":"","latestAction_actionDate":"2022-12-06","latestAction_actionTime":"14:56:17"}} +{"type":"node","id":"6709","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-10-07","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Sgt. Fieldy Act","url":"https://api.congress.gov/v3/bill/117/hr/9152?format=json","number":"9152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6710","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"Safe Zones Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8823?format=json","number":"8823","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6711","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-07-27","latestAction_text":"Referred to the House Committee on Oversight and Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 110 East Alexander Street in Three Rivers, Texas, as the \"Private Felix Z. Longoria Veterans' Memorial Post Office\".","url":"https://api.congress.gov/v3/bill/117/hr/8529?format=json","number":"8529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-27","latestAction_actionTime":""}} +{"type":"node","id":"6712","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-06-15","policyArea_name":"","latestAction_text":"On agreeing to the Gonzalez, Vicente amendment (A004) Agreed to by the Yeas and Nays: 297 - 123 (Roll no. 272).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/117/hamdt/226?format=json","number":"","amendmentNumber":"226","latestAction":"","latestAction_actionDate":"2022-06-15","latestAction_actionTime":"15:22:43"}} +{"type":"node","id":"6713","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-02-22","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Housing our Veterans Act","url":"https://api.congress.gov/v3/bill/117/hr/6810?format=json","number":"6810","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-28","latestAction_actionTime":""}} +{"type":"node","id":"6714","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-02-11","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Student Loan Relief Act","url":"https://api.congress.gov/v3/bill/117/hr/6708?format=json","number":"6708","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6715","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2021-07-09","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"Repatriate Our Patriots Act","url":"https://api.congress.gov/v3/bill/117/hr/4382?format=json","number":"4382","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6716","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-09-07","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Member Business Loan Expansion Act","url":"https://api.congress.gov/v3/bill/117/hr/5189?format=json","number":"5189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-09-07","latestAction_actionTime":""}} +{"type":"node","id":"6717","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-08-13","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Affordable Homeownership Access Act","url":"https://api.congress.gov/v3/bill/117/hr/5013?format=json","number":"5013","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-08-13","latestAction_actionTime":""}} +{"type":"node","id":"6718","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-06-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"IMAGES Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/4088?format=json","number":"4088","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-06-23","latestAction_actionTime":""}} +{"type":"node","id":"6719","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Trade Expansion Act of 1962 to impose limitations on the authority of the President to adjust imports that are determined to threaten to impair national security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1903?format=json","number":"1903","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6721","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HJRES","title":"Redesignating the Robert E. Lee Memorial as the \"Arlington House National Historic Site\".","url":"https://api.congress.gov/v3/bill/119/hjres/63?format=json","number":"63","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6722","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Intelligence Reform and Terrorism Prevention Act of 2004 to authorize the Director of the Federal Bureau of Investigation to make security clearance determinations and access determinations for political appointees and special Government employees in the Executive Office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1591?format=json","number":"1591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6723","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow the disclosure of certain business tax return information to the Bureau of Economic Analysis and the Bureau of Labor Statistics for certain statistical purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10546?format=json","number":"10546","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"6724","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"PAID Act","url":"https://api.congress.gov/v3/bill/118/hr/10470?format=json","number":"10470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"6725","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Healthy Climate and Family Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10418?format=json","number":"10418","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"6726","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Veterans Transition Support Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10386?format=json","number":"10386","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6727","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Childhood Diabetes Reduction Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10199?format=json","number":"10199","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6728","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Security Clearance Review Act","url":"https://api.congress.gov/v3/bill/118/hr/10165?format=json","number":"10165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"6729","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-11-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Improving Diagnosis in Medicine Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10135?format=json","number":"10135","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-15","latestAction_actionTime":""}} +{"type":"node","id":"6730","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-10-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Facial Recognition Ban on Body Cameras Act","url":"https://api.congress.gov/v3/bill/118/hr/9954?format=json","number":"9954","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}} +{"type":"node","id":"6731","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-24","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Wildlife Corridors and Habitat Connectivity Conservation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9776?format=json","number":"9776","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6732","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Peer-to-Peer Mental Health Support Act","url":"https://api.congress.gov/v3/bill/118/hr/9684?format=json","number":"9684","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6733","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-10","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Methane Monitoring Science Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9513?format=json","number":"9513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"6734","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Older Workers’ Bureau Act","url":"https://api.congress.gov/v3/bill/118/hr/9190?format=json","number":"9190","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"6735","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Beyer amendment (A004) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1090?format=json","number":"","amendmentNumber":"1090","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:06:36"}} +{"type":"node","id":"6736","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Beyer amendment (A005) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1091?format=json","number":"","amendmentNumber":"1091","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:18:05"}} +{"type":"node","id":"6737","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"NURSE Visa Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9079?format=json","number":"9079","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}} +{"type":"node","id":"6738","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Airborne Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9000?format=json","number":"9000","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}} +{"type":"node","id":"6739","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-08","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"320th Barrage Balloon Battalion Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/10110?format=json","number":"10110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-08","latestAction_actionTime":""}} +{"type":"node","id":"6740","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-17","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on House Administration, Science, Space, and Technology, Oversight and Accountability, Financial Services, Ways and Means, Natural Resources, Homeland Security, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Supporting the designation of September 2024 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1461?format=json","number":"1461","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"6741","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 4650 East Rosedale Street in Fort Worth, Texas, as the \"Dionne Phillips Bagsby Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/9112?format=json","number":"9112","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"6742","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cybersecurity Clinics Grant Program Act","url":"https://api.congress.gov/v3/bill/118/hr/8770?format=json","number":"8770","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}} +{"type":"node","id":"6743","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of May 2024 as \"National Physical Fitness and Sports Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1259?format=json","number":"1259","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}} +{"type":"node","id":"6744","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2024-05-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Early Detection of Vision Impairments for Children Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8400?format=json","number":"8400","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}} +{"type":"node","id":"6745","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-10-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the goals of \"World Sight Day\" by promoting the importance of accessible, affordable, and inclusive eye care.","url":"https://api.congress.gov/v3/bill/118/hres/780?format=json","number":"780","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}} +{"type":"node","id":"6746","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-19","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Supporting the designation of September 2023 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/118/hres/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6747","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-27","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","url":"https://api.congress.gov/v3/bill/118/hres/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}} +{"type":"node","id":"6748","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Recognizing the importance of diversity, equity, and inclusion efforts in higher education.","url":"https://api.congress.gov/v3/bill/118/hres/608?format=json","number":"608","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-20","latestAction_actionTime":""}} +{"type":"node","id":"6749","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-13","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Condemning the horrific gun violence in Fort Worth, Texas, and acknowledging the human toll of gun violence in this country.","url":"https://api.congress.gov/v3/bill/118/hres/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-13","latestAction_actionTime":""}} +{"type":"node","id":"6750","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-06-16","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the role of father engagement in improving overall health outcomes during pregnancy, birth, and postpartum, for both the mother and baby.","url":"https://api.congress.gov/v3/bill/118/hres/522?format=json","number":"522","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}} +{"type":"node","id":"6751","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-05-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"High School Sports Injury Reporting Act","url":"https://api.congress.gov/v3/bill/118/hr/3737?format=json","number":"3737","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-26","latestAction_actionTime":""}} +{"type":"node","id":"6752","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-05-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"COACHES Act","url":"https://api.congress.gov/v3/bill/118/hr/3351?format=json","number":"3351","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-15","latestAction_actionTime":""}} +{"type":"node","id":"6753","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-05-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of May 2023 as \"National Physical Fitness and Sports Month\".","url":"https://api.congress.gov/v3/bill/118/hres/359?format=json","number":"359","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-05","latestAction_actionTime":""}} +{"type":"node","id":"6754","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","introducedDate":"2022-10-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the goals of \"World Sight Day\" by promoting the importance of accessible, affordable, and inclusive eye care.","url":"https://api.congress.gov/v3/bill/117/hres/1437?format=json","number":"1437","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-10-17","latestAction_actionTime":""}} +{"type":"node","id":"6755","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","introducedDate":"2022-09-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Cybersecurity Clinics Grant Program Act","url":"https://api.congress.gov/v3/bill/117/hr/9085?format=json","number":"9085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}} +{"type":"node","id":"6756","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-09-22","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","type":"HRES","title":"Expressing support for the designation of September 2022 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/117/hres/1394?format=json","number":"1394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6757","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","introducedDate":"2022-08-26","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"High School Sports Injury Reporting","url":"https://api.congress.gov/v3/bill/117/hr/8751?format=json","number":"8751","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-08-26","latestAction_actionTime":""}} +{"type":"node","id":"6758","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2021-09-30","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","type":"HRES","title":"Expressing support for the designation of September 2021 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/117/hres/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6759","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require executive branch employees to report certain royalties, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1863?format=json","number":"1863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6760","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 31, United States Code, to establish the Life Sciences Research Security Board, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1864?format=json","number":"1864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6762","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a Member to a certain standing committee of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/107?format=json","number":"107","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":"12:18:03"}} +{"type":"node","id":"6763","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 27) to amend the Controlled Substances Act with respect to the scheduling of fentanyl-related substances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/93?format=json","number":"93","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":"16:59:54"}} +{"type":"node","id":"6764","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Domestic SUPPLY Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/675?format=json","number":"675","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6765","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title II of the Social Security Act to means-test certain child's insurance benefits.","url":"https://api.congress.gov/v3/bill/119/hr/571?format=json","number":"571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"6766","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow the child tax credit with respect to stillbirths.","url":"https://api.congress.gov/v3/bill/119/hr/570?format=json","number":"570","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"6767","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"BROADBAND Leadership Act","url":"https://api.congress.gov/v3/bill/119/hr/278?format=json","number":"278","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6768","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the United States Postal Service to designate a single, unique ZIP Code for Fairlawn, Virginia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/279?format=json","number":"279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6769","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase and adjust for inflation the above-the-line deduction for teachers.","url":"https://api.congress.gov/v3/bill/119/hr/228?format=json","number":"228","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"6770","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"New Source Review Permitting Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/161?format=json","number":"161","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"6771","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HCONRES","title":"Reclaiming Congress’s Constitutional Mandate in Trade Resolution","url":"https://api.congress.gov/v3/bill/119/hconres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"6772","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/hr/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"6773","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-10-29","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Power Act to require generating facilities to provide advance notices for retiring electric generating units, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10068?format=json","number":"10068","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}} +{"type":"node","id":"6774","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-10-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend section 3559 of title 18, United States Code, to provide that a misdemeanor for which no punishment or no maximum punishment is prescribed by statute shall be punishable as a Class A misdemeanor.","url":"https://api.congress.gov/v3/bill/118/hr/9897?format=json","number":"9897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"6775","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase and adjust for inflation the above-the-line deduction for teachers.","url":"https://api.congress.gov/v3/bill/118/hr/9256?format=json","number":"9256","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"6776","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Griffith amendment (A006) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1092?format=json","number":"","amendmentNumber":"1092","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:23:10"}} +{"type":"node","id":"6777","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Griffith amendment (A025) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1147?format=json","number":"","amendmentNumber":"1147","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"22:19:56"}} +{"type":"node","id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"6779","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"To establish the Land Port of Entry Modernization Trust Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1297?format=json","number":"1297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6780","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-11","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Hazardous Workplace Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9006?format=json","number":"9006","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}} +{"type":"node","id":"6781","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-11-13","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"ARCC Act","url":"https://api.congress.gov/v3/bill/118/hr/6377?format=json","number":"6377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6782","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-11-06","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"To modify a certain commercial zone in Texas to include Zapata County, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6240?format=json","number":"6240","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}} +{"type":"node","id":"6783","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-02","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Office of Colonias and Farmworker Initiatives Establishment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6183?format=json","number":"6183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}} +{"type":"node","id":"6784","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-07-11","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Water Infrastructure Enhancement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4540?format=json","number":"4540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-14","latestAction_actionTime":""}} +{"type":"node","id":"6785","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-05-22","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 46 - 0.","type":"HR","title":"Starr–Camargo Bridge Expansion Act","url":"https://api.congress.gov/v3/bill/118/hr/3569?format=json","number":"3569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":""}} +{"type":"node","id":"6786","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","introducedDate":"2023-05-09","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"LPOE Modernization Trust Fund Act","url":"https://api.congress.gov/v3/bill/118/hr/3135?format=json","number":"3135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6787","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-04-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Highway Accident Fairness Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2936?format=json","number":"2936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}} +{"type":"node","id":"6788","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-04-20","latestAction_text":"Became Public Law No: 118-55.","type":"HR","title":"To designate the facility of the United States Postal Service located at 2395 East Del Mar Boulevard in Laredo, Texas, as the \"Lance Corporal David Lee Espinoza, Lance Corporal Juan Rodrigo Rodriguez & Sergeant Roberto Arizola Jr. Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/2754?format=json","number":"2754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}} +{"type":"node","id":"6789","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-07","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Identifying and Eliminating Wasteful Programs Act","url":"https://api.congress.gov/v3/bill/118/hr/1390?format=json","number":"1390","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-07","latestAction_actionTime":""}} +{"type":"node","id":"6790","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-01-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"United States-Mexico Tourism Improvement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-01-11","latestAction_actionTime":""}} +{"type":"node","id":"6791","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2022-07-20","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Worker Flexibility and Choice Act","url":"https://api.congress.gov/v3/bill/117/hr/8442?format=json","number":"8442","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-20","latestAction_actionTime":""}} +{"type":"node","id":"6792","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2021-12-07","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","type":"HR","title":"Highway Accident Fairness Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/6151?format=json","number":"6151","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6793","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-10-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Choose Home Care Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5514?format=json","number":"5514","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-10-11","latestAction_actionTime":""}} +{"type":"node","id":"6794","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-06-15","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"H–2B Returning Worker Exception Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/3897?format=json","number":"3897","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6795","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-05-28","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy.","type":"HR","title":"United States-Mexico Electricity Exchange Act","url":"https://api.congress.gov/v3/bill/117/hr/3578?format=json","number":"3578","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-05-31","latestAction_actionTime":""}} +{"type":"node","id":"6796","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-05-07","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","type":"HR","title":"LPOE Modernization Trust Fund Act","url":"https://api.congress.gov/v3/bill/117/hr/3028?format=json","number":"3028","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-01","latestAction_actionTime":""}} +{"type":"node","id":"6797","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-04-26","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"Bipartisan Border Solutions Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/2839?format=json","number":"2839","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-10-19","latestAction_actionTime":""}} +{"type":"node","id":"6798","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","policyArea_name":"International Affairs","introducedDate":"2021-04-21","latestAction_text":"Referred to the Subcommittee on Western Hemisphere, Civilian Security, Migration and International Economic Policy.","type":"HR","title":"United States-Mexico Tourism Improvement Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/2723?format=json","number":"2723","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-04-30","latestAction_actionTime":""}} +{"type":"node","id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6800","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Regulation Decimation Act","url":"https://api.congress.gov/v3/bill/119/hr/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6801","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Financial Services, Ways and Means, the Judiciary, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To repeal the sunset provision of the Iran Sanctions Act of 1996, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1800?format=json","number":"1800","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"6802","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the amount allowed as a credit under the expenses for household and dependent care services credit and teh employer-provided child care credit.","url":"https://api.congress.gov/v3/bill/119/hr/1426?format=json","number":"1426","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6803","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the employer tax credit for paid family and medical leave.","url":"https://api.congress.gov/v3/bill/119/hr/1424?format=json","number":"1424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6804","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the amount of the adoption credit and to establish the in vitro fertilization expenses credit.","url":"https://api.congress.gov/v3/bill/119/hr/1427?format=json","number":"1427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6805","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the amount of the child tax credit, to make such credit fully refundable, to remove income limitations from such credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1425?format=json","number":"1425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6806","labels":["Legislation"],"properties":{"sponsored_by":"H001103","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the definition of extremely low-income families under the United States Housing Act of 1937.","url":"https://api.congress.gov/v3/bill/119/hr/1696?format=json","number":"1696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6807","labels":["Legislation"],"properties":{"sponsored_by":"H001103","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"For the relief of Diego Montoya Bedoya.","url":"https://api.congress.gov/v3/bill/119/hr/1763?format=json","number":"1763","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6808","labels":["Legislation"],"properties":{"sponsored_by":"H001103","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide equitable treatment for residents of Puerto Rico with respect to the refundable portion of the child tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1697?format=json","number":"1697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6809","labels":["Legislation"],"properties":{"sponsored_by":"D000635","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Stop Musk Act","url":"https://api.congress.gov/v3/bill/119/hr/994?format=json","number":"994","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6810","labels":["Legislation"],"properties":{"sponsored_by":"B001327","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to require the impaneling of a new jury if a jury fails to recommend by unanimous vote a sentence for conviction of a crime punishable by death.","url":"https://api.congress.gov/v3/bill/119/hr/1556?format=json","number":"1556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6811","labels":["Legislation"],"properties":{"sponsored_by":"B001327","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To direct the Secretary of Veterans Affairs to seek to enter into an agreement with a federally funded research and development center for an assessment of forms that the Secretary sends to claimants for benefits under laws administered by the Secretary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1286?format=json","number":"1286","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6812","labels":["Legislation"],"properties":{"sponsored_by":"R000619","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To provide that a project for the collocation of a personal wireless service facility is not subject to requirements to prepare certain environmental or historical preservation reviews.","url":"https://api.congress.gov/v3/bill/119/hr/1541?format=json","number":"1541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"6813","labels":["Legislation"],"properties":{"sponsored_by":"R000619","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Beat Bad Bureaucrats Act","url":"https://api.congress.gov/v3/bill/119/hr/886?format=json","number":"886","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"6815","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-31","latestAction_text":"Referred to the Subcommittee on Transportation and Maritime Security.","type":"HR","title":"TSA Commuting Fairness Act","url":"https://api.congress.gov/v3/bill/119/hr/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6816","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","policyArea_name":"Emergency Management","introducedDate":"2025-01-15","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"SNOW Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/437?format=json","number":"437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6817","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Honoring Our Heroes Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10395?format=json","number":"10395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6818","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","introducedDate":"2024-11-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"NEXUS Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/10264?format=json","number":"10264","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-29","latestAction_actionTime":""}} +{"type":"node","id":"6819","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","introducedDate":"2024-08-13","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Border-Crossing and Re-entry for K9s Act","url":"https://api.congress.gov/v3/bill/118/hr/9350?format=json","number":"9350","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-13","latestAction_actionTime":""}} +{"type":"node","id":"6820","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-07","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"TSA Commuting Fairness Act","url":"https://api.congress.gov/v3/bill/118/hr/8662?format=json","number":"8662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"6821","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/hr/1277?format=json","number":"1277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6822","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Emphasizing the importance and power of distributed ledger technologies (DLT) to support democratic governance, human rights, internet freedom, and transparency.","url":"https://api.congress.gov/v3/bill/118/hres/1622?format=json","number":"1622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"6823","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"RRLEF Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10384?format=json","number":"10384","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6824","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-10-25","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Blue Economy and Innovation Act","url":"https://api.congress.gov/v3/bill/118/hr/10035?format=json","number":"10035","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6825","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"On agreeing to the Amo amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1221?format=json","number":"","amendmentNumber":"1221","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"13:04:43"}} +{"type":"node","id":"6826","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-24","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"First Rhode Island Regiment Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/8568?format=json","number":"8568","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"6827","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Grand Ronde Reservation Act to address the hunting, fishing, trapping, and animal gathering rights of the Confederated Tribes of the Grand Ronde Community, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1499?format=json","number":"1499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6828","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To authorize the Assistant Secretary for Mental Health and Substance Use to award formula grants to the States to address gambling addiction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1141?format=json","number":"1141","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"6829","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"HOPE and Mental Wellbeing Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1096?format=json","number":"1096","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6830","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Universal Right To Vote by Mail Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/738?format=json","number":"738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"6831","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-11-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Housing to Homes Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10163?format=json","number":"10163","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-18","latestAction_actionTime":""}} +{"type":"node","id":"6832","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"STAR Plus Scholarship Act","url":"https://api.congress.gov/v3/bill/118/hr/9581?format=json","number":"9581","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6833","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of July 20, 2024 as \"National Moon Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1380?format=json","number":"1380","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"6834","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-06-14","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Disaster Relief for Farm Workers Act","url":"https://api.congress.gov/v3/bill/118/hr/8765?format=json","number":"8765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-08","latestAction_actionTime":""}} +{"type":"node","id":"6835","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-06","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"SNAP E&T Data And Technical Assistance (DATA) Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7572?format=json","number":"7572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"6836","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-02-23","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Rural Partnership and Prosperity Act","url":"https://api.congress.gov/v3/bill/118/hr/7444?format=json","number":"7444","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"6837","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-02-01","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"PEER Support Act","url":"https://api.congress.gov/v3/bill/118/hr/7212?format=json","number":"7212","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}} +{"type":"node","id":"6838","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-01-22","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Peer Support for Firefighters Act","url":"https://api.congress.gov/v3/bill/118/hr/7069?format=json","number":"7069","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-22","latestAction_actionTime":""}} +{"type":"node","id":"6839","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-01-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Gambling Addiction, Recovery, Investment, and Treatment Act","url":"https://api.congress.gov/v3/bill/118/hr/6982?format=json","number":"6982","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}} +{"type":"node","id":"6840","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2023-11-30","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H6157)","type":"HR","title":"Home-Based Telemental Health Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6534?format=json","number":"6534","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"6841","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-02","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Farmers Feeding America Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6203?format=json","number":"6203","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-01","latestAction_actionTime":""}} +{"type":"node","id":"6842","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-19","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"To amend the Richard B. Russell National School Lunch Act to establish a vehicle summer meal delivery pilot program, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6006?format=json","number":"6006","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6843","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-10-12","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Quantum Instrumentation for Science and Engineering Act","url":"https://api.congress.gov/v3/bill/118/hr/5950?format=json","number":"5950","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6844","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-12","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Soil CARE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5951?format=json","number":"5951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}} +{"type":"node","id":"6845","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2023-09-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"HOPE and Mental Wellbeing Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5510?format=json","number":"5510","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6846","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-08-04","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"To amend the Cooperative Forestry Assistance Act of 1978 to reauthorize and expand State-wide assessment and strategies for forest resources.","url":"https://api.congress.gov/v3/bill/118/hr/5157?format=json","number":"5157","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}} +{"type":"node","id":"6847","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit funds for the Armed Forces to engage in operations to invade or seize territory from Canada, the Republic of Panama, or the self-governing territory of Greenland.","url":"https://api.congress.gov/v3/bill/119/hr/1936?format=json","number":"1936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"6848","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To establish \"Golden Sea Bream\" as an acceptable market name for Stenotomus chrysops.","url":"https://api.congress.gov/v3/bill/119/hr/1832?format=json","number":"1832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6849","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"TRUST in Congress Act","url":"https://api.congress.gov/v3/bill/119/hr/396?format=json","number":"396","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"6850","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to provide coverage for certain fall prevention items under the Medicare program.","url":"https://api.congress.gov/v3/bill/118/hr/10291?format=json","number":"10291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6851","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"National Guard and Reserve Student Loan Fairness Act","url":"https://api.congress.gov/v3/bill/118/hr/10226?format=json","number":"10226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6852","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-11-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To direct the Secretary of Interior to submit to Congress a report on the National Park Service's interpretation and application of the Standards for Rehabilitation for use of the Federal Historic Preservation Tax Incentives program.","url":"https://api.congress.gov/v3/bill/118/hr/10116?format=json","number":"10116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}} +{"type":"node","id":"6853","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-09-18","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To establish \"Silver Sea Bream\" as an acceptable market name for Stenotomus chrysops.","url":"https://api.congress.gov/v3/bill/118/hr/9658?format=json","number":"9658","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"6854","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-08-09","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Don’t STEAL Act","url":"https://api.congress.gov/v3/bill/118/hr/9337?format=json","number":"9337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-09","latestAction_actionTime":""}} +{"type":"node","id":"6855","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"New England Coastal Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9273?format=json","number":"9273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"6856","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Domenic and Ed’s Law","url":"https://api.congress.gov/v3/bill/118/hr/8407?format=json","number":"8407","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}} +{"type":"node","id":"6857","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-29","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"BIKE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7842?format=json","number":"7842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-29","latestAction_actionTime":""}} +{"type":"node","id":"6858","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-03-20","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Oversight and Accountability, House Administration, Transportation and Infrastructure, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PTO Act","url":"https://api.congress.gov/v3/bill/118/hr/7752?format=json","number":"7752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":""}} +{"type":"node","id":"6859","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-23","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Strengthening State and Local Efforts to Combat Transnational Repression Act","url":"https://api.congress.gov/v3/bill/118/hr/7439?format=json","number":"7439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"6860","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-02-23","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Rules.","type":"HRES","title":"Amending the Rules of the House of Representatives to establish a Permanent Select Committee on Aging.","url":"https://api.congress.gov/v3/bill/118/hres/1029?format=json","number":"1029","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}} +{"type":"node","id":"6861","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2023-12-22","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Clean Energy Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/6888?format=json","number":"6888","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-22","latestAction_actionTime":""}} +{"type":"node","id":"6862","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-01","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To require the waiver of costs of activities relating to the evacuation of United States citizens endangered by acts of terrorism or war in Israel instigated by Hamas and other Islamist militant groups.","url":"https://api.congress.gov/v3/bill/118/hr/6553?format=json","number":"6553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-01","latestAction_actionTime":""}} +{"type":"node","id":"6863","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-11-14","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"IMAGINE Act","url":"https://api.congress.gov/v3/bill/118/hr/6411?format=json","number":"6411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-20","latestAction_actionTime":""}} +{"type":"node","id":"6864","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2023-10-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Lower Drug Costs Today Act","url":"https://api.congress.gov/v3/bill/118/hr/5924?format=json","number":"5924","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6865","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-30","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"Department of Homeland Security Intelligence and Analysis Training Act","url":"https://api.congress.gov/v3/bill/118/hr/4429?format=json","number":"4429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-30","latestAction_actionTime":""}} +{"type":"node","id":"6866","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-06-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Keeping Gun Dealers Honest Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3863?format=json","number":"3863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-06","latestAction_actionTime":""}} +{"type":"node","id":"6867","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Recognizing the 112th Anniversary of Delta Sigma Theta Sorority, Incorporated.","url":"https://api.congress.gov/v3/bill/119/hres/35?format=json","number":"35","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"6868","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-31","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Ensuring Efficiency and Fairness in Federal Subcontracting Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10563?format=json","number":"10563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-31","latestAction_actionTime":""}} +{"type":"node","id":"6869","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"HONORS Act","url":"https://api.congress.gov/v3/bill/118/hr/10551?format=json","number":"10551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"6870","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"School Lunch Debt Cancellation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10552?format=json","number":"10552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"6871","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Creating Positive College Campus Racial Climates Act","url":"https://api.congress.gov/v3/bill/118/hr/10534?format=json","number":"10534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"6872","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Eviction Right to Counsel Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10535?format=json","number":"10535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"6873","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"True Justice Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10496?format=json","number":"10496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"6874","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SANCTIONS in the West Bank Act","url":"https://api.congress.gov/v3/bill/118/hr/10343?format=json","number":"10343","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"6875","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-11-18","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 39 - 0.","type":"HR","title":"Modernizing Data Practices to Improve Government Act","url":"https://api.congress.gov/v3/bill/118/hr/10151?format=json","number":"10151","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"6876","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-11-01","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Eliminating Bias in Algorithmic Systems Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10092?format=json","number":"10092","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}} +{"type":"node","id":"6877","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-10-18","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Rail Bridge Safety and Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/9998?format=json","number":"9998","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}} +{"type":"node","id":"6878","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-10-08","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Keeping Affordable Housing in Forgotten Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/9944?format=json","number":"9944","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-09","latestAction_actionTime":""}} +{"type":"node","id":"6879","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-09-27","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Ways and Means, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"American Stability Act","url":"https://api.congress.gov/v3/bill/118/hr/9873?format=json","number":"9873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}} +{"type":"node","id":"6880","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-25","latestAction_text":"Sponsor introductory remarks on measure. (CR H4561)","type":"HR","title":"Right to Vote Act","url":"https://api.congress.gov/v3/bill/118/hr/8825?format=json","number":"8825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"6881","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-01","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Future Farmers and Ranchers of Tomorrow Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8210?format=json","number":"8210","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"6882","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-02-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the historical contributions and value of the Freedom House Ambulance Service.","url":"https://api.congress.gov/v3/bill/118/hres/1042?format=json","number":"1042","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}} +{"type":"node","id":"6883","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-10-26","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the 5-year anniversary of the horrific antisemitic attack at the Tree of Life Synagogue in Pittsburgh, Pennsylvania, on October 27, 2018, and condemning antisemitism.","url":"https://api.congress.gov/v3/bill/118/hres/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-26","latestAction_actionTime":""}} +{"type":"node","id":"6884","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-07-25","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","type":"HR","title":"Abandoned Well Remediation Research and Development Act","url":"https://api.congress.gov/v3/bill/118/hr/4877?format=json","number":"4877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}} +{"type":"node","id":"6885","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-27","latestAction_text":"Became Public Law No: 118-215.","type":"HR","title":"To name the community-based outpatient clinic of the Department of Veterans Affairs in Monroeville, Pennsylvania, as the \"Henry Parham VA Clinic\".","url":"https://api.congress.gov/v3/bill/118/hr/4955?format=json","number":"4955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-02","latestAction_actionTime":""}} +{"type":"node","id":"6886","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2023-07-25","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Equality in Laws Act","url":"https://api.congress.gov/v3/bill/118/hr/4876?format=json","number":"4876","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}} +{"type":"node","id":"6887","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Social Security Act to require certain additional provider screening under the Medicaid program.","url":"https://api.congress.gov/v3/bill/119/hr/1875?format=json","number":"1875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6888","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-03-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the joint resolution (H.J. Res. 42) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program for Appliance Standards: Certification Requirements, Labeling Requirements, and Enforcement Provisions for Certain Consumer Products and Commercial Equipment\"; providing for consideration of the joint resolution (H.J. Res. 61) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\"; and providing for consideration of the joint resolution (S.J. Res. 11) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Ocean Energy Management relating to \"Protection of Marine Archaeological Resources\".","url":"https://api.congress.gov/v3/bill/119/hres/177?format=json","number":"177","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":"14:03:41"}} +{"type":"node","id":"6889","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Middle Class Tax Relief and Job Creation Act of 2012 to streamline the consideration by State and local governments of requests for modification of certain existing wireless facilities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1617?format=json","number":"1617","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"6890","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1421?format=json","number":"1421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"6891","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Older Americans Act of 1965 to require reports to Congress on State Long-Term Care Ombudsman Programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1256?format=json","number":"1256","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6892","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to conduct a study on the effectiveness of emergency alerting systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1076?format=json","number":"1076","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"6893","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Federal Subaward Reporting System Modernization and Expansion Act","url":"https://api.congress.gov/v3/bill/119/hr/519?format=json","number":"519","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6894","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","type":"HR","title":"SAP Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/289?format=json","number":"289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6895","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Nutrition and Foreign Agriculture.","type":"HR","title":"Making Agricultural Products Locally Essential (MAPLE) Act","url":"https://api.congress.gov/v3/bill/119/hr/293?format=json","number":"293","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6896","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"CAREERS Act","url":"https://api.congress.gov/v3/bill/119/hr/291?format=json","number":"291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6897","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"GRAPE Act","url":"https://api.congress.gov/v3/bill/119/hr/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6898","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Dairy Farm Resiliency Act","url":"https://api.congress.gov/v3/bill/119/hr/294?format=json","number":"294","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6899","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Rural Telehealth and Education Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/290?format=json","number":"290","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6900","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Fair Milk Pricing for Farmers Act","url":"https://api.congress.gov/v3/bill/119/hr/295?format=json","number":"295","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6901","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Evidence-Informed Health Promotion Act","url":"https://api.congress.gov/v3/bill/118/hr/10071?format=json","number":"10071","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}} +{"type":"node","id":"6902","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Long-Term Care Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/10072?format=json","number":"10072","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}} +{"type":"node","id":"6903","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"CLAWS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9785?format=json","number":"9785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"6904","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-09-18","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"CTE Student Mental Health and Wellness Act","url":"https://api.congress.gov/v3/bill/118/hr/9656?format=json","number":"9656","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"6905","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-12","latestAction_text":"Became Public Law No: 118-187.","type":"HR","title":"SHARE IT Act","url":"https://api.congress.gov/v3/bill/118/hr/9566?format=json","number":"9566","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"6906","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-09-10","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1398) to establish the CCP Initiative program, and for other purposes; providing for consideration of the bill (H.R. 1425) to require any convention, agreement, or other international instrument on pandemic prevention, preparedness, and response reached by the World Health Assembly to be subject to Senate ratification; providing for consideration of the bill (H.R. 1516) to establish Department of Homeland Security funding restrictions on institutions of higher education that have a relationship with Confucius Institutes, and for other purposes; providing for consideration of the bill (H.R. 7980) to amend the Internal Revenue Code of 1986 to exclude vehicles the batteries of which contain materials sourced from prohibited foreign entities from the clean vehicle credit; providing for consideration of the bill (H.R. 9456) to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes; and providing for consideration of the bill (H.R. 9494) making continuing appropriations for fiscal year 2025, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1430?format=json","number":"1430","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":"14:02:03"}} +{"type":"node","id":"6907","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Understanding Cybersecurity of Mobile Networks Act","url":"https://api.congress.gov/v3/bill/119/hr/1709?format=json","number":"1709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6908","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Saving Seniors Money on Prescriptions Act","url":"https://api.congress.gov/v3/bill/119/hr/950?format=json","number":"950","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6909","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service-Local Law Enforcement Partnership Act","url":"https://api.congress.gov/v3/bill/118/hr/10431?format=json","number":"10431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"6910","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"NOPAIN for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/10396?format=json","number":"10396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"6911","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Relief for Renters Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10277?format=json","number":"10277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"6912","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-11-12","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Child Care for Small Businesses Act","url":"https://api.congress.gov/v3/bill/118/hr/10115?format=json","number":"10115","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}} +{"type":"node","id":"6913","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-10-25","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Energy and Commerce, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"21st Century Vehicle Choice Act","url":"https://api.congress.gov/v3/bill/118/hr/10046?format=json","number":"10046","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6914","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-04","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"What Works for Preventing Veteran Suicide Act","url":"https://api.congress.gov/v3/bill/118/hr/9924?format=json","number":"9924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}} +{"type":"node","id":"6915","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-27","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Parity for Public Health Service Ready Reserve Act","url":"https://api.congress.gov/v3/bill/118/hr/9870?format=json","number":"9870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}} +{"type":"node","id":"6916","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-09-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Enhancing SAFER Grants for Local Firefighters Act","url":"https://api.congress.gov/v3/bill/118/hr/9606?format=json","number":"9606","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}} +{"type":"node","id":"6917","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-07-02","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Campus Housing Affordability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8925?format=json","number":"8925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-02","latestAction_actionTime":""}} +{"type":"node","id":"6918","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To prohibit Federal funds from being made available to any pregnancy center that diverts people from accessing comprehensive and timely medical care from licensed medical professionals.","url":"https://api.congress.gov/v3/bill/118/hr/7063?format=json","number":"7063","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-26","latestAction_actionTime":""}} +{"type":"node","id":"6919","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-01-18","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HRES","title":"Expressing the sense of the House of Representatives that Congress should fully fund border security personnel, immigration judges, and related personnel and border technology needs at the southern border.","url":"https://api.congress.gov/v3/bill/118/hres/973?format=json","number":"973","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}} +{"type":"node","id":"6920","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-11-28","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Condemning calls from Members of Congress for the expulsion of Palestinians from the United States.","url":"https://api.congress.gov/v3/bill/118/hres/895?format=json","number":"895","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-28","latestAction_actionTime":""}} +{"type":"node","id":"6921","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-11-01","policyArea_name":"Commerce","latestAction_text":"Placed on the Union Calendar, Calendar No. 312.","type":"HR","title":"Child Care Small Business Insight and Improvement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6156?format=json","number":"6156","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6922","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-19","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Child Care Nutrition Enhancement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5569?format=json","number":"5569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}} +{"type":"node","id":"6923","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Medicare PBM Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/5385?format=json","number":"5385","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"6924","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-27","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Employing Veterans to Feed America Act","url":"https://api.congress.gov/v3/bill/118/hr/5014?format=json","number":"5014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-24","latestAction_actionTime":""}} +{"type":"node","id":"6925","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Ethics.","type":"HRES","title":"Directing the Committee on Ethics of the House of Representatives to immediately notify the full House of Representatives with respect to the names of the individuals who guaranteed Representative Santos' bail bond in relation to the indictment brought against Representative Santos in May 2023 by the Department of Justice, and submit to the House of Representatives an interim report on the investigation into Representative Santos not later than July 17, 2023, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/531?format=json","number":"531","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}} +{"type":"node","id":"6926","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Enhancing COPS Hiring Program Grants for Local Law Enforcement Act","url":"https://api.congress.gov/v3/bill/118/hr/3376?format=json","number":"3376","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-16","latestAction_actionTime":""}} +{"type":"node","id":"6927","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 14 - 11.","type":"HR","title":"To amend title 28, United States Code, to clarify the removability of certain actions against current and former Presidents and other senior Executive officials, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1789?format=json","number":"1789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"6928","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide for the vacating of certain convictions and expungement of certain arrests of victims of human trafficking.","url":"https://api.congress.gov/v3/bill/119/hr/1379?format=json","number":"1379","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6929","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Chinese Spy Balloon Assessment Act","url":"https://api.congress.gov/v3/bill/119/hr/934?format=json","number":"934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"6930","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Reaffirming United States support of the State of Israel one year after the October 7, 2023, attacks.","url":"https://api.congress.gov/v3/bill/118/hres/1533?format=json","number":"1533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"6931","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2024-05-08","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Protect the BALL Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8304?format=json","number":"8304","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-08","latestAction_actionTime":""}} +{"type":"node","id":"6932","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending the University of South Carolina Gamecocks women's basketball team for winning the 2024 National Collegiate Athletics Association Women's Basketball National Championship.","url":"https://api.congress.gov/v3/bill/118/hres/1183?format=json","number":"1183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"6933","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-01-30","latestAction_text":"Placed on the Union Calendar, Calendar No. 702.","type":"HR","title":"Trafficking Survivors Relief Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7137?format=json","number":"7137","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6934","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-06","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Chinese Spy Balloon Assessment Act","url":"https://api.congress.gov/v3/bill/118/hr/6625?format=json","number":"6625","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"6935","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-02","latestAction_text":"Became Public Law No: 118-219.","type":"HR","title":"To designate the facility of the United States Postal Service located at 420 Highway 17 North in Surfside Beach, South Carolina, as the \"Nancy Yount Childs Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/6188?format=json","number":"6188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-02","latestAction_actionTime":""}} +{"type":"node","id":"6936","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-18","latestAction_text":"Became Public Law No: 118-140.","type":"HR","title":"Grant Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5536?format=json","number":"5536","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6937","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-08-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Fentanyl Crisis Research and Evaluation Act","url":"https://api.congress.gov/v3/bill/118/hr/5237?format=json","number":"5237","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-08-25","latestAction_actionTime":""}} +{"type":"node","id":"6938","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-05","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"Federal Law Enforcement Officer Service Weapon Purchase Act","url":"https://api.congress.gov/v3/bill/118/hr/3091?format=json","number":"3091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}} +{"type":"node","id":"6939","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-09","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Targeting Child Predators Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3141?format=json","number":"3141","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}} +{"type":"node","id":"6940","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-04-10","policyArea_name":"Law","latestAction_text":"Placed on the Union Calendar, Calendar No. 304.","type":"HR","title":"No More Political Prosecutions Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2553?format=json","number":"2553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-31","latestAction_actionTime":""}} +{"type":"node","id":"6941","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-11-08","policyArea_name":"","latestAction_text":"On agreeing to the Fry amendment (A031) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/686?format=json","number":"","amendmentNumber":"686","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":"15:42:11"}} +{"type":"node","id":"6942","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-11-07","policyArea_name":"","latestAction_text":"On agreeing to the Fry amendment (A022) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/633?format=json","number":"","amendmentNumber":"633","latestAction":"","latestAction_actionDate":"2023-11-07","latestAction_actionTime":"17:30:35"}} +{"type":"node","id":"6943","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To authorize the Secretary of the Treasury to make payments to the Quapaw Nation and certain members of the Quapaw Nation in accordance with the recommendation of the United States Court of Federal Claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1451?format=json","number":"1451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"6944","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"To transfer unobligated funds from the United States Agency for International Development to the Disaster Relief Fund.","url":"https://api.congress.gov/v3/bill/119/hr/1370?format=json","number":"1370","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6945","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"No Abortion Coverage for Medicaid Act","url":"https://api.congress.gov/v3/bill/119/hr/719?format=json","number":"719","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"6946","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Protecting Life in Health Savings Accounts Act","url":"https://api.congress.gov/v3/bill/119/hr/720?format=json","number":"720","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"6947","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Expressing the sense of the House of Representatives that the sermon given by the Right Reverend Mariann Edgar Budde at the National Prayer Service on January 21st, 2025, at the National Cathedral was a display of political activism and condemning its distorted message.","url":"https://api.congress.gov/v3/bill/119/hres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6948","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Nutrition and Foreign Agriculture.","type":"HR","title":"Healthy SNAP Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"6949","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Quapaw Tribal Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10472?format=json","number":"10472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"6950","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Congressional Budget and Impoundment Control Act of 1974 to require any cost estimate for a bill or joint resolution prepared by the Congressional Budget Office to include the cost to each United States citizen for carrying out such measure, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9777?format=json","number":"9777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}} +{"type":"node","id":"6951","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-23","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No More Taxpayer Cash for the Taliban Act","url":"https://api.congress.gov/v3/bill/118/hr/9757?format=json","number":"9757","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"6952","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A019) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1141?format=json","number":"","amendmentNumber":"1141","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"20:49:15"}} +{"type":"node","id":"6953","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A022) Failed by recorded vote: 156 - 236 (Roll no. 387). (consideration: CR H4874-4875)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1144?format=json","number":"","amendmentNumber":"1144","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"11:01:12"}} +{"type":"node","id":"6954","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1088?format=json","number":"","amendmentNumber":"1088","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"11:50:12"}} +{"type":"node","id":"6955","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A021) Failed by recorded vote: 147 - 269 (Roll no. 386).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1143?format=json","number":"","amendmentNumber":"1143","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"21:49:16"}} +{"type":"node","id":"6956","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A020) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1142?format=json","number":"","amendmentNumber":"1142","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"20:55:50"}} +{"type":"node","id":"6957","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A023) Agreed to by recorded vote: 211 - 202 (Roll no. 388). (consideration: CR H4875)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1145?format=json","number":"","amendmentNumber":"1145","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"11:06:38"}} +{"type":"node","id":"6958","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service Readiness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9080?format=json","number":"9080","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}} +{"type":"node","id":"6959","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A002) Failed by recorded vote: 164 - 246 (Roll no. 297). (consideration: CR H1030)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1030?format=json","number":"","amendmentNumber":"1030","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"11:03:03"}} +{"type":"node","id":"6960","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A003) Failed by recorded vote: 180 - 227 (Roll no. 298). (consideration: CR H4335)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1031?format=json","number":"","amendmentNumber":"1031","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"11:06:51"}} +{"type":"node","id":"6961","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A004) Failed by recorded vote: 164 - 244 (Roll no. 299). (consideration: CR H4335-4336)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1032?format=json","number":"","amendmentNumber":"1032","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"11:09:55"}} +{"type":"node","id":"6962","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A030) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/988?format=json","number":"","amendmentNumber":"988","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"15:27:03"}} +{"type":"node","id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"6964","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Honoring Reverend Dr. Martin Luther King, Jr., by celebrating diversity, promoting tolerance, and condemning hate.","url":"https://api.congress.gov/v3/bill/119/hres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6965","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Expanding the Health Care Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/10337?format=json","number":"10337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"6966","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-27","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Securing Elections From AI Deception Act","url":"https://api.congress.gov/v3/bill/118/hr/8858?format=json","number":"8858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"6967","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-06-05","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of June 2024 as \"Black Music Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1279?format=json","number":"1279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}} +{"type":"node","id":"6968","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-21","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","type":"HR","title":"Diverse Cybersecurity Workforce Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8469?format=json","number":"8469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-21","latestAction_actionTime":""}} +{"type":"node","id":"6969","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-05-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Uterine Fibroid Intervention and Gynecological Health Treatment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8247?format=json","number":"8247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}} +{"type":"node","id":"6970","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-03-22","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Thriving Community Gardens Act","url":"https://api.congress.gov/v3/bill/118/hr/7796?format=json","number":"7796","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}} +{"type":"node","id":"6971","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-07","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Shining a Spotlight on Safer Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/7272?format=json","number":"7272","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-07","latestAction_actionTime":""}} +{"type":"node","id":"6972","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-01-12","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Honoring Reverend Dr. Martin Luther King, Jr., by Celebrating Diversity, Promoting Tolerance, and Condemning Hate.","url":"https://api.congress.gov/v3/bill/118/hres/962?format=json","number":"962","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}} +{"type":"node","id":"6973","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-08","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Recidivism Reduction Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6290?format=json","number":"6290","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}} +{"type":"node","id":"6974","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-14","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Ensuring Fee-Free Benefit Transactions Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4103?format=json","number":"4103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}} +{"type":"node","id":"6975","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Critical Supply Chains Commission Act","url":"https://api.congress.gov/v3/bill/118/hr/4279?format=json","number":"4279","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}} +{"type":"node","id":"6976","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-02-01","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"SNAP Access for Medically Vulnerable Children Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-02","latestAction_actionTime":""}} +{"type":"node","id":"6977","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-10-07","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","type":"HR","title":"SNAP Access for Medically Vulnerable Children Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9144?format=json","number":"9144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-28","latestAction_actionTime":""}} +{"type":"node","id":"6978","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","introducedDate":"2022-09-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Thriving Community Gardens Act","url":"https://api.congress.gov/v3/bill/117/hr/9038?format=json","number":"9038","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}} +{"type":"node","id":"6979","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-04-28","latestAction_text":"Received in the Senate.","type":"HR","title":"To designate the Kol Israel Foundation Holocaust Memorial in Bedford Heights, Ohio, as a national memorial.","url":"https://api.congress.gov/v3/bill/117/hr/7618?format=json","number":"7618","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-20","latestAction_actionTime":""}} +{"type":"node","id":"6980","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","introducedDate":"2022-03-31","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"FIND Food Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7317?format=json","number":"7317","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-03-31","latestAction_actionTime":""}} +{"type":"node","id":"6981","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-02-02","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","type":"HR","title":"GAO Audit Mandates Revision Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/6560?format=json","number":"6560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-02-03","latestAction_actionTime":""}} +{"type":"node","id":"6982","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-01-06","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Afterschool Meals Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/6357?format=json","number":"6357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-01-06","latestAction_actionTime":""}} +{"type":"node","id":"6983","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend titles 10 and 38, United States Code, to extend certain benefits to members of the National Guard who incur disabilities while performing State active duty.","url":"https://api.congress.gov/v3/bill/119/hr/1824?format=json","number":"1824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"6984","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Mineral Leasing Act to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1555?format=json","number":"1555","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"6985","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Energy Policy and Conservation Act to modify standards for water heaters, furnaces, boilers, and kitchen cooktops, ranges, and ovens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1281?format=json","number":"1281","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"6986","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"To direct the Librarian of Congress to promote the more cost-effective, efficient, and expanded availability of the Annotated Constitution and pocket-part supplements by replacing the hardbound versions with digital versions.","url":"https://api.congress.gov/v3/bill/119/hr/1234?format=json","number":"1234","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"6987","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Natural Resources, Energy and Commerce, and Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require that a State be ineligible to receive funds under certain Federal programs unless the State has in effect a State law restricting the purchase of agricultural land by certain foreign persons, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1184?format=json","number":"1184","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"6988","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stop Illegal Reentry Act","url":"https://api.congress.gov/v3/bill/119/hr/749?format=json","number":"749","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"6989","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Protecting Military Parental Leave Evaluations Act","url":"https://api.congress.gov/v3/bill/119/hr/656?format=json","number":"656","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"6990","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Walk-In Coolers and Walk-In Freezers\".","url":"https://api.congress.gov/v3/bill/119/hjres/24?format=json","number":"24","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"6991","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHILD Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/413?format=json","number":"413","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"6992","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Regulation Reduction Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/377?format=json","number":"377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"6993","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SAVE Act","url":"https://api.congress.gov/v3/bill/119/hr/256?format=json","number":"256","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6994","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To cancel certain proposed changes to loan level price adjustments by the Federal National Mortgage Association and credit fees charged by the Federal Home Loan Mortgage Corporation.","url":"https://api.congress.gov/v3/bill/119/hr/258?format=json","number":"258","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6995","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"SEC Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/257?format=json","number":"257","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"6996","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service Recording Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10355?format=json","number":"10355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"6997","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Oversight and Accountability, Rules, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Chevron Re-Review Act","url":"https://api.congress.gov/v3/bill/118/hr/10300?format=json","number":"10300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"6998","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-21","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Protecting Military Parental Leave Evaluations Act","url":"https://api.congress.gov/v3/bill/118/hr/10200?format=json","number":"10200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"6999","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-11-20","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"DOGE Act","url":"https://api.congress.gov/v3/bill/118/hr/10177?format=json","number":"10177","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"7000","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Bice amendment (A005) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1127?format=json","number":"","amendmentNumber":"1127","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"19:07:16"}} +{"type":"node","id":"7001","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture and National Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8522?format=json","number":"8522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"7002","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-03-08","policyArea_name":"Congress","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Rules and Administration.","type":"HR","title":"Modernizing the Congressional Research Service’s Access to Data Act","url":"https://api.congress.gov/v3/bill/118/hr/7593?format=json","number":"7593","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"7003","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a credit for the domestic production of high-performance rare earth magnets, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1496?format=json","number":"1496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7004","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to expand eligibility for headstones, markers, and burial receptacles under the laws administered by the Secretary of Veterans Affairs to certain individuals who died before November 11, 1998.","url":"https://api.congress.gov/v3/bill/119/hr/1344?format=json","number":"1344","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7005","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Modernize the Au Pair Program Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9677?format=json","number":"9677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"7006","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the resolution (H. Res. 1371) strongly condemning the Biden Administration and its Border Czar, Kamala Harris's, failure to secure the United States border.","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","number":"1376","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"21:16:52"}} +{"type":"node","id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}} +{"type":"node","id":"7008","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-17","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"To amend title 38, United States Code, and the Servicemembers Civil Relief Act to provide for the eligibility of United States citizens who serve in the Israeli Defense Forces for certain protections relating to such service.","url":"https://api.congress.gov/v3/bill/118/hr/8445?format=json","number":"8445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-17","latestAction_actionTime":""}} +{"type":"node","id":"7009","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-04-16","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 6323) to modify the availability of certain waiver authorities with respect to sanctions imposed with respect to the financial sector of Iran, and for other purposes; providing for consideration of the resolution (H. Res. 1143) condemning Iran's unprecedented drone and missile attack on Israel; providing for consideration of the bill (H.R. 4691) to provide for congressional review of actions to terminate or waive sanctions imposed with respect to Iran; providing for consideration of the bill (H.R. 5947) to provide for the rescission of certain waivers and licenses relating to Iran, and for other purposes; providing for consideration of the bill (H.R. 6046) to designate Ansarallah as a foreign terrorist organization and impose certain sanctions on Ansarallah, and for other purposes; and providing for consideration of the bill (H.R. 4639) to amend section 2702 of title 18, United States Code, to prevent law enforcement and intelligence agencies from obtaining subscriber or customer records in exchange for anything of value, to address communications and records in the possession of intermediary internet service providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1149?format=json","number":"1149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":"14:13:28"}} +{"type":"node","id":"7010","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-29","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To designate the Washington Dulles International Airport in Virginia as the \"Donald J. Trump International Airport\".","url":"https://api.congress.gov/v3/bill/118/hr/7845?format=json","number":"7845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-29","latestAction_actionTime":""}} +{"type":"node","id":"7011","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-19","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Dennis and Lois Krisfalusy Act","url":"https://api.congress.gov/v3/bill/118/hr/7729?format=json","number":"7729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"7012","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-03-19","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1023) to repeal section 134 of the Clean Air Act, relating to the greenhouse gas reduction fund; providing for consideration of the bill (H.R. 1121) to prohibit a moratorium on the use of hydraulic fracturing; providing for consideration of the bill (H.R. 6009) to require the Director of the Bureau of Land Management to withdraw the proposed rule relating to fluid mineral leases and leasing process, and for other purposes; providing for consideration of the concurrent resolution (H. Con. Res. 86) expressing the sense of Congress that a carbon tax would be detrimental to the United States economy; providing for consideration of the resolution (H. Res. 987) denouncing the harmful, anti-American energy policies of the Biden administration, and for other purposes; and providing for consideration of the bill (H.R 7023) to amend section 404 of the Federal Water Pollution Control Act to codify certain regulatory provisions relating to nationwide permits for dredged or fill material, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1085?format=json","number":"1085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":"14:09:44"}} +{"type":"node","id":"7013","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-02-13","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing consideration of the bill (H.R. 7176) to repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/118/hres/1009?format=json","number":"1009","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-14","latestAction_actionTime":"17:07:21"}} +{"type":"node","id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}} +{"type":"node","id":"7015","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-19","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To direct the Secretary of Veterans Affairs to include information relating to the rate of suicide among covered Reserves in each National Veteran Suicide Prevention Annual Report of the Office of Mental Health and Suicide Prevention of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/118/hr/6873?format=json","number":"6873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-30","latestAction_actionTime":""}} +{"type":"node","id":"7016","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Cold Case Modernization Act","url":"https://api.congress.gov/v3/bill/118/hr/6688?format=json","number":"6688","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}} +{"type":"node","id":"7017","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-11-28","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5283) to prohibit the use of Federal funds to provide housing to specified aliens on any land under the administrative jurisdiction of the Federal land management agencies; providing for consideration of the bill (H.R. 5961) to freeze certain Iranian funds involved in the 2023 hostage deal between the United States and Iran, and for other purposes; and providing for consideration of the joint resolution (S. J. Res. 32) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)\".","url":"https://api.congress.gov/v3/bill/118/hres/891?format=json","number":"891","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-29","latestAction_actionTime":"14:09:21"}} +{"type":"node","id":"7018","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-10-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4394) making appropriations for energy and water development and related agencies for the fiscal year ending September 30, 2024, and for other purposes, and providing for consideration of the bill (H.R. 4364) making appropriations for the Legislative Branch for the fiscal year ending September 30, 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/756?format=json","number":"756","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":"14:31:10"}} +{"type":"node","id":"7019","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-09-29","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5525) making continuing appropriations for fiscal year 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/741?format=json","number":"741","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":"12:01:47"}} +{"type":"node","id":"7020","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-09-19","policyArea_name":"Congress","latestAction_text":"Pursuant to the provisions of H. Res. 756, H. Res. 699 is laid on the table.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1130) to repeal restrictions on the export and import of natural gas; providing for consideration of the resolution (H. Res. 684) condemning the actions of Governor of New Mexico, Michelle Lujan Grisham, for subverting the Second Amendment to the Constitution and depriving the citizens of New Mexico of their right to bear arms; and providing for consideration of the bill (H.R. 5525) making continuing appropriations for fiscal year 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/699?format=json","number":"699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":"14:31:12"}} +{"type":"node","id":"7021","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Better CARE for Animals Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5041?format=json","number":"5041","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}} +{"type":"node","id":"7022","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-07-26","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4366) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the joint resolution (S.J. Res. 9) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Lesser Prairie-Chicken; Threatened Status With Section 4(d) Rule for the Northern Distinct Population Segment and Endangered Status for the Southern Distinct Population Segment\"; and providing for consideration of the joint resolution (S.J. Res. 24) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Endangered Species Status for Northern Long-Eared Bat\".","url":"https://api.congress.gov/v3/bill/118/hres/614?format=json","number":"614","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":"14:02:56"}} +{"type":"node","id":"7023","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to facilitate patient access to certain pediatric technologies.","url":"https://api.congress.gov/v3/bill/119/hr/1931?format=json","number":"1931","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7024","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to clarify payment rules for manual wheelchairs under part B of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1703?format=json","number":"1703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7025","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H535-536)","type":"HR","title":"ORPHAN Cures Act","url":"https://api.congress.gov/v3/bill/119/hr/946?format=json","number":"946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7026","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Sustainable Cardiopulmonary Rehabilitation Services in the Home Act","url":"https://api.congress.gov/v3/bill/119/hr/783?format=json","number":"783","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7027","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Preserving Choice in Vehicle Purchases Act","url":"https://api.congress.gov/v3/bill/119/hr/346?format=json","number":"346","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7028","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the recognition of November as \"National Bread Month\" and celebrating bread as a nutritious, affordable, and culturally significant staple food.","url":"https://api.congress.gov/v3/bill/118/hres/1571?format=json","number":"1571","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}} +{"type":"node","id":"7029","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Access to Pediatric Technologies Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9157?format=json","number":"9157","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7030","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-03-08","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HCONRES","title":"Expressing the sense of Congress regarding the public health, safety, and welfare implications of licensure of design professionals.","url":"https://api.congress.gov/v3/bill/118/hconres/96?format=json","number":"96","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}} +{"type":"node","id":"7031","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-09-22","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 40 - 0.","type":"HR","title":"5G SALE Act","url":"https://api.congress.gov/v3/bill/118/hr/5677?format=json","number":"5677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}} +{"type":"node","id":"7032","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-09-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"ORPHAN Cures Act","url":"https://api.congress.gov/v3/bill/118/hr/5539?format=json","number":"5539","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7033","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-09-08","policyArea_name":"Health","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 48 - 0.","type":"HR","title":"Expanding Seniors' Access to Lower Cost Medicines Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5372?format=json","number":"5372","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7034","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-09-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Choices for Increased Mobility Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5371?format=json","number":"5371","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7035","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-03-08","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","type":"HR","title":"Preserving Choice in Vehicle Purchases Act","url":"https://api.congress.gov/v3/bill/118/hr/1435?format=json","number":"1435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-18","latestAction_actionTime":""}} +{"type":"node","id":"7036","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-08-04","policyArea_name":"Commerce","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 27 - 20.","type":"HR","title":"Advancing Gig Economy Act","url":"https://api.congress.gov/v3/bill/118/hr/5146?format=json","number":"5146","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7037","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Pediatricians Accelerate Childhood Therapies Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4714?format=json","number":"4714","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-21","latestAction_actionTime":""}} +{"type":"node","id":"7038","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"Mountain Valley Pipeline Completion Act","url":"https://api.congress.gov/v3/bill/118/hr/3500?format=json","number":"3500","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}} +{"type":"node","id":"7039","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-05-15","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Broadband Competition and Efficient Deployment Act","url":"https://api.congress.gov/v3/bill/118/hr/3288?format=json","number":"3288","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}} +{"type":"node","id":"7040","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-05-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to require each off-campus outpatient department of a provider to include a unique identifier on claims for items and services, and to require providers with a department of a provider to submit to the Centers for Medicare & Medicaid Services an attestation with respect to each such department.","url":"https://api.congress.gov/v3/bill/118/hr/3237?format=json","number":"3237","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7041","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-04-20","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SPARC Act","url":"https://api.congress.gov/v3/bill/118/hr/2761?format=json","number":"2761","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-20","latestAction_actionTime":""}} +{"type":"node","id":"7042","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-04-10","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Strengthening Community Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2559?format=json","number":"2559","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-21","latestAction_actionTime":""}} +{"type":"node","id":"7043","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to establish a new criterion for the nonapplication of site-neutral payments to long-term care hospitals under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1924?format=json","number":"1924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7044","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to remove in-person requirements under Medicare for mental health services furnished through telehealth and telecommunications technology.","url":"https://api.congress.gov/v3/bill/119/hr/1867?format=json","number":"1867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7045","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit the use or declaration of a public health emergency with respect to abortion, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1525?format=json","number":"1525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7046","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Placed on the Union Calendar, Calendar No. 8.","type":"HR","title":"PROTECT Our Kids Act","url":"https://api.congress.gov/v3/bill/119/hr/1069?format=json","number":"1069","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7047","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Enhancing Energy Recovery Act","url":"https://api.congress.gov/v3/bill/119/hr/1003?format=json","number":"1003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7048","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Student Empowerment Act","url":"https://api.congress.gov/v3/bill/119/hr/939?format=json","number":"939","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7049","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":"16:46:51"}} +{"type":"node","id":"7050","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for the attendance of the House at the Inaugural Ceremonies of the President and Vice President of the United States.","url":"https://api.congress.gov/v3/bill/119/hres/43?format=json","number":"43","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":"16:47:19"}} +{"type":"node","id":"7051","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"____ Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10167?format=json","number":"10167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"7052","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-07-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Renewing Investment in American Workers and Supply Chains Act","url":"https://api.congress.gov/v3/bill/118/hr/9069?format=json","number":"9069","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}} +{"type":"node","id":"7053","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-02","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Tribal Child Welfare Support Act","url":"https://api.congress.gov/v3/bill/118/hr/8921?format=json","number":"8921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7054","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-07-02","policyArea_name":"Taxation","latestAction_text":"Placed on the Union Calendar, Calendar No. 799.","type":"HR","title":"Education and Workforce Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/8915?format=json","number":"8915","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-24","latestAction_actionTime":""}} +{"type":"node","id":"7055","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-05-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Securing Access to Care for Seniors in Critical Condition Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8576?format=json","number":"8576","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7056","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to remove in-person requirements under Medicare for mental health services furnished through telehealth and telecommunications technology.","url":"https://api.congress.gov/v3/bill/118/hr/8227?format=json","number":"8227","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7057","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-04-09","latestAction_text":"Placed on the Union Calendar, Calendar No. 800.","type":"HR","title":"Strengthening State and Tribal Child Support Enforcement Act","url":"https://api.congress.gov/v3/bill/118/hr/7906?format=json","number":"7906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-24","latestAction_actionTime":""}} +{"type":"node","id":"7058","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-03-19","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Recognizing the importance of the economic relationship between the United States and Israel and affirming that trade facilitated by the United States-Israel Free Trade Agreement is a tool to support the economy of Israel during the conflict with Hamas.","url":"https://api.congress.gov/v3/bill/118/hres/1092?format=json","number":"1092","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-19","latestAction_actionTime":""}} +{"type":"node","id":"7059","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-29","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Countering Communist China Act","url":"https://api.congress.gov/v3/bill/118/hr/7476?format=json","number":"7476","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7060","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To impose a fee on certain remittance transfers to fund border security.","url":"https://api.congress.gov/v3/bill/118/hr/6817?format=json","number":"6817","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7061","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Education","latestAction_text":"Placed on the Union Calendar, Calendar No. 475.","type":"HR","title":"PROTECT Our Kids Act","url":"https://api.congress.gov/v3/bill/118/hr/6816?format=json","number":"6816","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-05","latestAction_actionTime":""}} +{"type":"node","id":"7062","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Student Empowerment Act","url":"https://api.congress.gov/v3/bill/118/hr/6050?format=json","number":"6050","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7063","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"119","introducedDate":"2025-02-24","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/hres/160?format=json","number":"160","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7064","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Omnibus Crime Control and Safe Streets Act of 1968 to provide public safety officer benefits for exposure-related cancers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1269?format=json","number":"1269","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7065","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Inaugural Fund Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/535?format=json","number":"535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"7066","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Health and Location Data Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10540?format=json","number":"10540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"7067","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-11-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Disability Voting Rights Act","url":"https://api.congress.gov/v3/bill/118/hr/10149?format=json","number":"10149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-15","latestAction_actionTime":""}} +{"type":"node","id":"7068","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-22","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Dropbox Access Act","url":"https://api.congress.gov/v3/bill/118/hr/10032?format=json","number":"10032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}} +{"type":"node","id":"7069","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending Big Brothers-Big Sisters of America, the oldest and largest youth mentoring organization in the United States, on its 120th anniversary and the role it has played in empowering millions of young people on a path to graduate with a plan for their future through mentorship that will last a lifetime.","url":"https://api.congress.gov/v3/bill/118/hres/1516?format=json","number":"1516","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7070","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of \"Public Radio Music Day\" and deep appreciation for the role of public radio music stations in serving listeners, musicians, and hundreds of communities in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1491?format=json","number":"1491","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"7071","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-08-23","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Pedestrian Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/9408?format=json","number":"9408","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-23","latestAction_actionTime":""}} +{"type":"node","id":"7072","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Recognizing the 50th anniversary of the Legal Services Corporation.","url":"https://api.congress.gov/v3/bill/118/hres/1390?format=json","number":"1390","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7073","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Help Grandfamilies Prevent Child Abuse Act","url":"https://api.congress.gov/v3/bill/118/hr/8555?format=json","number":"8555","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"7074","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-08","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Alternatives to Guardianship Education Act","url":"https://api.congress.gov/v3/bill/118/hr/8328?format=json","number":"8328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-08","latestAction_actionTime":""}} +{"type":"node","id":"7075","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Accessible Voting Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7389?format=json","number":"7389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7076","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Recognizing January 2024 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/118/hres/983?format=json","number":"983","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-29","latestAction_actionTime":""}} +{"type":"node","id":"7077","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-11","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Corporate Crime Database Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6713?format=json","number":"6713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7078","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-08","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Inaugural Fund Integrity Act","url":"https://api.congress.gov/v3/bill/118/hr/6312?format=json","number":"6312","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}} +{"type":"node","id":"7079","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2023-09-14","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing the support of the House of Representatives for the designation of \"Public Radio Music Day\" and its deep appreciation for the role of public radio music stations in serving listeners, musicians, and hundreds of communities in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-14","latestAction_actionTime":""}} +{"type":"node","id":"7080","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stopping the Fraudulent Sales of Firearms Act","url":"https://api.congress.gov/v3/bill/118/hr/5449?format=json","number":"5449","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-13","latestAction_actionTime":""}} +{"type":"node","id":"7081","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Justice for Juveniles Act","url":"https://api.congress.gov/v3/bill/118/hr/5047?format=json","number":"5047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"7082","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2023-05-17","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Foster Youth Mentoring Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3443?format=json","number":"3443","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7083","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to protect small businesses from unemployment insurance premium increases by reason of unrepaid State advances.","url":"https://api.congress.gov/v3/bill/119/hr/1959?format=json","number":"1959","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7084","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow certain veterinary expenses for pets and service animals to be treated as amounts paid for medical care for purposes of a health savings account or flexible savings account.","url":"https://api.congress.gov/v3/bill/119/hr/1842?format=json","number":"1842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7085","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to extend the energy credit for qualified fuel cell property.","url":"https://api.congress.gov/v3/bill/119/hr/1752?format=json","number":"1752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7086","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To provide tax incentives that support local media.","url":"https://api.congress.gov/v3/bill/119/hr/1753?format=json","number":"1753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7087","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Encouraging the EU to DESIGNATE Resolution","url":"https://api.congress.gov/v3/bill/119/hres/176?format=json","number":"176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7088","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to remove private or commercial golf courses and country clubs from the list of uses for which certain proceeds cannot be used.","url":"https://api.congress.gov/v3/bill/119/hr/1583?format=json","number":"1583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"7089","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To require the Secretary of the Treasury to mint coins in recognition of the bicentennial of the Erie Canal.","url":"https://api.congress.gov/v3/bill/119/hr/1546?format=json","number":"1546","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7090","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish the generic drugs and biosimilars production credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1396?format=json","number":"1396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7091","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To amend title 5, United States Code, to designate Trump's Birthday and Flag Day as a legal public holiday.","url":"https://api.congress.gov/v3/bill/119/hr/1395?format=json","number":"1395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7092","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-14","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/hres/139?format=json","number":"139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7093","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit Federal funding for the Public Broadcasting Service and National Public Radio and to provide for the transfer of certain Federal funds that would have been made available to those organizations to reduce the public debt, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1216?format=json","number":"1216","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"7094","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1103?format=json","number":"1103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7095","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend part D of title IV of the Social Security Act to ensure that child support for unborn children is collected and distributed under the child support enforcement program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1104?format=json","number":"1104","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7096","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Stop Funding Our Adversaries Act of 2023","url":"https://api.congress.gov/v3/bill/119/hr/1032?format=json","number":"1032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7097","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To establish the Fort Ontario National Monument in the State of New York as a unit of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1031?format=json","number":"1031","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7098","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing the sense of the House of Representatives that the United Nations Security Council should immediately impose an arms embargo against the military of Burma.","url":"https://api.congress.gov/v3/bill/119/hres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7099","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/119/hr/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7100","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Pregnancy Resource Center Defense Act","url":"https://api.congress.gov/v3/bill/119/hr/636?format=json","number":"636","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"7101","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Protecting School Milk Choices Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"7102","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"SAGA Act","url":"https://api.congress.gov/v3/bill/119/hr/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7103","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Precision Agriculture Satellite Connectivity Act","url":"https://api.congress.gov/v3/bill/119/hr/1618?format=json","number":"1618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7104","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/119/hr/866?format=json","number":"866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7105","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SAVE Moms and Babies Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/685?format=json","number":"685","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7106","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protecting the Dignity of Unborn Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/686?format=json","number":"686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7107","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2024-12-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Nuclear REFUEL (Recycling Efficient Fuels Utilizing Expedited Licensing) Act","url":"https://api.congress.gov/v3/bill/118/hr/10321?format=json","number":"10321","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7108","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SECURE Grid Act","url":"https://api.congress.gov/v3/bill/118/hr/9083?format=json","number":"9083","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}} +{"type":"node","id":"7109","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-05-23","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"Safeguarding and Securing the Open Internet; Restoring Internet Freedom\".","url":"https://api.congress.gov/v3/bill/118/hjres/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}} +{"type":"node","id":"7110","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-03-08","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/118/hr/7589?format=json","number":"7589","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"7111","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-09-26","policyArea_name":"Energy","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 48 - 0.","type":"HR","title":"Nuclear Fuel Security Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5718?format=json","number":"5718","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}} +{"type":"node","id":"7112","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-09-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"TREAT Act","url":"https://api.congress.gov/v3/bill/118/hr/5541?format=json","number":"5541","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}} +{"type":"node","id":"7113","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-10","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"NTIA Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/4510?format=json","number":"4510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"7114","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-05-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"HEALING Response Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3703?format=json","number":"3703","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-26","latestAction_actionTime":""}} +{"type":"node","id":"7115","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-05-24","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Veterans Right to Expediency Act","url":"https://api.congress.gov/v3/bill/118/hr/3643?format=json","number":"3643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-20","latestAction_actionTime":""}} +{"type":"node","id":"7116","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-05-24","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"ACT for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/3644?format=json","number":"3644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}} +{"type":"node","id":"7117","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-05-15","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"WIRELESS Leadership Act","url":"https://api.congress.gov/v3/bill/118/hr/3279?format=json","number":"3279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}} +{"type":"node","id":"7118","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-03-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"Precision Agriculture Satellite Connectivity Act","url":"https://api.congress.gov/v3/bill/118/hr/1339?format=json","number":"1339","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-01","latestAction_actionTime":""}} +{"type":"node","id":"7119","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-04-20","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Stop Penalizing Working Seniors Act","url":"https://api.congress.gov/v3/bill/118/hr/2769?format=json","number":"2769","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7120","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-02-17","policyArea_name":"Energy","latestAction_text":"Placed on the Union Calendar, Calendar No. 12.","type":"HR","title":"REFINER Act","url":"https://api.congress.gov/v3/bill/118/hr/1085?format=json","number":"1085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-23","latestAction_actionTime":""}} +{"type":"node","id":"7121","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-02-17","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Nuclear Fuel Security Act","url":"https://api.congress.gov/v3/bill/118/hr/1086?format=json","number":"1086","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7122","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-01-20","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"SAVE Moms and Babies Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/427?format=json","number":"427","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-27","latestAction_actionTime":""}} +{"type":"node","id":"7123","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the heroic sacrifices of the people of Ukraine 3 years after Russian President Vladimir Putin's illegal and unprovoked war against Ukraine on February 24, 2022, and recognizing the terrible cost of Russia's committing crimes against Humanity aggression.","url":"https://api.congress.gov/v3/bill/119/hres/154?format=json","number":"154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7124","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Sponsor introductory remarks on measure. (CR H607)","type":"HR","title":"Great Lakes Gateways Network Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1073?format=json","number":"1073","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"7125","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-11","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Gold Star Spouses Health Care Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/9974?format=json","number":"9974","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}} +{"type":"node","id":"7126","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th Anniversary of the Warsaw Uprising.","url":"https://api.congress.gov/v3/bill/118/hres/1440?format=json","number":"1440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}} +{"type":"node","id":"7127","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Ukraine Democracy Defense Lend-Lease Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9011?format=json","number":"9011","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}} +{"type":"node","id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}} +{"type":"node","id":"7129","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-06","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 105th anniversary of diplomatic relations between Poland and the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1198?format=json","number":"1198","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-06","latestAction_actionTime":""}} +{"type":"node","id":"7130","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-04-26","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Balancing Incentives Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8132?format=json","number":"8132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"7131","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the heroic sacrifices of the Ukrainian people 2 years after Russia's illegal and unprovoked invasion of Ukraine on February 24, 2022, and recognizing the terrible cost of Russia's war of aggression.","url":"https://api.congress.gov/v3/bill/118/hres/1014?format=json","number":"1014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7132","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-01-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Opioid Settlement Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/6956?format=json","number":"6956","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}} +{"type":"node","id":"7133","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Healthy Farms Healthy Watersheds Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6821?format=json","number":"6821","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-29","latestAction_actionTime":""}} +{"type":"node","id":"7134","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-14","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Last Servicemember Standing Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/6406?format=json","number":"6406","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}} +{"type":"node","id":"7135","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Law Enforcement Training for Mental Health Crisis Response Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3501?format=json","number":"3501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}} +{"type":"node","id":"7136","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-05-05","latestAction_text":"Sponsor introductory remarks on measure. (CR H2155)","type":"HRES","title":"Expressing support for the designation of the week of May 5 through May 14, 2023, as \"National American Birding Week\".","url":"https://api.congress.gov/v3/bill/118/hres/370?format=json","number":"370","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}} +{"type":"node","id":"7137","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-19","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Return to Prudent Banking Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2714?format=json","number":"2714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-19","latestAction_actionTime":""}} +{"type":"node","id":"7138","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-03-29","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Farmers’ Market and Food Bank Local Revitalization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2378?format=json","number":"2378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-25","latestAction_actionTime":""}} +{"type":"node","id":"7139","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2023-03-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Science, Space, and Technology, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Office of Manufacturing and Industrial Innovation Policy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1710?format=json","number":"1710","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-22","latestAction_actionTime":""}} +{"type":"node","id":"7140","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-02-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Restoring Communities Left Behind Act","url":"https://api.congress.gov/v3/bill/118/hr/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7141","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-08-12","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Farmers Market and Food Bank Local Revitalization Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8707?format=json","number":"8707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-08-12","latestAction_actionTime":""}} +{"type":"node","id":"7142","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"117","policyArea_name":"Economics and Public Finance","introducedDate":"2022-06-30","latestAction_text":"Placed on the Union Calendar, Calendar No. 302.","type":"HR","title":"Energy and Water Development and Related Agencies Appropriations Act, 2023","url":"https://api.congress.gov/v3/bill/117/hr/8255?format=json","number":"8255","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-30","latestAction_actionTime":""}} +{"type":"node","id":"7143","labels":["Legislation"],"properties":{"sponsored_by":"R000622","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the National Agricultural Research, Extension, and Teaching Policy Act of 1977 to extend grants and fellowships for food and agricultural sciences education.","url":"https://api.congress.gov/v3/bill/119/hr/1952?format=json","number":"1952","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7144","labels":["Legislation"],"properties":{"sponsored_by":"R000622","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Consolidated Farm and Rural Development Act to reauthorize rural cooperative development grants.","url":"https://api.congress.gov/v3/bill/119/hr/1951?format=json","number":"1951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7145","labels":["Legislation"],"properties":{"sponsored_by":"L000606","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 25 - 0.","type":"HR","title":"Transparency and Predictability in Small Business Opportunities Act","url":"https://api.congress.gov/v3/bill/119/hr/789?format=json","number":"789","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7146","labels":["Legislation"],"properties":{"sponsored_by":"G000602","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require the Secretary of Homeland Security to designate Haiti for temporary protected status.","url":"https://api.congress.gov/v3/bill/119/hr/1689?format=json","number":"1689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7148","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Sponsor introductory remarks on measure. (CR H510-511)","type":"HR","title":"SNAP Benefits Fairness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/793?format=json","number":"793","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7149","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H122)","type":"HR","title":"ARC Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/307?format=json","number":"307","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"7150","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"118","introducedDate":"2024-12-06","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"DHS Better Ballistic Body Armor Act","url":"https://api.congress.gov/v3/bill/118/hr/10322?format=json","number":"10322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7151","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide for an annual increase in stipend for books, supplies, equipment, and other educational costs under Post-9/11 Educational Assistance Program of Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/hr/1965?format=json","number":"1965","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7152","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To name the Department of Veterans Affairs community-based outpatient clinic in Las Cruces, New Mexico, the \"Las Cruces Bataan Memorial Clinic\".","url":"https://api.congress.gov/v3/bill/119/hr/1964?format=json","number":"1964","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7153","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Zuni Indian Tribe in the Zuni River Stream System in the State of New Mexico, to protect the Zuni Salt Lake, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1444?format=json","number":"1444","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7154","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Bureau of Labor Statistics to prepare and publish a Consumer Price Index for Rural Consumers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1038?format=json","number":"1038","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7155","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-06","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Las Cruces Bataan Memorial Clinic Act","url":"https://api.congress.gov/v3/bill/118/hr/9493?format=json","number":"9493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"7156","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"New Mexico Rural Veteran Health Care Access Act","url":"https://api.congress.gov/v3/bill/118/hr/9301?format=json","number":"9301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}} +{"type":"node","id":"7157","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Patient Debt Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/9129?format=json","number":"9129","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7158","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-07-10","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"Stop Fentanyl at the Border Act","url":"https://api.congress.gov/v3/bill/118/hr/8992?format=json","number":"8992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}} +{"type":"node","id":"7159","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-08","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Zuni Indian Tribe Water Rights Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8951?format=json","number":"8951","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7160","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HCONRES","title":"Commemorating the 100th anniversary of the designation of the Gila Wilderness.","url":"https://api.congress.gov/v3/bill/118/hconres/108?format=json","number":"108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"7161","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-22","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Veteran Education Assistance Adjustment Act","url":"https://api.congress.gov/v3/bill/118/hr/8514?format=json","number":"8514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"7162","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"CSFP Tribal Nutrition Sovereignty Act","url":"https://api.congress.gov/v3/bill/118/hr/8513?format=json","number":"8513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7163","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-21","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Farmer to Farmer Education Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8488?format=json","number":"8488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7164","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Rural Installation Job Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/8417?format=json","number":"8417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}} +{"type":"node","id":"7165","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-04-20","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Habitat Connectivity on Working Lands Act","url":"https://api.congress.gov/v3/bill/118/hr/8104?format=json","number":"8104","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-20","latestAction_actionTime":""}} +{"type":"node","id":"7166","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No More Narcos Act","url":"https://api.congress.gov/v3/bill/118/hr/8058?format=json","number":"8058","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"7167","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Condemning Republican inaction to address comprehensive immigration reform and border security.","url":"https://api.congress.gov/v3/bill/118/hres/1132?format=json","number":"1132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"7168","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Inflation Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/7400?format=json","number":"7400","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7169","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2023-11-24","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Strengthening Our Workforce Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6480?format=json","number":"6480","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-24","latestAction_actionTime":""}} +{"type":"node","id":"7170","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-15","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Ranching Without Red Tape Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6441?format=json","number":"6441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"7171","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To direct the Federal Communications Commission to establish a council to make recommendations on ways to increase the security, reliability, and interoperability of communications networks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1717?format=json","number":"1717","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7172","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"CBP Canine Home Kenneling Pilot Act","url":"https://api.congress.gov/v3/bill/118/hr/10499?format=json","number":"10499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"7173","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Sarah Katz Caffeine Safety Act","url":"https://api.congress.gov/v3/bill/118/hr/10370?format=json","number":"10370","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7174","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Community Parks Revitalization Act","url":"https://api.congress.gov/v3/bill/118/hr/10344?format=json","number":"10344","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"7175","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-23","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"DHS International Cyber Partner Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9762?format=json","number":"9762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7176","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of the week of September 23, 2024, as \"National Latino Gastronomic Cuisine Week\", and celebrating the vibrant and diverse culinary traditions of Latino gastronomy.","url":"https://api.congress.gov/v3/bill/118/hres/1488?format=json","number":"1488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"7177","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-20","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"Protecting Communities from Helicopter Noise Act","url":"https://api.congress.gov/v3/bill/118/hr/7753?format=json","number":"7753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":""}} +{"type":"node","id":"7178","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-12-29","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Parental Workforce Training Act","url":"https://api.congress.gov/v3/bill/118/hr/6907?format=json","number":"6907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-29","latestAction_actionTime":""}} +{"type":"node","id":"7179","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-17","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Providing Robust Organics and Diets for Urban Communities Everywhere Act","url":"https://api.congress.gov/v3/bill/118/hr/6449?format=json","number":"6449","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-17","latestAction_actionTime":""}} +{"type":"node","id":"7180","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-11-13","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Local Solutions to End Homelessness Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6387?format=json","number":"6387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}} +{"type":"node","id":"7181","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2023-09-21","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of September 23, 2023, as national \"Bruce Springsteen Day\", and honoring his contributions to music, New Jersey, and the Nation.","url":"https://api.congress.gov/v3/bill/118/hres/718?format=json","number":"718","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}} +{"type":"node","id":"7182","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-12","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Airline Employee Assault Prevention Act","url":"https://api.congress.gov/v3/bill/118/hr/4037?format=json","number":"4037","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-13","latestAction_actionTime":""}} +{"type":"node","id":"7183","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-04-13","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Communities Before Air Tourism Act","url":"https://api.congress.gov/v3/bill/118/hr/2613?format=json","number":"2613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-14","latestAction_actionTime":""}} +{"type":"node","id":"7184","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2023-04-13","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Working Families Task Force Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2614?format=json","number":"2614","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7185","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-15","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on vessel fires and responses, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/7702?format=json","number":"7702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-15","latestAction_actionTime":""}} +{"type":"node","id":"7186","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To award posthumously a congressional gold medal to James Earl Jones, an American icon, in recognition of a remarkable life in reshaping perceptions, dismantling racial barriers, and advocating for equal opportunities for people of all backgrounds in film and theatre.","url":"https://api.congress.gov/v3/bill/119/hr/1933?format=json","number":"1933","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7187","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide an income tax credit for fertility treatments.","url":"https://api.congress.gov/v3/bill/119/hr/1878?format=json","number":"1878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7188","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Financial Services, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to the system of compensation of the Palestine Liberation Organization and the Palestinian Authority that supports acts of terrorism.","url":"https://api.congress.gov/v3/bill/119/hr/1710?format=json","number":"1710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7191","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to increase the number of physicians who may be provided Conrad 30 waivers.","url":"https://api.congress.gov/v3/bill/119/hr/1201?format=json","number":"1201","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"7192","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the rate of the excise tax based on investment income of private colleges and universities and to broaden the definition of applicable educational institution by lowering the threshold with respect to aggregate fair market value per student, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1128?format=json","number":"1128","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7194","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 86 Main Street in Haverstraw, New York, as the \"Paul Piperato Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1009?format=json","number":"1009","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7195","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 298 Route 292 in Holmes, New York, as the \"Sheriff Adrian 'Butch' Anderson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1008?format=json","number":"1008","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7196","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"IGO Anti-Boycott Act","url":"https://api.congress.gov/v3/bill/119/hr/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7197","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Justice for 9/11 Act","url":"https://api.congress.gov/v3/bill/119/hr/296?format=json","number":"296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7198","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"SALT Fairness and Marriage Penalty Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/232?format=json","number":"232","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"7199","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","introducedDate":"2024-11-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Affordable Loans for Students Act","url":"https://api.congress.gov/v3/bill/118/hr/10159?format=json","number":"10159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-18","latestAction_actionTime":""}} +{"type":"node","id":"7200","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-10-18","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Ways and Means, Oversight and Accountability, Energy and Commerce, and Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Revitalizing America’s Housing Act","url":"https://api.congress.gov/v3/bill/118/hr/10009?format=json","number":"10009","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}} +{"type":"node","id":"7201","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"State Sponsor of Wrongful or Unlawful Detention Act","url":"https://api.congress.gov/v3/bill/118/hr/9976?format=json","number":"9976","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}} +{"type":"node","id":"7202","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Gabriel Rosenberg Dyspraxia/DCD Coverage Act","url":"https://api.congress.gov/v3/bill/118/hr/9975?format=json","number":"9975","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7203","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-10-01","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HRES","title":"Expressing support for the recognition of September 29, 2024, as \"International Day of Awareness of Food Loss and Waste\".","url":"https://api.congress.gov/v3/bill/118/hres/1528?format=json","number":"1528","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"7204","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Kidney Donation Anti-Discrimination Act","url":"https://api.congress.gov/v3/bill/118/hr/9840?format=json","number":"9840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7205","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Partners in Diplomacy Act","url":"https://api.congress.gov/v3/bill/118/hr/9437?format=json","number":"9437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"7206","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-31","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"HR","title":"9/11 Memorial and Museum Act","url":"https://api.congress.gov/v3/bill/119/hr/835?format=json","number":"835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7207","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Service-Disabled Veteran Opportunities in Small Business Act","url":"https://api.congress.gov/v3/bill/119/hr/865?format=json","number":"865","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7208","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 25 - 0.","type":"HR","title":"Plain Language in Contracting Act","url":"https://api.congress.gov/v3/bill/119/hr/787?format=json","number":"787","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7209","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","type":"HR","title":"DOE and SBA Research Act","url":"https://api.congress.gov/v3/bill/119/hr/788?format=json","number":"788","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7210","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Vietnam Veterans Liver Fluke Cancer Study Act","url":"https://api.congress.gov/v3/bill/119/hr/586?format=json","number":"586","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"7211","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Supporting Veteran Families in Need Act","url":"https://api.congress.gov/v3/bill/119/hr/585?format=json","number":"585","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"7212","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Troops Before Politicians Act","url":"https://api.congress.gov/v3/bill/119/hr/518?format=json","number":"518","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"7213","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"PFC Joseph P. Dwyer Peer Support Program Act","url":"https://api.congress.gov/v3/bill/119/hr/438?format=json","number":"438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"7214","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Veterans Foreign Medical Coverage Equality and Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/439?format=json","number":"439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"7215","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Long Island Sound Restoration and Stewardship Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/288?format=json","number":"288","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-10","latestAction_actionTime":""}} +{"type":"node","id":"7216","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Mobile Post Office Relief Act","url":"https://api.congress.gov/v3/bill/119/hr/287?format=json","number":"287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7217","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HRES","title":"Expressing opposition to Central Business District Tolling Program of New York City.","url":"https://api.congress.gov/v3/bill/119/hres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7218","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Bailout for Sanctuary Cities Act","url":"https://api.congress.gov/v3/bill/119/hr/32?format=json","number":"32","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"7219","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Veterans Foreign Medical Coverage Equality and Modernization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10430?format=json","number":"10430","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"7220","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-27","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Gold Star Children Education Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9869?format=json","number":"9869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}} +{"type":"node","id":"7221","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-09-24","policyArea_name":"","latestAction_text":"On agreeing to the LaLota amendment (A016) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1219?format=json","number":"","amendmentNumber":"1219","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":"16:58:35"}} +{"type":"node","id":"7222","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-09-23","policyArea_name":"Immigration","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Tren de Aragua Southwest Border Security Threat Assessment Act","url":"https://api.congress.gov/v3/bill/118/hr/9752?format=json","number":"9752","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7223","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-08-13","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Save our Safety-Net Hospitals Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9351?format=json","number":"9351","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-13","latestAction_actionTime":""}} +{"type":"node","id":"7224","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-07","latestAction_text":"Became Public Law No: 118-186.","type":"HR","title":"DETECT Fentanyl and Xylazine Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8663?format=json","number":"8663","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"7225","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-03","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"Stop the Scam Act","url":"https://api.congress.gov/v3/bill/118/hr/8594?format=json","number":"8594","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}} +{"type":"node","id":"7226","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Protecting Social Security Act","url":"https://api.congress.gov/v3/bill/119/hr/963?format=json","number":"963","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7227","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Stop Sports Blackouts Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7228","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-31","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Mortgage Rate Reduction Act","url":"https://api.congress.gov/v3/bill/119/hr/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7229","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stopping Pharma’s Ripoffs and Drug Savings For All Act","url":"https://api.congress.gov/v3/bill/119/hr/890?format=json","number":"890","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7230","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-31","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Pro-Housing Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/891?format=json","number":"891","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-01","latestAction_actionTime":""}} +{"type":"node","id":"7231","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Deliver Housing Now Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7232","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Lower Grocery Prices Act","url":"https://api.congress.gov/v3/bill/119/hr/887?format=json","number":"887","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7233","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Energy and Commerce, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Working Families Housing Tax Credit Act","url":"https://api.congress.gov/v3/bill/119/hr/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7234","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-08-16","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Mortgage Rate Reduction Act","url":"https://api.congress.gov/v3/bill/118/hr/9379?format=json","number":"9379","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-13","latestAction_actionTime":""}} +{"type":"node","id":"7235","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Working Families Housing Tax Credit Act","url":"https://api.congress.gov/v3/bill/118/hr/9380?format=json","number":"9380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-17","latestAction_actionTime":""}} +{"type":"node","id":"7236","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-08-16","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Pro-Housing Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9378?format=json","number":"9378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-17","latestAction_actionTime":""}} +{"type":"node","id":"7237","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-08-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Deliver Housing Now Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9377?format=json","number":"9377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-16","latestAction_actionTime":""}} +{"type":"node","id":"7238","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2024-08-09","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"Protecting Social Security Act","url":"https://api.congress.gov/v3/bill/118/hr/9341?format=json","number":"9341","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7239","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2024-02-07","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Courage to Serve Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7298?format=json","number":"7298","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7240","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2023-11-15","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stopping Pharma’s Ripoffs and Drug Savings For All Act","url":"https://api.congress.gov/v3/bill/118/hr/6436?format=json","number":"6436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":""}} +{"type":"node","id":"7241","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Never Forgotten Korean War POW Act","url":"https://api.congress.gov/v3/bill/118/hr/6355?format=json","number":"6355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-09","latestAction_actionTime":""}} +{"type":"node","id":"7242","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-09","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Hudson River Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/6356?format=json","number":"6356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}} +{"type":"node","id":"7243","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-03","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Expanding Home Loans for Guard and Reservists Act","url":"https://api.congress.gov/v3/bill/118/hr/6225?format=json","number":"6225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"7244","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2023-10-11","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Demanding Senator Tommy Tuberville stop threatening United States and Israel security.","url":"https://api.congress.gov/v3/bill/118/hres/778?format=json","number":"778","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7245","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-28","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Public Safety and Community Support Act","url":"https://api.congress.gov/v3/bill/118/hr/5811?format=json","number":"5811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}} +{"type":"node","id":"7246","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to rename the standard deduction the guaranteed deduction, and to add a bonus amount to the guaranteed deduction for taxable years 2026 and 2027.","url":"https://api.congress.gov/v3/bill/119/hr/1833?format=json","number":"1833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7247","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to make the exclusion for certain employer payments of student loans under educational assistance programs permanent.","url":"https://api.congress.gov/v3/bill/119/hr/1801?format=json","number":"1801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"7248","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committees on Energy and Commerce, Agriculture, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the use of animals in federally funded research, promote the adoption of humane and scientifically advanced alternatives, and ensure the ethical rehoming of retired research animals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1802?format=json","number":"1802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"7249","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To permit the Smithsonian American Women's History Museum to be located within the Reserve of the National Mall, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7250","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To permit the Smithsonian National Museum of the American Latino to be located within the Reserve of the National Mall, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7251","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish the critical supply chains reshoring investment tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1328?format=json","number":"1328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7252","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To reduce the number of, and shorten the time between, pay grade steps for officers and members of the United States Park Police, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1260?format=json","number":"1260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7253","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-10","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 41 - 0.","type":"HR","title":"Recovery of Stolen Checks Act","url":"https://api.congress.gov/v3/bill/119/hr/1155?format=json","number":"1155","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7254","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the exclusion from gross income of social security benefits.","url":"https://api.congress.gov/v3/bill/119/hr/1129?format=json","number":"1129","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7255","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the additional standard deduction for seniors.","url":"https://api.congress.gov/v3/bill/119/hr/1130?format=json","number":"1130","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7256","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"250 Years of Service and Sacrifice Commemorative Coin Act","url":"https://api.congress.gov/v3/bill/119/hr/951?format=json","number":"951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7257","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-13","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"To amend the Intermodal Surface Transportation Efficiency Act of 1991 to prohibit congestion or cordon pricing in a value pricing program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/351?format=json","number":"351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"7258","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-13","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Motorist Tax Abuse Act","url":"https://api.congress.gov/v3/bill/119/hr/352?format=json","number":"352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}} +{"type":"node","id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7260","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Prosecutors Need to Prosecute Act","url":"https://api.congress.gov/v3/bill/119/hr/350?format=json","number":"350","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7261","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To eliminate certain limitations and exclusions regarding defense articles and requirements regarding security assistance and sales with respect to the Republic of Cyprus.","url":"https://api.congress.gov/v3/bill/119/hr/298?format=json","number":"298","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7262","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Transparency of Migration Act","url":"https://api.congress.gov/v3/bill/119/hr/299?format=json","number":"299","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7263","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"HELP PETS Act","url":"https://api.congress.gov/v3/bill/119/hr/297?format=json","number":"297","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7264","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-07","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"HOV Lanes for Heroes Act","url":"https://api.congress.gov/v3/bill/119/hr/234?format=json","number":"234","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}} +{"type":"node","id":"7265","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-07","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning Turkey for its illegal occupation of Cyprus and encouraging President Trump to make the resolution of the Cyprus problem a top foreign policy priority.","url":"https://api.congress.gov/v3/bill/119/hres/17?format=json","number":"17","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}} +{"type":"node","id":"7266","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Northwestern New Mexico Rural Water Projects Act to make improvements to that Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1482?format=json","number":"1482","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7267","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Navajo Nation in the Rio San José Stream System in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1324?format=json","number":"1324","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7268","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of Ohkay Owingeh in the Rio Chama Stream System, to restore the Bosque on Pueblo Land in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1323?format=json","number":"1323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7269","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Pueblos of Acoma and Laguna in the Rio San José Stream System and the Pueblos of Jemez and Zia in the Rio Jemez Stream System in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1322?format=json","number":"1322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7270","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Energy and Commerce, Natural Resources, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BADGES for Native Communities Act","url":"https://api.congress.gov/v3/bill/119/hr/1010?format=json","number":"1010","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7271","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Historic Preservation Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/10553?format=json","number":"10553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}} +{"type":"node","id":"7272","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-09-25","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HCONRES","title":"Recognizing the significance of equal pay and the disparity in wages paid to Latina women in comparison to White, non-Hispanic men.","url":"https://api.congress.gov/v3/bill/118/hconres/131?format=json","number":"131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7273","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-09","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Defenders of Bataan, Corregidor, and Attu Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/9336?format=json","number":"9336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-09","latestAction_actionTime":""}} +{"type":"node","id":"7274","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Telehealth Access for Tribal Communities Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9271?format=json","number":"9271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7275","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Campus Prevention and Recovery Services for Students Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9214?format=json","number":"9214","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7276","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-08","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Navajo Nation Rio San José Stream System Water Rights Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8945?format=json","number":"8945","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7277","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-07-08","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Financial Fitness Act","url":"https://api.congress.gov/v3/bill/118/hr/8944?format=json","number":"8944","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-08","latestAction_actionTime":""}} +{"type":"node","id":"7278","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-12","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Home of Your Own Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8714?format=json","number":"8714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"7279","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-06-11","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Ohkay Owingeh Rio Chama Water Rights Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8685?format=json","number":"8685","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7280","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-06-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Financial Fitness Act","url":"https://api.congress.gov/v3/bill/118/hr/8612?format=json","number":"8612","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":""}} +{"type":"node","id":"7281","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-07","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"New Mexico Land Grant-Mercedes Historical or Traditional Use Cooperation and Coordination Act","url":"https://api.congress.gov/v3/bill/118/hr/8262?format=json","number":"8262","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}} +{"type":"node","id":"7282","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-01-10","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Creative Workforce Investment Act","url":"https://api.congress.gov/v3/bill/118/hr/6935?format=json","number":"6935","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-10","latestAction_actionTime":""}} +{"type":"node","id":"7283","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-12-05","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Technical Corrections to the Northwestern New Mexico Rural Water Projects Act, Taos Pueblo Indian Water Rights Settlement Act, and Aamodt Litigation Settlement Act","url":"https://api.congress.gov/v3/bill/118/hr/6599?format=json","number":"6599","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7284","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2023-10-19","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"America’s College Promise Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5998?format=json","number":"5998","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7285","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-10-12","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Pecos Watershed Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5943?format=json","number":"5943","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7286","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To establish the Commission to Study the Potential Creation of a National Museum of Italian American History and Culture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1102?format=json","number":"1102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7287","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Affirming the alliance between the United States and the Republic of Korea.","url":"https://api.congress.gov/v3/bill/119/hres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7288","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Import Security and Fairness Act","url":"https://api.congress.gov/v3/bill/119/hr/322?format=json","number":"322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7289","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","introducedDate":"2024-11-29","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Securing our Northern Border Act","url":"https://api.congress.gov/v3/bill/118/hr/10265?format=json","number":"10265","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-29","latestAction_actionTime":""}} +{"type":"node","id":"7290","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-10-11","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Commission To Study the Potential of a National Museum of Italian American History and Culture Act","url":"https://api.congress.gov/v3/bill/118/hr/9987?format=json","number":"9987","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}} +{"type":"node","id":"7291","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","introducedDate":"2024-10-08","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To add the Republic of Korea to the E3 nonimmigrant visa program.","url":"https://api.congress.gov/v3/bill/118/hr/9952?format=json","number":"9952","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-08","latestAction_actionTime":""}} +{"type":"node","id":"7292","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Celebrating the principles of democracy, religious pluralism, human rights, and the rule of law shared by both the United States and India, the strong people-to-people ties between the United States and India, and the success of the Indian diaspora in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1394?format=json","number":"1394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7293","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2022-11-16","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To authorize the extension of nondiscriminatory treatment (normal trade relations treatment) to the products of Kazakhstan, Uzbekistan, and Tajikistan.","url":"https://api.congress.gov/v3/bill/117/hr/9322?format=json","number":"9322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-16","latestAction_actionTime":""}} +{"type":"node","id":"7294","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2022-04-27","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"State Registries for Advance Directives Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7608?format=json","number":"7608","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-04-28","latestAction_actionTime":""}} +{"type":"node","id":"7295","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-04-01","latestAction_text":"Referred to the House Committee on Oversight and Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 55 Broadway in Greenlawn, New York, as the \"Samuel Ballton Post Office\".","url":"https://api.congress.gov/v3/bill/117/hr/7371?format=json","number":"7371","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-04-01","latestAction_actionTime":""}} +{"type":"node","id":"7296","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2021-11-12","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Improving Protections for Midshipmen Act","url":"https://api.congress.gov/v3/bill/117/hr/5964?format=json","number":"5964","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-15","latestAction_actionTime":""}} +{"type":"node","id":"7297","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2021-10-28","latestAction_text":"Referred to the House Committee on Oversight and Reform.","type":"HRES","title":"Supporting the designation of October 27, 2021, as \"National Civics Day\".","url":"https://api.congress.gov/v3/bill/117/hres/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-10-28","latestAction_actionTime":""}} +{"type":"node","id":"7298","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-07-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"ABLE Employment Flexibility Act","url":"https://api.congress.gov/v3/bill/117/hr/4672?format=json","number":"4672","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-22","latestAction_actionTime":""}} +{"type":"node","id":"7299","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-07-20","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Everyday Philanthropist Act","url":"https://api.congress.gov/v3/bill/117/hr/4585?format=json","number":"4585","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-20","latestAction_actionTime":""}} +{"type":"node","id":"7300","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-06-30","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"WISH Act","url":"https://api.congress.gov/v3/bill/117/hr/4289?format=json","number":"4289","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-06-30","latestAction_actionTime":""}} +{"type":"node","id":"7301","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-09-27","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","type":"HR","title":"REDUCE Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5389?format=json","number":"5389","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-09-28","latestAction_actionTime":""}} +{"type":"node","id":"7302","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"International Affairs","introducedDate":"2021-09-20","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","type":"HRES","title":"Commemorating the anniversary of the invasion of Poland and recognizing the importance of the United States alliance with the Republic of Poland.","url":"https://api.congress.gov/v3/bill/117/hres/664?format=json","number":"664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-10-12","latestAction_actionTime":""}} +{"type":"node","id":"7303","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-09-03","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Incentivizing Solar Deployment Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5175?format=json","number":"5175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7304","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-08-13","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Territory Economic Development Tax Credit Act","url":"https://api.congress.gov/v3/bill/117/hr/5032?format=json","number":"5032","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-08-13","latestAction_actionTime":""}} +{"type":"node","id":"7305","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Environmental Protection","introducedDate":"2021-06-22","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Septic Upgrade Grant Act","url":"https://api.congress.gov/v3/bill/117/hr/4069?format=json","number":"4069","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-06-23","latestAction_actionTime":""}} +{"type":"node","id":"7306","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/13?format=json","number":"13","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7307","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/11?format=json","number":"11","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7308","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/19?format=json","number":"19","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7309","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/17?format=json","number":"17","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7310","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/12?format=json","number":"12","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7311","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/15?format=json","number":"15","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7312","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/16?format=json","number":"16","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7313","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/18?format=json","number":"18","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}} +{"type":"node","id":"7314","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Recognizing a half century of the independence of the Republic of Cabo Verde and celebrating the contributions of Cabo Verdean-Americans to democracy in Cabo Verde and the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1396?format=json","number":"1396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7315","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","introducedDate":"2023-01-03","policyArea_name":"NONE","latestAction_text":"Introduced in House","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/118/hr/19?format=json","number":"19","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-06","latestAction_actionTime":""}} +{"type":"node","id":"7316","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","introducedDate":"2023-01-03","policyArea_name":"NONE","latestAction_text":"Introduced in House","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/118/hr/18?format=json","number":"18","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-06","latestAction_actionTime":""}} +{"type":"node","id":"7317","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","introducedDate":"2023-01-03","policyArea_name":"NONE","latestAction_text":"Introduced in House","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/118/hr/13?format=json","number":"13","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-06","latestAction_actionTime":""}} +{"type":"node","id":"7318","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-11-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a certain Member to a certain standing committee of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1471?format=json","number":"1471","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-15","latestAction_actionTime":"13:23:17"}} +{"type":"node","id":"7319","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing certain Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1347?format=json","number":"1347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":"12:16:07"}} +{"type":"node","id":"7320","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-08-02","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Student Loan Literacy Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8643?format=json","number":"8643","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-08-02","latestAction_actionTime":""}} +{"type":"node","id":"7321","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-06-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1173?format=json","number":"1173","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-06-14","latestAction_actionTime":"12:05:44"}} +{"type":"node","id":"7322","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-03-29","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Prison to Proprietorship for Formerly Incarcerated Act","url":"https://api.congress.gov/v3/bill/117/hr/7273?format=json","number":"7273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-03-29","latestAction_actionTime":""}} +{"type":"node","id":"7323","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2022-03-21","latestAction_text":"Became Public Law No: 117-301.","type":"HR","title":"Human Trafficking Prevention Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7181?format=json","number":"7181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-27","latestAction_actionTime":""}} +{"type":"node","id":"7324","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-02-15","latestAction_text":"Received in the Senate.","type":"HR","title":"Keep America’s Refuges Operational Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/6734?format=json","number":"6734","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-20","latestAction_actionTime":""}} +{"type":"node","id":"7325","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-02-02","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a certain Member to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/902?format=json","number":"902","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-02-02","latestAction_actionTime":"14:27:16"}} +{"type":"node","id":"7326","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide for the improvement of the Department of Veterans Affairs loan guarantee for purchase of residential cooperative housing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1803?format=json","number":"1803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"7327","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Supporting the goals and ideals of International Mother Language Day in bringing attention to the importance of preserving linguistic and cultural heritage through education.","url":"https://api.congress.gov/v3/bill/119/hres/149?format=json","number":"149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7328","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th anniversary of the liberation of the Auschwitz extermination camp in Nazi-occupied Poland and International Holocaust Remembrance Day.","url":"https://api.congress.gov/v3/bill/119/hres/87?format=json","number":"87","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7329","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Lunar New Year Day Act","url":"https://api.congress.gov/v3/bill/119/hr/794?format=json","number":"794","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7330","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Recognizing the cultural and historical significance of Lunar New Year in 2025.","url":"https://api.congress.gov/v3/bill/119/hres/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7331","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-24","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Affirming the role of the United States in improving access to quality, inclusive public education and improving learning outcomes for children and adolescents, particularly for girls, around the world.","url":"https://api.congress.gov/v3/bill/119/hres/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7332","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States extending the right to vote to citizens sixteen years of age or older.","url":"https://api.congress.gov/v3/bill/119/hjres/16?format=json","number":"16","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7333","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-11-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Honoring Family-Friendly Workplaces Act","url":"https://api.congress.gov/v3/bill/118/hr/10253?format=json","number":"10253","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}} +{"type":"node","id":"7334","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Good Samaritan Menstrual Products Act","url":"https://api.congress.gov/v3/bill/118/hr/10230?format=json","number":"10230","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"7335","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"To amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Kosher and Halal Foods, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9980?format=json","number":"9980","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-04","latestAction_actionTime":""}} +{"type":"node","id":"7336","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the BAPS Hindu-American community and the 50th Anniversary of its Mandir in Flushing, New York.","url":"https://api.congress.gov/v3/bill/118/hres/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"7337","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Destination Reception Assistance Act","url":"https://api.congress.gov/v3/bill/118/hr/9217?format=json","number":"9217","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7338","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-05-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the impact the stigmatization of menstruation has on the lives of women, girls, and people who menstruate, and expressing support for the designation of the month of May as \"National Menstrual Health Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1248?format=json","number":"1248","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"7339","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-14","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Aaron Salter, Jr., Responsible Body Armor Possession Act","url":"https://api.congress.gov/v3/bill/118/hr/8388?format=json","number":"8388","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-14","latestAction_actionTime":""}} +{"type":"node","id":"7340","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-02-07","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the cultural and historical significance of Lunar New Year in 2024.","url":"https://api.congress.gov/v3/bill/118/hres/1002?format=json","number":"1002","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7341","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Interagency Committee on Women’s Business Enterprise Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6058?format=json","number":"6058","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7342","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2023-10-13","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Robin Danielson Menstrual Product and Intimate Care Product Safety Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5957?format=json","number":"5957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}} +{"type":"node","id":"7343","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-29","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Youth, Peace, and Security Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5851?format=json","number":"5851","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}} +{"type":"node","id":"7344","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-18","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Global WASH in Healthcare Facilities Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5545?format=json","number":"5545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-18","latestAction_actionTime":""}} +{"type":"node","id":"7345","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-01","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing the sense of the House of Representatives that the United States Postal Service should issue a commemorative postage stamp honoring Lewis Howard Latimer, in recognition of his distinctive life, scientific achievements, and his civic contributions to technological advancement, to commemorate the 175th year anniversary of his birth and that the Citizens' Stamp Advisory Committee should recommend to the Postmaster General that such a stamp be issued.","url":"https://api.congress.gov/v3/bill/118/hres/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-01","latestAction_actionTime":""}} +{"type":"node","id":"7346","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Energy Conservation and Production Act to reauthorize the Weatherization Assistance Program, direct the Secretary of Energy to establish a weatherization readiness program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1355?format=json","number":"1355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7348","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committees on Energy and Commerce, and Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Offshore Energy Modernization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10508?format=json","number":"10508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"7349","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Assistance, Quality, and Affordability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10440?format=json","number":"10440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}} +{"type":"node","id":"7350","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"MENTOR Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10374?format=json","number":"10374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7351","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-09-27","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BUPE for Recovery Act","url":"https://api.congress.gov/v3/bill/118/hr/9886?format=json","number":"9886","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}} +{"type":"node","id":"7352","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SAFE Bet Act","url":"https://api.congress.gov/v3/bill/118/hr/9590?format=json","number":"9590","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"7353","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-30","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Climate Pollution Standard and Community Investment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9230?format=json","number":"9230","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7354","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Indoor Air Quality and Healthy Schools Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9131?format=json","number":"9131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7355","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"State Industrial Competitiveness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8769?format=json","number":"8769","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}} +{"type":"node","id":"7356","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Weatherization Enhancement and Readiness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8721?format=json","number":"8721","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}} +{"type":"node","id":"7357","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Critical Material Transparency and Reporting in Advanced Clean Energy Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8187?format=json","number":"8187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-03","latestAction_actionTime":""}} +{"type":"node","id":"7358","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-04-10","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Cultural Resource Challenge Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7936?format=json","number":"7936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"7359","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of April 5, 2024, as \"Barth Syndrome Awareness Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1025?format=json","number":"1025","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}} +{"type":"node","id":"7360","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-02-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Disability Community Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/7267?format=json","number":"7267","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-09","latestAction_actionTime":""}} +{"type":"node","id":"7361","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-01-18","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Carbon Dioxide Removal Leadership Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7054?format=json","number":"7054","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-19","latestAction_actionTime":""}} +{"type":"node","id":"7362","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Stopping Grinch Bots Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6837?format=json","number":"6837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"7363","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-09-14","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Carbon Dioxide Removal Research and Development Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5457?format=json","number":"5457","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}} +{"type":"node","id":"7364","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2023-07-26","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Medicare Mental Health Inpatient Equity Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4946?format=json","number":"4946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7365","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-25","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/118/hr/4893?format=json","number":"4893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7366","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Administrator of General Services to ensure that the design of public buildings in the United States adheres to the guiding principles for Federal architecture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1584?format=json","number":"1584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"7367","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Homeland Security Act of 2002 to authorize a program to assess the threat, vulnerability, and consequences of terrorism or other security threats, as appropriate, to certain events, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1508?format=json","number":"1508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7368","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the excise taxes on wagering.","url":"https://api.congress.gov/v3/bill/119/hr/1440?format=json","number":"1440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7369","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Sloan Canyon Conservation and Lateral Pipeline Act","url":"https://api.congress.gov/v3/bill/119/hr/972?format=json","number":"972","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7370","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Nuclear Waste Informed Consent Act","url":"https://api.congress.gov/v3/bill/119/hr/466?format=json","number":"466","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"7371","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To designate a peak in the State of Nevada as Maude Frazier Mountain, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/325?format=json","number":"325","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7372","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-11-01","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning President Erdogan and his regime for issuing destabilizing statements following the attacks on the State of Israel on October 7, 2023, endangering the North Atlantic Treaty Organization's mission, threatening the territorial integrity of neighboring countries, supporting terrorism, and fostering antisemitic behavior around the globe.","url":"https://api.congress.gov/v3/bill/118/hres/1562?format=json","number":"1562","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}} +{"type":"node","id":"7373","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-12","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Thermal Runaway Reduction Act","url":"https://api.congress.gov/v3/bill/118/hr/9588?format=json","number":"9588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-13","latestAction_actionTime":""}} +{"type":"node","id":"7374","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-07-11","latestAction_text":"Placed on the Union Calendar, Calendar No. 665.","type":"HR","title":"Extreme Weather and Heat Response Modernization Act","url":"https://api.congress.gov/v3/bill/118/hr/9024?format=json","number":"9024","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}} +{"type":"node","id":"7375","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-06-28","policyArea_name":"","latestAction_text":"On agreeing to the Titus amendment (A015) Failed by recorded vote: 129 - 284 (Roll no. 329).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1081?format=json","number":"","amendmentNumber":"1081","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":"10:26:17"}} +{"type":"node","id":"7376","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Overseas Americans Financial Access Act","url":"https://api.congress.gov/v3/bill/118/hr/8873?format=json","number":"8873","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"7377","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Congress","latestAction_text":"Motion to Discharge Committee filed by Ms. Titus. Petition No: 118-14. (Discharge petition text with signatures.)","type":"HRES","title":"Providing for consideration of the bill (H.R. 396) to regulate bump stocks in the same manner as machineguns.","url":"https://api.congress.gov/v3/bill/118/hres/1302?format=json","number":"1302","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}} +{"type":"node","id":"7378","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-11","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Humane Transport of Farmed Animals Act","url":"https://api.congress.gov/v3/bill/118/hr/8699?format=json","number":"8699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}} +{"type":"node","id":"7379","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-10","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","type":"HR","title":"Coordinator for Afghan Relocation Efforts Authorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8368?format=json","number":"8368","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"7380","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-26","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Azerbaijan Sanctions Review Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8141?format=json","number":"8141","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"7381","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-03-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Stop Tax Penalties on American Hostages Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7791?format=json","number":"7791","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}} +{"type":"node","id":"7382","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"AVERT Future Violence Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7396?format=json","number":"7396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7383","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"VISITOR Act","url":"https://api.congress.gov/v3/bill/118/hr/7263?format=json","number":"7263","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7384","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2024-01-31","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Water Conservation Economic Adjustment Act","url":"https://api.congress.gov/v3/bill/118/hr/7178?format=json","number":"7178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-01","latestAction_actionTime":""}} +{"type":"node","id":"7385","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Honoring the victims of the mass shooting at the University of Nevada, Las Vegas on December 6, 2023.","url":"https://api.congress.gov/v3/bill/118/hres/928?format=json","number":"928","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}} +{"type":"node","id":"7386","labels":["Legislation"],"properties":{"sponsored_by":"M001240","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-23","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"To designate the Washington Dulles International Airport in Virginia as the \"Donald J. Trump International Airport\".","url":"https://api.congress.gov/v3/bill/119/hr/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-01","latestAction_actionTime":""}} +{"type":"node","id":"7387","labels":["Legislation"],"properties":{"sponsored_by":"M001236","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To amend the Intermodal Surface Transportation Efficiency Act of 1991 to designate a portion of United States Route 74 in North Carolina as a future interstate, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1333?format=json","number":"1333","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7388","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to provide that an alien who has been convicted of a crime is ineligible for asylum, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1312?format=json","number":"1312","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7389","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"No Contracts with Foreign Adversaries Act","url":"https://api.congress.gov/v3/bill/119/hr/938?format=json","number":"938","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7390","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-24","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Teleabortion Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7391","labels":["Legislation"],"properties":{"sponsored_by":"H001101","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/hr/1695?format=json","number":"1695","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7392","labels":["Legislation"],"properties":{"sponsored_by":"H001101","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"AMERICANS Act","url":"https://api.congress.gov/v3/bill/119/hr/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"7393","labels":["Legislation"],"properties":{"sponsored_by":"F000482","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/119/hr/1830?format=json","number":"1830","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7394","labels":["Legislation"],"properties":{"sponsored_by":"F000482","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Congratulating the North Dakota State University Bison football team for winning the 2024 National Collegiate Athletic Association Division I Football Championship Subdivision title.","url":"https://api.congress.gov/v3/bill/119/hres/32?format=json","number":"32","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7395","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/hr/1677?format=json","number":"1677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7396","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Securities Exchange Act of 1934 to expand access to capital for rural-area small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1190?format=json","number":"1190","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"7397","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/931?format=json","number":"931","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7398","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Crow Tribe Water Rights Settlement Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7399","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Crow Revenue Act","url":"https://api.congress.gov/v3/bill/119/hr/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7400","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Insurance Office Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/643?format=json","number":"643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7401","labels":["Legislation"],"properties":{"sponsored_by":"C001136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide that certain payments to foreign related parties subject to sufficient foreign tax are not treated as base erosion payments.","url":"https://api.congress.gov/v3/bill/119/hr/1911?format=json","number":"1911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7402","labels":["Legislation"],"properties":{"sponsored_by":"C001136","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a refundable credit for qualified child care startup expenses.","url":"https://api.congress.gov/v3/bill/119/hr/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7403","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Secretary of Education to carry out a grant program for skills-for-success courses for all first-year students enrolled at certain institutions of higher education.","url":"https://api.congress.gov/v3/bill/119/hr/1409?format=json","number":"1409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7404","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HRES","title":"Expressing support for the designation of February 4, 2025, as \"Transit Equity Day\".","url":"https://api.congress.gov/v3/bill/119/hres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7405","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Cool Roof Rebate Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9894?format=json","number":"9894","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"7406","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"College Thriving Act","url":"https://api.congress.gov/v3/bill/118/hr/9824?format=json","number":"9824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7407","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-08-23","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Expanding AI Voices Act","url":"https://api.congress.gov/v3/bill/118/hr/9403?format=json","number":"9403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}} +{"type":"node","id":"7408","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-08-02","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Science, Space, and Technology, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"National Gun Violence Research Act","url":"https://api.congress.gov/v3/bill/118/hr/9253?format=json","number":"9253","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"7409","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-25","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"IMPACT Act 2.0","url":"https://api.congress.gov/v3/bill/118/hr/9136?format=json","number":"9136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-26","latestAction_actionTime":""}} +{"type":"node","id":"7410","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Supporting the designation of June, as \"Brain and Spine Metastasis Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1270?format=json","number":"1270","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}} +{"type":"node","id":"7411","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-03-21","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending and congratulating the 100-year anniversary of Duke University, in Durham, North Carolina.","url":"https://api.congress.gov/v3/bill/118/hres/1100?format=json","number":"1100","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}} +{"type":"node","id":"7412","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-02-05","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HRES","title":"Expressing support for the designation of February 4, 2024, as \"Transit Equity Day\".","url":"https://api.congress.gov/v3/bill/118/hres/998?format=json","number":"998","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7413","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-05-17","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending and congratulating North Carolina Central University's football team for winning the 2022 Historically Black Colleges and Universities National Football Championship in the 2022 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/118/hres/417?format=json","number":"417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-17","latestAction_actionTime":""}} +{"type":"node","id":"7414","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"To direct the Secretary of Homeland Security to carry out a pilot program for the prevention and mitigation of acts of terrorism using motor vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1831?format=json","number":"1831","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7415","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To amend the Federal Fire Prevention and Control Act of 1974 to make available under the assistance to firefighters grant program the establishment of cancer prevention programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1610?format=json","number":"1610","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7416","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to require silent alarms in elementary schools and secondary schools, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","number":"1524","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7417","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To create an interdivisional taskforce at the Securities and Exchange Commission for senior investors.","url":"https://api.congress.gov/v3/bill/119/hr/1469?format=json","number":"1469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7418","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 38, United States Code, to improve the processes by which a veteran may appeal decisions affecting the provision of benefits under the laws administered by the Secretary of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1471?format=json","number":"1471","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7419","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Omnibus Crime Control and Safe Streets Act of 1968 to provide funding for school resource officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1470?format=json","number":"1470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7420","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to establish additional Federal standards that require electric and gas utilities to transmit to each of its consumers information regarding the consumption of electric energy or gas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1412?format=json","number":"1412","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7421","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to require that domiciliary facilities of the Department of Veterans Affairs and State homes that provide housing to veterans have resident advocates.","url":"https://api.congress.gov/v3/bill/119/hr/1413?format=json","number":"1413","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7422","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to restore the amount of the orphan drug tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1414?format=json","number":"1414","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7423","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the provision of information and counseling regarding Federal food assistance programs as part of the Transition Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1411?format=json","number":"1411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7424","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Packers and Stockyards Act, 1921, to establish the Office of the Special Investigator for Competition Matters, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1380?format=json","number":"1380","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7425","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1121?format=json","number":"1121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7426","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Transportation and Infrastructure, and Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling on Federal law enforcement, led by the Federal Bureau of Investigation, the Department of Homeland Security, and the Federal Aviation Administration, to provide an immediate briefing to the public regarding the recent drone activity in New Jersey and New York.","url":"https://api.congress.gov/v3/bill/119/hres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7427","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"LITTLE Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1067?format=json","number":"1067","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7428","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Holocaust Education and Antisemitism Lessons Act","url":"https://api.congress.gov/v3/bill/119/hr/768?format=json","number":"768","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7429","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-28","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"All Aboard Act","url":"https://api.congress.gov/v3/bill/119/hr/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}} +{"type":"node","id":"7430","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Accountability for Veterans Act","url":"https://api.congress.gov/v3/bill/119/hr/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7431","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Reaffirming the freedom to decide and expressing continued support for medication abortion access.","url":"https://api.congress.gov/v3/bill/119/hres/65?format=json","number":"65","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7432","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SAFE Grilling Act","url":"https://api.congress.gov/v3/bill/119/hr/614?format=json","number":"614","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"7433","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a refundable tax credit for individuals for amounts paid for gas and electricity for primary residences.","url":"https://api.congress.gov/v3/bill/119/hr/615?format=json","number":"615","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}} +{"type":"node","id":"7434","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To designate the America's National Churchill Museum National Historic Landmark, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1945?format=json","number":"1945","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7435","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require aliens seeking admission to the United States as nonimmigrants to pay a bond or cash payment and to impose penalties on such aliens who fail to timely depart the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1837?format=json","number":"1837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7436","labels":["Legislation"],"properties":{"sponsored_by":"M001234","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"HR","title":"Rural Small Business Resilience Act","url":"https://api.congress.gov/v3/bill/119/hr/804?format=json","number":"804","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7437","labels":["Legislation"],"properties":{"sponsored_by":"K000404","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Wagner-Peyser Act to include the Commonwealth of the Northern Mariana Islands and American Samoa, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1797?format=json","number":"1797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"7438","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to submit to Congress reports on the feasibility of installing traffic alert and collision avoidance systems and automatic dependent surveillance-broadcast IN capabilities in all military rotary-wing aircraft, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1898?format=json","number":"1898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7439","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide clarification regarding the inclusion of medically necessary automobile adaptations in Department of Veterans Affairs definition of \"medical services\".","url":"https://api.congress.gov/v3/bill/119/hr/1364?format=json","number":"1364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7440","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Clear Communication for Veterans Claims Act","url":"https://api.congress.gov/v3/bill/119/hr/1039?format=json","number":"1039","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7441","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To amend the Small Business Act and the Small Business Investment Act of 1958 to increase the maximum loan amount for certain loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1893?format=json","number":"1893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7442","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Celebrating Hindu Americans, condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7443","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Prohibition of Medicaid Funding for Conversion Therapy Act","url":"https://api.congress.gov/v3/bill/118/hr/10172?format=json","number":"10172","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}} +{"type":"node","id":"7444","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-09-10","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing suicide as a serious public health problem and expressing support for the designation of September as \"National Suicide Prevention Month\" as well as September 10, 2024, as \"World Suicide Prevention Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1436?format=json","number":"1436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"7445","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 24837 Goddard Road in Taylor, Michigan, as the \"Technical Sergeant E. Huston James Memorial Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/9175?format=json","number":"9175","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7446","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"LIONs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9176?format=json","number":"9176","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7447","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-22","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Mental Health Care Provider Retention Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9091?format=json","number":"9091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-28","latestAction_actionTime":""}} +{"type":"node","id":"7448","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Keep STEM Graduates in America Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9023?format=json","number":"9023","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}} +{"type":"node","id":"7449","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Improving Access to Institutional Mental Health Care Act","url":"https://api.congress.gov/v3/bill/118/hr/8767?format=json","number":"8767","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}} +{"type":"node","id":"7450","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-05","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Improved Screening for Veterans and Passengers with Disabilities Act","url":"https://api.congress.gov/v3/bill/118/hr/8645?format=json","number":"8645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-29","latestAction_actionTime":""}} +{"type":"node","id":"7451","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-05-17","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Prioritizing mental health to the same degree as physical health to address the epidemics of suicide and drug overdose in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1242?format=json","number":"1242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"7453","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing the remarkable achievements and patriotic service of late Michigan native Captain Claude A. Rowe, Jr., the only known member of the famed Tuskegee Airmen authorized to fly for two Allied countries during World War II.","url":"https://api.congress.gov/v3/bill/118/hres/1018?format=json","number":"1018","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7454","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-02-05","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Loans in our Neighborhoods Act","url":"https://api.congress.gov/v3/bill/118/hr/7242?format=json","number":"7242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7455","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Equitable Contracting and Small Business Advancement Act","url":"https://api.congress.gov/v3/bill/118/hr/6845?format=json","number":"6845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"7456","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Bike the Border Act","url":"https://api.congress.gov/v3/bill/118/hr/6649?format=json","number":"6649","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7457","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Community Development Investment Tax Credit Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6650?format=json","number":"6650","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7458","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-12-06","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Keeping Housing Affordable in Forgotten Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/6648?format=json","number":"6648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7459","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-12-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Halt Homelessness Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6647?format=json","number":"6647","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7460","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-12-04","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"To establish the Digital Literacy and Equity Commission, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6582?format=json","number":"6582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-08","latestAction_actionTime":""}} +{"type":"node","id":"7461","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing support for the designation of March 6, 2025, as \"Great Lakes Day\".","url":"https://api.congress.gov/v3/bill/119/hres/194?format=json","number":"194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7462","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/hr/1796?format=json","number":"1796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}} +{"type":"node","id":"7463","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to make certain improvements to the laws administered by the Secretary of Veterans Affairs relating to educational assistance, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1527?format=json","number":"1527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7464","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Reignite Hope Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7465","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"AGOA Extension and Enhancement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10366?format=json","number":"10366","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7466","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"App Store Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/10364?format=json","number":"10364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7467","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"PEPFAR Extension and Reform Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10365?format=json","number":"10365","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7468","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-09-09","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Congratulating the Olympians and Paralympians of Michigan who competed in the 2024 Olympics and Paralympics in Paris, France.","url":"https://api.congress.gov/v3/bill/118/hres/1429?format=json","number":"1429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-09","latestAction_actionTime":""}} +{"type":"node","id":"7469","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Preserving Veterans’ Legacy Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8893?format=json","number":"8893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7470","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-27","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Recognizing the actions of the Rapid Support Forces and allied militias in the Darfur region of Sudan against non-Arab ethnic communities as acts of genocide.","url":"https://api.congress.gov/v3/bill/118/hres/1328?format=json","number":"1328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":"13:35:49"}} +{"type":"node","id":"7471","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-06-14","policyArea_name":"","latestAction_text":"On agreeing to the James amendment (A038) Agreed to by recorded vote: 272 - 144 (Roll no. 277).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/996?format=json","number":"","amendmentNumber":"996","latestAction":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":"10:54:05"}} +{"type":"node","id":"7472","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-07","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Reforming Education for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/8661?format=json","number":"8661","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"7473","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the James amendment (A009) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/936?format=json","number":"","amendmentNumber":"936","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:38:39"}} +{"type":"node","id":"7474","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-03","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"AFTER SCHOOL Act","url":"https://api.congress.gov/v3/bill/118/hr/8593?format=json","number":"8593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}} +{"type":"node","id":"7475","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-24","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Protecting America’s Working Dogs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8571?format=json","number":"8571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7476","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-08","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Bipartisan BRIDGE to DRC Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8310?format=json","number":"8310","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"7477","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-01","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Multi-Pollutant Emissions Standards for Model Years 2027 and Later Light-Duty and Medium-Duty Vehicles\".","url":"https://api.congress.gov/v3/bill/118/hjres/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"7478","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-04-02","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"TELEMH Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7858?format=json","number":"7858","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"7479","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"On agreeing to the James amendment (A004) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/871?format=json","number":"","amendmentNumber":"871","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":"15:58:06"}} +{"type":"node","id":"7480","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-06","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 36 - 13.","type":"HR","title":"U.S.-South Africa Bilateral Relations Review Act","url":"https://api.congress.gov/v3/bill/118/hr/7256?format=json","number":"7256","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}} +{"type":"node","id":"7481","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"CONTRACTS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9832?format=json","number":"9832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7482","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Continued Presence Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/9261?format=json","number":"9261","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"7483","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Bankruptcy Administration Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9154?format=json","number":"9154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7484","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Frederick Douglass Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/7378?format=json","number":"7378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7485","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-06","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 753.","type":"HR","title":"Department of Homeland Security Policy Issuance Review Act","url":"https://api.congress.gov/v3/bill/118/hr/6231?format=json","number":"6231","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"7486","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Kenneth P. Thompson Begin Again Act","url":"https://api.congress.gov/v3/bill/118/hr/4958?format=json","number":"4958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"7487","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-22","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"To make technical amendments to update statutory references to provisions reclassified to title 34, United States Code, and to correct related technical errors.","url":"https://api.congress.gov/v3/bill/118/hr/3578?format=json","number":"3578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}} +{"type":"node","id":"7488","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-04-26","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Raise the Age Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2870?format=json","number":"2870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-26","latestAction_actionTime":""}} +{"type":"node","id":"7489","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to amend certain regulations to clarify that livestock auction owners may have an interest in small meatpacking businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1648?format=json","number":"1648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7490","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require Federal agencies with an SBIR or STTR program to enhance their outreach to rural communities with respect to such programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1590?format=json","number":"1590","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7491","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-13","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Expressing support for the designation of February 9, 2025, as the first ever \"Gulf of America Day\" and celebrating the importance of changing the Gulf of Mexico to the Gulf of America.","url":"https://api.congress.gov/v3/bill/119/hres/129?format=json","number":"129","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7492","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Small Business Technological Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/915?format=json","number":"915","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7493","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","introducedDate":"2024-12-03","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Small Business Technological Advancement Act","url":"https://api.congress.gov/v3/bill/118/hr/10269?format=json","number":"10269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"7494","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Rural Innovation and Small Business Support Act","url":"https://api.congress.gov/v3/bill/118/hr/9797?format=json","number":"9797","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7495","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-15","latestAction_text":"Reported by the Committee on Small Business. H. Rept. 118-852, Part I.","type":"HR","title":"Regulatory Agenda Clarity Act","url":"https://api.congress.gov/v3/bill/118/hr/9030?format=json","number":"9030","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"7496","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-11","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"DEI DOA Act","url":"https://api.congress.gov/v3/bill/118/hr/7937?format=json","number":"7937","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}} +{"type":"node","id":"7497","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-19","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HRES","title":"Expressing support for the designation of March 19, 2024, as \"National Agriculture Day\" and celebrating the importance of agriculture as one of the most impactful industries in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-19","latestAction_actionTime":""}} +{"type":"node","id":"7498","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-03-08","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the 175th anniversary of the organization of Laclede County, Missouri, and the city of Lebanon, Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/1067?format=json","number":"1067","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}} +{"type":"node","id":"7499","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-06","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"American Land and Property Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7246?format=json","number":"7246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7500","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-01-30","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"FAIR Labels Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7130?format=json","number":"7130","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-29","latestAction_actionTime":""}} +{"type":"node","id":"7501","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-01-11","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the Kansas City Chiefs on the 54th anniversary of their first Super Bowl victory.","url":"https://api.congress.gov/v3/bill/118/hres/959?format=json","number":"959","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}} +{"type":"node","id":"7502","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-01-11","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the 202d anniversary of the adoption of the Great Seal of the State of Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/958?format=json","number":"958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}} +{"type":"node","id":"7503","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing December 17, 2023, as the 30th anniversary of when the first B-2 stealth bomber touched down at Whiteman Air Force Base in Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/924?format=json","number":"924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}} +{"type":"node","id":"7504","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing the 83rd anniversary of the groundbreaking of Fort Leonard Wood, Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/919?format=json","number":"919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}} +{"type":"node","id":"7505","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-30","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Holding Agencies Accountable Act","url":"https://api.congress.gov/v3/bill/118/hr/6514?format=json","number":"6514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}} +{"type":"node","id":"7506","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-10-26","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Combatting the Persecution of Religious Groups in China Act","url":"https://api.congress.gov/v3/bill/118/hr/6069?format=json","number":"6069","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-26","latestAction_actionTime":""}} +{"type":"node","id":"7507","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","introducedDate":"2023-08-25","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"HR","title":"Small Business Administration Rural Performance Report Act","url":"https://api.congress.gov/v3/bill/118/hr/5265?format=json","number":"5265","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-29","latestAction_actionTime":""}} +{"type":"node","id":"7508","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-21","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"2023 WHIP+ Reauthorization Act","url":"https://api.congress.gov/v3/bill/118/hr/5621?format=json","number":"5621","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}} +{"type":"node","id":"7509","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1604?format=json","number":"1604","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7510","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit the use of Federal funds to implement, administer, or enforce a final rule of the Food and Drug Administration relating to \"Medical Devices; Laboratory Developed Tests\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1463?format=json","number":"1463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7511","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Food, Conservation, and Energy Act of 2008 to clarify propane storage as an eligible use for funds provided under the storage facility loan program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1302?format=json","number":"1302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7512","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to require greater transparency for Federal regulatory decisions that impact small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1163?format=json","number":"1163","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}} +{"type":"node","id":"7513","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Farm Credit Administration Independent Authority Act","url":"https://api.congress.gov/v3/bill/119/hr/1063?format=json","number":"1063","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7514","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Protecting Infrastructure Investments for Rural America Act","url":"https://api.congress.gov/v3/bill/119/hr/502?format=json","number":"502","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}} +{"type":"node","id":"7515","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To modify procurement requirements relating to rare earth elements and strategic and critical materials by contractors of the Department of Defense, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9917?format=json","number":"9917","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"7516","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending the Minnesota State University, Mankato women's and men's basketball teams for winning the 2024 NCAA Division II Basketball National Championships.","url":"https://api.congress.gov/v3/bill/118/hres/1402?format=json","number":"1402","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"7517","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","introducedDate":"2024-06-21","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To designate the bald eagle as the national bird.","url":"https://api.congress.gov/v3/bill/118/hr/8800?format=json","number":"8800","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-21","latestAction_actionTime":""}} +{"type":"node","id":"7518","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Food and Drug Administration relating to \"Medical Devices; Laboratory Developed Tests\".","url":"https://api.congress.gov/v3/bill/118/hjres/145?format=json","number":"145","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"7519","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-10","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"FARMER Act","url":"https://api.congress.gov/v3/bill/118/hr/8350?format=json","number":"8350","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7520","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-07","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Conservation Reserve Program Modernization Act","url":"https://api.congress.gov/v3/bill/118/hr/8270?format=json","number":"8270","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7521","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-19","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Applicant Medical Reimbursement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8088?format=json","number":"8088","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-19","latestAction_actionTime":""}} +{"type":"node","id":"7522","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-09","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Energy and Commerce, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"EPA Accountability to Farm Country Act","url":"https://api.congress.gov/v3/bill/118/hr/7900?format=json","number":"7900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-09","latestAction_actionTime":""}} +{"type":"node","id":"7523","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-23","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"BEST for Vets Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7434?format=json","number":"7434","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}} +{"type":"node","id":"7524","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-01","latestAction_text":"Received in the Senate.","type":"HR","title":"Prove It Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7198?format=json","number":"7198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}} +{"type":"node","id":"7525","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-01-22","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Farm and Food Cybersecurity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7062?format=json","number":"7062","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-22","latestAction_actionTime":""}} +{"type":"node","id":"7526","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-11-01","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"LAST ACRE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6142?format=json","number":"6142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-01","latestAction_actionTime":""}} +{"type":"node","id":"7527","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-03","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"USDA Express Loan Act","url":"https://api.congress.gov/v3/bill/118/hr/5877?format=json","number":"5877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-17","latestAction_actionTime":""}} +{"type":"node","id":"7528","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","introducedDate":"2023-09-26","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"MCM PRV Reauthorization Act","url":"https://api.congress.gov/v3/bill/118/hr/5708?format=json","number":"5708","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}} +{"type":"node","id":"7529","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 48 - 0.","type":"HR","title":"Taiwan Conflict Deterrence Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1716?format=json","number":"1716","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7530","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing officers of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"15:40:18"}} +{"type":"node","id":"7531","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"119","introducedDate":"2025-01-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/13?format=json","number":"13","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":"13:47:58"}} +{"type":"node","id":"7532","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-27","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of \"Macedonian American Heritage Month\" and celebrating the language, history, and culture of Macedonian Americans and their incredible contributions to the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1522?format=json","number":"1522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}} +{"type":"node","id":"7533","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Authorizing the use of the rotunda of the Capitol for a ceremony to award posthumously a Congressional Gold Medal in commemoration to the servicemembers who perished in Afghanistan on August 26, 2021, during the evacuation of citizens of the United States and Afghan allies at Hamid Karzai International Airport.","url":"https://api.congress.gov/v3/bill/118/hconres/126?format=json","number":"126","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}} +{"type":"node","id":"7534","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a Member to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/1342?format=json","number":"1342","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":"17:07:26"}} +{"type":"node","id":"7535","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of June 6, 2024, as National Naloxone Awareness Day.","url":"https://api.congress.gov/v3/bill/118/hres/1283?format=json","number":"1283","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}} +{"type":"node","id":"7536","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-06-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/1275?format=json","number":"1275","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"16:46:28"}} +{"type":"node","id":"7537","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-07","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 44 - 0.","type":"HR","title":"Reuse Excess Property Act","url":"https://api.congress.gov/v3/bill/118/hr/8276?format=json","number":"8276","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}} +{"type":"node","id":"7538","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-05","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 687.","type":"HR","title":"Information Quality Assurance Act","url":"https://api.congress.gov/v3/bill/118/hr/7219?format=json","number":"7219","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}} +{"type":"node","id":"7539","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-01-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Woman’s Right To Know Act","url":"https://api.congress.gov/v3/bill/118/hr/7044?format=json","number":"7044","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-19","latestAction_actionTime":""}} +{"type":"node","id":"7540","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-01-17","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Great Lakes Mapping Act","url":"https://api.congress.gov/v3/bill/118/hr/7020?format=json","number":"7020","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}} +{"type":"node","id":"7541","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Save Women’s Sports Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6728?format=json","number":"6728","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}} +{"type":"node","id":"7542","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/913?format=json","number":"913","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":"19:03:53"}} +{"type":"node","id":"7543","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/914?format=json","number":"914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":"10:56:08"}} +{"type":"node","id":"7544","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-05","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Ethics.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/912?format=json","number":"912","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}} +{"type":"node","id":"7545","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Ethics, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/812?format=json","number":"812","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7546","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-10-25","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Iran Nuclear Verification Act","url":"https://api.congress.gov/v3/bill/118/hr/6057?format=json","number":"6057","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7547","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-10-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of October 10, 2023, as \"Real Women's Day\".","url":"https://api.congress.gov/v3/bill/118/hres/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7548","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-09-05","policyArea_name":"Education","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 270.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Improving Income Driven Repayment for the William D. Ford Federal Direct Loan Program and the Federal Family Education Loan (FFEL) Program\".","url":"https://api.congress.gov/v3/bill/118/hjres/88?format=json","number":"88","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7549","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Administrator of the Centers for Medicare & Medicaid Services to clarify that fully implanted active middle ear hearing devices are prosthetics and are not subject to the hearing aid coverage exclusion under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1921?format=json","number":"1921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7550","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Secretary of Health and Human Services from implementing, enforcing, or otherwise giving effect to a final rule regarding minimum staffing for nursing facilities, and to establish an advisory panel on the nursing home workforce.","url":"https://api.congress.gov/v3/bill/119/hr/1683?format=json","number":"1683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7551","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Secretary of Health and Human Services from implementing, administering, or enforcing provisions relating to minimum staffing standards for long-term care facilities and Medicaid institutional payment transparency reporting.","url":"https://api.congress.gov/v3/bill/119/hr/1303?format=json","number":"1303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7552","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Farm Credit Act of 1971 to provide support for facilities providing healthcare, education, child care, public safety, and other vital services in rural areas.","url":"https://api.congress.gov/v3/bill/119/hr/1246?format=json","number":"1246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7553","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-10","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 77) to amend chapter 8 of title 5, United States Code, to provide for en bloc consideration in resolutions of disapproval for \"midnight rules\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/122?format=json","number":"122","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":"14:01:01"}} +{"type":"node","id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7555","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Defund Planned Parenthood Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/271?format=json","number":"271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7556","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Adopting the Rules of the House of Representatives for the One Hundred Nineteenth Congress, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/5?format=json","number":"5","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:12:02"}} +{"type":"node","id":"7557","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Received in the Senate.","type":"HCONRES","title":"Regarding consent to assemble outside the seat of government.","url":"https://api.congress.gov/v3/bill/119/hconres/1?format=json","number":"1","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}} +{"type":"node","id":"7558","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Fixing the daily hour of meeting of the First Session of the One Hundred Nineteenth Congress.","url":"https://api.congress.gov/v3/bill/119/hres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:13:30"}} +{"type":"node","id":"7559","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-11-18","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1449) to amend the Geothermal Steam Act of 1970 to increase the frequency of lease sales, to require replacement sales, and for other purposes, and providing for consideration of the bill (H.R. 9495) to amend the Internal Revenue Code of 1986 to postpone tax deadlines and reimburse paid late fees for United States nationals who are unlawfully or wrongfully detained or held hostage abroad, to terminate the tax-exempt status of terrorist supporting organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1576?format=json","number":"1576","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":"14:06:04"}} +{"type":"node","id":"7560","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8997) making appropriations for energy and water development and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8998) making appropriations for the Department of the Interior, environment, and related agencies for the fiscal year ending September 30, 2025, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1370?format=json","number":"1370","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"10:53:09"}} +{"type":"node","id":"7561","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-26","latestAction_text":"Became Public Law No: 118-253.","type":"HR","title":"To designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the \"Floyd B. Olson Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/8841?format=json","number":"8841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"7562","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-06-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"MOMS Act","url":"https://api.congress.gov/v3/bill/118/hr/8801?format=json","number":"8801","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7563","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-05-10","policyArea_name":"Health","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 21 - 18.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to \"Medicare and Medicaid Programs: Minimum Staffing Standards for Long-Term Care Facilities and Medicaid Institutional Payment Transparency Reporting\".","url":"https://api.congress.gov/v3/bill/118/hjres/139?format=json","number":"139","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"7564","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-04-29","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 615) to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes; providing for consideration of the bill (H.R. 2925) to amend the Omnibus Budget Reconciliation Act of 1993 to provide for security of tenure for use of mining claims for ancillary activities, and for other purposes; providing for consideration of the bill (H.R. 3195) to rescind Public Land Order 7917, to reinstate mineral leases and permits in the Superior National Forest, to ensure timely review of Mine Plans of Operations, and for other purposes; providing for consideration of the bill (H.R. 764) to require the Secretary of the Interior to reissue regulations removing the gray wolf from the list of endangered and threatened wildlife under the Endangered Species Act of 1973; providing for consideration of the bill (H.R. 3397) to require the Director of the Bureau of Land Management to withdraw a rule of the Bureau of Land Management relating to conservation and landscape health; providing for consideration of the bill (H.R. 6285) to ratify and approve all authorizations, permits, verifications, extensions, biological opinions, incidental take statements, and any other approvals or orders issued pursuant to Federal law necessary for the establishment and administration of the Coastal Plain oil and gas leasing program, and for other purposes; and providing for consideration of the bill (H.R. 6090) to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1173?format=json","number":"1173","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":"12:46:47"}} +{"type":"node","id":"7565","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-04-15","policyArea_name":"Taxation","latestAction_text":"Placed on the Union Calendar, Calendar No. 726.","type":"HR","title":"Stop Executive Overreach on Trade Agreements","url":"https://api.congress.gov/v3/bill/118/hr/7983?format=json","number":"7983","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7566","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-03-01","policyArea_name":"Health","latestAction_text":"Placed on the Union Calendar, Calendar No. 769.","type":"HR","title":"Protecting American Seniors’ Access to Care Act","url":"https://api.congress.gov/v3/bill/118/hr/7513?format=json","number":"7513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"7567","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Hearing Device Coverage Clarification Act","url":"https://api.congress.gov/v3/bill/118/hr/7254?format=json","number":"7254","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7568","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-02-01","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HJRES","title":"Disapproving the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Furnaces\".","url":"https://api.congress.gov/v3/bill/118/hjres/111?format=json","number":"111","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}} +{"type":"node","id":"7569","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To provide monthly payments for eligible pregnant women and parents to improve the ability of families to provide for their children and other family members, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1308?format=json","number":"1308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7570","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Fair Labor Standards Act of 1938 to exempt certain 16- and 17-year-old individuals employed in timber harvesting entities or mechanized timber harvesting entities from child labor laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1193?format=json","number":"1193","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"7571","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Northeast Fisheries Heritage Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/674?format=json","number":"674","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7572","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To impose additional duties on imports of goods into the United States.","url":"https://api.congress.gov/v3/bill/119/hr/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}} +{"type":"node","id":"7573","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-10-11","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"To designate the Maine Forest and Logging Museum, located in Bradley, Maine, as the National Museum of Forestry and Logging History.","url":"https://api.congress.gov/v3/bill/118/hr/9965?format=json","number":"9965","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-04","latestAction_actionTime":""}} +{"type":"node","id":"7574","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Postmaster General Reform Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9919?format=json","number":"9919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"7575","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To impose additional duties on imports of goods into the United States.","url":"https://api.congress.gov/v3/bill/118/hr/9827?format=json","number":"9827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7576","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Disapproving the rule submitted by the Department of Health and Human Services relating to \"Control of Communicable Diseases; Foreign Quarantine: Importation of Dogs and Cats\".","url":"https://api.congress.gov/v3/bill/118/hjres/200?format=json","number":"200","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}} +{"type":"node","id":"7577","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-05-10","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Declaring Our Energy Independence from China Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8352?format=json","number":"8352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7578","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-05-10","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Protecting American Autoworkers from China Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8351?format=json","number":"8351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7579","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-05-08","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"Loggers Economic Assistance and Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/8305?format=json","number":"8305","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7580","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Consistent Labeling for Political Ads Act","url":"https://api.congress.gov/v3/bill/118/hr/8172?format=json","number":"8172","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7581","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on Ways and Means, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Fighting Foreign Influence Act","url":"https://api.congress.gov/v3/bill/118/hr/8176?format=json","number":"8176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7582","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Crack Down on Dark Money Act","url":"https://api.congress.gov/v3/bill/118/hr/8175?format=json","number":"8175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7583","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stop Foreign Payoffs Act","url":"https://api.congress.gov/v3/bill/118/hr/8177?format=json","number":"8177","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7584","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Congressional and Executive Foreign Lobbying Ban Act","url":"https://api.congress.gov/v3/bill/118/hr/8174?format=json","number":"8174","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7585","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to prohibit former Members of Congress from engaging in lobbying contacts.","url":"https://api.congress.gov/v3/bill/118/hr/8173?format=json","number":"8173","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7586","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-15","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Timely Mail Delivery and Postal Services Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/8000?format=json","number":"8000","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}} +{"type":"node","id":"7587","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-01-16","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Block Foreign-Funded Political Ads Act","url":"https://api.congress.gov/v3/bill/118/hr/6996?format=json","number":"6996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-16","latestAction_actionTime":""}} +{"type":"node","id":"7588","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2023-09-13","policyArea_name":"Commerce","latestAction_text":"Placed on the Union Calendar, Calendar No. 180.","type":"HR","title":"To amend the Small Business Act to enhance the Office of Rural Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5425?format=json","number":"5425","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}} +{"type":"node","id":"7589","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-09-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"21st Century Workforce Partnerships Act","url":"https://api.congress.gov/v3/bill/118/hr/9621?format=json","number":"9621","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"7590","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-02","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cooper Davis and Devin Norring Act","url":"https://api.congress.gov/v3/bill/118/hr/8918?format=json","number":"8918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-02","latestAction_actionTime":""}} +{"type":"node","id":"7591","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-31","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stop Fraud in Federal Programs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8584?format=json","number":"8584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}} +{"type":"node","id":"7592","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-05-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Task Force to Stop Price Gouging Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8493?format=json","number":"8493","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}} +{"type":"node","id":"7593","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-05-21","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HRES","title":"Recognizing \"National Public Works Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1245?format=json","number":"1245","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}} +{"type":"node","id":"7594","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protect Local Law Enforcement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8429?format=json","number":"8429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"7595","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-08","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Food and Nutrition Delivery Safety Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8300?format=json","number":"8300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7596","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-05-01","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Small Business Tax Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/8201?format=json","number":"8201","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}} +{"type":"node","id":"7597","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-04-19","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Safe Stay Act","url":"https://api.congress.gov/v3/bill/118/hr/8086?format=json","number":"8086","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"7598","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-29","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Recognizing and honoring Burnsville, Minnesota, law enforcement and first responders for their heroic actions.","url":"https://api.congress.gov/v3/bill/118/hres/1038?format=json","number":"1038","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-29","latestAction_actionTime":""}} +{"type":"node","id":"7599","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Ride-Along Resolution","url":"https://api.congress.gov/v3/bill/118/hres/1023?format=json","number":"1023","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}} +{"type":"node","id":"7600","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-01-25","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"You Earned It, You Keep It Act","url":"https://api.congress.gov/v3/bill/118/hr/7084?format=json","number":"7084","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7601","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"RAPID Reserve Act","url":"https://api.congress.gov/v3/bill/118/hr/6802?format=json","number":"6802","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"7602","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-12-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Kid PROOF Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6663?format=json","number":"6663","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-08","latestAction_actionTime":""}} +{"type":"node","id":"7603","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-10-25","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To require the Postal Service to implement recommendations from the Inspector General of the United States Postal Service for improving identification and notification of undelivered and partially delivered routes, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6047?format=json","number":"6047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7604","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-10-03","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To provide members of the President's Cabinet an allowance to acquire security equipment and services for the personal residences of such members, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5884?format=json","number":"5884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7605","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-09-20","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"My Constituents Cannot Afford Rebellious Tantrums, Handle Your Shutdown Act","url":"https://api.congress.gov/v3/bill/118/hr/5587?format=json","number":"5587","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-20","latestAction_actionTime":""}} +{"type":"node","id":"7606","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-09-08","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Helping Low-Income Seniors Afford Care Act","url":"https://api.congress.gov/v3/bill/118/hr/5360?format=json","number":"5360","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7607","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Fighting Their Fraud Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5139?format=json","number":"5139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}} +{"type":"node","id":"7608","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-05-18","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HRES","title":"Recognizing \"National Public Works Week\".","url":"https://api.congress.gov/v3/bill/118/hres/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}} +{"type":"node","id":"7609","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend titles XIX and XXI of the Social Security Act to streamline the enrollment process for eligible out-of-state providers under Medicaid and CHIP.","url":"https://api.congress.gov/v3/bill/119/hr/1509?format=json","number":"1509","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7610","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To ban the sale of products with a high concentration of sodium nitr ite to individuals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1442?format=json","number":"1442","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7611","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"119","introducedDate":"2025-02-06","policyArea_name":"","latestAction_text":"On agreeing to the Trahan amendment (A002) Failed by the Yeas and Nays: 182 - 226 (Roll no. 32).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/hamdt/5?format=json","number":"","amendmentNumber":"5","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":"16:35:35"}} +{"type":"node","id":"7612","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2024-08-30","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the goals of Overdose Awareness Day and strengthening efforts to combat the opioid crisis in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1419?format=json","number":"1419","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"7613","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-08-06","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Pipeline Accountability, Safety, and Environmental Standards Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9323?format=json","number":"9323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-07","latestAction_actionTime":""}} +{"type":"node","id":"7614","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing support for the designation of April 17, 2025, as \"Cambodian Genocide Remembrance Day\" to remember the horrific slaughter of almost 2,000,000 Cambodian people at the hand of the Khmer Rouge regime.","url":"https://api.congress.gov/v3/bill/118/hres/1156?format=json","number":"1156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"7615","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2024-03-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"SENIOR Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7605?format=json","number":"7605","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-15","latestAction_actionTime":""}} +{"type":"node","id":"7616","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to establish a definition of essential health system in statute.","url":"https://api.congress.gov/v3/bill/118/hr/7397?format=json","number":"7397","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7617","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-08-18","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Fusion Energy Act","url":"https://api.congress.gov/v3/bill/118/hr/5244?format=json","number":"5244","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-08-25","latestAction_actionTime":""}} +{"type":"node","id":"7618","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-07-26","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"College Athlete Economic Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/4948?format=json","number":"4948","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}} +{"type":"node","id":"7619","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Bridging the SNAP Gap Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4815?format=json","number":"4815","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}} +{"type":"node","id":"7620","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Accelerating Kids’ Access to Care Act","url":"https://api.congress.gov/v3/bill/118/hr/4758?format=json","number":"4758","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}} +{"type":"node","id":"7621","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-11","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"TLDR Act","url":"https://api.congress.gov/v3/bill/118/hr/4568?format=json","number":"4568","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-14","latestAction_actionTime":""}} +{"type":"node","id":"7622","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"DELETE Act","url":"https://api.congress.gov/v3/bill/118/hr/4311?format=json","number":"4311","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}} +{"type":"node","id":"7623","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"Youth Poisoning Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/4310?format=json","number":"4310","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"7624","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-06-05","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Disease X Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3832?format=json","number":"3832","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-09","latestAction_actionTime":""}} +{"type":"node","id":"7625","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-02-27","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"INFO for Reproductive Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1224?format=json","number":"1224","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}} +{"type":"node","id":"7626","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","policyArea_name":"Crime and Law Enforcement","introducedDate":"2022-10-31","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stop Online Suicide Assistance Forums Act","url":"https://api.congress.gov/v3/bill/117/hr/9260?format=json","number":"9260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-31","latestAction_actionTime":""}} +{"type":"node","id":"7627","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","introducedDate":"2022-10-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"INFO for Reproductive Care Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9220?format=json","number":"9220","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-10-24","latestAction_actionTime":""}} +{"type":"node","id":"7628","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2022-03-17","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"ASSET Act","url":"https://api.congress.gov/v3/bill/117/hr/7145?format=json","number":"7145","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-17","latestAction_actionTime":""}} +{"type":"node","id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7630","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-18","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Ammunition Supply Chain Act","url":"https://api.congress.gov/v3/bill/118/hr/8066?format=json","number":"8066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-18","latestAction_actionTime":""}} +{"type":"node","id":"7631","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-04-05","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Firearm Due Process Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7873?format=json","number":"7873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-05","latestAction_actionTime":""}} +{"type":"node","id":"7632","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-26","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Sunset Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7455?format=json","number":"7455","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7633","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-01-11","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Financial Stability Oversight Council Reform Act","url":"https://api.congress.gov/v3/bill/118/hr/6962?format=json","number":"6962","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}} +{"type":"node","id":"7634","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Securing Facilities for Mental Health Services Act","url":"https://api.congress.gov/v3/bill/118/hr/6922?format=json","number":"6922","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7635","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-12-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Main Street Growth Act","url":"https://api.congress.gov/v3/bill/118/hr/6623?format=json","number":"6623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}} +{"type":"node","id":"7636","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-09-12","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"CBDC Anti-Surveillance State Act","url":"https://api.congress.gov/v3/bill/118/hr/5403?format=json","number":"5403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}} +{"type":"node","id":"7637","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-05-22","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Securities Clarity Act","url":"https://api.congress.gov/v3/bill/118/hr/3572?format=json","number":"3572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-22","latestAction_actionTime":""}} +{"type":"node","id":"7638","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CFPB Whistleblower Incentives and Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/2490?format=json","number":"2490","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-06","latestAction_actionTime":""}} +{"type":"node","id":"7639","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CFPB Dual Mandate and Economic Analysis Act","url":"https://api.congress.gov/v3/bill/118/hr/2489?format=json","number":"2489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-06","latestAction_actionTime":""}} +{"type":"node","id":"7640","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-03-23","latestAction_text":"Placed on the Union Calendar, Calendar No. 403.","type":"HR","title":"Blockchain Regulatory Certainty Act","url":"https://api.congress.gov/v3/bill/118/hr/1747?format=json","number":"1747","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-06","latestAction_actionTime":""}} +{"type":"node","id":"7641","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-02-21","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CBDC Anti-Surveillance State Act","url":"https://api.congress.gov/v3/bill/118/hr/1122?format=json","number":"1122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7642","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","introducedDate":"2023-11-08","policyArea_name":"","latestAction_text":"On agreeing to the Emmer amendment (A024) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/679?format=json","number":"","amendmentNumber":"679","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":"13:43:49"}} +{"type":"node","id":"7643","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","introducedDate":"2022-12-08","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Student Mental Health Improvement Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9469?format=json","number":"9469","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-12-08","latestAction_actionTime":""}} +{"type":"node","id":"7644","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","introducedDate":"2022-11-17","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","type":"HRES","title":"Expressing support for the designation of November 17, 2022, as \"National Rural Mental Health Day\".","url":"https://api.congress.gov/v3/bill/117/hres/1485?format=json","number":"1485","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-12-14","latestAction_actionTime":""}} +{"type":"node","id":"7645","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-09-22","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Recognizing the 50th anniversary of National Hunting and Fishing Day.","url":"https://api.congress.gov/v3/bill/117/hres/1387?format=json","number":"1387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-22","latestAction_actionTime":""}} +{"type":"node","id":"7646","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-07-28","latestAction_text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","type":"HR","title":"Sunset Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8563?format=json","number":"8563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}} +{"type":"node","id":"7647","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-07-19","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","type":"HR","title":"To amend the Food, Agriculture, and Trade Act of 1990 to establish a grant program for eligible institutions to carry out agriculture workforce training programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/117/hr/8425?format=json","number":"8425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-08-15","latestAction_actionTime":""}} +{"type":"node","id":"7648","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2022-06-22","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Securing Facilities for Mental Health Services Act","url":"https://api.congress.gov/v3/bill/117/hr/8179?format=json","number":"8179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-22","latestAction_actionTime":""}} +{"type":"node","id":"7649","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Non-Recognition of Russian Annexation of Ukrainian Territory Act","url":"https://api.congress.gov/v3/bill/119/hr/947?format=json","number":"947","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7650","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning the fraudulent January 2025 Belarusian presidential election and the Lukashenka regime's continued autocratic rule, calling for continued support for the people of Belarus who seek a democratic future, and calling for free and fair elections in Belarus in line with international standards.","url":"https://api.congress.gov/v3/bill/119/hres/73?format=json","number":"73","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7651","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Act of August 9, 1955 (commonly known as the \"Long-Term Leasing Act\"), to authorize leases of up to 99 years for land held in trust for the Mashpee Wampanoag Tribe and the Wampanoag Tribe of Gay Head (Aquinnah), and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/681?format=json","number":"681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7652","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit the use of Federal funds to support or facilitate the participation of the Russian Federation in the Group of Seven, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/436?format=json","number":"436","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}} +{"type":"node","id":"7653","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/347?format=json","number":"347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7654","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Act of August 9, 1955 (commonly known as the \"Long-Term Leasing Act\"), to authorize leases of up to 99 years for land held in trust for the Mashpee Wampanoag Tribe and the Wampanoag Tribe of Gay Head (Aquinnah), and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10492?format=json","number":"10492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"7655","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To codify in statute certain sanctions with respect to the Russian Federation.","url":"https://api.congress.gov/v3/bill/118/hr/10368?format=json","number":"10368","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7656","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-24","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Western Balkans Democracy and Prosperity Act","url":"https://api.congress.gov/v3/bill/118/hr/9123?format=json","number":"9123","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}} +{"type":"node","id":"7657","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-26","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"GPA Act","url":"https://api.congress.gov/v3/bill/118/hr/8845?format=json","number":"8845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":""}} +{"type":"node","id":"7658","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-25","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"The U.S.-European Nuclear Energy Cooperation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8824?format=json","number":"8824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-25","latestAction_actionTime":""}} +{"type":"node","id":"7659","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-06","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","type":"HRES","title":"Reaffirming the United States full and unwavering commitment to the North Atlantic Treaty Organization in its 75th anniversary year and its goals of achieving collective security through transatlantic partnerships.","url":"https://api.congress.gov/v3/bill/118/hres/1063?format=json","number":"1063","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"7660","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-14","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Ukraine War Risk Insurance Act","url":"https://api.congress.gov/v3/bill/118/hr/7353?format=json","number":"7353","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7661","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-11-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Reaffirming the need for transatlantic cooperation to combat antisemitism in Europe.","url":"https://api.congress.gov/v3/bill/118/hres/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":""}} +{"type":"node","id":"7662","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-29","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Supporting 30 years of diplomatic relations between the United States and the independent Czech Republic and Slovak Republic, highlighting their assistance to Ukraine, and supporting continued democratic resiliency.","url":"https://api.congress.gov/v3/bill/118/hres/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}} +{"type":"node","id":"7663","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2023-06-07","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ukrainian Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3911?format=json","number":"3911","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-07","latestAction_actionTime":""}} +{"type":"node","id":"7664","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-05-24","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning the authoritarian repression of the Belarusian democracy movement by the Lukashenka regime and calling for the release of all political prisoners as well as free and fair elections.","url":"https://api.congress.gov/v3/bill/118/hres/441?format=json","number":"441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-24","latestAction_actionTime":""}} +{"type":"node","id":"7665","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-04-18","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commending the International Criminal Court's issuance of an arrest warrant for Vladimir Putin, President of the Russian Federation, and Maria Lvova-Belova, Commissioner for Children's Rights in the Office of the President of the Russian Federation, for two war crimes related to the forcible deportation of Ukrainian children from occupied areas of Ukraine to the Russian Federation.","url":"https://api.congress.gov/v3/bill/118/hres/304?format=json","number":"304","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-18","latestAction_actionTime":""}} +{"type":"node","id":"7666","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2023-04-10","policyArea_name":"Animals","latestAction_text":"Received in the Senate.","type":"HR","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2560?format=json","number":"2560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}} +{"type":"node","id":"7667","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-04-03","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Calling on major United States companies still operating in the Russian Federation to reconsider their continued presence given Russia's full-scale invasion of Ukraine.","url":"https://api.congress.gov/v3/bill/118/hres/274?format=json","number":"274","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-03","latestAction_actionTime":""}} +{"type":"node","id":"7668","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-03-27","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 47 - 0.","type":"HR","title":"Block the Use of Transatlantic Technology in Iranian Made Drones Act","url":"https://api.congress.gov/v3/bill/118/hr/1809?format=json","number":"1809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-19","latestAction_actionTime":""}} +{"type":"node","id":"7669","labels":["Legislation"],"properties":{"sponsored_by":"S001229","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the FAST Act to include certain mineral production activities as a covered project, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1501?format=json","number":"1501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7670","labels":["Legislation"],"properties":{"sponsored_by":"S001229","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/816?format=json","number":"816","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7671","labels":["Legislation"],"properties":{"sponsored_by":"M001233","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"INSTRUCT Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1018?format=json","number":"1018","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7672","labels":["Legislation"],"properties":{"sponsored_by":"M001233","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Commercial Water Heating Equipment\".","url":"https://api.congress.gov/v3/bill/119/hjres/15?format=json","number":"15","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7673","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Expressing support for the designation of February 2025 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/119/hres/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7674","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude certain health professions education scholarship and loan payments from gross income.","url":"https://api.congress.gov/v3/bill/119/hr/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"7675","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"HR","title":"Continued Rapid Ohia Death Response Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/375?format=json","number":"375","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7676","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Recognizing the 125th anniversary of organized Okinawan immigration to the United States.","url":"https://api.congress.gov/v3/bill/119/hres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7677","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Strengthening Pathways to Health Professions Act","url":"https://api.congress.gov/v3/bill/118/hr/10280?format=json","number":"10280","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}} +{"type":"node","id":"7678","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the goals and ideals of \"National Rural Health Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1594?format=json","number":"1594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"7679","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Stop Illegal Campaign Coordination Act","url":"https://api.congress.gov/v3/bill/118/hr/9589?format=json","number":"9589","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}} +{"type":"node","id":"7680","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"Protecting and Preserving Social Security Act","url":"https://api.congress.gov/v3/bill/118/hr/9300?format=json","number":"9300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7681","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-09","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Native Arts and Culture Promotion Act","url":"https://api.congress.gov/v3/bill/118/hr/8973?format=json","number":"8973","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}} +{"type":"node","id":"7682","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-28","latestAction_text":"Became Public Law No: 118-255.","type":"HR","title":"To designate the facility of the United States Postal Service located at 82-6110 Mamalahoa Highway in Captain Cook, Hawaii, as the \"Army 1st Lt. John Kuulei Kauhaihao Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/8909?format=json","number":"8909","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"7683","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-14","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Restoring Trust in Public Safety Act","url":"https://api.congress.gov/v3/bill/118/hr/8768?format=json","number":"8768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}} +{"type":"node","id":"7684","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"PATCH Act","url":"https://api.congress.gov/v3/bill/118/hr/8563?format=json","number":"8563","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7685","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-05-23","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Parity for Native Hawaiian Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8562?format=json","number":"8562","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}} +{"type":"node","id":"7686","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"To amend the Food Security Act of 1985 to encourage the use of native vegetation, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8510?format=json","number":"8510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7687","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-01","latestAction_text":"Became Public Law No: 118-184.","type":"HR","title":"Lahaina National Heritage Area Study Act","url":"https://api.congress.gov/v3/bill/118/hr/8219?format=json","number":"8219","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"7688","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-29","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Eliminating Access Barriers to Conservation Act","url":"https://api.congress.gov/v3/bill/118/hr/7850?format=json","number":"7850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"7689","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-03-08","latestAction_text":"Sponsor introductory remarks on measure. (CR H1064)","type":"HR","title":"Hawaii Wildfire Disaster Unemployment Assistance Continuity Act","url":"https://api.congress.gov/v3/bill/118/hr/7604?format=json","number":"7604","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-12","latestAction_actionTime":""}} +{"type":"node","id":"7690","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-02-13","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Supporting the designation of February 2024 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1010?format=json","number":"1010","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7691","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2023-11-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"CARE for First Responders Act","url":"https://api.congress.gov/v3/bill/118/hr/6415?format=json","number":"6415","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-20","latestAction_actionTime":""}} +{"type":"node","id":"7692","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2023-10-24","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"MAUI STRONG Act","url":"https://api.congress.gov/v3/bill/118/hr/6037?format=json","number":"6037","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7693","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1955?format=json","number":"1955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7694","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-02-05","latestAction_text":"Sponsor introductory remarks on measure. (CR H519)","type":"HR","title":"QUIET Act","url":"https://api.congress.gov/v3/bill/119/hr/1027?format=json","number":"1027","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7695","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2024-11-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 5225 Harrison Avenue in Rockford, Illinois, as the \"Jay P. Larson Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/10254?format=json","number":"10254","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}} +{"type":"node","id":"7696","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Hydrogen for Industry Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9851?format=json","number":"9851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-26","latestAction_actionTime":""}} +{"type":"node","id":"7697","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-18","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HRES","title":"Recognizing the longstanding partnership between USDA and NASA and encouraging further interagency collaboration.","url":"https://api.congress.gov/v3/bill/118/hres/1159?format=json","number":"1159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"7698","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-04-16","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Low-Income Household Water Assistance Program Establishment Act","url":"https://api.congress.gov/v3/bill/118/hr/8032?format=json","number":"8032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-19","latestAction_actionTime":""}} +{"type":"node","id":"7699","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2024-04-11","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"ONSHORE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7968?format=json","number":"7968","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}} +{"type":"node","id":"7700","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-10","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Arsenal Workload Sustainment Act","url":"https://api.congress.gov/v3/bill/118/hr/7934?format=json","number":"7934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}} +{"type":"node","id":"7701","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-02-15","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"SUNRAY for Energy Act","url":"https://api.congress.gov/v3/bill/118/hr/7391?format=json","number":"7391","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}} +{"type":"node","id":"7702","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-01-29","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"QUIET Act","url":"https://api.congress.gov/v3/bill/118/hr/7123?format=json","number":"7123","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}} +{"type":"node","id":"7703","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-02","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"All-American Flag Act","url":"https://api.congress.gov/v3/bill/118/hr/6206?format=json","number":"6206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-02","latestAction_actionTime":""}} +{"type":"node","id":"7704","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2023-08-04","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Advancing Research on Agricultural Climate Impacts Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5160?format=json","number":"5160","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7705","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-12","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Autonomy for All Disabled Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/4047?format=json","number":"4047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-17","latestAction_actionTime":""}} +{"type":"node","id":"7706","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2023-04-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"STOP GAMES Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3030?format=json","number":"3030","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-05","latestAction_actionTime":""}} +{"type":"node","id":"7707","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-03-15","latestAction_text":"Placed on the Union Calendar, Calendar No. 770.","type":"HR","title":"NASA SPREES Act","url":"https://api.congress.gov/v3/bill/118/hr/7687?format=json","number":"7687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"7708","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Agriculture and Consumer Protection Act of 1973 to establish a pilot grant program to award grants to facilitate home delivery of commodities under the commodity supplemental food program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1538?format=json","number":"1538","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}} +{"type":"node","id":"7709","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Comptroller General of the United States to carry out a study relating to the resiliency of Social Security and Medicare.","url":"https://api.congress.gov/v3/bill/119/hr/1339?format=json","number":"1339","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7710","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Train More Primary Care Doctors Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/958?format=json","number":"958","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7711","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Public and Private Sector Ransomware Response Coordination Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7712","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-24","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"Protect Small Businesses from Excessive Paperwork Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"7713","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To require the Secretary of the Treasury to issue reports with respect to extraordinary measures, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/737?format=json","number":"737","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}} +{"type":"node","id":"7714","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on Ways and Means, the Judiciary, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No Corruption in Government Act","url":"https://api.congress.gov/v3/bill/119/hr/358?format=json","number":"358","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7715","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Back to Work Act","url":"https://api.congress.gov/v3/bill/119/hr/357?format=json","number":"357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}} +{"type":"node","id":"7716","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing a balanced budget amendment to the Constitution of the United States.","url":"https://api.congress.gov/v3/bill/119/hjres/10?format=json","number":"10","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"7717","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-10-29","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Supporting the designation of October as \"Foster Youth Voice Month\" and encouraging public awareness and participation in events and initiatives organized by youth in foster care.","url":"https://api.congress.gov/v3/bill/118/hres/1556?format=json","number":"1556","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}} +{"type":"node","id":"7718","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"On agreeing to the Nunn (IA) amendment (A001) Agreed to by recorded vote: 419 - 1 (Roll no. 451).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1220?format=json","number":"","amendmentNumber":"1220","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"16:39:55"}} +{"type":"node","id":"7719","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-09-10","policyArea_name":"","latestAction_text":"On agreeing to the Nunn (IA) amendment (A006) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1183?format=json","number":"","amendmentNumber":"1183","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":"15:23:23"}} +{"type":"node","id":"7720","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Empowering Law Enforcement to Combat Financial Fraud Act","url":"https://api.congress.gov/v3/bill/118/hr/9480?format=json","number":"9480","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-06","latestAction_actionTime":""}} +{"type":"node","id":"7721","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-08-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Public and Private Sector Ransomware Response Coordination Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9315?format=json","number":"9315","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}} +{"type":"node","id":"7722","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Brighter Futures for Teens and Young Adults in Foster Care Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9316?format=json","number":"9316","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7723","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend section 5336 of title 31, United States Code, to provide existing small businesses with an additional year to file beneficial ownership information, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9278?format=json","number":"9278","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"7724","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Intelligence (Permanent Select).","type":"HR","title":"UAS Threat Disclosure Act","url":"https://api.congress.gov/v3/bill/118/hr/9071?format=json","number":"9071","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}} +{"type":"node","id":"7725","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-07-15","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"HEALTH for MOM Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9049?format=json","number":"9049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-15","latestAction_actionTime":""}} +{"type":"node","id":"7726","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"INFANT Tax Credit Act","url":"https://api.congress.gov/v3/bill/118/hr/8971?format=json","number":"8971","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}} +{"type":"node","id":"7727","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-06-26","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"HEART Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8846?format=json","number":"8846","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":""}} +{"type":"node","id":"7728","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"COINTELPRO Full Disclosure Act","url":"https://api.congress.gov/v3/bill/118/hr/9973?format=json","number":"9973","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-12","latestAction_actionTime":""}} +{"type":"node","id":"7729","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-05","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Sanction Sea Pirates Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8934?format=json","number":"8934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}} +{"type":"node","id":"7730","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-10","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Blair Holt Firearm Owner Licensing and Record of Sale Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8354?format=json","number":"8354","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}} +{"type":"node","id":"7731","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","introducedDate":"2024-04-09","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Recognizing the 158th anniversary of the Civil Rights Act of 1866.","url":"https://api.congress.gov/v3/bill/118/hres/1121?format=json","number":"1121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-09","latestAction_actionTime":""}} +{"type":"node","id":"7732","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Marshall ‘Major’ Taylor Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/6672?format=json","number":"6672","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}} +{"type":"node","id":"7733","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-30","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"JUST Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6527?format=json","number":"6527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}} +{"type":"node","id":"7734","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","introducedDate":"2023-11-30","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (IL) amendment (A012) Failed by recorded vote: 194 - 236, 1 Present (Roll no. 686).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/824?format=json","number":"","amendmentNumber":"824","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":"16:51:45"}} +{"type":"node","id":"7735","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the joint resolution (H.J. Res. 20) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Gas-fired Instantaneous Water Heaters\"; providing for consideration of the joint resolution (H.J. Res. 35) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\"; and providing for consideration of the concurrent resolution (H. Con. Res. 14) establishing the congressional budget for the United States Government for fiscal year 2025 and setting forth the appropriate budgetary levels for fiscal years 2026 through 2034.","url":"https://api.congress.gov/v3/bill/119/hres/161?format=json","number":"161","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":"14:09:11"}} +{"type":"node","id":"7736","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Individuals with Disabilities Education Act to require notification with respect to individualized education program teams, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1570?format=json","number":"1570","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}} +{"type":"node","id":"7737","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit Federal funds from being made available to entities that refuse to provide treatment based on COVID19 vaccination status.","url":"https://api.congress.gov/v3/bill/119/hr/1381?format=json","number":"1381","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7738","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/21?format=json","number":"21","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":"09:45:29"}} +{"type":"node","id":"7739","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Presidential Election Resource Investment for Major Threat Response Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9697?format=json","number":"9697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"7740","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-09-17","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3724) to amend the Higher Education Act of 1965 to prohibit recognized accrediting agencies and associations from requiring, encouraging, or coercing institutions of higher education to meet any political litmus test or violate any right protected by the Constitution as a condition of accreditation; providing for consideration of the bill (H.R. 4790) to amend the Federal securities laws with respect to the materiality of disclosure requirements, to establish the Public Company Advisory Committee, and for other purposes; providing for consideration of the bill (H.R. 5179) to require the maintenance of the country of origin markings for imported goods produced in the West Bank or Gaza, and for other purposes; providing for consideration of the bill (H.R. 5339) to amend the Employee Retirement Income Security Act of 1974 to specify requirements concerning the consideration of pecuniary and non-pecuniary factors, and for other purposes; providing for consideration of the bill (H.R. 5717) to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens; providing for consideration of the bill (H.R. 7909) to amend the Immigration and Nationality Act to provide that aliens who have been convicted of or who have committed sex offenses or domestic violence are inadmissible and deportable; and providing for consideration of the joint resolution (H.J. Res. 136) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Multi-Pollutant Emissions Standards for Model Years 2027 and Later Light-Duty and Medium-Duty Vehicles\".","url":"https://api.congress.gov/v3/bill/118/hres/1455?format=json","number":"1455","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":"14:05:53"}} +{"type":"node","id":"7741","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-07-05","policyArea_name":"Education","latestAction_text":"Became Public Law No: 118-145.","type":"HR","title":"FAFSA Deadline Act","url":"https://api.congress.gov/v3/bill/118/hr/8932?format=json","number":"8932","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7742","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-23","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"Benjamin Harrison National Recreation Area and Wilderness Establishment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8535?format=json","number":"8535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7743","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-05-21","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4763) to provide for a system of regulation of digital assets by the Commodity Futures Trading Commission and the Securities and Exchange Commission, and for other purposes; providing for consideration of the bill (H.R. 5403) to amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes; and providing for consideration of the bill (H.R. 192) to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia.","url":"https://api.congress.gov/v3/bill/118/hres/1243?format=json","number":"1243","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":"14:45:37"}} +{"type":"node","id":"7744","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-05-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 6192) to amend the Energy Policy and Conservation Act to prohibit the Secretary of Energy from prescribing any new or amended energy conservation standard for a product that is not technologically feasible and economically justified, and for other purposes; providing for consideration of the bill (H.R. 7109) to require a citizenship question on the decennial census, to require reporting on certain census statistics, and to modify apportionment of Representatives to be based on United States citizens instead of all persons; providing for consideration of the joint resolution (H.J. Res. 109) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Staff Accounting Bulletin No. 121\"; and providing for consideration of the bill (H.R. 2925) to amend the Omnibus Budget Reconciliation Act of 1993 to provide for security of tenure for use of mining claims for ancillary activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1194?format=json","number":"1194","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":"14:22:00"}} +{"type":"node","id":"7745","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-04-05","latestAction_text":"Placed on the Union Calendar, Calendar No. 517.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Deposit Insurance Corporation relating to \"Principles for Climate-Related Financial Risk Management for Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/118/hjres/126?format=json","number":"126","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7746","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 2799) to make reforms to the capital markets of the United States, and for other purposes, and providing for consideration of the bill (H.R. 7511) to require the Secretary of Homeland Security to take into custody aliens who have been charged in the United States with theft, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1052?format=json","number":"1052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":"16:13:34"}} +{"type":"node","id":"7747","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-02-23","latestAction_text":"Placed on the Union Calendar, Calendar No. 615.","type":"HR","title":"Fostering the Use of Technology to Uphold Regulatory Effectiveness in Supervision Act","url":"https://api.congress.gov/v3/bill/118/hr/7437?format=json","number":"7437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}} +{"type":"node","id":"7748","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-01-09","policyArea_name":"Congress","latestAction_text":"On agreeing to the resolution Agreed to by recorded vote: 211 - 202, 1 Present (Roll no. 5). (text: 01/10/2024 CR H25)","type":"HRES","title":"Providing for consideration of the bill (H.R. 788) to limit donations made pursuant to settlement agreements to which the United States is a party, and for other purposes; providing for consideration of the joint resolution (H.J. Res. 98) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Labor Relations Board relating to \"Standard for Determining Joint Employer Status''; and providing for consideration of the joint resolution (S.J. Res. 38) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Highway Administration relating to \"Waiver of Buy America Requirements for Electric Vehicle Chargers''.","url":"https://api.congress.gov/v3/bill/118/hres/947?format=json","number":"947","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":"14:14:05"}} +{"type":"node","id":"7749","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-12-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4468) to prohibit the Administrator of the Environmental Protection Agency from finalizing, implementing, or enforcing a proposed rule with respect to emissions from vehicles, and for other purposes; providing for consideration of the bill (H.R. 5933) to amend the Higher Education Act of 1965 to require additional information in disclosures of foreign gifts and contracts from foreign sources, restrict contracts with certain foreign entities and foreign countries of concern, require certain staff and faculty to report foreign gifts and contracts, and require disclosure of certain foreign investments within endowments; and providing for consideration of the joint resolution (H. J. Res. 88) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Improving Income Driven Repayment for the William D. Ford Federal Direct Loan Program and the Federal Family Education Loan (FFEL) Program\".","url":"https://api.congress.gov/v3/bill/118/hres/906?format=json","number":"906","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":"14:24:21"}} +{"type":"node","id":"7750","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-11-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4664) making appropriations for financial services and general government for the fiscal year ending September 30, 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/847?format=json","number":"847","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-07","latestAction_actionTime":"14:11:04"}} +{"type":"node","id":"7751","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"21st Century Dyslexia Act","url":"https://api.congress.gov/v3/bill/118/hr/6052?format=json","number":"6052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}} +{"type":"node","id":"7752","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-09-05","latestAction_text":"Placed on the Union Calendar, Calendar No. 186.","type":"HR","title":"Retirement Proxy Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5337?format=json","number":"5337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}} +{"type":"node","id":"7753","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-08-01","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Prioritizing Evidence for Workforce Development Act","url":"https://api.congress.gov/v3/bill/118/hr/5111?format=json","number":"5111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-01","latestAction_actionTime":""}} +{"type":"node","id":"7754","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3935) to amend title 49, United States Code, to reauthorize and improve the Federal Aviation Administration and other civil aviation programs, and for other purposes, and providing for consideration of the bill (H.R. 3941) to prohibit the use of the facilities of a public elementary school, a public secondary school, or an institution of higher education to provide shelter for aliens who have not been admitted into the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/597?format=json","number":"597","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-18","latestAction_actionTime":"13:49:56"}} +{"type":"node","id":"7755","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To provide for the prioritization of projects that provide behavioral and mental health treatment services in selecting grantees under certain rural development programs, and extend the substance abuse disorder set-aside and priority under the programs.","url":"https://api.congress.gov/v3/bill/119/hr/1906?format=json","number":"1906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7756","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow employers a credit against income tax for employees who participate in qualified apprenticeship programs.","url":"https://api.congress.gov/v3/bill/119/hr/1662?format=json","number":"1662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7757","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To redesignate the third Monday in February as Presidents' Day, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1371?format=json","number":"1371","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}} +{"type":"node","id":"7758","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to allow for the approval of an abbreviated new drug application submitted by a subsequent applicant in the case of a failure by a first applicant to commence commercial marketing within a certain period, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1051?format=json","number":"1051","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7759","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","type":"HR","title":"Improving Veterans’ Experience Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9806?format=json","number":"9806","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}} +{"type":"node","id":"7760","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Secure and Affordable Broadband Extension Act","url":"https://api.congress.gov/v3/bill/118/hr/9193?format=json","number":"9193","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7761","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-26","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"SAFE STEPS for Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9179?format=json","number":"9179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}} +{"type":"node","id":"7762","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To direct the Secretary of the Interior to issue a report regarding the effects of mine subsidence.","url":"https://api.congress.gov/v3/bill/118/hr/9140?format=json","number":"9140","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7763","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the Secretary of Defense to issue regulations requiring that optional combat boots worn by members of the armed forces wear be made in America, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8166?format=json","number":"8166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7764","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To limit the closure or consolidation of any United States Postal Service processing and distribution center in Postal Service regions that have failed to meet certain delivery standards, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8040?format=json","number":"8040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}} +{"type":"node","id":"7765","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to establish a grocery, farm, and food worker stabilization grant program.","url":"https://api.congress.gov/v3/bill/118/hr/6720?format=json","number":"6720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}} +{"type":"node","id":"7766","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-09-28","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by Voice Vote.","type":"HR","title":"To amend title 38, United States Code, to modify the requirements of the Edith Nourse Rogers STEM Scholarship.","url":"https://api.congress.gov/v3/bill/118/hr/5785?format=json","number":"5785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}} +{"type":"node","id":"7767","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-08-25","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"America Grows Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5268?format=json","number":"5268","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-25","latestAction_actionTime":""}} +{"type":"node","id":"7768","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-21","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Rebuild Rural America Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4239?format=json","number":"4239","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7769","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow for deductions for the performance of certain services by a taxpayer, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/4967?format=json","number":"4967","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}} +{"type":"node","id":"7770","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-06-13","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Trauma Support and Mental Health in Schools Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4054?format=json","number":"4054","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-13","latestAction_actionTime":""}} +{"type":"node","id":"7771","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Increasing Land Access, Security, and Opportunities Act","url":"https://api.congress.gov/v3/bill/118/hr/3955?format=json","number":"3955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}} +{"type":"node","id":"7772","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-03-30","latestAction_text":"Referred to the Subcommittee on Federal Lands.","type":"HR","title":"Springfield Race Riot National Historic Monument Act","url":"https://api.congress.gov/v3/bill/118/hr/2415?format=json","number":"2415","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-08","latestAction_actionTime":""}} +{"type":"node","id":"7773","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-03-10","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"LEAP Act","url":"https://api.congress.gov/v3/bill/118/hr/1536?format=json","number":"1536","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7774","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/hr/1896?format=json","number":"1896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7775","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Lobbying Disclosure Act of 1995 to clarify a provision relating to certain contents of registrations under that Act.","url":"https://api.congress.gov/v3/bill/119/hr/1883?format=json","number":"1883","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7776","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Critical Infrastructure Manufacturing Feasibility Act","url":"https://api.congress.gov/v3/bill/119/hr/1721?format=json","number":"1721","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7777","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require an annual report of taxpayer-funded projects that are over budget and behind schedule.","url":"https://api.congress.gov/v3/bill/119/hr/1722?format=json","number":"1722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7778","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committees on Agriculture, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Assistant Secretary of Commerce for Communications and Information to report to Congress on any barriers to establishing online portals to accept, process, and dispose of certain Form 299s, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1588?format=json","number":"1588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7779","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To allow additional individuals to enroll in standalone dental plans offered through Federal Exchanges.","url":"https://api.congress.gov/v3/bill/119/hr/1397?format=json","number":"1397","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}} +{"type":"node","id":"7780","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1227?format=json","number":"1227","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7781","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Diagnostics Testing Preparedness Plan Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1108?format=json","number":"1108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7782","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Medicaid Program Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/1019?format=json","number":"1019","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7783","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To amend the American Rescue Plan Act of 2021 to direct the President to end financial assistance for funeral expenses related to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/118/hr/10399?format=json","number":"10399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"7784","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Providing Veterans Essential Medications Act","url":"https://api.congress.gov/v3/bill/118/hr/10346?format=json","number":"10346","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}} +{"type":"node","id":"7785","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-11-08","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Second Generation Biofuel Producer Credit Extension Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10104?format=json","number":"10104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-08","latestAction_actionTime":""}} +{"type":"node","id":"7786","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Corrections Officer Blake Schwarz Suicide Prevention Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9929?format=json","number":"9929","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}} +{"type":"node","id":"7787","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-09-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1489?format=json","number":"1489","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}} +{"type":"node","id":"7788","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Limiting Liability for Critical Infrastructure Manufacturers Act","url":"https://api.congress.gov/v3/bill/118/hr/9608?format=json","number":"9608","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}} +{"type":"node","id":"7789","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-09-06","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a refundable credit for expenses incurred for in vitro fertilization.","url":"https://api.congress.gov/v3/bill/118/hr/9479?format=json","number":"9479","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-06","latestAction_actionTime":""}} +{"type":"node","id":"7790","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-06","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Veterans SPORT Act","url":"https://api.congress.gov/v3/bill/118/hr/9478?format=json","number":"9478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"7791","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"No Wrong Door for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/9438?format=json","number":"9438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"7792","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-07","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing gratitude and appreciation for the bravery and valor of the Allied forces who participated in the Normandy landings on the 80th anniversary of Operation Overlord.","url":"https://api.congress.gov/v3/bill/118/hres/1284?format=json","number":"1284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}} +{"type":"node","id":"7793","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-10","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 44 - 0.","type":"HR","title":"Billion Dollar Boondoggle Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8335?format=json","number":"8335","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}} +{"type":"node","id":"7794","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-08","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","type":"HR","title":"Veterans’ Security and Pay Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/10105?format=json","number":"10105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"7795","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-05","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Gold Star Family Education Parity Act","url":"https://api.congress.gov/v3/bill/118/hr/7549?format=json","number":"7549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}} +{"type":"node","id":"7796","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","introducedDate":"2023-10-26","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"To amend the Family Violence Prevention and Services Act to authorize grants to ensure access for victims of family violence, domestic violence, and dating violence to substance use disorder treatment that allows parents (or legal guardians) and their children, stepchildren, or other dependents to remain together throughout the course of treatment, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6097?format=json","number":"6097","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-26","latestAction_actionTime":""}} +{"type":"node","id":"7797","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-20","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","type":"HR","title":"VA Acquisition Review Board Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4225?format=json","number":"4225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}} +{"type":"node","id":"7798","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-02-28","latestAction_text":"Placed on the Union Calendar, Calendar No. 795.","type":"HR","title":"Veterans Health Administration Leadership Transformation Act","url":"https://api.congress.gov/v3/bill/118/hr/1256?format=json","number":"1256","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-24","latestAction_actionTime":""}} +{"type":"node","id":"7799","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","introducedDate":"2024-03-12","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Stop Mexico’s Steel Surge Act","url":"https://api.congress.gov/v3/bill/118/hr/7638?format=json","number":"7638","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7800","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2022-09-19","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"To direct the National Institute for Occupational Safety and Health to establish an occupational research program on mental health.","url":"https://api.congress.gov/v3/bill/117/hr/8887?format=json","number":"8887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-19","latestAction_actionTime":""}} +{"type":"node","id":"7801","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-07-22","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Child Nutrition Technical Assistance Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8486?format=json","number":"8486","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-22","latestAction_actionTime":""}} +{"type":"node","id":"7802","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-03-30","latestAction_text":"Became Public Law No: 117-302.","type":"HR","title":"SVAC Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7299?format=json","number":"7299","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-27","latestAction_actionTime":""}} +{"type":"node","id":"7803","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-03-07","latestAction_text":"Became Public Law No: 117-300.","type":"HR","title":"Dignity for MST Survivors Act","url":"https://api.congress.gov/v3/bill/117/hr/6961?format=json","number":"6961","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-27","latestAction_actionTime":""}} +{"type":"node","id":"7804","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2021-11-04","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Pension Risk Transfer Accountability Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5877?format=json","number":"5877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-04","latestAction_actionTime":""}} +{"type":"node","id":"7805","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","introducedDate":"2021-09-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"COBRA Subsidy Extension for Workers and Families Act","url":"https://api.congress.gov/v3/bill/117/hr/5390?format=json","number":"5390","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-09-29","latestAction_actionTime":""}} +{"type":"node","id":"7806","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2021-09-20","latestAction_text":"Became Public Law No: 117-42.","type":"HR","title":"Department of Veterans Affairs Expiring Authorities Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5293?format=json","number":"5293","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-09-30","latestAction_actionTime":""}} +{"type":"node","id":"7807","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2021-07-21","latestAction_text":"Became Public Law No: 117-154.","type":"HR","title":"VA Electronic Health Record Transparency Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/4591?format=json","number":"4591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-23","latestAction_actionTime":""}} +{"type":"node","id":"7808","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2021-05-11","latestAction_text":"Placed on the Union Calendar, Calendar No. 387.","type":"HR","title":"Longshore and Harbor Workers’ COVID–19 Compensation Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/3114?format=json","number":"3114","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}} +{"type":"node","id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7810","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To require certain reports on small business disaster assistance to be published on the website of the Small Business Administration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1475?format=json","number":"1475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7811","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"SWAMP Act","url":"https://api.congress.gov/v3/bill/119/hr/514?format=json","number":"514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}} +{"type":"node","id":"7812","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-09-27","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Access to LARCs Act","url":"https://api.congress.gov/v3/bill/118/hr/9866?format=json","number":"9866","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}} +{"type":"node","id":"7813","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of September 19, 2024, as \"National Stillbirth Prevention Day\", recognizing tens of thousands of families in the United States that have endured a stillbirth, and seizing the opportunity to keep other families from experiencing the same tragedy.","url":"https://api.congress.gov/v3/bill/118/hres/1474?format=json","number":"1474","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}} +{"type":"node","id":"7814","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-25","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"Protecting American Industry and Labor from International Trade Crimes Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9151?format=json","number":"9151","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}} +{"type":"node","id":"7815","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Allowing Greater Access to Safe and Effective Contraception Act","url":"https://api.congress.gov/v3/bill/118/hr/8659?format=json","number":"8659","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7816","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-07","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Celebrating the 100th anniversary of the Upper Mississippi River National Wildlife and Fish Refuge.","url":"https://api.congress.gov/v3/bill/118/hres/1281?format=json","number":"1281","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}} +{"type":"node","id":"7817","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-17","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Fertilizer Research Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8453?format=json","number":"8453","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7818","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-04-15","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Securing American Agriculture Act","url":"https://api.congress.gov/v3/bill/118/hr/8003?format=json","number":"8003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}} +{"type":"node","id":"7819","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-01-05","policyArea_name":"Education","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 310.","type":"HR","title":"Pregnant Students’ Rights Act","url":"https://api.congress.gov/v3/bill/118/hr/6914?format=json","number":"6914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7820","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Workforce Solutions Act","url":"https://api.congress.gov/v3/bill/118/hr/6819?format=json","number":"6819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}} +{"type":"node","id":"7821","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"BEST Act","url":"https://api.congress.gov/v3/bill/118/hr/6818?format=json","number":"6818","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-14","latestAction_actionTime":""}} +{"type":"node","id":"7822","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2023-12-13","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Supporting Healthy Pregnancy Act","url":"https://api.congress.gov/v3/bill/118/hr/6755?format=json","number":"6755","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7823","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-07","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"REAL Trucking Act","url":"https://api.congress.gov/v3/bill/118/hr/6670?format=json","number":"6670","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7824","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2023-11-30","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Southern Border Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6523?format=json","number":"6523","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}} +{"type":"node","id":"7825","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-30","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PRINTS Act","url":"https://api.congress.gov/v3/bill/118/hr/6522?format=json","number":"6522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}} +{"type":"node","id":"7826","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2023-11-02","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Defend Our Networks Act","url":"https://api.congress.gov/v3/bill/118/hr/6189?format=json","number":"6189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}} +{"type":"node","id":"7827","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-22","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"SWAMP Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5676?format=json","number":"5676","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7828","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-20","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SCRUB Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5595?format=json","number":"5595","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-20","latestAction_actionTime":""}} +{"type":"node","id":"7829","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to allow for the furnishing of audio-only telehealth services.","url":"https://api.congress.gov/v3/bill/119/hr/1899?format=json","number":"1899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}} +{"type":"node","id":"7831","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/hr/1822?format=json","number":"1822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}} +{"type":"node","id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}} +{"type":"node","id":"7833","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Growing and Preserving Innovation in America Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1062?format=json","number":"1062","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7834","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 43 - 0.","type":"HR","title":"National Taxpayer Advocate Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/997?format=json","number":"997","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7835","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/hr/996?format=json","number":"996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7836","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 43 - 0.","type":"HR","title":"Internal Revenue Service Math and Taxpayer Help Act","url":"https://api.congress.gov/v3/bill/119/hr/998?format=json","number":"998","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7837","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Snap Back Inaccurate SNAP Payments Act","url":"https://api.congress.gov/v3/bill/119/hr/762?format=json","number":"762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7839","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Sarah’s Law","url":"https://api.congress.gov/v3/bill/119/hr/578?format=json","number":"578","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}} +{"type":"node","id":"7840","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Improving Brain Health in Schools Act","url":"https://api.congress.gov/v3/bill/118/hr/9822?format=json","number":"9822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}} +{"type":"node","id":"7841","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-08-13","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Audit the IRS Act","url":"https://api.congress.gov/v3/bill/118/hr/9346?format=json","number":"9346","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-13","latestAction_actionTime":""}} +{"type":"node","id":"7842","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-08-02","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Increasing Small-Scale Poultry Processing Opportunities Act","url":"https://api.congress.gov/v3/bill/118/hr/9251?format=json","number":"9251","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}} +{"type":"node","id":"7843","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Storm Recovery and Community Restoration Act","url":"https://api.congress.gov/v3/bill/118/hr/9081?format=json","number":"9081","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}} +{"type":"node","id":"7844","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/8860?format=json","number":"8860","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"7845","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Feenstra amendment (A007) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1004?format=json","number":"","amendmentNumber":"1004","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":"12:49:32"}} +{"type":"node","id":"7846","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-06-25","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Strengthening Evidence-based Prevention Services Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8814?format=json","number":"8814","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7847","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-16","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Livestock Indemnity Program Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8431?format=json","number":"8431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7848","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-05-06","policyArea_name":"Health","latestAction_text":"Placed on the Union Calendar, Calendar No. 803.","type":"HR","title":"Rural Hospital Stabilization Act","url":"https://api.congress.gov/v3/bill/118/hr/8245?format=json","number":"8245","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-27","latestAction_actionTime":""}} +{"type":"node","id":"7849","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to require the Secretary of Health and Human Services, acting through the Director of the Centers for Disease Control and Prevention, to implement the Climate Ready Tribes Initiative.","url":"https://api.congress.gov/v3/bill/119/hr/1647?format=json","number":"1647","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7850","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/hr/1646?format=json","number":"1646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7851","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to provide for the continued implementation of the Climate and Health program by the Centers for Disease Control and Prevention.","url":"https://api.congress.gov/v3/bill/119/hr/1645?format=json","number":"1645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7852","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to eliminate copayments by the Department of Veterans Affairs for medicines relating to preventive health services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1644?format=json","number":"1644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7853","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Education and Workforce, and in addition to the Committees on House Administration, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Job Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/1035?format=json","number":"1035","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}} +{"type":"node","id":"7854","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"SALT Fairness for Working Families Act","url":"https://api.congress.gov/v3/bill/119/hr/246?format=json","number":"246","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7855","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Health Care Affordability Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/247?format=json","number":"247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"7856","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Baby Changing on Board Act","url":"https://api.congress.gov/v3/bill/119/hr/248?format=json","number":"248","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-10","latestAction_actionTime":""}} +{"type":"node","id":"7857","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-11-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Health Coverage for IVF Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10131?format=json","number":"10131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-15","latestAction_actionTime":""}} +{"type":"node","id":"7858","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Health Care Affordability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9774?format=json","number":"9774","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7859","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-24","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Copay Fairness for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/9773?format=json","number":"9773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}} +{"type":"node","id":"7860","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Residential Recovery for Seniors Act","url":"https://api.congress.gov/v3/bill/118/hr/9232?format=json","number":"9232","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7861","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Chronic Condition Copay Elimination Act","url":"https://api.congress.gov/v3/bill/118/hr/9132?format=json","number":"9132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7862","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing the sense of the House of Representatives on Project 2025.","url":"https://api.congress.gov/v3/bill/118/hres/1386?format=json","number":"1386","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}} +{"type":"node","id":"7863","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Primary and Behavioral Health Care Access Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9133?format=json","number":"9133","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7864","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-23","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"ACE Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/9094?format=json","number":"9094","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-28","latestAction_actionTime":""}} +{"type":"node","id":"7865","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-07-23","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Prioritizing Rural Hospitals Act","url":"https://api.congress.gov/v3/bill/118/hr/9093?format=json","number":"9093","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}} +{"type":"node","id":"7866","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-07-11","latestAction_text":"Placed on the Union Calendar, Calendar No. 711.","type":"HR","title":"Baby Changing on Board Act","url":"https://api.congress.gov/v3/bill/118/hr/8995?format=json","number":"8995","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}} +{"type":"node","id":"7867","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Tribal Climate Health Assurance Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8520?format=json","number":"8520","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}} +{"type":"node","id":"7868","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-16","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Lethal Means Safety Training Act","url":"https://api.congress.gov/v3/bill/118/hr/8418?format=json","number":"8418","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-17","latestAction_actionTime":""}} +{"type":"node","id":"7869","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Our Homes, Our Votes Act","url":"https://api.congress.gov/v3/bill/118/hr/10215?format=json","number":"10215","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}} +{"type":"node","id":"7870","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Lead-Safe Housing for Kids Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8171?format=json","number":"8171","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}} +{"type":"node","id":"7871","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Stop Onerous Surcharges Act","url":"https://api.congress.gov/v3/bill/118/hr/7902?format=json","number":"7902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-09","latestAction_actionTime":""}} +{"type":"node","id":"7872","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-22","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Fair Compensation for Truck Crash Victims Act","url":"https://api.congress.gov/v3/bill/118/hr/6884?format=json","number":"6884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-19","latestAction_actionTime":""}} +{"type":"node","id":"7873","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-07","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Cargo Flight Deck Security Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3909?format=json","number":"3909","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}} +{"type":"node","id":"7874","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-05-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Reward Work Act","url":"https://api.congress.gov/v3/bill/118/hr/3694?format=json","number":"3694","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-25","latestAction_actionTime":""}} +{"type":"node","id":"7875","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2023-05-11","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Diversify Act","url":"https://api.congress.gov/v3/bill/118/hr/3233?format=json","number":"3233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-11","latestAction_actionTime":""}} +{"type":"node","id":"7876","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-05-09","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Prairie Band Potawatomi Nation Shab-eh-nay Band Reservation Settlement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3144?format=json","number":"3144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}} +{"type":"node","id":"7877","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2023-03-29","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"New Way Forward Act","url":"https://api.congress.gov/v3/bill/118/hr/2374?format=json","number":"2374","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-29","latestAction_actionTime":""}} +{"type":"node","id":"7878","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-03-09","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Good Jobs for Good Airports Act","url":"https://api.congress.gov/v3/bill/118/hr/1499?format=json","number":"1499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}} +{"type":"node","id":"7879","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2023-02-06","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","url":"https://api.congress.gov/v3/bill/118/hr/832?format=json","number":"832","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-07","latestAction_actionTime":""}} +{"type":"node","id":"7880","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-12-20","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Chixoy International Financial Institution Reparations Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9620?format=json","number":"9620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-20","latestAction_actionTime":""}} +{"type":"node","id":"7881","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2022-10-07","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Reward Work Act","url":"https://api.congress.gov/v3/bill/117/hr/9149?format=json","number":"9149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-07","latestAction_actionTime":""}} +{"type":"node","id":"7882","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-09-29","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Community Driven Recovery for Puerto Rico Act","url":"https://api.congress.gov/v3/bill/117/hr/9053?format=json","number":"9053","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-30","latestAction_actionTime":""}} +{"type":"node","id":"7883","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Native Americans","introducedDate":"2022-07-14","latestAction_text":"Subcommittee Hearings Held.","type":"HR","title":"Prairie Band Potawatomi Nation Shab-eh-nay Band Reservation Settlement Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8380?format=json","number":"8380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":""}} +{"type":"node","id":"7884","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2022-06-16","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Good Jobs for Good Airports Act","url":"https://api.congress.gov/v3/bill/117/hr/8105?format=json","number":"8105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-17","latestAction_actionTime":""}} +{"type":"node","id":"7885","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","introducedDate":"2022-05-24","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","url":"https://api.congress.gov/v3/bill/117/hr/7866?format=json","number":"7866","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-05-25","latestAction_actionTime":""}} +{"type":"node","id":"7886","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-03-15","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","type":"HR","title":"Ukraine Comprehensive Debt Payment Relief Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7081?format=json","number":"7081","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-05-12","latestAction_actionTime":""}} +{"type":"node","id":"7887","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-03-08","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Stop Onerous Surcharges Act","url":"https://api.congress.gov/v3/bill/117/hr/6979?format=json","number":"6979","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-08","latestAction_actionTime":""}} +{"type":"node","id":"7888","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-11-15","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Veterans and Consumers Fair Credit Act","url":"https://api.congress.gov/v3/bill/117/hr/5974?format=json","number":"5974","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-15","latestAction_actionTime":""}} +{"type":"node","id":"7889","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to adjust allowable direct and indirect costs for nursing and allied health education programs.","url":"https://api.congress.gov/v3/bill/119/hr/1708?format=json","number":"1708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7890","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to permit nurse practitioners and physician assistants to satisfy the documentation requirement under the Medicare program for coverage of certain shoes for individuals with diabetes.","url":"https://api.congress.gov/v3/bill/119/hr/1616?format=json","number":"1616","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}} +{"type":"node","id":"7891","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a system for the taxation of catastrophic risk transfer companies to ensure sufficient capital to cover catastrophic insurance losses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1481?format=json","number":"1481","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}} +{"type":"node","id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}} +{"type":"node","id":"7893","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-10","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 41 - 0.","type":"HR","title":"Electronic Filing and Payment Fairness Act","url":"https://api.congress.gov/v3/bill/119/hr/1152?format=json","number":"1152","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7894","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to make improvements related to tax administration.","url":"https://api.congress.gov/v3/bill/119/hr/1075?format=json","number":"1075","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7895","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Supporting the contributions of Catholic schools in the United States and celebrating the 51st annual \"National Catholic Schools Week\".","url":"https://api.congress.gov/v3/bill/119/hres/74?format=json","number":"74","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7896","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HCONRES","title":"Expressing the sense of Congress that tax-exempt fraternal benefit societies have historically provided and continue to provide critical benefits to the people and communities of the United States.","url":"https://api.congress.gov/v3/bill/119/hconres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7897","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Preserving Patient Access to Accountable Care Act","url":"https://api.congress.gov/v3/bill/119/hr/786?format=json","number":"786","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}} +{"type":"node","id":"7898","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-22","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"LICENSE Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/623?format=json","number":"623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7899","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Community Reclamation Partnerships Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"7900","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Residence-Based Taxation for Americans Abroad Act","url":"https://api.congress.gov/v3/bill/118/hr/10468?format=json","number":"10468","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}} +{"type":"node","id":"7901","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Rebuild America’s Health Care Schools Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10225?format=json","number":"10225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7902","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Preserving Rural Housing Investments Act","url":"https://api.congress.gov/v3/bill/118/hr/9267?format=json","number":"9267","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}} +{"type":"node","id":"7903","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Families","latestAction_text":"Became Public Law No: 118-258.","type":"HR","title":"Supporting America’s Children and Families Act","url":"https://api.congress.gov/v3/bill/118/hr/9076?format=json","number":"9076","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}} +{"type":"node","id":"7904","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Administration Simplification Act","url":"https://api.congress.gov/v3/bill/118/hr/8864?format=json","number":"8864","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}} +{"type":"node","id":"7905","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-05-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Bringing Back American Jobs Through Intellectual Property Repatriation Act","url":"https://api.congress.gov/v3/bill/118/hr/8274?format=json","number":"8274","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}} +{"type":"node","id":"7906","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-03-22","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Expressing support for the designation of the week of March 24, 2024, through March 30, 2024, as \"National Cleaning Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1106?format=json","number":"1106","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}} +{"type":"node","id":"7907","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-03-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHEERS Act","url":"https://api.congress.gov/v3/bill/118/hr/7577?format=json","number":"7577","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}} +{"type":"node","id":"7908","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-02-23","latestAction_text":"Became Public Law No: 118-143.","type":"HR","title":"FIFA World Cup 2026 Commemorative Coin Act","url":"https://api.congress.gov/v3/bill/118/hr/7438?format=json","number":"7438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7909","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To abolish the Board of Governors of the Federal Reserve System and the Federal reserve banks, to repeal the Federal Reserve Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1846?format=json","number":"1846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}} +{"type":"node","id":"7910","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To reduce, from 21 years of age to 18 years of age, the minimum age at which a person may obtain a handgun from a Federal firearms licensee.","url":"https://api.congress.gov/v3/bill/119/hr/1643?format=json","number":"1643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}} +{"type":"node","id":"7911","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To prohibit the obligation or expenditure of Federal funds for disinformation research grants, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1233?format=json","number":"1233","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7912","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Senior Citizens Tax Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/1040?format=json","number":"1040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}} +{"type":"node","id":"7913","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To terminate the Department of Education.","url":"https://api.congress.gov/v3/bill/119/hr/899?format=json","number":"899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7914","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/119/hr/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}} +{"type":"node","id":"7915","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Federal Reserve Transparency Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}} +{"type":"node","id":"7916","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-11-20","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HJRES","title":"Relating to the disapproval of the Presidential report with respect to the indebtedness of the Government of Ukraine.","url":"https://api.congress.gov/v3/bill/118/hjres/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}} +{"type":"node","id":"7917","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"On agreeing to the Massie amendment (A003) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1192?format=json","number":"","amendmentNumber":"1192","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":"14:29:40"}} +{"type":"node","id":"7918","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/118/hr/9534?format=json","number":"9534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}} +{"type":"node","id":"7919","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-06-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Free Tips Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8785?format=json","number":"8785","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}} +{"type":"node","id":"7920","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To prohibit the obligation or expenditure of Federal funds for disinformation research grants, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8519?format=json","number":"8519","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}} +{"type":"node","id":"7921","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Reserve Board Abolition Act","url":"https://api.congress.gov/v3/bill/118/hr/8421?format=json","number":"8421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}} +{"type":"node","id":"7922","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-14","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Interstate Milk Freedom Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8374?format=json","number":"8374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}} +{"type":"node","id":"7923","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-04-26","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Restoring America’s Leadership in Innovation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8134?format=json","number":"8134","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}} +{"type":"node","id":"7924","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-04-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 7888) to reform the Foreign Intelligence Surveillance Act of 1978; providing for consideration of the bill (H.R. 529) to extend the customs waters of the United States from 12 nautical miles to 24 nautical miles from the baselines of the United States, consistent with Presidential Proclamation 7219; providing for consideration of the resolution (H. Res. 1112) denouncing the Biden administration's immigration policies; and providing for consideration of the resolution (H. Res. 1117) opposing efforts to place one-sided pressure on Israel with respect to Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1137?format=json","number":"1137","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":"09:35:51"}} +{"type":"node","id":"7925","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-14","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 26 - 0.","type":"HR","title":"NICS Data Reporting Act","url":"https://api.congress.gov/v3/bill/118/hr/6824?format=json","number":"6824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}} +{"type":"node","id":"7926","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-14","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"SAFER Voter Act","url":"https://api.congress.gov/v3/bill/118/hr/6782?format=json","number":"6782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-14","latestAction_actionTime":""}} +{"type":"node","id":"7927","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2023-11-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5893) making appropriations for the Departments of Commerce and Justice, Science, and Related Agencies for the fiscal year ending September 30, 2024, and for other purposes, and providing for consideration of the bill (H.R. 5961) to freeze certain Iranian funds involved in the 2023 hostage deal between the United States and Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/869?format=json","number":"869","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":"11:15:54"}} +{"type":"node","id":"7928","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-07-26","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Members of Congress Pension Opt Out Clarification Act","url":"https://api.congress.gov/v3/bill/118/hr/4926?format=json","number":"4926","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":""}} +{"type":"node","id":"7929","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To sunset new Federal regulatory rules after 5 years, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1226?format=json","number":"1226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}} +{"type":"node","id":"7930","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Water Resources Development","introducedDate":"2014-09-18","latestAction_text":"Referred to the Subcommittee on Livestock, Rural Development, and Credit.","type":"HR","title":"To reduce Federal, State, and local costs of providing high-quality drinking water to millions of Americans residing in rural communities by facilitating greater use of cost-effective well water systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/5659?format=json","number":"5659","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-10-23","latestAction_actionTime":""}} +{"type":"node","id":"7931","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Housing and Community Development","introducedDate":"2014-09-18","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To revise the definition of \"manufactured home\" under the Manufactured Housing Construction and Safety Standards Act of 1974 to clarify the exclusion of certain recreational vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/5658?format=json","number":"5658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-09-18","latestAction_actionTime":""}} +{"type":"node","id":"7932","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Finance and Financial Sector","introducedDate":"2014-09-08","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To nullify certain guidance of the Bureau of Consumer Financial Protection and to provide requirements for guidance issued by the Bureau with respect to indirect auto lending.","url":"https://api.congress.gov/v3/bill/113/hr/5403?format=json","number":"5403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-09-08","latestAction_actionTime":""}} +{"type":"node","id":"7933","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Finance and Financial Sector","introducedDate":"2014-06-09","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 35 - 24.","type":"HR","title":"To provide for a notice and comment period before the Bureau of Consumer Financial Protection issues guidance, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/4811?format=json","number":"4811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-06-11","latestAction_actionTime":""}} +{"type":"node","id":"7934","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Finance and Financial Sector","introducedDate":"2014-05-20","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To provide for a notice and comment period before the Bureau of Consumer Financial Protection issues guidance, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/4684?format=json","number":"4684","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-05-20","latestAction_actionTime":""}} +{"type":"node","id":"7935","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Armed Forces and National Security","introducedDate":"2013-10-02","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"To amend the Pay Our Military Act to provide funds for the operations of the National Guard.","url":"https://api.congress.gov/v3/bill/113/hr/3237?format=json","number":"3237","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-10-02","latestAction_actionTime":""}} +{"type":"node","id":"7936","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Agriculture and Food","introducedDate":"2013-04-18","latestAction_text":"Referred to the Subcommittee on Department Operations, Oversight, and Nutrition.","type":"HR","title":"To amend the Food and Nutrition Act of 2008 to improve the supplemental nutrition assistance program.","url":"https://api.congress.gov/v3/bill/113/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-05-03","latestAction_actionTime":""}} +{"type":"node","id":"7937","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Crime and Law Enforcement","introducedDate":"2013-02-06","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, Homeland Security, And Investigations.","type":"HR","title":"To allow reciprocity for the carrying of certain concealed firearms.","url":"https://api.congress.gov/v3/bill/113/hr/578?format=json","number":"578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-02-28","latestAction_actionTime":""}} +{"type":"node","id":"7938","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Economics and Public Finance","introducedDate":"2013-02-04","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to remove the mandate on the Board of Governors of the Federal Reserve System and the Federal Open Market Committee to focus on maximum employment.","url":"https://api.congress.gov/v3/bill/113/hr/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-02-04","latestAction_actionTime":""}} +{"type":"node","id":"7939","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","introducedDate":"2011-07-21","policyArea_name":"","latestAction_text":"On agreeing to the Stutzman amendment (A008) Agreed to by recorded vote: 218 - 194 (Roll no. 625). (consideration: CR H5384-5385)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/112/hamdt/704?format=json","number":"","amendmentNumber":"704","latestAction":"","latestAction_actionDate":"2011-07-22","latestAction_actionTime":"10:50:24"}} +{"type":"node","id":"7940","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2012-02-16","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote .","type":"HR","title":"To direct the Secretary of Labor to provide off-base transition training, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/4051?format=json","number":"4051","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2012-03-28","latestAction_actionTime":""}} +{"type":"node","id":"7941","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2012-02-16","latestAction_text":"Subcommittee Hearings Held.","type":"HR","title":"To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to establish an honorary Excellence in Veterans Education Award.","url":"https://api.congress.gov/v3/bill/112/hr/4052?format=json","number":"4052","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2012-03-08","latestAction_actionTime":""}} +{"type":"node","id":"7942","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","introducedDate":"2012-01-18","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Higher Education and Workforce Training.","type":"HR","title":"To repeal the National and Community Service Act of 1990 and the Domestic Volunteer Service Act of 1973.","url":"https://api.congress.gov/v3/bill/112/hr/3794?format=json","number":"3794","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2012-03-29","latestAction_actionTime":""}} +{"type":"node","id":"7943","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Government Operations and Politics","introducedDate":"2011-11-18","latestAction_text":"Became Public Law No: 112-161.","type":"HR","title":"To designate the facility of the United States Postal Service located at 125 Kerr Avenue in Rome City, Indiana, as the \"SPC Nicholas Scott Hartge Post Office\".","url":"https://api.congress.gov/v3/bill/112/hr/3501?format=json","number":"3501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2012-08-10","latestAction_actionTime":""}} +{"type":"node","id":"7944","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Agriculture and Food","introducedDate":"2011-10-05","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To reform and reauthorize agricultural programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/3111?format=json","number":"3111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-10-05","latestAction_actionTime":""}} +{"type":"node","id":"7945","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-23","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote .","type":"HR","title":"To amend title 38, United States Code, to extend the authorization of appropriations for the Secretary of Veterans Affairs to pay a monthly assistance allowance to disabled veterans training or competing for the Paralympic Team and the authorization of appropriations for the Secretary of Veterans Affairs to provide assistance to United States Paralympics, Inc.","url":"https://api.congress.gov/v3/bill/112/hr/2345?format=json","number":"2345","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-07-21","latestAction_actionTime":""}} +{"type":"node","id":"7946","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-22","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"To amend title 38, United States Code, to extend the authorization of appropriations for the Secretary of Veterans Affairs to pay a monthly assistance allowance to disabled veterans training or competing for the Paralympic Team.","url":"https://api.congress.gov/v3/bill/112/hr/2300?format=json","number":"2300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-07-08","latestAction_actionTime":""}} +{"type":"node","id":"7947","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-22","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote .","type":"HR","title":"To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to make payments to educational institutions under the Post-9/11 Educational Assistance Program at the end of a quarter, semester, or term, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/2301?format=json","number":"2301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-07-21","latestAction_actionTime":""}} +{"type":"node","id":"7948","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-22","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to notify Congress of conferences sponsored by the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/2302?format=json","number":"2302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-10-12","latestAction_actionTime":""}} +{"type":"node","id":"7949","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Providing amounts for the expenses of the Committee on Energy and Commerce in the One Hundred Nineteenth Congress.","url":"https://api.congress.gov/v3/bill/119/hres/85?format=json","number":"85","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}} +{"type":"node","id":"7950","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-10-01","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Securing America’s Midstream Critical Materials Processing of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9898?format=json","number":"9898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}} +{"type":"node","id":"7951","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-17","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Review of Final Rule Reclassification of Major Sources as Area Sources Under Section 112 of the Clean Air Act\".","url":"https://api.congress.gov/v3/bill/118/hjres/204?format=json","number":"204","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}} +{"type":"node","id":"7952","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Patient Access Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9184?format=json","number":"9184","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7953","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Fair and Efficient Regulatory Commonsense Act","url":"https://api.congress.gov/v3/bill/118/hr/9077?format=json","number":"9077","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}} +{"type":"node","id":"7954","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-07-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Building America’s Health Care Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/9067?format=json","number":"9067","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7955","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-03-29","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To amend the Harmonized Tariff Schedule of the United States to provide for permanent duty-free treatment on imports of basketballs.","url":"https://api.congress.gov/v3/bill/118/hr/7836?format=json","number":"7836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7956","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-02-05","policyArea_name":"Health","latestAction_text":"Became Public Law No: 118-142.","type":"HR","title":"BOLD Infrastructure for Alzheimer's Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7218?format=json","number":"7218","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}} +{"type":"node","id":"7957","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-11-07","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Nuclear for Brownfield Site Preparation Act","url":"https://api.congress.gov/v3/bill/118/hr/6268?format=json","number":"6268","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-10","latestAction_actionTime":""}} +{"type":"node","id":"7958","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"National Coverage Determination Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/5389?format=json","number":"5389","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}} +{"type":"node","id":"7959","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-07-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend the Controlled Substances Act to authorize pharmacies to deliver certain controlled substances to an administering practitioner in lieu of delivering such substances to the ultimate user, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/4490?format=json","number":"4490","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-07","latestAction_actionTime":""}} +{"type":"node","id":"7960","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-26","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Deplatform Drug Dealers Act","url":"https://api.congress.gov/v3/bill/118/hr/4910?format=json","number":"4910","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}} +{"type":"node","id":"7961","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-07-11","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"HR","title":"Support for Patients and Communities Reauthorization Act","url":"https://api.congress.gov/v3/bill/118/hr/4531?format=json","number":"4531","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":""}} +{"type":"node","id":"7962","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-10","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Novel, Advanced Spectrum and Communications Technology Networks Promotion Act","url":"https://api.congress.gov/v3/bill/118/hr/4504?format=json","number":"4504","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-10","latestAction_actionTime":""}} +{"type":"node","id":"7963","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-07-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend the 21st Century Cures Act to clarify that grants for State and Tribal response to opioid use disorders may, at the discretion of the Secretary of Health and Human Services, also be used to address associated health conditions, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/4489?format=json","number":"4489","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-07","latestAction_actionTime":""}} +{"type":"node","id":"7964","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-06-05","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 27 - 20.","type":"HR","title":"CDC Leadership Accountability Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3813?format=json","number":"3813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}} +{"type":"node","id":"7965","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-05-15","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"TRUSTED Broadband Networks Act","url":"https://api.congress.gov/v3/bill/118/hr/3280?format=json","number":"3280","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}} +{"type":"node","id":"7966","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-04-28","latestAction_text":"Referred to the Subcommittee on Federal Lands.","type":"HR","title":"Mammoth Cave National Park Boundary Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3007?format=json","number":"3007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-22","latestAction_actionTime":""}} +{"type":"node","id":"7967","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-04-18","policyArea_name":"Health","latestAction_text":"Placed on the Union Calendar, Calendar No. 768.","type":"HR","title":"Medicaid VBPs for Patients Act","url":"https://api.congress.gov/v3/bill/118/hr/2666?format=json","number":"2666","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}} +{"type":"node","id":"7968","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-03-28","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"To direct the Secretary of Labor to award grants to develop, administer, and evaluate early childhood education apprenticeships, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/1834?format=json","number":"1834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-28","latestAction_actionTime":""}} +{"type":"node","id":"7969","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"To inform the Senate that a quorum of the House has assembled and of the election of the Speaker and the Clerk.","url":"https://api.congress.gov/v3/bill/119/hres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"15:45:35"}} +{"type":"node","id":"7970","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Authorizing the Speaker to appoint a committee to notify the President of the assembly of the Congress.","url":"https://api.congress.gov/v3/bill/119/hres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"15:46:36"}} +{"type":"node","id":"7971","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-10","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Firearms Interstate Commerce Reform Act","url":"https://api.congress.gov/v3/bill/118/hr/8364?format=json","number":"8364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}} +{"type":"node","id":"7972","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Providing for a joint session of Congress to receive a message from the President.","url":"https://api.congress.gov/v3/bill/118/hconres/93?format=json","number":"93","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}} +{"type":"node","id":"7973","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-20","latestAction_text":"Became Public Law No: 118-129.","type":"HR","title":"To designate the facility of the United States Postal Service located at 103 Benedette Street in Rayville, Louisiana, as the \"Luke Letlow Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/7423?format=json","number":"7423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-25","latestAction_actionTime":""}} +{"type":"node","id":"7974","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-12-15","latestAction_text":"Became Public Law No: 118-177.","type":"HR","title":"To expand the boundaries of the Atchafalaya National Heritage Area to include Lafourche Parish, Louisiana.","url":"https://api.congress.gov/v3/bill/118/hr/6843?format=json","number":"6843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}} +{"type":"node","id":"7975","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"To inform the Senate of the election of the Speaker.","url":"https://api.congress.gov/v3/bill/118/hres/810?format=json","number":"810","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":"14:46:36"}} +{"type":"node","id":"7976","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Authorizing the Clerk to inform the President of the election of the Speaker.","url":"https://api.congress.gov/v3/bill/118/hres/811?format=json","number":"811","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":"14:47:17"}} +{"type":"node","id":"7977","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-03-14","policyArea_name":"Energy","latestAction_text":"The Clerk was authorized to correct section numbers, punctuation, and cross references, and to make other necessary technical and conforming corrections in the engrossment of H.R. 1.","title":"Lower Energy Costs Act","type":"HR","url":"https://api.congress.gov/v3/bill/118/hr/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":"11:47:06"}} +{"type":"node","id":"7978","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-31","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Providing for a joint session of Congress to receive a message from the President.","url":"https://api.congress.gov/v3/bill/118/hconres/11?format=json","number":"11","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}} +{"type":"node","id":"7979","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-31","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/80?format=json","number":"80","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-31","latestAction_actionTime":"17:46:29"}} +{"type":"node","id":"7980","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Authorizing the Speaker to appoint a committee to notify the President of the assembly of the Congress.","url":"https://api.congress.gov/v3/bill/118/hres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-07","latestAction_actionTime":"01:50:06"}} +{"type":"node","id":"7981","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"To inform the Senate that a quorum of the House has assembled and election of the Speaker and the Clerk.","url":"https://api.congress.gov/v3/bill/118/hres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-07","latestAction_actionTime":"01:49:33"}} +{"type":"node","id":"7982","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Adopting the Rules of the House of Representatives for the One Hundred Eighteenth Congress, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/5?format=json","number":"5","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-09","latestAction_actionTime":"19:08:51"}} +{"type":"node","id":"7983","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2022-07-27","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"EAVESDROP Act","url":"https://api.congress.gov/v3/bill/117/hr/8543?format=json","number":"8543","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-07-27","latestAction_actionTime":""}} +{"type":"node","id":"7984","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2022-07-20","policyArea_name":"Energy","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BREEZE Act","url":"https://api.congress.gov/v3/bill/117/hr/8437?format=json","number":"8437","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-07-20","latestAction_actionTime":""}} +{"type":"node","id":"7985","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2021-07-01","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","type":"HR","title":"American Energy First Act","url":"https://api.congress.gov/v3/bill/117/hr/4334?format=json","number":"4334","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-30","latestAction_actionTime":""}} +{"type":"node","id":"7986","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","policyArea_name":"Science, Technology, Communications","introducedDate":"2021-06-15","latestAction_text":"Became Public Law No: 117-55.","type":"HR","title":"Secure Equipment Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/3919?format=json","number":"3919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-11","latestAction_actionTime":""}} +{"type":"node","id":"7987","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2021-05-17","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HCONRES","title":"Expressing the sense of Congress that a carbon tax would be detrimental to the United States economy.","url":"https://api.congress.gov/v3/bill/117/hconres/34?format=json","number":"34","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-05-17","latestAction_actionTime":""}} +{"type":"node","id":"7988","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2021-03-11","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","type":"HR","title":"Promoting New Manufacturing Act","url":"https://api.congress.gov/v3/bill/117/hr/1855?format=json","number":"1855","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-03-12","latestAction_actionTime":""}} +{"type":"node","id":"7989","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","introducedDate":"1994-07-20","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A003) Failed by recorded vote: 123 - 305 (Roll no. 339).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/103/hamdt/770?format=json","number":"","amendmentNumber":"770","latestAction":"","latestAction_actionDate":"1994-07-20","latestAction_actionTime":"17:58:41"}} +{"type":"node","id":"7990","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","policyArea_name":"Economics and Public Finance","introducedDate":"1994-03-16","latestAction_text":"See S.21.","type":"HR","title":"To direct the Secretary of the Interior and the Secretary of Energy to undertake initiatives to address certain needs in the Lower Mississippi Delta Region, and for other purposes.","url":"https://api.congress.gov/v3/bill/103/hr/4043?format=json","number":"4043","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1994-07-27","latestAction_actionTime":""}} +{"type":"node","id":"7991","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","policyArea_name":"Crime and Law Enforcement","introducedDate":"1993-11-22","latestAction_text":"Referred to the Subcommittee on Crime and Criminal Justice.","type":"HR","title":"To amend title 18, United States Code, to regulate the receipt of firearms dealers.","url":"https://api.congress.gov/v3/bill/103/hr/3639?format=json","number":"3639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1993-11-30","latestAction_actionTime":""}} +{"type":"node","id":"7992","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","policyArea_name":"Finance and Financial Sector","introducedDate":"1993-03-24","latestAction_text":"Subcommittee Hearings Held.","type":"HR","title":"To establish a limit on the fee which certain persons may charge for cashing checks and other instruments, to require depository institutions to cash checks issued by the United States or a State, and to provide that checks drawn by the Federal Government may be mailed only to the personal residence or primary place of business of the payee, to a Federal post office box, or to a federally insured depository institution at which the payee holds an account.","url":"https://api.congress.gov/v3/bill/103/hr/1448?format=json","number":"1448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1993-06-29","latestAction_actionTime":""}} +{"type":"node","id":"7993","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-06-26","policyArea_name":"","latestAction_text":"By unanimous consent, the Fields (LA) amendment was withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1215?format=json","number":"","amendmentNumber":"1215","latestAction":"","latestAction_actionDate":"1996-06-26","latestAction_actionTime":"15:37:43"}} +{"type":"node","id":"7994","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"By unanimous consent, the Fields (LA) amendment was withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1021?format=json","number":"","amendmentNumber":"1021","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"19:38:45"}} +{"type":"node","id":"7995","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A006) Failed by recorded vote: 158 - 254 (Roll no. 154).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1022?format=json","number":"","amendmentNumber":"1022","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"21:59:40"}} +{"type":"node","id":"7996","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A012) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1028?format=json","number":"","amendmentNumber":"1028","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"22:24:19"}} +{"type":"node","id":"7997","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A011) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1027?format=json","number":"","amendmentNumber":"1027","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"22:10:17"}} +{"type":"node","id":"7998","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-07-28","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A020) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/694?format=json","number":"","amendmentNumber":"694","latestAction":"","latestAction_actionDate":"1995-07-28","latestAction_actionTime":"13:51:53"}} +{"type":"node","id":"7999","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-07-26","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A010) Failed by recorded vote: 128 - 296 (Roll no. 575).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/652?format=json","number":"","amendmentNumber":"652","latestAction":"","latestAction_actionDate":"1995-07-26","latestAction_actionTime":"15:17:07"}} +{"type":"node","id":"8000","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-01-30","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendments (A029) Failed by recorded vote: 135 - 282 (Roll no. 72).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/38?format=json","number":"","amendmentNumber":"38","latestAction":"","latestAction_actionDate":"1995-01-31","latestAction_actionTime":"00:07:25"}} +{"type":"node","id":"8001","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-02-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A006) as amended Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/104?format=json","number":"","amendmentNumber":"104","latestAction":"","latestAction_actionDate":"1995-02-08","latestAction_actionTime":"14:46:34"}} +{"type":"node","id":"8002","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-02-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A005) Failed by recorded vote: 139 - 291 (Roll no. 107).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/111?format=json","number":"","amendmentNumber":"111","latestAction":"","latestAction_actionDate":"1995-02-08","latestAction_actionTime":"19:53:10"}} +{"type":"node","id":"8003","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-03-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow individuals an exclusion from gross income for certain amounts of unearned income.","url":"https://api.congress.gov/v3/bill/104/hr/3042?format=json","number":"3042","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1996-03-07","latestAction_actionTime":""}} +{"type":"node","id":"8004","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-12-18","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Early Childhood, Youth and Families.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to impose a 5 percent tax on all wagering and to use the revenues from such tax to enhance funding for public elementary and secondary education, and for other purposes.","url":"https://api.congress.gov/v3/bill/104/hr/2800?format=json","number":"2800","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1996-01-19","latestAction_actionTime":""}} +{"type":"node","id":"8005","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","policyArea_name":"Finance and Financial Sector","introducedDate":"1995-03-15","latestAction_text":"Referred to the Subcommittee on Financial Institutions and Consumer Credit.","type":"HR","title":"To amend the Electronic Funds Transfer Act to require fee disclosures by operators of electronic terminals at which electronic fund transfer services are made available to consumers.","url":"https://api.congress.gov/v3/bill/104/hr/1246?format=json","number":"1246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1995-03-24","latestAction_actionTime":""}} +{"type":"node","id":"8006","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-03-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Commerce, Trade, and Hazardous Materials.","type":"HR","title":"To require property and casualty insurers to provide written notification to insurance applicants and policyholders of decisions to refuse to issue or to cancel or refuse to renew an insurance policy.","url":"https://api.congress.gov/v3/bill/104/hr/1247?format=json","number":"1247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1995-04-10","latestAction_actionTime":""}} +{"type":"node","id":"8007","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","policyArea_name":"Finance and Financial Sector","introducedDate":"1995-03-01","latestAction_text":"Referred to the Subcommittee on Financial Institutions and Consumer Credit.","type":"HR","title":"To establish a State system of licensing or registering persons engaged in a business which regularly and primarily charges fees for cashing checks, and to provide for insured financial depository institutions to cash checks issued by States of the United States.","url":"https://api.congress.gov/v3/bill/104/hr/1095?format=json","number":"1095","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1995-03-10","latestAction_actionTime":""}} +{"type":"node","id":"8008","labels":["Legislation"],"properties":{"sponsored_by":"M001238","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"ESCRA Act","url":"https://api.congress.gov/v3/bill/119/hr/306?format=json","number":"306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}} +{"type":"node","id":"8009","labels":["S"],"properties":{"number":"$number","updateDate":"$updateDate","originChamber":"$originChamber","congress":"$congress","latestActionText":"$latestActionText","updateDateIncludingText":"$updateDateIncludingText","id":"$id","title":"$title","latestActionDate":"$latestActionDate","originChamberCode":"$originChamberCode","url":"$url"}} +{"type":"node","id":"8010","labels":["S"],"properties":{"number":"$number","updateDate":"$updateDate","originChamber":"$originChamber","node_type":"$node_type","congress":"$congress","latestActionText":"$latestActionText","updateDateIncludingText":"$updateDateIncludingText","id":"$id","latestActionDate":"$latestActionDate","title":"$title","originChamberCode":"$originChamberCode","url":"$url"}} +{"type":"node","id":"8011","labels":["S"],"properties":{"number":"$number","updateDate":"$updateDate","originChamber":"$originChamber","congress":"$congress","latestActionText":"$latestActionText","updateDateIncludingText":"$updateDateIncludingText","id":"$id","title":"$title","latestActionDate":"$latestActionDate","originChamberCode":"$originChamberCode","url":"$url"}} +{"type":"node","id":"8012","labels":["S"],"properties":{"number":"$number","updateDate":"$updateDate","originChamber":"$originChamber","congress":"$congress","latestActionText":"$latestActionText","updateDateIncludingText":"$updateDateIncludingText","title":"$title","latestActionDate":"$latestActionDate","originChamberCode":"$originChamberCode","url":"$url"}} +{"type":"node","id":"8013","labels":["S"],"properties":{"number":"$number","updateDate":"$updateDate","originChamber":"$originChamber","congress":"$congress","latestActionText":"$latestActionText","updateDateIncludingText":"$updateDateIncludingText","title":"$title","latestActionDate":"$latestActionDate","originChamberCode":"$originChamberCode","url":"$url"}} +{"type":"node","id":"8514","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 897, Agua Caliente Land Exchange Fee to Trust Confirmation Act","sponsors.0.lastName":"Carl","cboCostEstimates.0.pubDate":"2022-02-07T22:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/897/summaries?format=json","bill.relatedBills.count":2,"type":"HR","bill.summaries.count":5,"number":"897","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"sponsors.0.bioguideId":"C001054","laws.0.number":"117-329","bill.subjects.count":5,"latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/897/relatedbills?format=json","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Carl, Jerry L. [R-AL-1]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-329.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-02-07T22:05:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/897/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-560","updateDate":"2025-01-16T05:26:33Z","committees.count":2,"request.billNumber":"897","committees.url":"https://api.congress.gov/v3/bill/118/hr/897/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:14:23Z","bill.number":"897","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on December 8, 2021\n","committeeReports":[],"sponsors.0.middleName":"L.","latestAction_actionDate":"2023-01-05","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/897/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/897/summaries?format=json","cboCostEstimates.0.title":"H.R. 897, Agua Caliente Land Exchange Fee to Trust Confirmation Act","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000599?format=json","introducedDate":"2023-02-09","subjects.count":19,"bill.committees.count":2,"bill.sponsors.0.firstName":"Raul","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/897/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/897?format=json","constitutionalAuthorityStatementText":"\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARL:\nH.R. 897.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nThe bill authorizes the designation of a marine sanctuary\noff the coast of Alabama.\n[Page H827]\n","bill.sponsors.0.district":36,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/897/cosponsors?format=json","bill.textVersions.count":6,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Public Law No: 117-329.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-194","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 22 (Friday, February 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUIZ:\nH.R. 897.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8, Clauses 1 and 18 of the United States\nConstitution, to provide for the general welfare and make all\nlaws necessary and proper to carry out the powers of\nCongress.\n[Page H470]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/897/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/897/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"R000599","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on December 8, 2021\n","bill.actions.count":30,"titles.count":6,"cosponsors.count":6,"bill.laws.0.type":"Public Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/194?format=json","bill.sponsors.0.fullName":"Rep. Ruiz, Raul [D-CA-36]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/897/text?format=json","bill.updateDate":"2025-01-14T18:13:01Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/897/subjects?format=json","bill.laws.0.number":"117-329","request.congress":"118","actions.count":20,"sponsors.0.url":"https://api.congress.gov/v3/member/C001054?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/897/subjects?format=json","title":"Alabama Underwater Forest National Marine Sanctuary and Protection Act","bill.title":"Agua Caliente Land Exchange Fee to Trust Confirmation Act","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57828","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/897/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/560?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"AL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/897/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-05","sponsors.0.district":1,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-16T05:26:33Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/897/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57828","bill.sponsors.0.lastName":"Ruiz"}} +{"type":"node","id":"8515","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 7939, Student Veteran Emergency Relief Act of 2022","sponsors.0.lastName":"Carey","cboCostEstimates.0.pubDate":"2022-08-30T20:29:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Health","bill.relatedBills.count":5,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7939/summaries?format=json","type":"HR","bill.summaries.count":4,"bill.amendments.count":1,"number":"7939","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"C001126","laws.0.number":"117-333","bill.subjects.count":11,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7939/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Carey, Mike [R-OH-15]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-333.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-08-30T20:29:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7939/relatedbills?format=json","bill.congress":117,"cboCostEstimates.1.url":"https://www.cbo.gov/publication/58471","updateDate":"2024-12-19T09:05:57Z","committees.count":2,"cboCostEstimates.1.pubDate":"2022-09-13T16:29:00Z","request.billNumber":"7939","committees.url":"https://api.congress.gov/v3/bill/118/hr/7939/committees?format=json","bill.updateDateIncludingText":"2024-04-17T23:44:31Z","cboCostEstimates.1.description":"As Posted to the Website of the Clerk of the House on September 9, 2022\n","bill.number":"7939","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on July 19, 2022\n","latestAction_actionDate":"2023-01-05","summaries.count":4,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7939/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7939/summaries?format=json","cboCostEstimates.0.title":"H.R. 7939, Student Veteran Emergency Relief Act of 2022","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","bill.cboCostEstimates.1.url":"https://www.cbo.gov/publication/58471","introducedDate":"2024-04-11","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Mike","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7939/actions?format=json","bill.cboCostEstimates.1.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of H.R. 7939, the Student Veteran Emergency Relief Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7939?format=json","cboCostEstimates.1.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of H.R. 7939, the Student Veteran Emergency Relief Act of 2022","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 62 (Thursday, April 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAREY:\nH.R. 7939.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to improve\nMedicare beneficiary access to new medical technologies that\nimprove health care quality and outcomes by ensuring that\nbreakthrough devices are eligible for conditional approval\nunder the Medicare New Technology Add-On Payment (NTAP)\nProgram, enabling these medical breakthroughs to be provided\nto Medicare beneficiaries without unnecessary delay.\n[Page H2317]\n","bill.sponsors.0.district":49,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7939/cosponsors?format=json","bill.textVersions.count":6,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Public Law No: 117-333.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 95 (Friday, June 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 7939.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H5233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7939/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/7939/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7939/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"L000593","bill.cboCostEstimates.1.description":"As Posted to the Website of the Clerk of the House on September 9, 2022\n","amendments.url":"https://api.congress.gov/v3/bill/117/hr/7939/amendments?format=json","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on July 19, 2022\n","bill.actions.count":33,"titles.count":3,"cosponsors.count":4,"bill.laws.0.type":"Public Law","bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7939/text?format=json","bill.updateDate":"2024-04-17T23:44:31Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7939/subjects?format=json","bill.laws.0.number":"117-333","request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/C001126?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7939/subjects?format=json","title":"Patient Access to Innovative New Technologies Act of 2024","bill.title":"Veterans Auto and Education Improvement Act of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58371","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7939/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7939/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-06-03","sponsors.0.district":15,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-12-19T09:05:57Z","laws.0.type":"Public Law","bill.cboCostEstimates.1.pubDate":"2022-09-13T16:29:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7939/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58371","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"8516","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 680, Immigration-Relief Legislation","sponsors.0.lastName":"Sherrill","cboCostEstimates.0.pubDate":"2022-01-11T16:05:28Z","sponsors.0.isByRequest":"N","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/680/summaries?format=json","type":"HR","bill.summaries.count":4,"bill.sponsors.0.middleName":"M.","number":"680","sponsors":[],"sponsors.0.bioguideId":"S001207","laws.0.number":"117-3","bill.subjects.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/680/relatedbills?format=json","latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Rep. Sherrill, Mikie [D-NJ-11]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Private Law No: 117-3.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-01-11T16:05:28Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-237","updateDate":"2024-11-05T14:51:17Z","committees.count":1,"request.billNumber":"680","committees.url":"https://api.congress.gov/v3/bill/118/hr/680/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:55Z","bill.number":"680","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","committeeReports":[],"sponsors.0.middleName":"M.","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/680/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/680/summaries?format=json","cboCostEstimates.0.title":"H.R. 680, Immigration-Relief Legislation","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000382?format=json","introducedDate":"2023-01-31","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ann","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/680/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/680?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SHERRILL:\nH.R. 680.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1 of the Constitution of\nthe United States of America\nThe single subject of this legislation is:\nImproving Affordability\n[Page H578]\n","bill.sponsors.0.district":2,"bill.type":"HR","bill.textVersions.count":6,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Private Law No: 117-3.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-237","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 18 (Monday, February 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KUSTER:\nH.R. 680\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8, Clause 1 of the United States\nConstitution, the Taxing and Spending Clause: ``The Congress\nshall have Power To lay and collect Taxes, Duties, Imposts\nand Excises, to pay the Debts and provide for the common\nDefense and general Welfare of the United States . . .''\n[Page H263]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/680/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/680/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"K000382","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":27,"titles.count":3,"cosponsors.count":3,"bill.laws.0.type":"Private Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/237?format=json","bill.sponsors.0.fullName":"Rep. Kuster, Ann M. [D-NH-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/680/text?format=json","bill.updateDate":"2025-01-03T04:43:55Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/680/subjects?format=json","bill.laws.0.number":"117-3","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001207?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/680/subjects?format=json","title":"Tax Relief for Middle Class Families Act of 2023","bill.title":"For the relief of Arpita Kurdekar, Girish Kurdekar, and Vandana Kurdekar.","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57742","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/680/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/237?format=json","request.billType":"hr","bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/680/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-01","sponsors.0.district":11,"bill.sponsors.0.state":"NH","sponsors.0.firstName":"Mikie","updateDateIncludingText":"2024-11-05T14:51:17Z","laws.0.type":"Private Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/680/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57742","bill.sponsors.0.lastName":"Kuster"}} +{"type":"node","id":"8517","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1917, Hazard Eligibility and Local Projects Act","sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2021-05-17T20:04:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1917/summaries?format=json","type":"HR","bill.summaries.count":5,"bill.amendments.count":1,"number":"1917","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"B001302","laws.0.number":"117-332","bill.subjects.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1917/relatedbills?format=json","latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-332.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-05-17T20:04:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1917/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-170","updateDate":"2024-11-09T01:57:51Z","committees.count":1,"request.billNumber":"1917","committees.url":"https://api.congress.gov/v3/bill/118/hr/1917/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:10:36Z","bill.number":"1917","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on March 24, 2021\n","committeeReports":[],"latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1917/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1917/summaries?format=json","cboCostEstimates.0.title":"H.R. 1917, Hazard Eligibility and Local Projects Act","bill.titles.count":7,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2023-03-29","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Lizzie","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1917/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1917?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1917.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","bill.sponsors.0.district":7,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1917/cosponsors?format=json","bill.textVersions.count":7,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Public Law No: 117-332.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-170","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 49 (Tuesday, March 16, 2021)]\n[House]\n[Pages H1413-H1414]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FLETCHER:\nH.R. 1917.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United\n[[Page H1414]]\nStates, or in any Department or Officer thereof.\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1917/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1917/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1917/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"F000468","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1917/amendments?format=json","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on March 24, 2021\n","bill.actions.count":41,"titles.count":2,"cosponsors.count":4,"bill.laws.0.type":"Public Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/170?format=json","bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1917/text?format=json","bill.updateDate":"2025-01-14T19:03:55Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1917/subjects?format=json","bill.laws.0.number":"117-332","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1917/subjects?format=json","title":"To provide for a limitation on availability of funds for Library of Congress, Government Publishing Office, Salaries and Expenses for fiscal year 2024.","bill.title":"Hazard Eligibility and Local Projects Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57223","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1917/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/170?format=json","request.billType":"hr","bill.cosponsors.count":6,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1917/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-16","sponsors.0.district":5,"bill.sponsors.0.state":"TX","sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T01:57:51Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1917/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57223","bill.sponsors.0.lastName":"Fletcher"}} +{"type":"node","id":"8518","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"SMITH","cboCostEstimates.0.pubDate":"2023-03-22T14:19:00Z","sponsors.0.isByRequest":"N","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1154/summaries?format=json","bill.relatedBills.count":3,"type":"HR","bill.summaries.count":4,"bill.sponsors.0.middleName":"Donald","number":"1154","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"S000522","laws.0.number":"117-331","bill.subjects.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1154/relatedbills?format=json","latestAction.actionDate":"2023-03-28","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-331.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1154/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-104","updateDate":"2025-01-14T19:00:46Z","committees.count":3,"request.billNumber":"1154","committees.url":"https://api.congress.gov/v3/bill/118/hr/1154/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:17:36Z","bill.number":"1154","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 28, 2023\n","committeeReports":[],"sponsors.0.middleName":"H.","latestAction_actionDate":"2023-01-05","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1154/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1154/summaries?format=json","cboCostEstimates.0.title":"H.R. 1154, Stop Forced Organ Harvesting Act of 2023","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001200?format=json","introducedDate":"2023-02-24","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"A.","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1154/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1154?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 1154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H875]\n","bill.sponsors.0.district":4,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1154/cosponsors?format=json","bill.textVersions.count":6,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Public Law No: 117-331.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-104","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McEACHIN:\nH.R. 1154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1154/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1154/actions?format=json","textVersions.count":3,"bill.sponsors.0.bioguideId":"M001200","bill.actions.count":31,"titles.count":5,"cosponsors.count":12,"bill.laws.0.type":"Public Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/104?format=json","bill.sponsors.0.fullName":"Rep. McEachin, A. Donald [D-VA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1154/text?format=json","bill.updateDate":"2025-01-14T17:12:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1154/subjects?format=json","bill.laws.0.number":"117-331","request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1154/subjects?format=json","title":"Stop Forced Organ Harvesting Act of 2023","bill.title":"Great Dismal Swamp National Heritage Area Act","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59020","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1154/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/104?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1154/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-18","sponsors.0.district":4,"bill.sponsors.0.state":"VA","sponsors.0.firstName":"CHRISTOPHER","updateDateIncludingText":"2025-01-14T19:00:46Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1154/text?format=json","bill.sponsors.0.lastName":"McEachin"}} +{"type":"node","id":"8519","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Gonzalez-Colon","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1082/summaries?format=json","bill.relatedBills.count":2,"type":"HR","bill.summaries.count":5,"bill.sponsors.0.middleName":"H.","bill.amendments.count":2,"number":"1082","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"amendments.count":2,"sponsors.0.bioguideId":"G000582","laws.0.number":"117-330","bill.subjects.count":24,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1082/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rescom. González-Colón, Jenniffer [R-PR-At Large]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-330.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1082/relatedbills?format=json","bill.congress":117,"updateDate":"2024-07-24T15:23:36Z","committees.count":1,"request.billNumber":"1082","committees.url":"https://api.congress.gov/v3/bill/118/hr/1082/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","bill.number":"1082","bill.sponsors.0.isByRequest":"N","sponsors.0.middleName":"H.","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1082/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1082/summaries?format=json","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","introducedDate":"2023-02-17","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"CHRISTOPHER","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1082/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1082?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. GONZALEZ-COLON:\nH.R. 1082.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 18, Clause 18 of the U. S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution of the foregoing Powers, and all other Powers\nvested by this Constitution in the Government.of the United\nStates, or any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo amend title 10, United States Code, to extend\neligibility for certain special compensation to certain\nsurvivors of military sexual trauma.\n[Page H855]\n","bill.sponsors.0.district":4,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1082/cosponsors?format=json","bill.textVersions.count":6,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Public Law No: 117-330.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 29 (Monday, February 15, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 1082.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the US Constitution\n[Page H515]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1082/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1082/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1082/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"S000522","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1082/amendments?format=json","bill.actions.count":28,"titles.count":3,"cosponsors.count":4,"bill.laws.0.type":"Public Law","bill.sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1082/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1082/subjects?format=json","bill.laws.0.number":"117-330","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1082/subjects?format=json","title":"Military Sexual Trauma Retirement Equity Act","bill.title":"Sami's Law","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1082/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":10,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"PR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1082/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-15","sponsors.0.district":4,"bill.sponsors.0.state":"NJ","sponsors.0.firstName":"Jenniffer","updateDateIncludingText":"2024-07-24T15:23:36Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1082/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8520","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9704/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9704","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9704/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9704/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-20","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"W000788","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9704/text?format=json","bill.updateDate":"2025-01-03T08:07:38Z","updateDate":"2024-12-24T09:05:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9704/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"9704","subjects.url":"https://api.congress.gov/v3/bill/117/hr/9704/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9704/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:07:38Z","title":"Wildfire Risk Evaluation Act","bill.title":"DRIVERS Act","bill.number":"9704","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9704/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9704/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9704/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Nikema","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9704/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9704/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9704?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 146 (Thursday, September 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 9704.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nRequire an intergovernmental quadrennial review and report\nto Congress of the wildfire environment.\n[Page H5525]\n","bill.introducedDate":"2022-12-30","sponsors.0.district":2,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9704/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8521","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schiff","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9706/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9706","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9706/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9706/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9706/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-19","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-28]","bill.sponsors.0.bioguideId":"B001281","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9706/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9706/text?format=json","bill.updateDate":"2025-01-03T08:09:23Z","updateDate":"2024-12-16T19:14:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9706/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"9706","subjects.url":"https://api.congress.gov/v3/bill/117/hr/9706/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9706/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:09:23Z","title":"CARE Act","bill.title":"Ensuring Diverse Leadership Act of 2022","bill.number":"9706","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9706/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9706/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9706/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joyce","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9706/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9706/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9706?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 9706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":28,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":3,"sponsors.0.firstName":"Adam","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9706/text?format=json","bill.sponsors.0.lastName":"Beatty"}} +{"type":"node","id":"8522","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ocasio-Cortez","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9705/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9705","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9705/cosponsors?format=json","sponsors.0.bioguideId":"O000172","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9705/actions?format=json","latestAction.actionDate":"2024-09-19","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Ocasio-Cortez, Alexandria [D-NY-14]","bill.sponsors.0.bioguideId":"B001281","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9705/text?format=json","bill.updateDate":"2025-01-03T08:09:24Z","updateDate":"2024-12-16T19:14:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9705/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/O000172?format=json","request.billNumber":"9705","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9705/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9705/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:09:24Z","title":"Oyster Reef Recovery Act","bill.title":"Promoting Diverse Investment Advisers Act","bill.number":"9705","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9705/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9705/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9705/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joyce","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9705/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9705/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9705?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 9705.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":14,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":3,"sponsors.0.firstName":"Alexandria","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9705/text?format=json","bill.sponsors.0.lastName":"Beatty"}} +{"type":"node","id":"8523","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sherman","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9709/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9709","sponsors":[],"sponsors.0.bioguideId":"S000344","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9709/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9709/relatedbills?format=json","latestAction.actionDate":"2024-09-19","textVersions.count":1,"bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Sherman, Brad [D-CA-32]","bill.sponsors.0.bioguideId":"G000577","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Graves, Garret [R-LA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9709/text?format=json","bill.updateDate":"2025-01-03T08:09:24Z","updateDate":"2024-12-16T19:14:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9709/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000344?format=json","request.billNumber":"9709","committees.url":"https://api.congress.gov/v3/bill/118/hr/9709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9709/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:09:24Z","title":"8–K Trading Gap Act of 2024","bill.title":"Protecting the Safety of Air Traffic Control and the Aviation System Act","bill.number":"9709","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9709/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9709/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9709/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000577?format=json","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Garret","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9709/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9709/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9709?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Louisiana:\nH.R. 9709.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 3 and 18 of the United States\nConstitution\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":32,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9709/text?format=json","bill.sponsors.0.lastName":"Graves"}} +{"type":"node","id":"8524","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schiff","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9707/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9707","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9707/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9707/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-19","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-28]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9707/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-16T19:14:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9707/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"9707","subjects.url":"https://api.congress.gov/v3/bill/117/hr/9707/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9707/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Transnational Repression Reporting Act of 2024","bill.title":"MOM Act","bill.number":"9707","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9707/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9707/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9707/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9707/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9707/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9707?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOHMERT:\nH.R. 9707.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":28,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Adam","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9707/text?format=json","bill.sponsors.0.lastName":"Gohmert"}} +{"type":"node","id":"8525","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sewell","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9708/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9708","sponsors":[],"sponsors.0.bioguideId":"S001185","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9708/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9708/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9708/text?format=json","bill.updateDate":"2025-01-03T08:09:23Z","updateDate":"2024-12-19T09:07:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9708/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","request.billNumber":"9708","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9708/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9708/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:09:23Z","title":"Bridge to Medicaid Act of 2024","bill.title":"Fixing Administrations Unethical Corrupt Influence Act","bill.number":"9708","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9708/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-03","sponsors.0.middleName":"A.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9708/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9708/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"AL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9708/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9708/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9708?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOHMERT:\nH.R. 9708.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Terri","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:07:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9708/text?format=json","bill.sponsors.0.lastName":"Gohmert"}} +{"type":"node","id":"8526","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8487/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Van Drew","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 512.","policyArea.name":"Social Welfare","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8487/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"K.","number":"8487","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 124 (Tuesday, July 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DELBENE:\nH.R. 8487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7171]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8487/cosponsors?format=json","sponsors.0.bioguideId":"V000133","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8487/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8487/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","bill.sponsors.0.bioguideId":"D000617","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 512.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8487/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8487/text?format=json","bill.updateDate":"2025-01-03T07:56:21Z","updateDate":"2024-12-19T09:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8487/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","request.billNumber":"8487","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8487/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8487/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:21Z","title":"HEROS Act","bill.title":"Improving Seniors’ Timely Access to Care Act of 2022","bill.number":"8487","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8487/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-12-30","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8487/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8487/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","introducedDate":"2024-05-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzan","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8487/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8487/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8487?format=json","bill.introducedDate":"2022-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 88 (Tuesday, May 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 8487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo amend title II of the Social Security Act to exempt\nwidows and widowers of police officers, firefighters, and\ncorrectional officers from the government pension offset.\n[Page H3399]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jefferson","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8487/text?format=json","bill.sponsors.0.lastName":"DelBene"}} +{"type":"node","id":"8527","labels":["Bill"],"properties":{"relatedBills.count":11,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3764/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 511.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3764/summaries?format=json","bill.relatedBills.count":11,"type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"3764","bill.cosponsors.countIncludingWithdrawnCosponsors":46,"bill.committeeReports.0.citation":"H. Rept. 117-695","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 3764.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. I, sec. 8, cl. 3\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian tribes;\nU.S. Const. art. IV, sec. 3, cl. 2, sen. a\nThe Congress shall have Power to dispose of and make all\nneedful Rule and Regulations respecting the Territory of\nother Property belonging to the United States.\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3764/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":78,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3764/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3764/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"G000551","bill.originChamber":"House","bill.actions.count":30,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 511.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3764/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/695?format=json","committeeReports.0.citation":"H. Rept. 117-695","bill.sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3764/text?format=json","bill.updateDate":"2025-01-03T05:06:55Z","updateDate":"2024-11-09T04:56:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3764/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"3764","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3764/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3764/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:55Z","title":"WING Act of 2023","bill.title":"Ocean-Based Climate Solutions Act of 2022","bill.number":"3764","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3764/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/695?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3764/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3764/summaries?format=json","bill.cosponsors.count":46,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":7,"bill.sponsors.0.firstName":"Raúl","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3764/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3764/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3764?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\n[Pages H2708-H2709]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 3764.\n[[Page H2709]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo establish a Research, Development, Test, and Evaluation\nProgram to ensure the continued performance of weather radar\ndetection and prediction capabilities with physical\nobstructions in the line of sight of such radar.\n","sponsors.0.district":4,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3764/text?format=json","bill.sponsors.0.lastName":"Grijalva"}} +{"type":"node","id":"8528","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4130/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Perry","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 509.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4130/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"4130","bill.cosponsors.countIncludingWithdrawnCosponsors":36,"bill.committeeReports.0.citation":"H. Rept. 117-693","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 110 (Thursday, June 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DEUTCH:\nH.R. 4130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the United States\nConstitution; Article 1, Section 8, Clause 8 of the United\nStates Constitution; and Article 1, Section 8, Clause 18 of\nthe United States Constitution.\n[Page H3134]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4130/cosponsors?format=json","sponsors.0.bioguideId":"P000605","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4130/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4130/relatedbills?format=json","latestAction.actionDate":"2023-06-14","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","bill.sponsors.0.bioguideId":"D000610","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 509.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4130/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/693?format=json","committeeReports.0.citation":"H. Rept. 117-693","bill.sponsors.0.fullName":"Rep. Deutch, Theodore E. [D-FL-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4130/text?format=json","bill.updateDate":"2025-01-03T05:09:56Z","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4130/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","request.billNumber":"4130","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4130/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:56Z","title":"No Desire for Streetcars Act","bill.title":"American Music Fairness Act of 2022","bill.number":"4130","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4130/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/693?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4130/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4130/summaries?format=json","bill.cosponsors.count":36,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000610?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Theodore","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4130/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4130/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4130?format=json","bill.introducedDate":"2021-06-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 4130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nFederal transportation funding\n[Page H2934]\n","sponsors.0.district":10,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":22,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4130/text?format=json","bill.sponsors.0.lastName":"Deutch"}} +{"type":"node","id":"8529","labels":["Bill"],"properties":{"relatedBills.count":5,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2021/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Reported (Amended) by the Committee on Natural Resources. H. Rept. 117-687, Part I.","policyArea.name":"Health","bill.relatedBills.count":5,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2021/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"2021","bill.cosponsors.countIncludingWithdrawnCosponsors":112,"bill.committeeReports.0.citation":"H. Rept. 117-687","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 2021.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. I, sec. 8, cl. 3\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian tribes;\nU.S. Cont. art. IV, sec. 3, cl. 2, sen. a\nThe Congress shall have Power to dispose of and make all\nneedful Rule and Regulations respecting the Territory of\nother Property belonging to the United States;\n[Page H1583]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2021/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":96,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2021/actions?format=json","latestAction.actionDate":"2023-04-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2021/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"G000551","bill.originChamber":"House","bill.actions.count":18,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Reported (Amended) by the Committee on Natural Resources. H. Rept. 117-687, Part I.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2021/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/687?format=json","committeeReports.0.citation":"H. Rept. 117-687","bill.sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2021/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2021/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2021","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2021/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2021/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Public Health and Social Services Emergency Fund for fiscal year 2024.","bill.title":"Environmental Justice For All Act","bill.number":"2021","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2021/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/687?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2021/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2021/summaries?format=json","bill.cosponsors.count":112,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":6,"bill.sponsors.0.firstName":"Raúl","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2021/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2021/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2021?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2021.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1647]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2021/text?format=json","bill.sponsors.0.lastName":"Grijalva"}} +{"type":"node","id":"8530","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2780/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Perry","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 503.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2780/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"2780","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committeeReports.0.citation":"H. Rept. 117-686","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 2780.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle. IV. Section. 3. Clause 2. ``The Congress shall\nhave Power to dispose of and make all of the needful Rules\nand Regulations respecting the Territory or the Property\nbelonging to the United States; and nothing in this\nConstitution shall be so construed as to Prejudice any Claims\nof the United States, or of any particular State.''\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2780/cosponsors?format=json","sponsors.0.bioguideId":"P000605","bill.subjects.count":60,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2780/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-20","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2780/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","bill.sponsors.0.bioguideId":"G000551","bill.originChamber":"House","bill.actions.count":20,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 503.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2780/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/686?format=json","committeeReports.0.citation":"H. Rept. 117-686","bill.sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2780/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:22:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2780/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","request.billNumber":"2780","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2780/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2780/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"DPA Reform Act of 2023","bill.title":"Insular Area Climate Change Act","bill.number":"2780","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2780/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/686?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2780/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2780/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Raúl","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2780/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2780/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2780?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 2780.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nDefense production reform\n[Page H1911]\n","sponsors.0.district":10,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2780/text?format=json","bill.sponsors.0.lastName":"Grijalva"}} +{"type":"node","id":"8531","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4690, Sustaining America’s Fisheries for the Future Act of 2021","sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2022-11-14T22:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4690/summaries?format=json","bill.relatedBills.count":6,"type":"HR","bill.summaries.count":2,"number":"4690","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"sponsors.0.bioguideId":"P000048","bill.subjects.count":59,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4690/relatedbills?format=json","latestAction.actionDate":"2023-07-17","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.originChamber":"House","bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 502.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-11-14T22:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4690/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-685","updateDate":"2025-02-11T13:22:38Z","committees.count":2,"request.billNumber":"4690","committees.url":"https://api.congress.gov/v3/bill/118/hr/4690/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:52Z","bill.number":"4690","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported on September 29, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-12-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4690/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4690/summaries?format=json","cboCostEstimates.0.title":"H.R. 4690, Sustaining America’s Fisheries for the Future Act of 2021","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","introducedDate":"2023-07-17","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jared","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4690/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4690?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 4690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec 8\nThe single subject of this legislation is:\nThis bill requires DOD, State, and DNI to coordinate a\nstrategy to combat gray zone aggression.\n[Page H3641]\n","bill.sponsors.0.district":2,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4690/cosponsors?format=json","bill.textVersions.count":2,"bill.latestAction.actionDate":"2022-12-30","latestAction_text":"Placed on the Union Calendar, Calendar No. 502.","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-685","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 130 (Monday, July 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 4690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3908]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4690/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4690/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"H001068","bill.cboCostEstimates.0.description":"As ordered reported on September 29, 2022\n","bill.actions.count":15,"titles.count":3,"cosponsors.count":8,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/685?format=json","bill.sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4690/text?format=json","bill.updateDate":"2025-01-03T07:23:52Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4690/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4690/subjects?format=json","title":"Gray Zone Defense Assessment Act","bill.title":"Sustaining America’s Fisheries for the Future Act of 2022","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58767","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4690/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/685?format=json","request.billType":"hr","bill.cosponsors.count":16,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4690/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-26","sponsors.0.district":11,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-11T13:22:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4690/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58767","bill.sponsors.0.lastName":"Huffman"}} +{"type":"node","id":"8532","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Sarbanes","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 501.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8115/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":2,"sponsors.0.party":"D","number":"8115","bill.committeeReports.0.citation":"H. Rept. 117-684","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 103 (Thursday, June 16, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 8115.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 2 of Section 3 of Article IV of the U.S.\nConstitution: ``The Congress shall have power to dispose of\nand make all needful rules and regulations respecting the\nterritory or other property belonging to the United States;\nand nothing in this Constitution shall be so construed as to\nprejudice any claims of the United States, or of any\nparticular state.''\n[Page H5646]\n","sponsors.0.bioguideId":"S001168","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8115/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8115/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-26","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","bill.sponsors.0.bioguideId":"L000578","bill.originChamber":"House","bill.actions.count":13,"titles.count":2,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 501.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8115/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/684?format=json","committeeReports.0.citation":"H. Rept. 117-684","bill.sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8115/text?format=json","bill.updateDate":"2025-01-03T07:53:20Z","updateDate":"2024-08-05T18:21:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8115/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","request.billNumber":"8115","committees.url":"https://api.congress.gov/v3/bill/118/hr/8115/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8115/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:53:20Z","title":"To amend title XIX of the Social Security Act to allow for the deferral or disallowance of portions of payments for certain managed care violations under Medicaid.","bill.title":"Recreation and Public Purposes Tribal Parity Act","bill.number":"8115","bill.sponsors.0.isByRequest":"N","committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8115/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/684?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8115/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8115/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","introducedDate":"2024-04-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Doug","sponsors.0.state":"MD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8115/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8115/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8115?format=json","bill.introducedDate":"2022-06-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 71 (Tuesday, April 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 8115.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nMedicaid managed care oversight\n[Page H2628]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":1,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-08-05T18:21:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8115/text?format=json","bill.sponsors.0.lastName":"LaMalfa"}} +{"type":"node","id":"8533","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7918/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Frost","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 500.","policyArea.name":"Arts, Culture, Religion","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7918/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":2,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"7918","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committeeReports.0.citation":"H. Rept. 117-683","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 94 (Tuesday, May 31, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEATING:\nH.R. 7918.\nCongress has the power to enact this legislation pursuant\nto the following:\n[The Congress shall have Power . . . ] To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.\n[Page H5228]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7918/cosponsors?format=json","sponsors.0.bioguideId":"F000476","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7918/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7918/relatedbills?format=json","bill.policyArea.name":"Animals","sponsors.0.fullName":"Rep. Frost, Maxwell [D-FL-10]","bill.sponsors.0.bioguideId":"K000375","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 500.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7918/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/683?format=json","committeeReports.0.citation":"H. Rept. 117-683","bill.sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7918/text?format=json","bill.updateDate":"2025-01-03T07:51:44Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7918/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000476?format=json","request.billNumber":"7918","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7918/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7918/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:51:44Z","title":"CREATE Art Act","bill.title":"Sea Turtle Rescue Assistance Act of 2022","bill.number":"7918","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7918/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/683?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7918/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7918/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","introducedDate":"2024-04-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"William","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7918/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7918/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7918?format=json","bill.introducedDate":"2022-05-31","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 61 (Wednesday, April 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FROST:\nH.R. 7918.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 and 18 of the U.S.\nConstitution\nThe single subject of this legislation is:\nTo direct the Secretary of Labor to award grants to\nemerging artists to support their early development.\n[Page H2290]\n","sponsors.0.district":10,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Maxwell","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7918/text?format=json","bill.sponsors.0.lastName":"Keating"}} +{"type":"node","id":"8534","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9575/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ogles","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9575/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9575","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9575/cosponsors?format=json","sponsors.0.bioguideId":"O000175","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9575/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9575/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","bill.sponsors.0.bioguideId":"B000825","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9575/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9575/text?format=json","bill.updateDate":"2025-01-03T08:06:32Z","updateDate":"2024-11-18T16:22:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9575/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","request.billNumber":"9575","committees.url":"https://api.congress.gov/v3/bill/118/hr/9575/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9575/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:32Z","title":"Affordable Housing for Veterans Act","bill.title":"No Taxpayer Funds for Illegal Alien Abortions Act","bill.number":"9575","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9575/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9575/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9575/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"TN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9575/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9575/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9575?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 9575.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo eliminate the fees payable on home loans made or\nguaranteed by the Department of Veterans Affairs\n[Page H5231]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-11-18T16:22:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9575/text?format=json","bill.sponsors.0.lastName":"Boebert"}} +{"type":"node","id":"8535","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9590/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9590/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9590","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9590/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9590/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9590/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"M001160","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9590/text?format=json","bill.updateDate":"2025-01-03T08:06:29Z","updateDate":"2024-11-01T13:06:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9590/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"9590","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9590/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9590/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:29Z","title":"SAFE Bet Act","bill.title":"Corey Adams Searchlight Act","bill.number":"9590","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9590/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9590/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9590/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gwen","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9590/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9590/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9590?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 9590.\nCongress has the power to enact this legislation pursuant\nto the following:\n``The constitutional authority on which this bill rests is\nthe power of Congress to make rules for the government and\nregulation of the land and naval forces, as enumerated in\nArticle 1, Section 8 of the United States Constitution.''\nThe single subject of this legislation is:\nA bill to regulate and establish public health guardrails\nfor states operating sports betting programs.\n[Page H5232]\n","sponsors.0.district":20,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":4,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-11-01T13:06:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9590/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"8536","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9572/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Murphy","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9572/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9572","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9572/cosponsors?format=json","sponsors.0.bioguideId":"M001210","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9572/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9572/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Murphy, Gregory F. [R-NC-3]","bill.sponsors.0.bioguideId":"B001281","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9572/text?format=json","bill.updateDate":"2025-01-03T08:06:31Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9572/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","request.billNumber":"9572","committees.url":"https://api.congress.gov/v3/bill/118/hr/9572/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9572/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:31Z","title":"Enhanced Enforcement of Health Coverage Act","bill.title":"Analyzing Kinetic Impact Projectiles Against Americans Act","bill.number":"9572","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9572/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9572/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9572/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joyce","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9572/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9572/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9572?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY:\nH.R. 9572.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend title XXVII of the Public Health Service Act, the\nEmployee Retirement Income Security Act of 1974, and the\nInternal Revenue Code of 1986 to increase penalties for group\nhealth plans and health insurance issuers for practices that\nviolate balance billing requirements, and for other purposes.\n[Page H5231]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":3,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":3,"sponsors.0.firstName":"Gregory","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9572/text?format=json","bill.sponsors.0.lastName":"Beatty"}} +{"type":"node","id":"8537","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ross","bill.latestAction.actionDate":"2022-12-15","cboCostEstimates.0.pubDate":"2024-09-24T14:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committees on Energy and Commerce, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9580/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Became Public Law No: 118-266.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"K.","number":"9580","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9580/cosponsors?format=json","sponsors.0.bioguideId":"R000305","laws.0.number":"118-266","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9580/actions?format=json","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9580/relatedbills?format=json","latestAction.actionDate":"2025-01-04","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","bill.sponsors.0.bioguideId":"D000096","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committees on Energy and Commerce, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9580/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9580/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9580/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":23,"sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","request.billNumber":"9580","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9580/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9580/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To designate the facility of the United States Postal Service located at 2777 Brentwood Road in Raleigh, North Carolina, as the \"Millie Dunn Veasey Post Office\".","bill.title":"RISE from Trauma Act","bill.number":"9580","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60760","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9580/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-12-15","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9580/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9580/summaries?format=json","cboCostEstimates.0.title":"H.R. 9580, a bill to designate the facility of the United States Postal Service located at 2777 Brentwood Road in Raleigh, North Carolina, as the “Millie Dunn Veasey Post Office","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"DANNY","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9580/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9580/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9580?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 9580.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7\nThe single subject of this legislation is:\nDesignates the facility of the United States Postal Service\nlocated at 2777 Brentwood Road in Raleigh, North Carolina, as\nthe ``Millie Dunn Veasey Post Office''\n[Page H5231]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":7,"sponsors.0.firstName":"Deborah","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9580/text?format=json","bill.sponsors.0.lastName":"DAVIS"}} +{"type":"node","id":"8538","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9577/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Raskin","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9577/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9577","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9577/cosponsors?format=json","sponsors.0.bioguideId":"R000606","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9577/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9577/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Raskin, Jamie [D-MD-8]","bill.sponsors.0.bioguideId":"C001080","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9577/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Chu, Judy [D-CA-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9577/text?format=json","bill.updateDate":"2025-01-03T08:06:37Z","updateDate":"2024-10-26T08:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9577/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000606?format=json","request.billNumber":"9577","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9577/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9577/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:37Z","title":"STOP Suicide Act","bill.title":"Increasing Mental Health Options Act of 2022","bill.number":"9577","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9577/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9577/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9577/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Judy","sponsors.0.state":"MD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9577/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9577/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9577?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RASKIN:\nH.R. 9577.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nmental health.\n[Page H5231]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":27,"sponsors.0.firstName":"Jamie","bill.type":"HR","updateDateIncludingText":"2024-10-26T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9577/text?format=json","bill.sponsors.0.lastName":"Chu"}} +{"type":"node","id":"8539","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9604/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Graves","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9604/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9604","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9604/cosponsors?format=json","sponsors.0.bioguideId":"G000546","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9604/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9604/relatedbills?format=json","latestAction.actionDate":"2024-09-16","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Graves, Sam [R-MO-6]","bill.sponsors.0.bioguideId":"W000826","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9604/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wild, Susan [D-PA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9604/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-10-03T17:17:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9604/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000546?format=json","request.billNumber":"9604","committees.url":"https://api.congress.gov/v3/bill/118/hr/9604/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9604/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Rails to Trails Landowner Rights Act","bill.title":"Expanding Disability Access to Higher Education Act","bill.number":"9604","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9604/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9604/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9604/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000826?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Susan","sponsors.0.state":"MO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9604/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9604/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9604?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Missouri:\nH.R. 9604.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment 5 to the Constitution\nThe single subject of this legislation is:\nProtecting the rights of landowners in the transfer of\nabandoned railroad right-of-way.\n[Page H5239]\n","sponsors.0.district":6,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Sam","bill.type":"HR","updateDateIncludingText":"2024-10-03T17:17:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9604/text?format=json","bill.sponsors.0.lastName":"Wild"}} +{"type":"node","id":"8540","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9594/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Perry","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9594/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 21 - 18.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9594","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9594/cosponsors?format=json","sponsors.0.bioguideId":"P000605","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9594/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","bill.sponsors.0.bioguideId":"P000613","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9594/text?format=json","bill.updateDate":"2025-01-03T08:06:36Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9594/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","request.billNumber":"9594","subjects.url":"https://api.congress.gov/v3/bill/117/hr/9594/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9594/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:36Z","title":"Protecting Taxpayers’ Wallets Act","bill.title":"First Responders’ Care Expansion Act of 2022","bill.number":"9594","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9594/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9594/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9594/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9594/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9594/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9594?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 9594.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nRequiring labor organizations reimburse federal agencies\nfor the the use of agency resources and employee time.\n[Page H5239]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":10,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:03:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9594/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"8541","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9596/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2022-12-15","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9596/summaries?format=json","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 755.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9596","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9596/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9596/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9596/relatedbills?format=json","latestAction.actionDate":"2024-12-19","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"P000048","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9596/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"S. Rept. 118-335","bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9596/text?format=json","bill.updateDate":"2025-01-03T08:06:34Z","updateDate":"2025-02-21T22:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9596/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"9596","committees.url":"https://api.congress.gov/v3/bill/118/hr/9596/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9596/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:34Z","title":"Value Over Cost Act","bill.title":"Uyghur Human Rights Sanctions Review Act","bill.number":"9596","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on November 20, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61094","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9596/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/335?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9596/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9596/summaries?format=json","bill.cosponsors.count":9,"cboCostEstimates.0.title":"H.R. 9596, Value Over Cost Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":2,"bill.committees.count":2,"bill.sponsors.0.firstName":"August","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9596/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9596/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9596?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 9596.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nFederal Procurement\n[Page H5239]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":11,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2025-02-21T22:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9596/text?format=json","bill.sponsors.0.lastName":"Pfluger"}} +{"type":"node","id":"8542","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Graves","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9603/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9603","sponsors":[],"sponsors.0.bioguideId":"G000546","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9603/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9603/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Graves, Sam [R-MO-6]","bill.sponsors.0.bioguideId":"W000812","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9603/text?format=json","bill.updateDate":"2025-01-03T08:06:39Z","updateDate":"2024-09-27T13:14:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9603/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000546?format=json","request.billNumber":"9603","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9603/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9603/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:39Z","title":"Protecting Our Farmers from the Green New Deal Act","bill.title":"SEC Regulatory Accountability Act","bill.number":"9603","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9603/committees?format=json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9603/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9603/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ann","sponsors.0.state":"MO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9603/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9603/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9603?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Missouri:\nH.R. 9603.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment 5 to the Constitution\nThe single subject of this legislation is:\nProtecting Our Farmers from the Green New Deal\n[Page H5239]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Sam","bill.type":"HR","updateDateIncludingText":"2024-09-27T13:14:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9603/text?format=json","bill.sponsors.0.lastName":"Wagner"}} +{"type":"node","id":"8543","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9574/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9574/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9574","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9574/cosponsors?format=json","sponsors.0.bioguideId":"N000026","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9574/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9574/relatedbills?format=json","latestAction.actionDate":"2024-09-12","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"B000574","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9574/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9574/text?format=json","bill.updateDate":"2025-01-03T08:06:36Z","updateDate":"2024-09-27T20:38:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9574/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"9574","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9574/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9574/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:36Z","title":"Stop CARB Act of 2024","bill.title":"Restaurant Revitalization Tax Credit Act","bill.number":"9574","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9574/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","sponsors.0.middleName":"E.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9574/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9574/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"EARL","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9574/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9574/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9574?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 9574.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nTo amend the Clean Air Act to eliminate a waiver under that\nAct, to eliminate an authorization for States to use new\nmotor vehicle emission and new motor vehicle engine emissions\nstandard identical to standards adopted in California, and\nfor other purposes.\n[Page H5231]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":22,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":3,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-09-27T20:38:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9574/text?format=json","bill.sponsors.0.lastName":"BLUMENAUER"}} +{"type":"node","id":"8544","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9583/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9583","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9583/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9583/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9583/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9583/text?format=json","bill.updateDate":"2025-01-03T08:06:39Z","updateDate":"2024-11-18T16:24:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"9583","committees.url":"https://api.congress.gov/v3/bill/118/hr/9583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:39Z","title":"VOICE Act of 2024","bill.title":"Matthew Lawrence Perna Act of 2022","bill.number":"9583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9583/committees?format=json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9583/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9583/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9583/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9583?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 9583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill requires the Department of Veterans Affairs to\nestablish a program to promote digital citizenship and media\nliteracy among veterans by awarding grants to eligible\nentities, which include civil society organizations and\ncongressionally chartered veterans service organizations.\n[Page H5231]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-11-18T16:24:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9583/text?format=json","bill.sponsors.0.lastName":"Gohmert"}} +{"type":"node","id":"8545","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9584/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9584/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9584","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9584/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9584/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9584/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"H001067","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9584/text?format=json","bill.updateDate":"2025-01-03T08:06:31Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9584/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"9584","committees.url":"https://api.congress.gov/v3/bill/118/hr/9584/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9584/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:31Z","title":"Digital Citizenship and Media Literacy Act","bill.title":"ACCESS Act of 2022","bill.number":"9584","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9584/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9584/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9584/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Richard","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9584/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9584/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9584?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 9584.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill directs the National Telecommunications and\nInformation Administration to award grants to state and local\neducational agencies, public libraries, and qualified\nnonprofit organizations to develop and promote media literacy\nand digital citizenship education for elementary and\nsecondary school students.\n[Page H5231]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":8,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9584/text?format=json","bill.sponsors.0.lastName":"Hudson"}} +{"type":"node","id":"8546","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Comer","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, Ways and Means, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9598/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"H.","number":"9598","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9598/cosponsors?format=json","sponsors.0.bioguideId":"C001108","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9598/actions?format=json","latestAction.actionDate":"2024-12-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9598/relatedbills?format=json","textVersions.count":3,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","bill.sponsors.0.bioguideId":"S000522","bill.originChamber":"House","bill.actions.count":6,"titles.count":5,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, Ways and Means, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9598/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9598/text?format=json","bill.updateDate":"2025-01-03T08:06:40Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9598/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":16,"sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","request.billNumber":"9598","committees.url":"https://api.congress.gov/v3/bill/118/hr/9598/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9598/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:40Z","title":"Office of National Drug Control Policy Reauthorization Act of 2024","bill.title":"Taiwan Protection and National Resilience Act of 2022","bill.number":"9598","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9598/committees?format=json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9598/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9598/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":4,"bill.sponsors.0.firstName":"CHRISTOPHER","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9598/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9598/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9598?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 9598.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution, in that\nthe legislation regulates forms of commerce specified in that\nclause; and, Article I, Section 8, clause 18 of the\nConstitution, in that the legislation ``is necessary and\nproper for carrying into Execution the foregoing Powers'' and\n``other Powers vested by this Constitution in the Government\nof the United States, or in any Department or Officer\nthereof,'' including the powers of the President specified in\nArticle II of the Constitution.\nThe single subject of this legislation is:\nTo reauthorize the Office of National Drug Control Policy.\n[Page H5239]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":1,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":4,"sponsors.0.firstName":"James","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9598/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8547","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9601/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"D'Esposito","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Commerce","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9601/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"9601","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9601/cosponsors?format=json","sponsors.0.bioguideId":"D000632","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9601/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9601/relatedbills?format=json","latestAction.actionDate":"2024-09-16","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. D'Esposito, Anthony [R-NY-4]","bill.sponsors.0.bioguideId":"T000165","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9601/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9601/text?format=json","bill.updateDate":"2025-01-03T08:06:29Z","updateDate":"2024-10-12T08:05:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9601/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000632?format=json","request.billNumber":"9601","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9601/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9601/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:29Z","title":"SEAT Act of 2024","bill.title":"Justice for Murder Victims Act","bill.number":"9601","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9601/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9601/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9601/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9601/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9601/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9601?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. D'ESPOSITO:\nH.R. 9601.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo prohibit third-party restaurant reservation services\nfrom offering or arranging unauthorized reservations for food\nservice establishments, and for other purposes.\n[Page H5239]\n","sponsors.0.district":4,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":7,"sponsors.0.firstName":"Anthony","bill.type":"HR","updateDateIncludingText":"2024-10-12T08:05:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9601/text?format=json","bill.sponsors.0.lastName":"Tiffany"}} +{"type":"node","id":"8548","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9588/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9588/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9588","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9588/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9588/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"L000569","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9588/text?format=json","bill.updateDate":"2025-01-03T08:06:33Z","updateDate":"2024-12-24T09:05:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9588/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"9588","committees.url":"https://api.congress.gov/v3/bill/118/hr/9588/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9588/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:33Z","title":"Thermal Runaway Reduction Act","bill.title":"Consumer Information Notification Requirement Act","bill.number":"9588","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9588/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9588/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9588/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Blaine","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9588/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9588/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9588?format=json","bill.introducedDate":"2022-12-15","sponsors.0.district":1,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9588/text?format=json","bill.sponsors.0.lastName":"Luetkemeyer"}} +{"type":"node","id":"8549","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9579/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rose","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9579/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9579","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9579/cosponsors?format=json","sponsors.0.bioguideId":"R000612","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9579/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9579/relatedbills?format=json","latestAction.actionDate":"2024-10-08","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Rose, John W. [R-TN-6]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9579/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9579/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-05T09:05:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9579/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/R000612?format=json","request.billNumber":"9579","committees.url":"https://api.congress.gov/v3/bill/118/hr/9579/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9579/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"BRIDGE Digital Assets Act","bill.title":"Reducing Racial and Ethnic Disparities in the Juvenile Justice System Act of 2022","bill.number":"9579","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9579/committees?format=json","latestAction_actionDate":"2022-12-15","sponsors.0.middleName":"W.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9579/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9579/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9579/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9579/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9579?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSE:\nH.R. 9579.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3\nThe single subject of this legislation is:\nThis bill would create a joint advisory committee between\nthe CFTC and the SEC to harmonize digital asset regulation.\n[Page H5231]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":6,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-12-05T09:05:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9579/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"8550","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9576/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Phillips","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9576/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9576","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9576/cosponsors?format=json","sponsors.0.bioguideId":"P000616","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9576/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-12","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Phillips, Dean [D-MN-3]","bill.sponsors.0.bioguideId":"C001066","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Castor, Kathy [D-FL-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9576/text?format=json","bill.updateDate":"2025-01-03T08:06:31Z","updateDate":"2024-12-04T09:05:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9576/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000616?format=json","request.billNumber":"9576","committees.url":"https://api.congress.gov/v3/bill/118/hr/9576/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9576/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:31Z","title":"Pathways to Policing Act","bill.title":"LOWER Energy Bills Act of 2022","bill.number":"9576","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9576/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9576/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9576/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001066?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kathy","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9576/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9576/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9576?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PHILLIPS:\nH.R. 9576.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8, cl. 3 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nThis bill authorizes grants to encourage recruitment of\nstate and local law enforcement officers.\n[Page H5231]\n","sponsors.0.district":3,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":14,"sponsors.0.firstName":"Dean","bill.type":"HR","updateDateIncludingText":"2024-12-04T09:05:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9576/text?format=json","bill.sponsors.0.lastName":"Castor"}} +{"type":"node","id":"8551","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Issa","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9605/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported (Amended) by the Yeas and Nays: 16 - 9.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9605","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9605/cosponsors?format=json","sponsors.0.bioguideId":"I000056","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9605/actions?format=json","latestAction.actionDate":"2024-09-19","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Issa, Darrell [R-CA-48]","bill.sponsors.0.bioguideId":"W000816","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Williams, Roger [R-TX-25]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9605/text?format=json","bill.updateDate":"2024-02-06T19:38:08Z","updateDate":"2024-12-16T19:14:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9605/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","request.billNumber":"9605","committees.url":"https://api.congress.gov/v3/bill/118/hr/9605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9605/subjects?format=json","bill.updateDateIncludingText":"2024-02-06T19:38:08Z","title":"No Censors on our Shores Act","bill.title":"To amend the Securities Act of 1933 to expand the research report exception to include reports about any issuer that undertakes a proposed offering of public securities.","bill.number":"9605","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9605/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9605/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9605/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000816?format=json","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Roger","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9605/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9605/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9605?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 9605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.'' The Supreme\nCourt has held that Congress's power to regulate foreign\ncommerce includes the power to regulate the entry of persons\ninto the country. See Henderson v. Mayor of New York, 92 U.S.\n259, 270-71 (1876).\nThe single subject of this legislation is:\nTo provide that any foreign government official who engages\nin censorship of American speech is inadmissible and\ndeportable.\n[Page H5239]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":48,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":25,"sponsors.0.firstName":"Darrell","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9605/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8552","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sessions","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9593/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 22 - 18.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9593","sponsors":[],"sponsors.0.bioguideId":"S000250","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9593/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","bill.sponsors.0.bioguideId":"P000613","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9593/text?format=json","bill.updateDate":"2025-01-03T08:06:38Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9593/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","request.billNumber":"9593","committees.url":"https://api.congress.gov/v3/bill/118/hr/9593/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9593/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:38Z","title":"MANAGER Act","bill.title":"Everett Alvarez, Jr., Congressional Gold Medal Act of 2022","bill.number":"9593","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9593/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9593/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9593/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":2,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9593/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9593/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9593?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 9593.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo require annual surveys of Federal employee managers, and\nfor other purposes\n[Page H5239]\n","sponsors.0.district":17,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:03:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9593/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"8553","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9567/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lieu","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9567/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"9567","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9567/cosponsors?format=json","sponsors.0.bioguideId":"L000582","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9567/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9567/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","bill.sponsors.0.bioguideId":"C001114","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9567/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9567/text?format=json","bill.updateDate":"2025-01-03T08:06:31Z","updateDate":"2024-10-17T19:04:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9567/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","request.billNumber":"9567","committees.url":"https://api.congress.gov/v3/bill/118/hr/9567/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9567/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:31Z","title":"Protecting Data at the Border Act","bill.title":"Increasing Access to Dental Insurance Act","bill.number":"9567","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9567/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9567/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9567/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9567/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9567/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9567?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 9567.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nData privacy\n[Page H5231]\n","sponsors.0.district":36,"bill.sponsors.0.state":"UT","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ted","bill.type":"HR","updateDateIncludingText":"2024-10-17T19:04:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9567/text?format=json","bill.sponsors.0.lastName":"Curtis"}} +{"type":"node","id":"8554","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pettersen","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9422/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9422","sponsors":[],"sponsors.0.bioguideId":"P000620","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9422/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Pettersen, Brittany [D-CO-7]","bill.sponsors.0.bioguideId":"T000486","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9422/text?format=json","bill.updateDate":"2025-01-03T08:05:06Z","updateDate":"2024-10-07T13:27:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9422/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000620?format=json","request.billNumber":"9422","committees.url":"https://api.congress.gov/v3/bill/118/hr/9422/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9422/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:06Z","title":"Recovery Act","bill.title":"Crypto Consumer Investor Protection Act","bill.number":"9422","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9422/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9422/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9422/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9422/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9422/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9422?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PETTERSEN:\nH.R. 9422.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nHealth\n[Page H5016]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Brittany","bill.type":"HR","updateDateIncludingText":"2024-10-07T13:27:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9422/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8555","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Perez","bill.latestAction.actionDate":"2022-12-02","cboCostEstimates.0.pubDate":"2024-09-24T14:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9421/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-262.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9421","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9421/cosponsors?format=json","sponsors.0.bioguideId":"G000600","laws.0.number":"118-262","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9421/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9421/text?format=json","bill.updateDate":"2025-01-03T08:05:06Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9421/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":23,"sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","request.billNumber":"9421","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9421/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9421/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:06Z","title":"To designate the facility of the United States Postal Service located at 108 North Main Street in Bucoda, Washington, as the \"Mayor Rob Gordon Post Office\".","bill.title":"Crypto Exchange Disclosure Act","bill.number":"9421","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60758","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9421/committees?format=json","request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2022-12-02","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9421/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9421/summaries?format=json","cboCostEstimates.0.title":"H.R. 9421, a bill to designate the facility of the United States Postal Service located at 108 North Main Street in Bucoda, Washington, as the “Mayor Rob Gordon Post Office","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9421/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9421/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9421?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PEREZ:\nH.R. 9421.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7:\n[The Congress shall have Power . . .] To establish Post\nOffices and post Roads; . . .\nThe single subject of this legislation is:\n``Post offices''\n[Page H5016]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":3,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Marie","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:03:48Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9421/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8556","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norton","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9420/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on Education and the Workforce, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9420","sponsors":[],"sponsors.0.bioguideId":"N000147","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9420/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Education","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9420/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9420/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","request.billNumber":"9420","committees.url":"https://api.congress.gov/v3/bill/118/hr/9420/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9420/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Congress Leads by Example Act of 2024","bill.title":"Cybersecurity Education Task Force Act of 2022","bill.number":"9420","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9420/committees?format=json","request.format":"json","sponsors.0.middleName":"Holmes","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9420/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9420/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"DC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9420/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9420/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9420?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 9420.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nThis bill would apply to the legislative branch many of the\nlaws that protect employees in the private sector and the\nexecutive branch.\n[Page H5016]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":15,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Eleanor","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9420/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8557","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9419/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norcross","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9419/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"T.","number":"9419","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9419/cosponsors?format=json","sponsors.0.bioguideId":"N000188","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9419/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Norcross, Donald [D-NJ-1]","bill.sponsors.0.bioguideId":"S001156","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":17,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9419/text?format=json","bill.updateDate":"2025-01-03T08:05:04Z","updateDate":"2024-09-10T12:25:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9419/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000188?format=json","request.billNumber":"9419","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9419/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9419/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:04Z","title":"Peter McGuire Congressional Gold Medal Act","bill.title":"Federal Mechanical Insulation Act","bill.number":"9419","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9419/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9419/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9419/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Linda","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9419/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9419/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9419?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORCROSS:\nH.R. 9419.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo award a Congressional Gold Medal to Peter McGuire in\nrecognition of his contributions to the American Labor\nMovement.\n[Page H5016]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":38,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-09-10T12:25:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9419/text?format=json","bill.sponsors.0.lastName":"Sánchez"}} +{"type":"node","id":"8558","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gottheimer","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9415/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9415","sponsors":[],"sponsors.0.bioguideId":"G000583","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9415/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9415/text?format=json","bill.updateDate":"2025-01-03T08:05:03Z","updateDate":"2024-11-15T15:54:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9415/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","request.billNumber":"9415","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9415/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9415/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:03Z","title":"To amend title 38, United States Code, to require that domiciliary facilities of the Department of Veterans Affairs and State homes that provide housing to veterans have resident advocates.","bill.title":"SHIELD Act","bill.number":"9415","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9415/committees?format=json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9415/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9415/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9415/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9415/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9415?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 9415.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to require that\ndomiciliary facilities of the Department of Veterans Affairs\nand State homes that provide housing to veterans have\nresident advocates.\n[Page H5016]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-11-15T15:54:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9415/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8559","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gottheimer","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9416/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9416","sponsors":[],"sponsors.0.bioguideId":"G000583","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9416/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","bill.sponsors.0.bioguideId":"P000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perlmutter, Ed [D-CO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9416/text?format=json","bill.updateDate":"2024-02-07T11:39:48Z","updateDate":"2024-11-12T14:18:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9416/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","request.billNumber":"9416","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9416/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9416/committees?format=json","bill.updateDateIncludingText":"2024-02-07T11:39:48Z","title":"SAFE Act","bill.title":"To establish an allowance to provide a housing stipend for Members of the House of Representatives.","bill.number":"9416","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9416/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9416/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9416/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000593?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9416/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9416/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9416?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 9416.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nThe SAFE Act recognizes the right to assisted reproductive\ntechnology and limits liability for certain actions committed\nduring the course of providing assisted reproductive\ntechnology.\n[Page H5016]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-11-12T14:18:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9416/text?format=json","bill.sponsors.0.lastName":"Perlmutter"}} +{"type":"node","id":"8560","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nickel","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9418/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9418","sponsors":[],"sponsors.0.bioguideId":"N000194","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9418/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-27","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Nickel, Wiley [D-NC-13]","bill.sponsors.0.bioguideId":"P000593","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"bill.latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perlmutter, Ed [D-CO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9418/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-10T14:26:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9418/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000194?format=json","request.billNumber":"9418","committees.url":"https://api.congress.gov/v3/bill/118/hr/9418/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9418/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"SASS Act","bill.title":"27th Amendment Enforcement Act","bill.number":"9418","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9418/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9418/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9418/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000593?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9418/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9418/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9418?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NICKEL:\nH.R. 9418.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nEducation\n[Page H5016]\n","sponsors.0.district":13,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Wiley","bill.type":"HR","updateDateIncludingText":"2024-09-10T14:26:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9418/text?format=json","bill.sponsors.0.lastName":"Perlmutter"}} +{"type":"node","id":"8561","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9417/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9417","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9417/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9417/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"P000593","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perlmutter, Ed [D-CO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9417/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-19T09:07:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9417/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"9417","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9417/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9417/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Early Access to Screening Act","bill.title":"To amend the Legislative Reorganization Act of 1946 to tie the salaries of Members of Congress to the salaries of the judiciary.","bill.number":"9417","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9417/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9417/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9417/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000593?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9417/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9417/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9417?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 9417.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend titles XVIII and XIX of the Social Security Act\nand title XXVII of the Public Health Service Act to provide\nno-cost coverage for annual screening mammography beginning\nat 30 years of age.\n[Page H5016]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":17,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:07:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9417/text?format=json","bill.sponsors.0.lastName":"Perlmutter"}} +{"type":"node","id":"8562","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sherrill","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9409/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9409","sponsors":[],"sponsors.0.bioguideId":"S001207","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9409/actions?format=json","latestAction.actionDate":"2024-08-23","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Sherrill, Mikie [D-NJ-11]","bill.sponsors.0.bioguideId":"L000583","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9409/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-09T16:47:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9409/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001207?format=json","request.billNumber":"9409","committees.url":"https://api.congress.gov/v3/bill/118/hr/9409/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9409/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"DoD Dark Sky Stewardship Act","bill.title":"MERIT Act of 2022","bill.number":"9409","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9409/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9409/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9409/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Barry","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9409/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9409/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9409?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SHERRILL:\nH.R. 9409.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 14\nThe single subject of this legislation is:\nTo require the Secretary of Defense to conduct an audit and\nanalysis of light pollution at certain Department of Defense\nfacilities, and for other purposes.\n[Page H5006]\n","sponsors.0.district":11,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Mikie","bill.type":"HR","updateDateIncludingText":"2024-12-09T16:47:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9409/text?format=json","bill.sponsors.0.lastName":"Loudermilk"}} +{"type":"node","id":"8563","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9408/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Scanlon","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9408/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9408","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9408/cosponsors?format=json","sponsors.0.bioguideId":"S001205","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9408/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9408/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-23","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Scanlon, Mary Gay [D-PA-5]","bill.sponsors.0.bioguideId":"H001058","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9408/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9408/text?format=json","bill.updateDate":"2025-01-03T08:05:05Z","updateDate":"2024-12-17T09:05:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9408/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001205?format=json","request.billNumber":"9408","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9408/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9408/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:05Z","title":"Pedestrian Protection Act","bill.title":"Mandatory Materiality Requirement Act of 2022","bill.number":"9408","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9408/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","sponsors.0.middleName":"Gay","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9408/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9408/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9408/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9408/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9408?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCANLON:\nH.R. 9408.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo establish certain safety standards and disclose certain\ninformation relating to pedestrians and motor vehicles.\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":5,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mary","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9408/text?format=json","bill.sponsors.0.lastName":"Huizenga"}} +{"type":"node","id":"8564","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9407/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moylan","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9407/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9407","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9407/cosponsors?format=json","sponsors.0.bioguideId":"M001219","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9407/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9407/relatedbills?format=json","latestAction.actionDate":"2024-08-24","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Del. Moylan, James C. [R-GU-At Large]","bill.sponsors.0.bioguideId":"G000595","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9407/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9407/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-24T09:05:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9407/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001219?format=json","request.billNumber":"9407","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9407/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9407/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend title 49, United States Code, to except from certain requirements relating to eligibility for essential air service Guam and the Northern Mariana Islands, and for other purposes.","bill.title":"Developing America’s Workforce Act","bill.number":"9407","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9407/committees?format=json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9407/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9407/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bob","sponsors.0.state":"GU","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9407/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9407/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9407?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOYLAN:\nH.R. 9407.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the Constitution.\nThe single subject of this legislation is:\nTo amend title 49, United States Code, to except from\ncertain requirements relating to eligibility for essential\nair service Guam and the Northern Mariana Islands, and for\nother purposes.\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":5,"sponsors.0.firstName":"James","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9407/text?format=json","bill.sponsors.0.lastName":"Good"}} +{"type":"node","id":"8565","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9404/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kean","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9404/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9404","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9404/cosponsors?format=json","sponsors.0.bioguideId":"K000398","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9404/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9404/relatedbills?format=json","latestAction.actionDate":"2024-08-23","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Kean, Thomas H. [R-NJ-7]","bill.sponsors.0.bioguideId":"B001302","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9404/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9404/text?format=json","bill.updateDate":"2025-01-03T08:05:04Z","updateDate":"2024-11-15T15:52:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9404/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/K000398?format=json","request.billNumber":"9404","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9404/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9404/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:04Z","title":"Home Health Aides for Veterans’ Spouses Act","bill.title":"Protecting Our Children from the CDC Act","bill.number":"9404","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9404/committees?format=json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9404/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9404/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9404/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9404/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9404?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEAN of New Jersey:\nH.R. 9404.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to authorize the\nSecretary of Veterans Affairs to provide extended care\nservices to spouses of certain veterans.\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":7,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":5,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2024-11-15T15:52:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9404/text?format=json","bill.sponsors.0.lastName":"Biggs"}} +{"type":"node","id":"8566","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9403/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foushee","bill.latestAction.actionDate":"2022-12-02","cboCostEstimates.0.pubDate":"2024-12-18T20:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9403/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9403","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9403/cosponsors?format=json","sponsors.0.bioguideId":"F000477","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9403/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-11","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Foushee, Valerie P. [D-NC-4]","bill.sponsors.0.bioguideId":"D000623","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9403/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-18T21:20:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9403/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000477?format=json","request.billNumber":"9403","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9403/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9403/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Expanding AI Voices Act","bill.title":"Offshore Oil and Gas Worker Whistleblower Protection Act","bill.number":"9403","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on September 11, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61124","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9403/committees?format=json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9403/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9403/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 9403, Expanding AI Voices Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9403/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9403/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9403?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FOUSHEE:\nH.R. 9403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nAI Capacity Building and Research\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Valerie","bill.type":"HR","updateDateIncludingText":"2024-12-18T21:20:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9403/text?format=json","bill.sponsors.0.lastName":"DeSaulnier"}} +{"type":"node","id":"8567","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5296/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Adams","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Ms. Bonamici asked unanimous consent that she may hereafter be considered to be the first sponsor of H.R. 5296, as bill originally introduced by Representative Crist of Florida, for the purposes of adding cosponsors and requesting re-printings pursuant to clause 7 of rule XII. Agreed to without objection.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5296/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5296","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 162 (Monday, September 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRIST:\nH.R. 5296.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4556]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5296/cosponsors?format=json","sponsors.0.bioguideId":"A000370","bill.subjects.count":32,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5296/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5296/relatedbills?format=json","bill.latestAction.actionTime":"16:56:07","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Adams, Alma S. [D-NC-12]","bill.sponsors.0.bioguideId":"C001111","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"ASSUMING FIRST SPONSORSHIP - Ms. Bonamici asked unanimous consent that she may hereafter be considered to be the first sponsor of H.R. 5296, as bill originally introduced by Representative Crist of Florida, for the purposes of adding cosponsors and requesting re-printings pursuant to clause 7 of rule XII. Agreed to without objection.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5296/relatedbills?format=json","bill.congress":117,"latestAction_actionTime":"16:56:07","bill.sponsors.0.fullName":"Rep. Crist, Charlie [D-FL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5296/text?format=json","bill.updateDate":"2025-01-03T07:28:50Z","updateDate":"2024-10-12T08:05:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5296/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/A000370?format=json","request.billNumber":"5296","committees.url":"https://api.congress.gov/v3/bill/118/hr/5296/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5296/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:28:50Z","title":"Fair Credit for Farmers Act of 2023","bill.title":"Preventing HEAT Illness and Deaths Act of 2021","bill.number":"5296","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5296/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5296/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5296/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":4,"latestAction.actionTime":"16:56:07","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001111?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-08-29","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":2,"bill.sponsors.0.firstName":"Charlie","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5296/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5296/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5296?format=json","bill.introducedDate":"2021-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 140 (Tuesday, August 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ADAMS:\nH.R. 5296.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nto expand farmer borrower protections, institutional\noversight, and flexible lending terms within the USDA's Farm\nService Agency.\n[Page H4211]\n","sponsors.0.district":12,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Alma","bill.type":"HR","updateDateIncludingText":"2024-12-21T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5296/text?format=json","bill.sponsors.0.lastName":"Crist"}} +{"type":"node","id":"8568","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzales","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9368/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9368","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9368/cosponsors?format=json","sponsors.0.bioguideId":"G000594","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9368/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9368/relatedbills?format=json","latestAction.actionDate":"2024-08-16","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9368/text?format=json","bill.updateDate":"2025-01-03T08:04:44Z","updateDate":"2025-02-10T15:41:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9368/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","request.billNumber":"9368","committees.url":"https://api.congress.gov/v3/bill/118/hr/9368/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9368/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:04:44Z","title":"Border Weather Resiliency Act of 2024","bill.title":"Helping End Lifetime Penalties Act of 2022","bill.number":"9368","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9368/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9368/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9368/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-08-16","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":2,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9368/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9368/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9368?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 9368.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo require the Commissioner for U.S. Customs and Border\nProtection to assess current efforts to respond to hazardous\nweather and water events at or near United States borders\nand, to the extent such efforts may be improved, to develop a\nhazardous weather and water events preparedness and response\nstrategy, and for other purposes\n[Page H4997]\n","bill.introducedDate":"2022-11-30","sponsors.0.district":23,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2025-02-10T15:41:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9368/text?format=json","bill.sponsors.0.lastName":"Gohmert"}} +{"type":"node","id":"8569","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9366/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DeSaulnier","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9366/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9366","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9366/cosponsors?format=json","sponsors.0.bioguideId":"D000623","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9366/actions?format=json","latestAction.actionDate":"2024-08-16","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","bill.sponsors.0.bioguideId":"G000552","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9366/text?format=json","bill.updateDate":"2024-02-05T14:30:09Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9366/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","request.billNumber":"9366","committees.url":"https://api.congress.gov/v3/bill/118/hr/9366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9366/subjects?format=json","bill.updateDateIncludingText":"2024-02-05T14:30:09Z","title":"Early Childhood Mental Health Support Act","bill.title":"To amend titles III and XXI of the Public Health Service Act to hold vaccine manufacturers liable for injuries caused by vaccines subject to a public mandate, and for other purposes.","bill.number":"9366","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9366/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9366/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9366/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9366/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9366/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9366?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 9366.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Health and Human Services to\nidentify, review, and implement effective interventions in\nHead Start programs.\n[Page H4997]\n","bill.introducedDate":"2022-11-30","sponsors.0.district":10,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9366/text?format=json","bill.sponsors.0.lastName":"Gohmert"}} +{"type":"node","id":"8570","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9389/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Jackson","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9389/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9389","bill.cosponsors.countIncludingWithdrawnCosponsors":29,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9389/cosponsors?format=json","sponsors.0.bioguideId":"J000308","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9389/actions?format=json","latestAction.actionDate":"2024-08-20","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Jackson, Jeff [D-NC-14]","bill.sponsors.0.bioguideId":"J000304","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9389/text?format=json","bill.updateDate":"2022-12-29T08:48:26Z","updateDate":"2024-11-15T14:56:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9389/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000308?format=json","request.billNumber":"9389","committees.url":"https://api.congress.gov/v3/bill/118/hr/9389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9389/subjects?format=json","bill.updateDateIncludingText":"2022-12-29T08:48:26Z","title":"No Gratuities for Governing Act of 2024","bill.title":"To amend title 10, United States Code, to restrict the Secretary of Defense from paying or reimbursing expenses relating to abortion services.","bill.number":"9389","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9389/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9389/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9389/summaries?format=json","bill.cosponsors.count":29,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","introducedDate":"2024-08-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9389/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9389/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9389?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 132 (Tuesday, August 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of North Carolina:\nH.R. 9389.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIllegal bribes and gratuities for state, local, and tribal\nofficials\n[Page H5001]\n","bill.introducedDate":"2022-12-01","sponsors.0.district":14,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Jeff","bill.type":"HR","updateDateIncludingText":"2024-11-15T14:56:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9389/text?format=json","bill.sponsors.0.lastName":"Jackson"}} +{"type":"node","id":"8571","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9378/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ryan","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9378/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"C.","number":"9378","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9378/cosponsors?format=json","sponsors.0.bioguideId":"R000579","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9378/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","bill.sponsors.0.bioguideId":"B001248","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9378/text?format=json","bill.updateDate":"2025-01-03T08:04:58Z","updateDate":"2024-12-24T09:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9378/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","request.billNumber":"9378","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9378/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:04:58Z","title":"Pro-Housing Act of 2024","bill.title":"Sunshine Act of 2022","bill.number":"9378","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9378/committees?format=json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9378/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9378/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2024-08-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9378/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9378/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9378?format=json","bill.introducedDate":"2022-12-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 9378.\nArticle 1\nThe single subject of this legislation is:\nHousing\n[Page H4997]\n","sponsors.0.district":18,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"Patrick","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9378/text?format=json","bill.sponsors.0.lastName":"Burgess"}} +{"type":"node","id":"8572","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9392/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Porter","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9392/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9392","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9392/cosponsors?format=json","sponsors.0.bioguideId":"P000618","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9392/actions?format=json","latestAction.actionDate":"2024-08-20","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","bill.sponsors.0.bioguideId":"M001204","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9392/text?format=json","bill.updateDate":"2025-01-03T08:04:59Z","updateDate":"2024-10-10T12:29:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9392/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","request.billNumber":"9392","committees.url":"https://api.congress.gov/v3/bill/118/hr/9392/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9392/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:04:59Z","title":"Political Accountability and Transparency Act","bill.title":"Fairness for Rural Teaching Hospitals Act of 2022","bill.number":"9392","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9392/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9392/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9392/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9392/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9392/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9392?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 132 (Tuesday, August 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 9392.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo amend the Federal Election Campaign Act of 1971 to apply\nthe restrictions on the use of campaign funds for personal\nuse to the funds of leadership PACs and other political\ncommittees, to clarify the treatment of certain coordinated\nexpenditures as contributions to candidates, to require the\nsponsors of certain political advertisements to identify the\nsource of funds used for the\n[Page H5001]\n","bill.introducedDate":"2022-12-01","sponsors.0.district":47,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Katie","bill.type":"HR","updateDateIncludingText":"2024-10-10T12:29:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9392/text?format=json","bill.sponsors.0.lastName":"Meuser"}} +{"type":"node","id":"8573","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9383/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Banks","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9383/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Drew","number":"9383","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9383/cosponsors?format=json","sponsors.0.bioguideId":"B001299","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9383/actions?format=json","latestAction.actionDate":"2024-08-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9383/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","bill.sponsors.0.bioguideId":"F000465","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":11,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9383/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9383/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","request.billNumber":"9383","committees.url":"https://api.congress.gov/v3/bill/118/hr/9383/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9383/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"SENIOR Act","bill.title":"To designate the facility of the United States Postal Service located at 151 Highway 74 South in Peachtree City, Georgia, as the \"SFC Shawn McCloskey Post Office\".","bill.number":"9383","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9383/committees?format=json","request.format":"json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9383/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9383/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","introducedDate":"2024-08-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"A.","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9383/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9383/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9383?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 132 (Tuesday, August 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 9383.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nElderly loneliness\n[Page H5001]\n","bill.introducedDate":"2022-12-01","sponsors.0.district":3,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Jim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9383/text?format=json","bill.sponsors.0.lastName":"Ferguson"}} +{"type":"node","id":"8574","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7650/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-12-18T21:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7650/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by the Yeas and Nays: 26 - 21.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"7650","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 73 (Tuesday, May 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEATING:\nH.R. 7650.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H4714]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7650/cosponsors?format=json","sponsors.0.bioguideId":"C001103","bill.subjects.count":27,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7650/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7650/relatedbills?format=json","latestAction.actionDate":"2024-03-20","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","bill.sponsors.0.bioguideId":"K000375","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7650/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7650/text?format=json","bill.updateDate":"2025-01-03T07:49:00Z","updateDate":"2025-01-29T21:12:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7650/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","request.billNumber":"7650","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7650/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:49:00Z","title":"Air Quality Standards Implementation Act of 2024","bill.title":"International Press Freedom Act of 2022","bill.number":"7650","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 20, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61133","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7650/committees?format=json","request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7650/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7650/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 7650, Air Quality Standards Implementation Act of 2024","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","introducedDate":"2024-03-13","bill.originChamberCode":"H","subjects.count":15,"bill.committees.count":2,"bill.sponsors.0.firstName":"William","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7650/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7650/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7650?format=json","bill.introducedDate":"2022-05-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 45 (Wednesday, March 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 7650.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the Constitution of the\nUnited States which gives Congress the power to regulate\ninterstate commerce.\nThe single subject of this legislation is:\nThis bill reforms the National Ambient Air Quality\nStandards process for more efficient implementation of the\nstandards.\n[Page H1181]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Earl","bill.type":"HR","updateDateIncludingText":"2025-01-29T21:12:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7650/text?format=json","bill.sponsors.0.lastName":"Keating"}} +{"type":"node","id":"8575","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7626/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crenshaw","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-06-26T19:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7626/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 374.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"L.","number":"7626","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 70 (Thursday, April 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LAWRENCE:\nH.R. 7626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, ``To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H4609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7626/cosponsors?format=json","sponsors.0.bioguideId":"C001120","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7626/actions?format=json","latestAction.actionDate":"2024-04-10","textVersions.count":2,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","bill.sponsors.0.bioguideId":"L000581","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-451","bill.sponsors.0.fullName":"Rep. Lawrence, Brenda L. [D-MI-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7626/text?format=json","bill.updateDate":"2024-04-17T23:43:51Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7626/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","request.billNumber":"7626","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7626/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7626/committees?format=json","bill.updateDateIncludingText":"2024-04-17T23:43:51Z","title":"Affordable Air Conditioning Act","bill.title":"To direct the Attorney General to establish a pilot program to determine the effectiveness of body-worn camera continuous training programs.","bill.number":"7626","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nApril 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60459","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7626/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-11-01","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/451?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7626/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7626/summaries?format=json","bill.cosponsors.count":9,"cboCostEstimates.0.title":"H.R. 7626, Affordable Air Conditioning Act","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000581?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brenda","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7626/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7626/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7626?format=json","bill.introducedDate":"2022-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 44 (Tuesday, March 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 7626.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe power granted to Congress under Article I, Section 8 of\nthe United States Constitution.\nThe single subject of this legislation is:\nTo prohibit the Secretary of Energy from prescribing or\nenforcing energy conservation standards for room air\nconditioners that are not cost-effective or technologically\nfeasible.\n[Page H1148]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":14,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7626/text?format=json","bill.sponsors.0.lastName":"Lawrence"}} +{"type":"node","id":"8576","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7604/summaries?format=json","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H1064)","bill.summaries.count":1,"sponsors.0.party":"D","number":"7604","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 69 (Wednesday, April 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MULLIN:\nH.R. 7604.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill is based is\nCongress's power under the Commerce Clause in Article I,\nSection 8, of the Constitution and under the Constitution's\ngrant of powers to Congress under the Equal Protection, Due\nProcess, and Enforcement Clauses of the Fourteenth Amendment.\n[Page H4575]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7604/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7604/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7604/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"M001190","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Mullin, Markwayne [R-OK-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7604/text?format=json","bill.updateDate":"2025-01-03T07:48:28Z","updateDate":"2024-06-11T15:47:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7604/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"7604","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7604/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7604/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:28Z","title":"Hawaii Wildfire Disaster Unemployment Assistance Continuity Act","bill.title":"Partial Birth Abortion Is Murder Act","bill.number":"7604","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7604/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7604/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7604/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","introducedDate":"2024-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Markwayne","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7604/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7604/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7604?format=json","bill.introducedDate":"2022-04-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 42 (Friday, March 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 7604.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo provide enhanced disaster unemployment assistance to\nvictims of the Hawaii wildfires of 2023, and for other\npurposes.\n[Page H1058]\n","sponsors.0.district":2,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:47:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7604/text?format=json","bill.sponsors.0.lastName":"Mullin"}} +{"type":"node","id":"8577","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7595/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cohen","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7595/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7595","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 69 (Wednesday, April 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 7595.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the United States\nConstitution\n[Page H4575]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7595/cosponsors?format=json","sponsors.0.bioguideId":"C001068","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7595/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-09","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","bill.sponsors.0.bioguideId":"B001301","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7595/text?format=json","bill.updateDate":"2025-01-03T07:48:25Z","updateDate":"2024-07-24T15:19:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7595/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","request.billNumber":"7595","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7595/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7595/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:25Z","title":"TVA IRP Act","bill.title":"VOICE Restoration Act","bill.number":"7595","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7595/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7595/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7595/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","introducedDate":"2024-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jack","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7595/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7595/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7595?format=json","bill.introducedDate":"2022-04-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 42 (Friday, March 8, 2024)]\n[House]\n[Pages H1057-H1058]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.R. 7595.\n[[Page H1058]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTennessee Valley Authority\n","sponsors.0.district":9,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":1,"sponsors.0.firstName":"Steve","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7595/text?format=json","bill.sponsors.0.lastName":"Bergman"}} +{"type":"node","id":"8578","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7573/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schakowsky","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7573/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7573","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 68 (Tuesday, April 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. AXNE:\nH.R. 7573.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\n[Page H4510]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7573/cosponsors?format=json","sponsors.0.bioguideId":"S001145","bill.subjects.count":24,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7573/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7573/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-08","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","bill.sponsors.0.bioguideId":"A000378","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":47,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7573/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Axne, Cynthia [D-IA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7573/text?format=json","bill.updateDate":"2025-01-03T07:48:16Z","updateDate":"2024-12-21T09:05:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7573/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","request.billNumber":"7573","committees.url":"https://api.congress.gov/v3/bill/118/hr/7573/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7573/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:16Z","title":"Stop Unfair Medicaid Recoveries Act","bill.title":"Telehealth Extension and Evaluation Act","bill.number":"7573","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":47,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7573/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","sponsors.0.middleName":"D.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7573/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7573/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000378?format=json","introducedDate":"2024-03-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Cynthia","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7573/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7573/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7573?format=json","bill.introducedDate":"2022-04-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 40 (Wednesday, March 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 7573.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nTo prohibit state Medicaid programs from using estate\nrecovery to recoup the costs of benefits. States must\nwithdraw property liens within 90 days of the bill's\nenactment.\n[Page H1000]\n","sponsors.0.district":9,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Janice","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7573/text?format=json","bill.sponsors.0.lastName":"Axne"}} +{"type":"node","id":"8579","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wittman","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7558/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"HOLMES","number":"7558","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 7558.\nCongress has the power to enact this legislation pursuant\nto the following:\nclauses 17 and 18 of section 8 of article I of the\nConstitution.\n[Page H4454]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7558/cosponsors?format=json","sponsors.0.bioguideId":"W000804","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7558/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7558/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-06","bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","bill.sponsors.0.bioguideId":"N000147","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7558/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-09T15:30:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7558/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","request.billNumber":"7558","committees.url":"https://api.congress.gov/v3/bill/118/hr/7558/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7558/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Chesapeake Bay Program Reauthorization Act of 2024","bill.title":"Breastfeeding Mothers Jury Duty Exclusion Act of 2022","bill.number":"7558","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7558/committees?format=json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7558/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7558/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7558/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7558/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7558?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 7558.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nReauthorizing the Chesapeake Bay Program\n[Page H823]\n","sponsors.0.district":1,"bill.sponsors.0.state":"DC","sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2024-12-09T15:30:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7558/text?format=json","bill.sponsors.0.lastName":"NORTON"}} +{"type":"node","id":"8580","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7553/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7553/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7553","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 7553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\n[Page H4454]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7553/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7553/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"L000582","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-33]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7553/text?format=json","bill.updateDate":"2025-01-03T07:48:05Z","updateDate":"2024-07-09T18:13:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7553/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"7553","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7553/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7553/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:05Z","title":"Ensuring States Support Law Enforcement Act","bill.title":"Warrant for Metadata Act","bill.number":"7553","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7553/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7553/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7553/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7553/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7553/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7553?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 7553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill conditions Byrne JAG grants on state DMVs sharing\ninformation with the Department of Homeland Security\n[Page H823]\n","sponsors.0.district":24,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":33,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2024-07-09T18:13:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7553/text?format=json","bill.sponsors.0.lastName":"Lieu"}} +{"type":"node","id":"8581","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7550/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norton","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7550/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Butler","number":"7550","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DEMINGS:\nH.R. 7550.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\n[Page H4454]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7550/cosponsors?format=json","sponsors.0.bioguideId":"N000147","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7550/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7550/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","bill.sponsors.0.bioguideId":"D000627","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Demings, Val Butler [D-FL-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7550/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-06-11T15:47:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7550/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","request.billNumber":"7550","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7550/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7550/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Washington, DC, Area Helicopter Noise Information Exchange Act","bill.title":"Oil and Gas Industry Antitrust Act","bill.number":"7550","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7550/committees?format=json","request.format":"json","sponsors.0.middleName":"Holmes","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7550/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7550/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000627?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Val","sponsors.0.state":"DC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7550/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7550/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7550?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 7550.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nThis bill would require the Secretary of Transportation to\nestablish a mechanism to make helicopter noise complaint data\naccessible to the Federal Aviation Administration, to\nhelicopter operators operating in the Washington, D.C. area\nand to the public online.\n[Page H823]\n","sponsors.0.district":10,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":10,"sponsors.0.firstName":"Eleanor","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:47:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7550/text?format=json","bill.sponsors.0.lastName":"Demings"}} +{"type":"node","id":"8582","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7549/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mrvan","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7549/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7549","bill.cosponsors.countIncludingWithdrawnCosponsors":19,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 7549.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power . . . To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H4454]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7549/cosponsors?format=json","sponsors.0.bioguideId":"M001214","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7549/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","bill.sponsors.0.bioguideId":"C001091","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7549/text?format=json","bill.updateDate":"2025-01-03T07:48:01Z","updateDate":"2024-06-11T15:44:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7549/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","request.billNumber":"7549","committees.url":"https://api.congress.gov/v3/bill/118/hr/7549/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7549/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:01Z","title":"Gold Star Family Education Parity Act","bill.title":"Seasonal Worker Solidarity Act of 2022","bill.number":"7549","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7549/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7549/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7549/summaries?format=json","bill.cosponsors.count":19,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joaquin","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7549/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7549/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7549?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 7549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 provides Congress with the\npower to lay and collect taxes, duties, and imposts and\nexcises, to pay the debts and provide for the common defense\nand general welfare of the United States; but all duties,\nimposts and excises shall be uniform throuhgout the United\nStates\nThe single subject of this legislation is:\nThis bill would terminate Chapter 35 Survivors' and\nDependents' Education Assistance (DEA) on August 1, 2028 and\nmake survivors and dependents eligible for Chapter 33 (Post\n9/11 GI Bill) benefits\n[Page H823]\n","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":20,"sponsors.0.firstName":"Frank","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:44:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7549/text?format=json","bill.sponsors.0.lastName":"Castro"}} +{"type":"node","id":"8583","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7546/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7546/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7546","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 7546.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clauses 18 of the Constitution of the\nUnited States which states that Congress has the power ``to\nmake all laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\n[Page H4453]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7546/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7546/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7546/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"J000032","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7546/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7546/text?format=json","bill.updateDate":"2025-01-03T07:48:05Z","updateDate":"2024-12-19T09:06:17Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7546/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"7546","committees.url":"https://api.congress.gov/v3/bill/118/hr/7546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7546/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:05Z","title":"Nurse Overtime and Patient Safety Act of 2024","bill.title":"Stop Human Trafficking in School Zones Act","bill.number":"7546","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7546/committees?format=json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7546/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7546/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"SHEILA","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7546/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7546/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7546?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 7546.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nhealth care\n[Page H823]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":18,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7546/text?format=json","bill.sponsors.0.lastName":"JACKSON LEE"}} +{"type":"node","id":"8584","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7545/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7545/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7545","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 7545.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution (the\nCommerce Clause)\n[Page H4453]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7545/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7545/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7545/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"J000032","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7545/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7545/text?format=json","bill.updateDate":"2025-01-03T07:48:04Z","updateDate":"2024-07-09T22:03:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7545/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"7545","committees.url":"https://api.congress.gov/v3/bill/118/hr/7545/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7545/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:04Z","title":"To amend title XIX of the Social Security Act to include certified community behavioral health clinic services as a State plan option under the Medicaid program, and for other purposes.","bill.title":"Kimberly Vaughan Firearm Safe Storage Act","bill.number":"7545","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7545/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7545/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7545/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"SHEILA","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7545/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7545/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7545?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 7545.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 8 of article I of the Constitution\nThe single subject of this legislation is:\nhealth care\n[Page H823]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":18,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-07-09T22:03:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7545/text?format=json","bill.sponsors.0.lastName":"JACKSON LEE"}} +{"type":"node","id":"8585","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Maloy","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7544/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7544","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 65 (Monday, April 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 7544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4448]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7544/cosponsors?format=json","sponsors.0.bioguideId":"M001228","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7544/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7544/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Maloy, Celeste [R-UT-2]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7544/text?format=json","bill.updateDate":"2023-08-22T14:30:29Z","updateDate":"2024-11-12T17:11:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7544/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/M001228?format=json","request.billNumber":"7544","committees.url":"https://api.congress.gov/v3/bill/118/hr/7544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7544/subjects?format=json","bill.updateDateIncludingText":"2023-08-22T14:30:29Z","title":"Water Rights Protection Act of 2024","bill.title":"To provide a private right of action against the maker of any component of a ghost gun, and any person who facilitated a sale of the ghost gun, for injury or death resulting from the use of the ghost gun.","bill.number":"7544","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7544/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7544/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7544/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7544/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7544/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7544?format=json","bill.introducedDate":"2022-04-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALOY:\nH.R. 7544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section I\nThe single subject of this legislation is:\nTo prohibit the conditioning of any permit, lease, or other\nuse agreement on the transfer of any water right to the\nUnited States by the Secretary of the Interior and the\nSecretary of Agriculture, and for other purposes.\n[Page H823]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Celeste","bill.type":"HR","updateDateIncludingText":"2024-11-12T17:11:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7544/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8586","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7541/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Higgins","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7541/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7541","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 65 (Monday, April 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 7541.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4448]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7541/cosponsors?format=json","sponsors.0.bioguideId":"H001077","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7541/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":27,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7541/text?format=json","bill.updateDate":"2025-01-03T07:47:57Z","updateDate":"2024-07-09T18:13:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7541/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","request.billNumber":"7541","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7541/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7541/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:57Z","title":"United Houma Recognition Act of 2024","bill.title":"STOP Violence Act of 2022","bill.number":"7541","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":27,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7541/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7541/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7541/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"LA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7541/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7541/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7541?format=json","bill.introducedDate":"2022-04-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 7541.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''\nThe single subject of this legislation is:\nTo extend Federal recognition to the United Houma Nation,\nand for other purposes.\n[Page H822]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Clay","bill.type":"HR","updateDateIncludingText":"2024-07-09T18:13:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7541/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8587","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7533/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-09-05T19:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7533/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 737.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7533","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 65 (Monday, April 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESCOBAR:\nH.R. 7533.\nCongress has the power to enact this legislation pursuant\nto the following:\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H4448]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7533/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7533/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7533/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"E000299","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-902","bill.sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7533/text?format=json","bill.updateDate":"2023-08-25T12:45:21Z","updateDate":"2025-03-12T19:26:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7533/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"7533","committees.url":"https://api.congress.gov/v3/bill/118/hr/7533/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7533/subjects?format=json","bill.updateDateIncludingText":"2023-08-25T12:45:21Z","title":"Modernizing Retrospective Regulatory Review Act","bill.title":"To amend the Victims of Crime Act of 1984 to provide that recipients of crime victim assistance grants shall prioritize programs that provide assistance to victims of firearm violence or the family members of victims of homicide, and for other purposes.","bill.number":"7533","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on March 7, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60689","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7533/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/902?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7533/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7533/summaries?format=json","bill.cosponsors.count":17,"cboCostEstimates.0.title":"H.R. 7533, Modernizing Retrospective Regulatory Review Act","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Veronica","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7533/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7533/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7533?format=json","bill.introducedDate":"2022-04-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 7533.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to improve retrospective\nreviews of Federal regulations.\n[Page H822]\n","sponsors.0.district":5,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":16,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-03-12T19:26:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7533/text?format=json","bill.sponsors.0.lastName":"Escobar"}} +{"type":"node","id":"8588","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luetkemeyer","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7531/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Luis","number":"7531","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CORREA:\nH.R. 7531.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H4445]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7531/cosponsors?format=json","sponsors.0.bioguideId":"L000569","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7531/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7531/relatedbills?format=json","bill.policyArea.name":"Private Legislation","sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","bill.sponsors.0.bioguideId":"C001110","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Correa, J. Luis [D-CA-46]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7531/text?format=json","bill.updateDate":"2023-07-07T17:00:24Z","updateDate":"2024-10-08T13:59:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7531/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","request.billNumber":"7531","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7531/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7531/committees?format=json","bill.updateDateIncludingText":"2023-07-07T17:00:24Z","title":"Secure Payments Act of 2024","bill.title":"For the relief of Michael Ragas Rey.","bill.number":"7531","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7531/committees?format=json","request.format":"json","sponsors.0.middleName":"Luis","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7531/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7531/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001110?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"J.","sponsors.0.state":"MO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7531/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7531/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7531?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUETKEMEYER:\nH.R. 7531.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the Board of Governors of the Federal Reserve\nSystem to study the impacts of the Board's Reg II proposed\nrule, to complete a quantitative impact analysis of such\nrule, and to consider the results of such study and analysis\nbefore finalizing such rule, and for other purposes.\n[Page H822]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":46,"sponsors.0.firstName":"Blaine","bill.type":"HR","updateDateIncludingText":"2024-10-08T13:59:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7531/text?format=json","bill.sponsors.0.lastName":"Correa"}} +{"type":"node","id":"8589","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7513/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fischbach","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-06-26T18:15:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7513/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 769.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"7513","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 7513.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, and\nArticle I, Section 8, Clause 3, and\nArticle I, Section 8, Clause 1.\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7513/cosponsors?format=json","sponsors.0.bioguideId":"F000470","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7513/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7513/relatedbills?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":2,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","bill.sponsors.0.bioguideId":"J000295","bill.originChamber":"House","bill.actions.count":10,"titles.count":4,"cosponsors.count":37,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7513/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-745","bill.sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7513/text?format=json","bill.updateDate":"2025-01-03T07:47:51Z","updateDate":"2024-12-31T01:38:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7513/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","request.billNumber":"7513","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7513/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7513/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:51Z","title":"Protecting American Seniors’ Access to Care Act","bill.title":"PREPARE Act of 2022","bill.number":"7513","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Ways and Means on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60467","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7513/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/745?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7513/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7513/summaries?format=json","bill.cosponsors.count":6,"cboCostEstimates.0.title":"Estimated Direct Spending Effects of H.R. 7513","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","introducedDate":"2024-03-01","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":5,"bill.sponsors.0.firstName":"David","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7513/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7513/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7513?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 7513.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt I, Sec 8\nThe single subject of this legislation is:\nA bill related to the proposed rule entitled ``Medicare\nPrograms: Minimum Staffing Standards for Long-Term Care\nFacilities and Medicaid Institutional Payment Transparency\nReporting.''\n[Page H781]\n","sponsors.0.district":7,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":14,"sponsors.0.firstName":"Michelle","bill.type":"HR","updateDateIncludingText":"2024-12-31T01:48:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7513/text?format=json","bill.sponsors.0.lastName":"Joyce"}} +{"type":"node","id":"8590","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7510/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Velázquez","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7510/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7510","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 7510.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7510/cosponsors?format=json","sponsors.0.bioguideId":"V000081","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7510/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7510/relatedbills?format=json","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Velázquez, Nydia M. [D-NY-7]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7510/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7510/text?format=json","bill.updateDate":"2025-01-03T07:47:47Z","updateDate":"2024-10-04T15:08:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7510/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","request.billNumber":"7510","committees.url":"https://api.congress.gov/v3/bill/118/hr/7510/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7510/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:47Z","title":"Survivor Financial Safety and Inclusion Working Group Act","bill.title":"National Education Association Charter Repeal Act","bill.number":"7510","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7510/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7510/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7510/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7510/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7510/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7510?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 7510.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power . . . To regulate Commerce\nwith Foreign Nations, and among the several states, and with\nthe Indian Tribes.\nThe single subject of this legislation is:\nThis bill establishes an interagency working group amongst\nthe financial regulators and task them with collecting data\non the impacts of economic abuse of survivors carried out\nthrough regulated financial institutions. The working group\nwould also provide recommendations on how Congress and\nfederal regulators can help financial institutions improve\nexisting products and services and launch new ones to meet\nsurvivors' financial and safety needs\n[Page H774]\n","sponsors.0.district":7,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Nydia","bill.type":"HR","updateDateIncludingText":"2024-10-04T15:08:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7510/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}} +{"type":"node","id":"8591","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7507/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smith","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-09-24T14:29:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7507/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-241.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7507","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAWTHORN:\nH.R. 7507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7507/cosponsors?format=json","sponsors.0.bioguideId":"S001172","laws.0.number":"118-241","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7507/actions?format=json","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7507/relatedbills?format=json","latestAction.actionDate":"2025-01-04","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","bill.sponsors.0.bioguideId":"C001104","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cawthorn, Madison [R-NC-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7507/text?format=json","bill.updateDate":"2025-01-03T07:47:47Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7507/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":24,"sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","request.billNumber":"7507","committees.url":"https://api.congress.gov/v3/bill/118/hr/7507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7507/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:47Z","title":"To designate the facility of the United States Postal Service located at 203 East 6th Street in Lexington, Nebraska, as the ‘William E. and Elsie L. Barrett Post Office Building.","bill.title":"REFORM Act of 2022","bill.number":"7507","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60743","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7507/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7507/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7507/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 7507, a bill to designate the facility of the United States Postal Service located at 203 East 6th Street in Lexington, Nebraska, as the “William E. And Elsie L. Barrett Post Office Building","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001104?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madison","sponsors.0.state":"NE","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7507/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7507/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7507?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.R. 7507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7 of the United States\nConstitution: ``Congress shall have the power . . . to\nestablish post offices and post roads.''\nThe single subject of this legislation is:\nTo designate the Post Office located at 203 East 6th Street\nin Lexington, Nebraska, as the ``Bill Barrett Post Office\nBuilding''\n[Page H773]\n","sponsors.0.district":3,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":11,"sponsors.0.firstName":"Adrian","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:11Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7507/text?format=json","bill.sponsors.0.lastName":"Cawthorn"}} +{"type":"node","id":"8592","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7499/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lieu","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7499/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on Ways and Means, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7499","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 7499.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article 1, Section 8, Clause 18 of the Contitution.\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7499/cosponsors?format=json","sponsors.0.bioguideId":"L000582","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7499/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7499/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","bill.sponsors.0.bioguideId":"K000397","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Young [R-CA-39]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7499/text?format=json","bill.updateDate":"2025-01-03T07:47:53Z","updateDate":"2024-07-24T15:19:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7499/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","request.billNumber":"7499","committees.url":"https://api.congress.gov/v3/bill/118/hr/7499/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7499/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:53Z","title":"Empower Act of 2024","bill.title":"Improving Federal Investigations of Organized Retail Crime Act of 2022","bill.number":"7499","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7499/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7499/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7499/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Young","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7499/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7499/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7499?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 7499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nCampaign Finance\n[Page H773]\n","sponsors.0.district":36,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":39,"sponsors.0.firstName":"Ted","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7499/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8593","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7494/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Green","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7494/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7494","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 63 (Monday, April 11, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 7494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4438]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7494/cosponsors?format=json","sponsors.0.bioguideId":"G000590","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7494/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7494/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Green, Mark E. [R-TN-7]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":35,"bill.latestAction.text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7494/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7494/text?format=json","bill.updateDate":"2025-01-03T07:47:44Z","updateDate":"2024-10-04T14:59:10Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7494/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000590?format=json","request.billNumber":"7494","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7494/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7494/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:44Z","title":"Protect America’s Lands Act","bill.title":"Bankruptcy Threshold Adjustment and Technical Corrections Act","bill.number":"7494","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7494/committees?format=json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7494/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7494/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7494/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7494/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7494?format=json","bill.introducedDate":"2022-04-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GREEN of Tennessee:\nH.R. 7494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution.\nThe single subject of this legislation is:\nThis bill will stop the SEC from implementing the proposed\nrule or future similar rules that would allow Natural Asset\nCompanies to list their assets on the NYSE or any other\nsecurities exchange.\n[Page H773]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2024-10-04T14:59:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7494/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8594","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6536/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Soto","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6536/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6536","bill.cosponsors.countIncludingWithdrawnCosponsors":31,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 20 (Tuesday, February 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 6536.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment XIII states ``Neither slavery nor involuntary\nservitude, except as a punishment for crime whereof the party\nshall have been duly convicted, shall exist within the United\nStates, or any place subject to their jurisdiction. Congress\nshall have power to enforce this article by appropriate\nlegislation.''\nClause 3 of Section 8 of Article I grants that grants that\nCongress shall ``regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes;''\n[Page H331]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6536/cosponsors?format=json","sponsors.0.bioguideId":"S001200","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6536/actions?format=json","latestAction.actionDate":"2023-12-01","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6536/text?format=json","bill.updateDate":"2025-01-03T07:39:52Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6536/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","request.billNumber":"6536","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6536/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6536/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:52Z","title":"REBATE Act","bill.title":"Stopping Traffickers and Their Accomplices Act of 2022","bill.number":"6536","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6536/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6536/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6536/summaries?format=json","bill.cosponsors.count":31,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2023-11-30","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6536/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6536/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6536?format=json","bill.introducedDate":"2022-02-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 20 (Tuesday, February 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 6536.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment XIII states ``Neither slavery nor involuntary\nservitude, except as a punishment for crime whereof the party\nshall have been duly convicted, shall exist within the United\nStates, or any place subject to their jurisdiction. Congress\nshall have power to enforce this article by appropriate\nlegislation.''\nClause 3 of Section 8 of Article I grants that grants that\nCongress shall ``regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes;''\n[Page H331]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Darren","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6536/text?format=json","bill.sponsors.0.lastName":"Budd"}} +{"type":"node","id":"8595","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6522/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hinson","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6522/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6522","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 18 (Friday, January 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6522.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution Article I, Section 9, Clause 7\n[Page H308]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6522/cosponsors?format=json","sponsors.0.bioguideId":"H001091","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6522/actions?format=json","latestAction.actionDate":"2023-11-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6522/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-2]","bill.sponsors.0.bioguideId":"H001091","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":37,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6522/text?format=json","bill.updateDate":"2025-01-03T07:39:33Z","updateDate":"2024-07-24T15:19:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6522/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","request.billNumber":"6522","committees.url":"https://api.congress.gov/v3/bill/118/hr/6522/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6522/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:33Z","title":"PRINTS Act","bill.title":"Stop the Betrayal Act of 2022","bill.number":"6522","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":37,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6522/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6522/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6522/summaries?format=json","bill.cosponsors.count":38,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-30","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ashley","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6522/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6522/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6522?format=json","bill.introducedDate":"2022-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 197 (Thursday, November 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6522.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nAllows DHS and Customs and Border Protection the authority\nto fingerprint non-citzens under the age of 14 in order to\ncombat trafficking and child recycling, and criminalizes\nchild recycling.\n[Page H6050]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Ashley","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6522/text?format=json","bill.sponsors.0.lastName":"Hinson"}} +{"type":"node","id":"8596","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6501/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6501/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F.","number":"6501","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. NAPOLITANO:\nH.R. 6501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6501/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6501/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6501/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"N000179","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Napolitano, Grace F. [D-CA-32]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6501/text?format=json","bill.updateDate":"2025-01-03T07:39:23Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6501/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"6501","committees.url":"https://api.congress.gov/v3/bill/118/hr/6501/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6501/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:23Z","title":"Snap Back Inaccurate SNAP Payments Act","bill.title":"To amend the Immigration and Nationality Act to extend honorary citizenship to otherwise qualified noncitizens who enlisted in the Philippines and died while serving on active duty with the United States Armed Forces during certain periods of hostilities, and for other purposes.","bill.number":"6501","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6501/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6501/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6501/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000179?format=json","introducedDate":"2023-11-29","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"GRACE","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6501/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6501/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6501?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 196 (Wednesday, November 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 6501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo improve the calculation and reduce the taxpayer cost of\npayment errors under the Supplemental Nutrition Assistance\nProgram\n[Page H5983]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":32,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6501/text?format=json","bill.sponsors.0.lastName":"NAPOLITANO"}} +{"type":"node","id":"8597","labels":["Bill"],"properties":{"relatedBills.count":8,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6492/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Westerman","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6492/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-234.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6492","bill.cosponsors.countIncludingWithdrawnCosponsors":40,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 6492.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6492/cosponsors?format=json","sponsors.0.bioguideId":"W000821","laws.0.number":"118-234","bill.subjects.count":39,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6492/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2025-01-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6492/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","bill.sponsors.0.bioguideId":"J000298","bill.originChamber":"House","bill.actions.count":21,"titles.count":12,"cosponsors.count":51,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6492/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-441","bill.sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6492/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6492/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":35,"sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","request.billNumber":"6492","committees.url":"https://api.congress.gov/v3/bill/118/hr/6492/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6492/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"EXPLORE Act","bill.title":"Climate Resilience Workforce Act","bill.number":"6492","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":51,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6492/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/441?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6492/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6492/summaries?format=json","bill.cosponsors.count":40,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","introducedDate":"2023-11-29","bill.originChamberCode":"H","subjects.count":28,"bill.committees.count":9,"bill.sponsors.0.firstName":"Pramila","sponsors.0.state":"AR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6492/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6492/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6492?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 196 (Wednesday, November 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 6492.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the U.S. Constitution\nThe single subject of this legislation is:\nTo improve recreation opportunities on, and facilitate\ngreater access to, Federal public land.\n[Page H5983]\n","sponsors.0.district":4,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Bruce","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6492/text?format=json","bill.sponsors.0.lastName":"Jayapal"}} +{"type":"node","id":"8598","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6486/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McGarvey","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6486/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6486","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIBBS:\nH.R. 6486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, that grants Congress the\npower to make all laws necessary and proper for carrying out\nthe powers vested by Congress in the Constitution of the\nUnited States or in any department or officer thereof.\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6486/cosponsors?format=json","sponsors.0.bioguideId":"M001220","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6486/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6486/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. McGarvey, Morgan [D-KY-3]","bill.sponsors.0.bioguideId":"G000563","bill.actions.count":6,"bill.originChamber":"House","titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gibbs, Bob [R-OH-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6486/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-23T08:05:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6486/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001220?format=json","request.billNumber":"6486","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6486/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6486/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Supporting Community Lenders Act","bill.title":"Transparency in Government Officials Trading Act","bill.number":"6486","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6486/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6486/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6486/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000563?format=json","introducedDate":"2023-11-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Bob","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6486/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6486/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6486?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 195 (Tuesday, November 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGARVEY:\nH.R. 6486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nSmall Business\n[Page H5937]\n","sponsors.0.district":3,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":7,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-10-23T08:05:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6486/text?format=json","bill.sponsors.0.lastName":"Gibbs"}} +{"type":"node","id":"8599","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kamlager-Dove","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6484/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6484","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 6484.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6484/cosponsors?format=json","sponsors.0.bioguideId":"K000400","bill.subjects.count":22,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6484/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6484/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","bill.sponsors.0.bioguideId":"G000579","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","cosponsors.count":5,"request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6484/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6484/text?format=json","bill.updateDate":"2025-01-03T07:39:32Z","updateDate":"2024-06-27T08:05:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6484/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","request.billNumber":"6484","committees.url":"https://api.congress.gov/v3/bill/118/hr/6484/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6484/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:32Z","title":"Expanded Coverage for Former Foster Youth Act","bill.title":"STAND with Taiwan Act of 2022","bill.number":"6484","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6484/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6484/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6484/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-28","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":5,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6484/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6484/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6484?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 195 (Tuesday, November 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 6484.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 CI.\n1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1Sec. 8CI. 18). Further,\nthis statement of constitutional authority is made for the\nsole purpose of compliance with clause 7 of Rule XII of the\nRules of the House of\nThe single subject of this legislation is:\nto expand Medicaid eligibility for our nation's foster\nyouth\n[Page H5937]\n","sponsors.0.district":37,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Sydney","bill.type":"HR","updateDateIncludingText":"2024-06-27T08:05:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6484/text?format=json","bill.sponsors.0.lastName":"Gallagher"}} +{"type":"node","id":"8600","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6482/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fulcher","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Energy","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6482/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 678.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6482","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 6482.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8; Clause 1 of the Constitution states\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. .\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6482/cosponsors?format=json","sponsors.0.bioguideId":"F000469","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6482/actions?format=json","latestAction.actionDate":"2024-12-10","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6482/relatedbills?format=json","textVersions.count":2,"bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","bill.sponsors.0.bioguideId":"C001090","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6482/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-831","bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6482/text?format=json","bill.updateDate":"2025-01-03T07:39:23Z","updateDate":"2025-01-26T21:26:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6482/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","request.billNumber":"6482","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6482/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6482/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:23Z","title":"Enhancing Geothermal Production on Federal Lands Act","bill.title":"Camp Lejeune Justice Act of 2022","bill.number":"6482","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6482/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/831?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6482/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6482/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2023-11-28","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"ID","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6482/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6482/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6482?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 6482.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8; Clause 1 of the Constitution states\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. .\n[Page H302]\n","sponsors.0.district":1,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Russ","bill.type":"HR","updateDateIncludingText":"2025-01-26T21:26:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6482/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"8601","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6480/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Vasquez","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6480/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6480","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAMMACK:\nH.R. 6480.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6480/cosponsors?format=json","sponsors.0.bioguideId":"V000136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6480/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-24","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Vasquez, Gabe [D-NM-2]","bill.sponsors.0.bioguideId":"C001039","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6480/text?format=json","bill.updateDate":"2025-01-03T07:39:23Z","updateDate":"2024-07-24T15:19:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6480/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000136?format=json","request.billNumber":"6480","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6480/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6480/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:23Z","title":"Strengthening Our Workforce Act of 2023","bill.title":"Human Trafficking Awareness Training Act","bill.number":"6480","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6480/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6480/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6480/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","introducedDate":"2023-11-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kat","sponsors.0.state":"NM","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6480/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6480/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6480?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 193 (Friday, November 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VASQUEZ:\nH.R. 6480.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, Clauses 1 and 18 of the United States\nConstitution, to provide for the general welfare and make all\nlaws necessary and proper to carry out the powers of the\nCongress.\nThe single subject of this legislation is:\nImmigration Reform\n[Page H5906]\n","sponsors.0.district":2,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":3,"sponsors.0.firstName":"Gabe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6480/text?format=json","bill.sponsors.0.lastName":"Cammack"}} +{"type":"node","id":"8602","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6479/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steube","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6479/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6479","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BASS:\nH.R. 6479.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1 of the United States Constitution,\nproviding--``All legislative Powers herein granted shall be\nvested in a Congress of the United States, which shall\nconsist of a Senate and House of Representatives.''\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6479/cosponsors?format=json","sponsors.0.bioguideId":"S001214","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6479/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6479/relatedbills?format=json","latestAction.actionDate":"2023-11-24","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.sponsors.0.bioguideId":"B001270","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6479/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bass, Karen [D-CA-37]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6479/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-09-13T08:05:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6479/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","request.billNumber":"6479","committees.url":"https://api.congress.gov/v3/bill/118/hr/6479/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6479/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To limit the availability of a plea deal for any person responsible for the terrorist attacks on September 11, 2001.","bill.title":"Put Trafficking Victims First Act of 2021","bill.number":"6479","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6479/committees?format=json","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6479/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6479/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001270?format=json","introducedDate":"2023-11-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Karen","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6479/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6479/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6479?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 193 (Friday, November 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 6479.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo limit the availability of a plea deal for any person\nresponsible for the terrorist attacks on September 11, 2001.\n[Page H5906]\n","sponsors.0.district":17,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":37,"sponsors.0.firstName":"W.","bill.type":"HR","updateDateIncludingText":"2024-09-13T08:05:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6479/text?format=json","bill.sponsors.0.lastName":"Bass"}} +{"type":"node","id":"8603","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6472/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smucker","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6472/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"6472","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 14 (Friday, January 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.R. 6472.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\n[Page H295]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6472/cosponsors?format=json","sponsors.0.bioguideId":"S001199","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6472/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-21","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","bill.sponsors.0.bioguideId":"M001206","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Morelle, Joseph D. [D-NY-25]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6472/text?format=json","bill.updateDate":"2025-01-16T12:12:20Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6472/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","request.billNumber":"6472","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6472/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6472/committees?format=json","bill.updateDateIncludingText":"2025-01-16T12:12:20Z","title":"Workforce Reentry Act","bill.title":"Courtroom Videoconferencing Act of 2022","bill.number":"6472","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6472/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6472/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6472/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001206?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-11-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joseph","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6472/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6472/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6472?format=json","bill.introducedDate":"2022-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 192 (Tuesday, November 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 6472.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article I, Section VIII of the U.S. Constitution.\nThe single subject of this legislation is:\nThis bill amends the Workforce Innovation and Opportunity\nAct to codify a grant program to promote and assist in the\nreentry of justice-involved individuals into the workforce.\n[Page H5903]\n","sponsors.0.district":11,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":25,"sponsors.0.firstName":"Lloyd","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6472/text?format=json","bill.sponsors.0.lastName":"Morelle"}} +{"type":"node","id":"8604","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6470/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pocan","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6470/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"W.","number":"6470","bill.cosponsors.countIncludingWithdrawnCosponsors":34,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 14 (Friday, January 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEEKS:\nH.R. 6470.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\n[Page H295]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6470/cosponsors?format=json","sponsors.0.bioguideId":"P000607","bill.subjects.count":49,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6470/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6470/relatedbills?format=json","latestAction.actionDate":"2023-12-15","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Pocan, Mark [D-WI-2]","bill.sponsors.0.bioguideId":"M001137","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":53,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6470/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meeks, Gregory W. [D-NY-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6470/text?format=json","bill.updateDate":"2025-01-03T07:39:22Z","updateDate":"2024-06-15T08:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6470/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/P000607?format=json","request.billNumber":"6470","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6470/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6470/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:22Z","title":"Restore Honor to Service Members Act of 2023","bill.title":"Defending Ukraine Sovereignty Act of 2022","bill.number":"6470","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":53,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6470/committees?format=json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6470/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6470/summaries?format=json","bill.cosponsors.count":34,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001137?format=json","introducedDate":"2023-11-21","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":5,"bill.sponsors.0.firstName":"GREGORY","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6470/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6470/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6470?format=json","bill.introducedDate":"2022-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 192 (Tuesday, November 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POCAN:\nH.R. 6470.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nVeterans Benefits\n[Page H5903]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":5,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2024-06-15T08:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6470/text?format=json","bill.sponsors.0.lastName":"MEEKS"}} +{"type":"node","id":"8605","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Perez","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Agriculture and Food","type":"HR","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6469/summaries?format=json","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6469","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 14 (Friday, January 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HERRERA BEUTLER:\nH.R. 6469.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H295]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6469/cosponsors?format=json","sponsors.0.bioguideId":"G000600","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6469/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6469/relatedbills?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","bill.sponsors.0.bioguideId":"H001056","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Herrera Beutler, Jaime [R-WA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6469/text?format=json","bill.updateDate":"2025-01-03T07:39:21Z","updateDate":"2024-07-15T16:21:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6469/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","request.billNumber":"6469","committees.url":"https://api.congress.gov/v3/bill/118/hr/6469/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6469/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:21Z","title":"Farmland Security Act of 2023","bill.title":"Refund the Police Act of 2022","bill.number":"6469","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6469/committees?format=json","request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6469/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6469/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001056?format=json","introducedDate":"2023-11-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jaime","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6469/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6469/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6469?format=json","bill.introducedDate":"2022-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 192 (Tuesday, November 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PEREZ:\nH.R. 6469.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the US Constitution\nThe single subject of this legislation is:\nfarmland ownership\n[Page H5903]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Marie","bill.type":"HR","updateDateIncludingText":"2024-07-15T16:21:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6469/text?format=json","bill.sponsors.0.lastName":"Herrera Beutler"}} +{"type":"node","id":"8606","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6465/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hudson","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6465/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6465","bill.cosponsors.countIncludingWithdrawnCosponsors":30,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 13 (Thursday, January 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 6465.\nCongress has the power to enact this legislation pursuant\nto the following:\n(1) section 8 of article I, to make all laws necessary and\nproper for carrying into execution the powers vested by the\nConstitution of the United States, including the power to\nregulate commerce under clause 3 of such section; and (2)\nsection 5 of the 14th Amendment, including the power to\nenforce the prohibition on government action denying equal\nprotection of the laws\n[Page H290]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6465/cosponsors?format=json","sponsors.0.bioguideId":"H001067","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6465/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6465/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-9]","bill.sponsors.0.bioguideId":"W000812","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6465/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6465/text?format=json","bill.updateDate":"2025-01-03T07:39:11Z","updateDate":"2024-12-19T09:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6465/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","request.billNumber":"6465","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6465/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6465/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:11Z","title":"PLASMA Act","bill.title":"PRENDA Act of 2022","bill.number":"6465","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6465/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6465/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6465/summaries?format=json","bill.cosponsors.count":30,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-21","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ann","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6465/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6465/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6465?format=json","bill.introducedDate":"2022-01-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 192 (Tuesday, November 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 6465.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nhealth\n[Page H5903]\n","sponsors.0.district":9,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Richard","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6465/text?format=json","bill.sponsors.0.lastName":"Wagner"}} +{"type":"node","id":"8607","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steube","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6440/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6440","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 13 (Thursday, January 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.R. 6440.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 1 of section 8 of article 1 of the U.S.\nConstitution.\n[Page H289]\n","sponsors.0.bioguideId":"S001214","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6440/actions?format=json","latestAction.actionDate":"2023-11-15","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.sponsors.0.bioguideId":"C001068","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6440/text?format=json","bill.updateDate":"2025-01-03T07:39:18Z","updateDate":"2024-07-24T15:19:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6440/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","request.billNumber":"6440","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6440/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6440/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:18Z","title":"To amend the Internal Revenue Code of 1986 for purposes of the tax on private foundation excess business holdings to treat as outstanding any employee-owned stock purchased by a business enterprise pursuant to certain employee stock ownership retirement plans.","bill.title":"Safer Streets Act of 2022","bill.number":"6440","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6440/committees?format=json","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6440/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6440/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Steve","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6440/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6440/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6440?format=json","bill.introducedDate":"2022-01-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 6440.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 for purposes of\nthe tax on private foundation excess business holdings to\ntreat as outstanding any employee-owned stock purchased by a\nbusiness enterprise pursuant to certain employee stock\nownership retirement plans.\n[Page H5894]\n","sponsors.0.district":17,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":9,"sponsors.0.firstName":"W.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6440/text?format=json","bill.sponsors.0.lastName":"Cohen"}} +{"type":"node","id":"8608","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6439/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6439/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6439","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 13 (Thursday, January 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURCHETT:\nH.R. 6439.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18 of the Constitution of the\nUnited States\n[Page H289]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6439/cosponsors?format=json","sponsors.0.bioguideId":"S000510","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6439/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","bill.sponsors.0.bioguideId":"B001309","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6439/text?format=json","bill.updateDate":"2025-01-03T07:39:17Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6439/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","request.billNumber":"6439","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6439/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:17Z","title":"Pre-Apprenticeship Wrap-around Support Services Fund Act of 2023","bill.title":"Fentanyl Trafficker Elimination Act","bill.number":"6439","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6439/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6439/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6439/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Tim","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6439/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6439/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6439?format=json","bill.introducedDate":"2022-01-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 6439.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\nThe single subject of this legislation is:\nGrants for individuals enrolled in pre-apprenticeship\nprograms.\n[Page H5894]\n","sponsors.0.district":9,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":2,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6439/text?format=json","bill.sponsors.0.lastName":"Burchett"}} +{"type":"node","id":"8609","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6430/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6430/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6430","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 12 (Wednesday, January 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PINGREE:\nH.R. 6430.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6430/cosponsors?format=json","sponsors.0.bioguideId":"M001205","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6430/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","bill.sponsors.0.bioguideId":"P000597","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6430/text?format=json","bill.updateDate":"2025-01-03T07:39:02Z","updateDate":"2024-12-20T09:06:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6430/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","request.billNumber":"6430","committees.url":"https://api.congress.gov/v3/bill/118/hr/6430/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6430/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:02Z","title":"ARCH Act","bill.title":"ICELAND Act","bill.number":"6430","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6430/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6430/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6430/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chellie","sponsors.0.state":"WV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6430/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6430/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6430?format=json","bill.introducedDate":"2022-01-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 6430.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nHealthcare\n[Page H5893]\n","sponsors.0.district":1,"bill.sponsors.0.state":"ME","bill.sponsors.0.district":1,"sponsors.0.firstName":"Carol","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6430/text?format=json","bill.sponsors.0.lastName":"Pingree"}} +{"type":"node","id":"8610","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fitzpatrick","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","policyArea.name":"International Affairs","bill.relatedBills.count":5,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6424/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"6424","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 12 (Wednesday, January 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeFAZIO:\nH.R. 6424.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 (relating to the power to\nmake all laws necessary and proper for carrying out the\npowers vested in Congress)\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6424/cosponsors?format=json","sponsors.0.bioguideId":"F000466","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6424/actions?format=json","latestAction.actionDate":"2023-11-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6424/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","bill.sponsors.0.bioguideId":"D000191","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6424/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeFazio, Peter A. [D-OR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6424/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-12T09:05:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6424/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","request.billNumber":"6424","committees.url":"https://api.congress.gov/v3/bill/118/hr/6424/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6424/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"SIGHT Act","bill.title":"HIGHER ED Act","bill.number":"6424","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6424/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6424/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6424/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000191?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"PETER","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6424/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6424/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6424?format=json","bill.introducedDate":"2022-01-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZPATRICK:\nH.R. 6424.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo provide additional authorities for the leadership of the\nUnited States Agency for International Development in health\ntechnology innovation for global health in lowresource\nsettings, and for other purposes.\n[Page H5893]\n","sponsors.0.district":1,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Brian","bill.type":"HR","updateDateIncludingText":"2024-12-12T09:05:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6424/text?format=json","bill.sponsors.0.lastName":"DEFAZIO"}} +{"type":"node","id":"8611","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6422/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cartwright","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6422/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6422","bill.cosponsors.countIncludingWithdrawnCosponsors":46,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 12 (Wednesday, January 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 6422.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6422/cosponsors?format=json","sponsors.0.bioguideId":"C001090","bill.subjects.count":38,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6422/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6422/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":46,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6422/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6422/text?format=json","bill.updateDate":"2025-01-03T07:39:04Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6422/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","request.billNumber":"6422","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6422/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6422/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:04Z","title":"Locality Pay Equity Act of 2023","bill.title":"Putin Accountability Act","bill.number":"6422","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":46,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6422/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6422/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6422/summaries?format=json","bill.cosponsors.count":46,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6422/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6422/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6422?format=json","bill.introducedDate":"2022-01-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 6422.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nThis bill amends title 5, United States Code, to limit the\nnumber of local wage areas allowable within a General\nSchedule pay locality.\n[Page H5893]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Matt","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6422/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"8612","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DOGGETT","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6417/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6417","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 11 (Tuesday, January 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 6417.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\n[Page H216]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6417/cosponsors?format=json","sponsors.0.bioguideId":"D000399","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6417/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-37]","bill.sponsors.0.bioguideId":"G000579","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":60,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6417/text?format=json","bill.updateDate":"2025-01-03T07:38:58Z","updateDate":"2024-12-19T09:05:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6417/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","request.billNumber":"6417","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6417/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6417/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:58Z","title":"Ending Importation of Laundered Russian Oil Act","bill.title":"Free Peng Shuai Act","bill.number":"6417","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":60,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6417/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6417/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6417/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6417/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6417/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6417?format=json","bill.introducedDate":"2022-01-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 6417.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend the Ending Importation of Russian Oil Act to\nprovide for a prohibition on importation of energy products\nproduced at refineries outside the Russian Federation.\n[Page H5893]\n","sponsors.0.district":37,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"LLOYD","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6417/text?format=json","bill.sponsors.0.lastName":"Gallagher"}} +{"type":"node","id":"8613","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6403/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gaetz","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6403/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6403","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 9 (Thursday, January 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLER:\nH.R. 6403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by the clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\n[Page H194]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6403/cosponsors?format=json","sponsors.0.bioguideId":"G000578","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6403/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6403/relatedbills?format=json","latestAction.actionDate":"2023-11-14","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","bill.sponsors.0.bioguideId":"K000395","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6403/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keller, Fred [R-PA-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6403/text?format=json","bill.updateDate":"2025-01-03T07:38:50Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6403/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","request.billNumber":"6403","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6403/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6403/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:50Z","title":"Parents’ Right to Know Act","bill.title":"Federal Prisons Accountability Act of 2022","bill.number":"6403","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6403/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6403/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6403/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000395?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Fred","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6403/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6403/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6403?format=json","bill.introducedDate":"2022-01-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 188 (Tuesday, November 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 6403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8, Cl. 1, Spending Clause--amending extent law\n(FERPA), pursuant to the same.\nThe single subject of this legislation is:\namending FERPA to enable disclosure of certain student\neducational records to parents.\n[Page H5856]\n","sponsors.0.district":1,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":12,"sponsors.0.firstName":"Matt","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6403/text?format=json","bill.sponsors.0.lastName":"Keller"}} +{"type":"node","id":"8614","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8931/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Stefanik","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8931/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"L. \"Buddy\"","number":"8931","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 152 (Wednesday, September 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 8931.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\n[Page H8066]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8931/cosponsors?format=json","sponsors.0.bioguideId":"S001196","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8931/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":4,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","bill.sponsors.0.bioguideId":"C001103","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-843","bill.sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8931/text?format=json","bill.updateDate":"2025-01-03T08:00:35Z","updateDate":"2025-01-26T22:41:17Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8931/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","request.billNumber":"8931","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8931/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8931/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:35Z","title":"To redesignate Saratoga National Historical Park as Saratoga National Battlefield Park.","bill.title":"Improving Access to Safe Medicines Act of 2022","bill.number":"8931","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8931/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/843?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8931/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8931/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Earl","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8931/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8931/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8931?format=json","bill.introducedDate":"2022-09-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 8931.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo redesignate Saratoga National Historical Park as\nSaratoga National Battlefield Park.\n[Page H4453]\n","sponsors.0.district":21,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Elise","bill.type":"HR","updateDateIncludingText":"2025-01-26T22:41:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8931/text?format=json","bill.sponsors.0.lastName":"Carter"}} +{"type":"node","id":"8615","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8930/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sessions","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8930/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8930","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 152 (Wednesday, September 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 8930.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[[Page H8066]]\n[Page H8065]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8930/cosponsors?format=json","sponsors.0.bioguideId":"S000250","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8930/actions?format=json","latestAction.actionDate":"2024-07-02","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8930/text?format=json","bill.updateDate":"2025-01-03T08:00:39Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8930/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","request.billNumber":"8930","committees.url":"https://api.congress.gov/v3/bill/118/hr/8930/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8930/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:39Z","title":"Accessibility Constituent Communication Act of 2024","bill.title":"Keeping Violent Offenders Off Our Streets Act","bill.number":"8930","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8930/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8930/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8930/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8930/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8930/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8930?format=json","bill.introducedDate":"2022-09-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\n[Pages H4452-H4453]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 8930.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the\n[[Page H4453]]\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo require that each agency provide any communication in\nalternative accessible communication formats.\n","sponsors.0.district":17,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8930/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}} +{"type":"node","id":"8616","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6099/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ogles","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6099/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6099","bill.cosponsors.countIncludingWithdrawnCosponsors":19,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 207 (Wednesday, December 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAMBORN:\nH.R. 6099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H6859]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6099/cosponsors?format=json","sponsors.0.bioguideId":"O000175","bill.subjects.count":2,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6099/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-26","bill.policyArea.name":"Civil Rights and Liberties, Minority Issues","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","bill.sponsors.0.bioguideId":"L000564","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lamborn, Doug [R-CO-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6099/text?format=json","bill.updateDate":"2025-01-03T07:36:09Z","updateDate":"2024-09-23T19:30:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6099/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","request.billNumber":"6099","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6099/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6099/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:36:09Z","title":"Evicting Violent Islamic Criminals That Entered Deviously Act","bill.title":"Recognizing the Unborn Act of 2021","bill.number":"6099","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6099/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6099/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6099/summaries?format=json","bill.cosponsors.count":19,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000564?format=json","introducedDate":"2023-10-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Doug","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6099/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6099/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6099?format=json","bill.introducedDate":"2021-12-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 6099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill provides for expedited removal of illegal aliens\nfrom Gaza and Judea and Samaria.\n[Page H5176]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":5,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-09-23T19:30:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6099/text?format=json","bill.sponsors.0.lastName":"Lamborn"}} +{"type":"node","id":"8617","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8926/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McCaul","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8926/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported (Amended) by the Yeas and Nays: 43 - 2.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"H.","number":"8926","bill.cosponsors.countIncludingWithdrawnCosponsors":30,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 8926.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill is based is\nCongress's power under the Commerce Clause in Article I,\nSection 8, of the Constitution.\n[Page H8011]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8926/cosponsors?format=json","sponsors.0.bioguideId":"M001157","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8926/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-11","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","bill.sponsors.0.bioguideId":"S000522","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8926/text?format=json","bill.updateDate":"2025-01-03T08:00:20Z","updateDate":"2025-02-06T18:06:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8926/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","request.billNumber":"8926","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8926/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8926/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:20Z","title":"DFC Modernization and Reauthorization Act of 2024","bill.title":"Protect Pregnancy Care Centers Act of 2022","bill.number":"8926","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8926/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8926/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8926/summaries?format=json","bill.cosponsors.count":30,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"CHRISTOPHER","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8926/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8926/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8926?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 8926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo modify and reauthorize the Better Utilization of\nInvestments Leading to Development Act of 2018\n[Page H4452]\n","sponsors.0.district":10,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-21T17:27:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8926/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8618","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8922/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Higgins","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8922/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"8922","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOWENTHAL:\nH.R. 8922.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H8011]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8922/cosponsors?format=json","sponsors.0.bioguideId":"H001077","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8922/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8922/relatedbills?format=json","latestAction.actionDate":"2024-07-02","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","bill.sponsors.0.bioguideId":"L000579","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":24,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8922/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lowenthal, Alan S. [D-CA-47]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8922/text?format=json","bill.updateDate":"2025-01-03T08:00:25Z","updateDate":"2024-09-03T16:29:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8922/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","request.billNumber":"8922","committees.url":"https://api.congress.gov/v3/bill/118/hr/8922/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8922/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:25Z","title":"Janie Wynn Protecting Elders from Financial Exploitation Act","bill.title":"Southeast Asian Deportation Relief Act of 2022","bill.number":"8922","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8922/committees?format=json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8922/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8922/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000579?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alan","sponsors.0.state":"LA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8922/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8922/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8922?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 8922.\nCongress has the power to enact this legislation pursuant\nto the following:\nArtl.S8.C3--The Congress shall have Power To . . . regulate\nCommerce with foreign Nations, and among the several States,\nand with the Indian Tribes;\nThe single subject of this legislation is:\nTo require the Director of the Bureau of Consumer Financial\nProtection to issue a final rule requiring any card issuer\nthat issues a pre-approved credit card to a senior citizen to\nprovide fraud alerts\n[Page H4452]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":47,"sponsors.0.firstName":"Clay","bill.type":"HR","updateDateIncludingText":"2024-11-24T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8922/text?format=json","bill.sponsors.0.lastName":"Lowenthal"}} +{"type":"node","id":"8619","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6095/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClellan","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6095/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6095","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 206 (Tuesday, November 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TLAIB:\nH.R. 6095.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\n[Page H6711]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6095/cosponsors?format=json","sponsors.0.bioguideId":"M001227","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6095/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-27","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","bill.sponsors.0.bioguideId":"T000481","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6095/text?format=json","bill.updateDate":"2025-01-03T07:36:06Z","updateDate":"2024-10-05T08:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6095/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","request.billNumber":"6095","committees.url":"https://api.congress.gov/v3/bill/118/hr/6095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6095/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:36:06Z","title":"Department of Defense PFAS Discharge Prevention Act","bill.title":"Lebanon TPS Act of 2021","bill.number":"6095","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6095/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6095/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6095/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","introducedDate":"2023-10-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Rashida","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6095/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6095/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6095?format=json","bill.introducedDate":"2021-11-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. McCLELLAN:\nH.R. 6095.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has authority for this legislation under Article\nI, Section 8, Clause 14 of the Constitution\nThe single subject of this legislation is:\nDefense, particularly regulation of DoD properties and\nfacilities.\n[Page H5176]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":13,"sponsors.0.firstName":"Jennifer","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6095/text?format=json","bill.sponsors.0.lastName":"Tlaib"}} +{"type":"node","id":"8620","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8917/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8917","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 8917.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\n[Page H8010]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8917/cosponsors?format=json","sponsors.0.bioguideId":"C001125","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8917/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-02","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Carter, Troy A. [D-LA-2]","bill.sponsors.0.bioguideId":"E000297","bill.actions.count":6,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8917/text?format=json","bill.updateDate":"2025-01-03T08:00:27Z","updateDate":"2024-08-14T13:40:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8917/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","request.billNumber":"8917","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8917/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8917/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:27Z","title":"Marijuana Misdemeanor Expungement Act","bill.title":"Harm Reduction Through Community Engagement Act of 2022","bill.number":"8917","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8917/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8917/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8917/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Adriano","sponsors.0.state":"LA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8917/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8917/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8917?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 8917.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec 8\nCl.1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8 Cl. 18). Further,\nthis statement of constitutional authority is made for the\nsole purpose of compliance with clause 7 of Rule XII of the\nRules of the House of Representatives and shall have no\nbearing on judicial review of the accompanying bill.\nThe single subject of this legislation is:\nCrime and Law Enforcement\n[Page H4452]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":13,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-08-14T13:40:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8917/text?format=json","bill.sponsors.0.lastName":"Espaillat"}} +{"type":"node","id":"8621","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6079/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DELAURO","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6079/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6079","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 204 (Friday, November 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DEAN:\nH.R. 6079.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6678]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6079/cosponsors?format=json","sponsors.0.bioguideId":"D000216","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6079/actions?format=json","latestAction.actionDate":"2023-10-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6079/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","bill.sponsors.0.bioguideId":"D000631","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":22,"bill.latestAction.text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Dean, Madeleine [D-PA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6079/text?format=json","bill.updateDate":"2025-01-16T12:12:20Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6079/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","request.billNumber":"6079","committees.url":"https://api.congress.gov/v3/bill/118/hr/6079/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6079/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T12:12:20Z","title":"CHILD Labor Act","bill.title":"Congressional Subpoena Compliance and Enforcement Act","bill.number":"6079","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6079/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6079/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6079/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000631?format=json","introducedDate":"2023-10-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madeleine","sponsors.0.state":"CT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6079/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6079/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6079?format=json","bill.introducedDate":"2021-11-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 6079.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nThis bill would update civil penalties for child labor\nviolations, strengthen the Department of Labor's ability to\nenforce the FLSA, expand child labor provisions to hold\nsuppliers and subcontractors responsible, and allow children\nwho have been seriously injured to be compensated by their\nemployers.\n[Page H5175]\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":4,"sponsors.0.firstName":"ROSA","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6079/text?format=json","bill.sponsors.0.lastName":"Dean"}} +{"type":"node","id":"8622","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hern","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-08-07T17:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Taxation","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8915/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 799.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8915","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAWTHORN:\nH.R. 8915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H8010]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8915/cosponsors?format=json","sponsors.0.bioguideId":"H001082","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8915/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8915/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.sponsors.0.bioguideId":"C001104","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8915/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-950","bill.sponsors.0.fullName":"Rep. Cawthorn, Madison [R-NC-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8915/text?format=json","bill.updateDate":"2025-01-03T08:00:27Z","updateDate":"2025-02-27T00:26:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8915/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","request.billNumber":"8915","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8915/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8915/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:27Z","title":"Education and Workforce Freedom Act","bill.title":"BOND Act of 2022","bill.number":"8915","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 9, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60601","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8915/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/950?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8915/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8915/summaries?format=json","cboCostEstimates.0.title":"H.R. 8915, Education and Workforce Freedom Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001104?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madison","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8915/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8915/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8915?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 8915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTaxation\n[Page H4452]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":11,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2025-02-27T00:26:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8915/text?format=json","bill.sponsors.0.lastName":"Cawthorn"}} +{"type":"node","id":"8623","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8914/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Malliotakis","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-08-07T17:02:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8914/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 729.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8914","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUSH:\nH.R. 8914.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H8010]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8914/cosponsors?format=json","sponsors.0.bioguideId":"M000317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8914/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","bill.sponsors.0.bioguideId":"B001224","bill.actions.count":7,"bill.originChamber":"House","titles.count":4,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-894","bill.sponsors.0.fullName":"Rep. Bush, Cori [D-MO-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8914/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-26T23:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8914/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","request.billNumber":"8914","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8914/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8914/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"University Accountability Act","bill.title":"Helping Families Heal Act of 2022","bill.number":"8914","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 9, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60602","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8914/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/894?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8914/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8914/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 8914, University Accountability Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001224?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Cori","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8914/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8914/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8914?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 8914.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1: The Congress shall have\nPower To lay and collect Taxes,\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to impose\npenalties with respect to civil rights violations by certain\ntax-exempt educational institutions.\n[Page H4452]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":1,"sponsors.0.firstName":"Nicole","bill.type":"HR","updateDateIncludingText":"2025-02-26T23:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8914/text?format=json","bill.sponsors.0.lastName":"Bush"}} +{"type":"node","id":"8624","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6078/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ciscomani","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6078/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6078","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 203 (Tuesday, November 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 6078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H6674]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6078/cosponsors?format=json","sponsors.0.bioguideId":"C001133","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6078/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6078/relatedbills?format=json","latestAction.actionDate":"2023-11-03","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Ciscomani, Juan [R-AZ-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6078/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6078/text?format=json","bill.updateDate":"2025-01-03T07:35:55Z","updateDate":"2024-10-12T08:05:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6078/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001133?format=json","request.billNumber":"6078","committees.url":"https://api.congress.gov/v3/bill/118/hr/6078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6078/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:55Z","title":"GROWTH Act of 2023","bill.title":"Immigrant Witness and Victim Protection Act of 2021","bill.number":"6078","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6078/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6078/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6078/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-26","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6078/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6078/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6078?format=json","bill.introducedDate":"2021-11-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CISCOMANI:\nH.R. 6078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nGrants for health care workforce program\n[Page H5175]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Juan","bill.type":"HR","updateDateIncludingText":"2024-10-12T08:05:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6078/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"8625","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6055/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6055/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6055","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\n[Pages H6609-H6610]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 6055.\n[[Page H6610]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 1 of the U.S. Constitution and\nArticle 1, Section 9, clause 7 of the U.S. Constitution.\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6055/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6055/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6055/relatedbills?format=json","latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6055/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6055/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6055/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"6055","committees.url":"https://api.congress.gov/v3/bill/118/hr/6055/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6055/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Schools Want Accountability for Threats Act","bill.title":"Court Legal Access and Student Support Act of 2021","bill.number":"6055","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6055/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6055/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6055/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6055/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6055/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6055?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6055.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Section 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to provide penalties\nfor communicating threats that target schools.\n[Page H5107]\n","sponsors.0.district":17,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6055/text?format=json","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"8626","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6022/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Burlison","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6022/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"L. \"Buddy\"","number":"6022","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 6022.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 4 of section 8 of article I of the Constitution\nprovides Congress with the power ``to establish an uniform\nRule of Naturalization . . .''\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6022/cosponsors?format=json","sponsors.0.bioguideId":"B001316","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6022/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6022/relatedbills?format=json","latestAction.actionDate":"2023-11-03","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Burlison, Eric [R-MO-7]","bill.sponsors.0.bioguideId":"C001103","bill.actions.count":7,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6022/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6022/text?format=json","bill.updateDate":"2025-01-03T07:35:41Z","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6022/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001316?format=json","request.billNumber":"6022","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6022/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6022/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:41Z","title":"Propane Accessibility and Regulatory Relief Act","bill.title":"Build Better Borders Act of 2021","bill.number":"6022","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6022/committees?format=json","request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6022/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6022/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Earl","sponsors.0.state":"MO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6022/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6022/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6022?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURLISON:\nH.R. 6022.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nThe bill relates to homeland security, specifically\nexeptions made under the Chemical Facility Anti-Terrorist\nStandards program.\n[Page H5043]\n","sponsors.0.district":7,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Eric","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:56:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6022/text?format=json","bill.sponsors.0.lastName":"Carter"}} +{"type":"node","id":"8627","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6021/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Beyer","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6021/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6021","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 6021.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8: The Congress shall have power to lay\nand collect taxes, duties, imposts and excises, to pay the\ndebts and provide for the common defense and general welfare\nof the United States; but all duties, imposts and excises\nshall be uniform throughout the United States;\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6021/cosponsors?format=json","sponsors.0.bioguideId":"B001292","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6021/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","bill.sponsors.0.bioguideId":"B000825","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6021/text?format=json","bill.updateDate":"2025-01-03T07:35:33Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6021/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":9,"sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","request.billNumber":"6021","committees.url":"https://api.congress.gov/v3/bill/118/hr/6021/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6021/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:33Z","title":"Ejiao Act of 2023","bill.title":"We’re Not Paying You To Break Our Laws Act","bill.number":"6021","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6021/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6021/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6021/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6021/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6021/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6021?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 6021.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 1 article 8\nThe single subject of this legislation is:\nAnimal protection\n[Page H5043]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6021/text?format=json","bill.sponsors.0.lastName":"Boebert"}} +{"type":"node","id":"8628","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6001/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6001/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6001","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 200 (Wednesday, November 17, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KHANNA:\nH.R. 6001.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution gives Congress the\npower to make laws that are necessary and proper to carry out\nits enumerated powers.\n[Page H6370]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6001/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6001/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6001/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"K000389","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6001/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6001/text?format=json","bill.updateDate":"2025-01-03T07:35:14Z","updateDate":"2024-11-22T09:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6001/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"6001","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6001/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6001/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:14Z","title":"To provide that members of the Armed Forces performing services in Niger, Mali, Burkina Faso, and Chad shall be entitled to tax benefits in the same manner as if such services were performed in a combat zone.","bill.title":"Closing the Warrantless Digital Car Search Loophole Act of 2021","bill.number":"6001","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6001/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6001/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6001/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ro","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6001/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6001/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6001?format=json","bill.introducedDate":"2021-11-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 172 (Thursday, October 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 6001.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nTax benefits for servicemembers in the Sahel.\n[Page H5033]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-11-22T09:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6001/text?format=json","bill.sponsors.0.lastName":"Khanna"}} +{"type":"node","id":"8629","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5994/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ISSA","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5994/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"5994","bill.cosponsors.countIncludingWithdrawnCosponsors":93,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 200 (Wednesday, November 17, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CLARK of Massachusetts:\nH.R. 5994.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H6370]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5994/cosponsors?format=json","sponsors.0.bioguideId":"I000056","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5994/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5994/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","bill.sponsors.0.bioguideId":"C001101","bill.originChamber":"House","bill.actions.count":10,"titles.count":3,"cosponsors.count":93,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5994/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Clark, Katherine M. [D-MA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5994/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5994/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","request.billNumber":"5994","committees.url":"https://api.congress.gov/v3/bill/118/hr/5994/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5994/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"No Funds for Iran-Backed Terror Act","bill.title":"BE HEARD in the Workplace Act","bill.number":"5994","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":93,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5994/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5994/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5994/summaries?format=json","bill.cosponsors.count":93,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001101?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Katherine","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5994/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5994/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5994?format=json","bill.introducedDate":"2021-11-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 172 (Thursday, October 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 5994.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nProvides for curtailing Iran's sources of international\nrevenue\n[Page H5033]\n","sponsors.0.district":48,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":5,"sponsors.0.firstName":"DARRELL","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5994/text?format=json","bill.sponsors.0.lastName":"Clark"}} +{"type":"node","id":"8630","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8907/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Scott","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8907/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8907","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 150 (Monday, September 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 8907.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution.\n[Page H7967]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8907/cosponsors?format=json","sponsors.0.bioguideId":"S000185","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8907/actions?format=json","latestAction.actionDate":"2024-06-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8907/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Scott, Robert C. \"Bobby\" [D-VA-3]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8907/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8907/text?format=json","bill.updateDate":"2025-01-03T07:59:58Z","updateDate":"2024-08-30T14:53:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8907/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000185?format=json","request.billNumber":"8907","committees.url":"https://api.congress.gov/v3/bill/118/hr/8907/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8907/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:58Z","title":"Virginia Plan to Reduce Gun Violence Act of 2024","bill.title":"Kevin and Avonte's Law Reauthorization Act of 2022","bill.number":"8907","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8907/committees?format=json","sponsors.0.middleName":"C. \"Bobby\"","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8907/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8907/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","introducedDate":"2024-06-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8907/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8907/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8907?format=json","bill.introducedDate":"2022-09-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT of Virginia:\nH.R. 8907.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nGun Violence\n[Page H4445]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2024-08-30T14:53:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8907/text?format=json","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"8631","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rodgers","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8905/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8905","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 150 (Monday, September 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 8905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H7967]\n","sponsors.0.bioguideId":"M001159","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8905/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-28","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","bill.sponsors.0.bioguideId":"S001211","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8905/text?format=json","bill.updateDate":"2025-01-03T08:00:08Z","updateDate":"2024-08-20T16:47:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8905/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","request.billNumber":"8905","committees.url":"https://api.congress.gov/v3/bill/118/hr/8905/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8905/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:08Z","title":"MIRACLE Act of 2024","bill.title":"No Taxpayer Dollars for Russian Oligarchs Act","bill.number":"8905","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8905/committees?format=json","request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8905/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8905/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","introducedDate":"2024-06-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Greg","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8905/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8905/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8905?format=json","bill.introducedDate":"2022-09-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 8905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Health and Human Services to\nconduct a study and submit to Congress a report on neonatal\nabstinence syndrome, and for other purposes.\n[Page H4445]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":9,"sponsors.0.firstName":"Cathy","bill.type":"HR","updateDateIncludingText":"2024-08-20T16:47:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8905/text?format=json","bill.sponsors.0.lastName":"Stanton"}} +{"type":"node","id":"8632","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Arrington","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8882/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8882","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 150 (Monday, September 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACOBS of New York:\nH.R. 8882.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H7966]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8882/cosponsors?format=json","sponsors.0.bioguideId":"A000375","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8882/actions?format=json","latestAction.actionDate":"2024-06-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8882/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","bill.sponsors.0.bioguideId":"J000020","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8882/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jacobs, Chris [R-NY-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8882/text?format=json","bill.updateDate":"2025-01-03T08:00:09Z","updateDate":"2024-11-16T09:05:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8882/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","request.billNumber":"8882","committees.url":"https://api.congress.gov/v3/bill/118/hr/8882/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8882/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:09Z","title":"Family Cord Blood Banking Act","bill.title":"Federal Assault Weapons Licensing Act","bill.number":"8882","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8882/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8882/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8882/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000020?format=json","introducedDate":"2024-06-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chris","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8882/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8882/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8882?format=json","bill.introducedDate":"2022-09-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 8882.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nDefining cord blood banking services as medical care\nexpenses.\n[Page H4444]\n","sponsors.0.district":19,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":27,"sponsors.0.firstName":"Jodey","bill.type":"HR","updateDateIncludingText":"2024-11-16T09:05:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8882/text?format=json","bill.sponsors.0.lastName":"Jacobs"}} +{"type":"node","id":"8633","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8870/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Self","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8870/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"8870","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 149 (Thursday, September 15, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 8870.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution\n[Page H7883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8870/cosponsors?format=json","sponsors.0.bioguideId":"S001224","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8870/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8870/relatedbills?format=json","latestAction.actionDate":"2024-06-28","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","bill.sponsors.0.bioguideId":"T000165","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8870/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8870/text?format=json","bill.updateDate":"2025-01-03T07:59:42Z","updateDate":"2024-11-18T14:48:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8870/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","request.billNumber":"8870","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8870/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8870/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:42Z","title":"To rename the portion of United States Highway 75 between President George Bush Turnpike and United States Highway 380 as the \"U.S. Congressman and Prisoner of War Sam Johnson Memorial Highway\".","bill.title":"Combating Violent and Dangerous Crime Act","bill.number":"8870","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8870/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8870/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8870/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","introducedDate":"2024-06-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8870/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8870/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8870?format=json","bill.introducedDate":"2022-09-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SELF:\nH.R. 8870\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nHighway renaming\n[Page H4411]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":7,"sponsors.0.firstName":"Keith","bill.type":"HR","updateDateIncludingText":"2024-11-18T14:48:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8870/text?format=json","bill.sponsors.0.lastName":"Tiffany"}} +{"type":"node","id":"8634","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9047/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9047/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9047","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9047/cosponsors?format=json","sponsors.0.bioguideId":"N000026","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9047/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9047/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"F000446","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9047/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9047/text?format=json","bill.updateDate":"2025-01-03T08:02:04Z","updateDate":"2024-11-25T19:35:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9047/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"9047","committees.url":"https://api.congress.gov/v3/bill/118/hr/9047/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9047/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:04Z","title":"To amend title 18, United States Code, to modify provisions relating to kidnapping, sexual abuse, and illicit sexual conduct with respect to minors.","bill.title":"Precision Agriculture Loan Program Act of 2022","bill.number":"9047","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9047/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9047/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9047/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Randy","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9047/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9047/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9047?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 9047.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to modify provisions\nrelating to kidnapping, sexual abuse, and illicit sexual\nconduct with respect to minors.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":22,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-11-25T19:35:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9047/text?format=json","bill.sponsors.0.lastName":"Feenstra"}} +{"type":"node","id":"8635","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9035/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carbajal","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9035/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"9035","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9035/cosponsors?format=json","sponsors.0.bioguideId":"C001112","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9035/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9035/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Carbajal, Salud O. [D-CA-24]","bill.sponsors.0.bioguideId":"B001307","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9035/text?format=json","bill.updateDate":"2025-01-03T08:02:04Z","updateDate":"2024-11-13T20:17:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9035/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001112?format=json","request.billNumber":"9035","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9035/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9035/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:04Z","title":"ROTC and DEP Benefits Improvement Act","bill.title":"Farmers Deserve Notification Act","bill.number":"9035","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9035/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9035/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9035/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"James","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9035/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9035/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9035?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARBAJAL:\nH.R. 9035.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution which provides Congress with the power to\nlay and collect Taxes, Duties, Imposts and Excises in order\nto provide for the general Welfare of the United States.\nThe single subject of this legislation is:\nThe bill subject is Reserve Officers' Training Corps (ROTC)\nand Delayed Entry Program benefits.\n[Page H4633]\n","sponsors.0.district":24,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":4,"sponsors.0.firstName":"Salud","bill.type":"HR","updateDateIncludingText":"2024-11-13T20:17:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9035/text?format=json","bill.sponsors.0.lastName":"Baird"}} +{"type":"node","id":"8636","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9025/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tlaib","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9025/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"9025","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9025/cosponsors?format=json","sponsors.0.bioguideId":"T000481","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9025/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9025/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-11","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-12]","bill.sponsors.0.bioguideId":"V000129","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9025/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Valadao, David G. [R-CA-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9025/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9025/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","request.billNumber":"9025","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9025/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9025/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Auto Insurance Expense Relief Act of 2024","bill.title":"Determination of NEPA Adequacy Streamlining Act","bill.number":"9025","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9025/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9025/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9025/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000129?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-07-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"David","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9025/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9025/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9025?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 115 (Thursday, July 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TLAIB:\nH.R. 9025.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\nThe single subject of this legislation is:\nThis bill requires auto insurance policy premium be taken\ninto account as a required expense when determining\neligibility for Federal benefits or assistance.\n[Page H4626]\n","bill.introducedDate":"2022-09-28","sponsors.0.district":12,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":21,"sponsors.0.firstName":"Rashida","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9025/text?format=json","bill.sponsors.0.lastName":"Valadao"}} +{"type":"node","id":"8637","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9024/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2022-10-28","cboCostEstimates.0.pubDate":"2024-11-21T22:30:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Emergency Management","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9024/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 665.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"P.","number":"9024","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9024/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9024/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9024/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-05","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"T000165","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9024/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-813","bill.sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9024/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-03-13T22:41:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9024/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"9024","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9024/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9024/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Extreme Weather and Heat Response Modernization Act","bill.title":"DRILL Act","bill.number":"9024","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61033","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9024/committees?format=json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-10-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/813?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9024/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9024/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 9024, Extreme Weather and Heat Response Modernization Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","introducedDate":"2024-07-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9024/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9024/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9024?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 115 (Thursday, July 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 9024.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nEmergency Management\n[Page H4626]\n","bill.introducedDate":"2022-09-28","sponsors.0.district":1,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":7,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9024/text?format=json","bill.sponsors.0.lastName":"Tiffany"}} +{"type":"node","id":"8638","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9006/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cuellar","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Labor and Employment","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9006/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9006","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9006/cosponsors?format=json","sponsors.0.bioguideId":"C001063","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9006/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9006/relatedbills?format=json","latestAction.actionDate":"2024-07-11","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Cuellar, Henry [D-TX-28]","bill.sponsors.0.bioguideId":"H001084","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9006/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Herrell, Yvette [R-NM-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9006/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9006/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001063?format=json","request.billNumber":"9006","committees.url":"https://api.congress.gov/v3/bill/118/hr/9006/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9006/subjects?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Hazardous Workplace Accountability Act of 2024","bill.title":"To establish deadlines for the Secretary of the Interior and the Secretary of Agriculture to complete certain environmental reviews, to establish notification rules for receipt of onshore right-of-way applications, and for other purposes.","bill.number":"9006","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9006/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9006/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9006/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001084?format=json","introducedDate":"2024-07-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Yvette","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9006/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9006/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9006?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 115 (Thursday, July 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CUELLAR:\nH.R. 9006.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Occupational Safety and Health Act of 1970 to\nrequire that safety data sheets be provided in English and\nSpanish.\n[Page H4626]\n","bill.introducedDate":"2022-09-28","sponsors.0.district":28,"bill.sponsors.0.state":"NM","bill.sponsors.0.district":2,"sponsors.0.firstName":"Henry","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9006/text?format=json","bill.sponsors.0.lastName":"Herrell"}} +{"type":"node","id":"8639","labels":["Bill"],"properties":{"relatedBills.count":8,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8981/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hayes","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8981/summaries?format=json","bill.relatedBills.count":8,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8981","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 153 (Thursday, September 22, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 8981.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution. Congress has the authority to enact this\nlegislation pursuant to the powers granted under Article IV,\nSection 3, Clause 2 and Article I, Section 8, Clause 18 of\nthe United States Constitution.\n[Page H8114]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8981/cosponsors?format=json","sponsors.0.bioguideId":"H001081","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8981/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8981/relatedbills?format=json","latestAction.actionDate":"2024-07-10","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","bill.sponsors.0.bioguideId":"W000821","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8981/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8981/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8981/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","request.billNumber":"8981","committees.url":"https://api.congress.gov/v3/bill/118/hr/8981/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8981/subjects?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Supporting Trauma-Informed Education Practices Act of 2024","bill.title":"Securing America’s Mineral Supply Chains Act of 2022","bill.number":"8981","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8981/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8981/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8981/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-07-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":6,"bill.sponsors.0.firstName":"Bruce","sponsors.0.state":"CT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8981/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8981/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8981?format=json","bill.introducedDate":"2022-09-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 114 (Wednesday, July 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 8981.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, ``To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nThe bill authorizes grants designed to help schools improve\nhow they address the complex needs of students coping with\nthe devastating impact of adverse childhood experiences\n(ACEs) such as parental addiction, abuse, and witnessing\nviolence.\n[Page H4588]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Jahana","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8981/text?format=json","bill.sponsors.0.lastName":"Westerman"}} +{"type":"node","id":"8640","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8966/summaries?format=json","bill.relatedBills.count":5,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8966","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 153 (Thursday, September 22, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Pennsylvania:\nH.R. 8966.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\n[Page H8114]\n","sponsors.0.bioguideId":"J000301","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8966/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8966/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","bill.sponsors.0.bioguideId":"K000376","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8966/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kelly, Mike [R-PA-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8966/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8966/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","request.billNumber":"8966","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8966/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8966/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Restoring Accountability in the Indian Health Service Act of 2024","bill.title":"START Act","bill.number":"8966","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8966/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8966/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8966/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000376?format=json","introducedDate":"2024-07-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"SD","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8966/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8966/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8966?format=json","bill.introducedDate":"2022-09-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 113 (Tuesday, July 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 8966.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nTo amend the Indian Health Care Improvement Act to improve\nthe recruitment and retention of employees in the Indian\nHealth Service, restore accountability in the Indian Health\nService, improve health services, and for other purposes.\n[Page H4529]\n","sponsors.0.district":16,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":16,"sponsors.0.firstName":"Dusty","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8966/text?format=json","bill.sponsors.0.lastName":"Kelly"}} +{"type":"node","id":"8641","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8950/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Van Duyne","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8950/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Patrick","number":"8950","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 153 (Thursday, September 22, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SEAN PATRICK MALONEY of New York:\nH.R. 8950.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H8114]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8950/cosponsors?format=json","sponsors.0.bioguideId":"V000134","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8950/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8950/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-08","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","bill.sponsors.0.bioguideId":"M001185","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8950/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Maloney, Sean Patrick [D-NY-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8950/text?format=json","bill.updateDate":"2025-01-03T08:00:55Z","updateDate":"2024-08-31T08:05:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8950/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","request.billNumber":"8950","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8950/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8950/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:55Z","title":"Made in America Integrity Act of 2024","bill.title":"Digital Commodities Consumer Protection Act of 2022","bill.number":"8950","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8950/committees?format=json","request.format":"json","sponsors.0.middleName":"Patrick","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8950/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8950/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001185?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-07-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Sean","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8950/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8950/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8950?format=json","bill.introducedDate":"2022-09-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 8950.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nSmall Business\n[Page H4477]\n","sponsors.0.district":24,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":18,"sponsors.0.firstName":"Beth","bill.type":"HR","updateDateIncludingText":"2024-08-31T08:05:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8950/text?format=json","bill.sponsors.0.lastName":"Maloney"}} +{"type":"node","id":"8642","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8928/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8928/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8928","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 8928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 4 Section 8 Clause 18\n[Page H8011]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8928/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8928/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8928/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"S001212","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8928/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8928/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8928/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"8928","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8928/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8928/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Returning Power to the People Act of 2024","bill.title":"Permitting for Mining Needs Act of 2022","bill.number":"8928","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8928/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8928/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8928/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Pete","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8928/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8928/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8928?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 8928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo provide for certain reforms pertaining to Chevron\ndeference\n[Page H4452]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":8,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8928/text?format=json","bill.sponsors.0.lastName":"Stauber"}} +{"type":"node","id":"8643","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 8801, DHS Joint Task Force Reauthorization Act of 2022","sponsors.0.lastName":"Fischbach","cboCostEstimates.0.pubDate":"2022-10-06T20:45:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Health","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8801/summaries?format=json","type":"HR","bill.summaries.count":2,"bill.sponsors.0.middleName":"Luis","number":"8801","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"sponsors.0.bioguideId":"F000470","bill.subjects.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8801/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","bill.originChamber":"House","bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 391.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-10-06T20:45:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8801/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-545","updateDate":"2024-12-19T09:06:42Z","committees.count":2,"request.billNumber":"8801","committees.url":"https://api.congress.gov/v3/bill/118/hr/8801/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:16Z","bill.number":"8801","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 14, 2022\n","committeeReports":[],"sponsors.0.middleName":"Luis","latestAction_actionDate":"2022-10-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8801/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8801/summaries?format=json","cboCostEstimates.0.title":"H.R. 8801, DHS Joint Task Force Reauthorization Act of 2022","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001110?format=json","introducedDate":"2024-06-21","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"J.","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8801/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/8801?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 105 (Friday, June 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 8801.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo make improvements in prenatal and maternal care.\n[Page H4120]\n","bill.sponsors.0.district":46,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8801/cosponsors?format=json","bill.textVersions.count":2,"bill.latestAction.actionDate":"2022-10-28","latestAction_text":"Placed on the Union Calendar, Calendar No. 391.","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-545","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 147 (Tuesday, September 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CORREA:\nH.R. 8801.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H7784]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8801/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8801/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001110","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 14, 2022\n","bill.actions.count":10,"titles.count":4,"cosponsors.count":11,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/545?format=json","bill.sponsors.0.fullName":"Rep. Correa, J. Luis [D-CA-46]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8801/text?format=json","bill.updateDate":"2025-01-03T07:59:16Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8801/subjects?format=json","request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8801/subjects?format=json","title":"MOMS Act","bill.title":"DHS Joint Task Force Reauthorization Act of 2022","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58550","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8801/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/545?format=json","request.billType":"hr","bill.cosponsors.count":2,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8801/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-09-13","sponsors.0.district":7,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-12-19T09:06:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8801/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58550","bill.sponsors.0.lastName":"Correa"}} +{"type":"node","id":"8644","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9246/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cohen","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9246/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9246","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9246/cosponsors?format=json","sponsors.0.bioguideId":"C001068","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9246/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9246/relatedbills?format=json","latestAction.actionDate":"2024-08-02","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","bill.sponsors.0.bioguideId":"K000389","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9246/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9246/text?format=json","bill.updateDate":"2025-01-03T08:03:24Z","updateDate":"2024-09-30T13:50:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9246/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","request.billNumber":"9246","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9246/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9246/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:24Z","title":"Police Training and Independent Review Act of 2024","bill.title":"Stop Wall Street Landlords Act of 2022","bill.number":"9246","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9246/committees?format=json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9246/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9246/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ro","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9246/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9246/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9246?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.R. 9246.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nSingle Subject Statement\nThe single subject of this legislation is:\nCriminal Justice\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Steve","bill.type":"HR","updateDateIncludingText":"2024-09-30T13:50:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9246/text?format=json","bill.sponsors.0.lastName":"Khanna"}} +{"type":"node","id":"8645","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9248/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9248/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"B.","number":"9248","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9248/cosponsors?format=json","sponsors.0.bioguideId":"D000626","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9248/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-03","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"M000087","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Maloney, Carolyn B. [D-NY-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9248/text?format=json","bill.updateDate":"2025-01-03T08:03:21Z","updateDate":"2025-02-13T17:07:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9248/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"9248","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9248/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9248/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:21Z","title":"Railroad Responsibility Act of 2024","bill.title":"Safe Access to Cash Act of 2022","bill.number":"9248","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9248/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9248/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9248/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000087?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"CAROLYN","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9248/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9248/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9248?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 9248.\nCongress has the power to enact this legislation pursuant\nto the following:\n``Article I, Section 8, Clause 18: The Congress shall have\nPower . . . To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\n``To amend title 49, United States Code, to provide states\nthe authority to limit blocking highway-rail grade crossings,\nand for other purposes.\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":8,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":12,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2025-02-13T17:07:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9248/text?format=json","bill.sponsors.0.lastName":"MALONEY"}} +{"type":"node","id":"8646","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9241/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cárdenas","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9241/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9241","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9241/cosponsors?format=json","sponsors.0.bioguideId":"C001097","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9241/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9241/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9241/text?format=json","bill.updateDate":"2025-01-03T08:03:23Z","updateDate":"2024-10-02T13:19:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9241/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","request.billNumber":"9241","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9241/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9241/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:23Z","title":"Safeguarding Infants from Dangerous Sleep Act","bill.title":"Prioritizing National Security in Export Controls Act of 2022","bill.number":"9241","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9241/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9241/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9241/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9241/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9241/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9241?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 9241.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\nThe single subject of this legislation is:\nTo provide that weighted sleep products for infants shall\nbe considered banned hazardous products under section 8 of\nthe Consumer Product Safety Act, and for other purposes.\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":29,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2024-10-02T13:19:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9241/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"8647","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9253/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foushee","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9253/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Science, Space, and Technology, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9253","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9253/cosponsors?format=json","sponsors.0.bioguideId":"F000477","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9253/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Foushee, Valerie P. [D-NC-4]","bill.sponsors.0.bioguideId":"V000134","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":40,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9253/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-03T14:25:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9253/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000477?format=json","request.billNumber":"9253","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9253/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9253/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"National Gun Violence Research Act","bill.title":"GORAC Act","bill.number":"9253","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":40,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9253/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9253/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9253/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Beth","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9253/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9253/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9253?format=json","bill.introducedDate":"2022-10-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FOUSHEE:\nH.R. 9253.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nGun Violence Research\n[Page H4973]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":24,"sponsors.0.firstName":"Valerie","bill.type":"HR","updateDateIncludingText":"2024-10-03T14:25:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9253/text?format=json","bill.sponsors.0.lastName":"Van Duyne"}} +{"type":"node","id":"8648","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Escobar","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9250/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"9250","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9250/cosponsors?format=json","sponsors.0.bioguideId":"E000299","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9250/actions?format=json","latestAction.actionDate":"2024-08-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9250/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","bill.sponsors.0.bioguideId":"P000610","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9250/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Plaskett, Stacey E. [D-VI-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9250/text?format=json","bill.updateDate":"2025-01-03T08:03:26Z","updateDate":"2024-12-07T09:05:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9250/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","request.billNumber":"9250","committees.url":"https://api.congress.gov/v3/bill/118/hr/9250/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9250/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:26Z","title":"Active Shooter Alert Act of 2024","bill.title":"Territorial Tax Parity and Clarification Act","bill.number":"9250","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9250/committees?format=json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9250/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9250/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000610?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stacey","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9250/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9250/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9250?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESCOBAR:\nH.R. 9250.\nCongress has the power to enact this legislation pursuant\nto the following:\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRSS\nCLAUSE 18\nThe Congress shall have the power . . . to make all laws\nwhich shall be necessary and proper for carrying into\nexecution the foregoing powers, and all other powers vested\nby this Constitution in the government of the United States,\nor in any department or officer thereof.\nThe single subject of this legislation is:\nTo provide for the creation of Active Shooter Alert\nCoordinator at the Department of Justice and the creation of\nan active shooter alert system.\n[Page H4973]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":16,"bill.sponsors.0.state":"VI","sponsors.0.firstName":"Veronica","bill.type":"HR","updateDateIncludingText":"2024-12-07T09:05:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9250/text?format=json","bill.sponsors.0.lastName":"Plaskett"}} +{"type":"node","id":"8649","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9240/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bishop","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9240/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9240","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9240/cosponsors?format=json","sponsors.0.bioguideId":"B000490","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9240/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9240/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Bishop, Sanford D. [D-GA-2]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9240/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9240/text?format=json","bill.updateDate":"2025-01-03T08:03:21Z","updateDate":"2024-09-30T21:39:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9240/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B000490?format=json","request.billNumber":"9240","committees.url":"https://api.congress.gov/v3/bill/118/hr/9240/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9240/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:21Z","title":"Protecting Our Produce Act","bill.title":"Concerned Citizens Bill of Rights Act","bill.number":"9240","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9240/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","sponsors.0.middleName":"D.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9240/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9240/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9240/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9240/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9240?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BISHOP of Georgia:\nH.R. 9240.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 8, cls. 1, 3, 18\nThe single subject of this legislation is:\nspecialty crops (seasonal and perishable crops)\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":2,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Sanford","bill.type":"HR","updateDateIncludingText":"2024-10-05T16:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9240/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"8650","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9252/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foster","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Emergency Management","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9252/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Scott","number":"9252","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9252/cosponsors?format=json","sponsors.0.bioguideId":"F000454","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9252/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9252/relatedbills?format=json","latestAction.actionDate":"2024-08-03","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","bill.sponsors.0.bioguideId":"S001190","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9252/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Schneider, Bradley Scott [D-IL-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9252/text?format=json","bill.updateDate":"2025-01-03T08:03:24Z","updateDate":"2024-12-24T09:05:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9252/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","request.billNumber":"9252","committees.url":"https://api.congress.gov/v3/bill/118/hr/9252/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9252/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:24Z","title":"National Windstorm Impact Reduction Program Reauthorization Act of 2024","bill.title":"Advancing Auto-Portability Act of 2022","bill.number":"9252","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9252/committees?format=json","request.format":"json","sponsors.0.middleName":"Scott","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9252/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9252/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001190?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bradley","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9252/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9252/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9252?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 9252.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nAuthorizing the National Windstorm Impact Reduction\nProgram.\n[Page H4973]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":11,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":10,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9252/text?format=json","bill.sponsors.0.lastName":"Schneider"}} +{"type":"node","id":"8651","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bergman","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9239/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9239","sponsors":[],"sponsors.0.bioguideId":"B001301","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9239/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","bill.sponsors.0.bioguideId":"B001291","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Babin, Brian [R-TX-36]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9239/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9239/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","request.billNumber":"9239","committees.url":"https://api.congress.gov/v3/bill/118/hr/9239/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9239/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"ACS Choice Act","bill.title":"ASTRO Act","bill.number":"9239","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9239/committees?format=json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9239/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9239/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001291?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9239/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9239/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9239?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 9239.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nRemoves penalties for refusal to complete the American\nCommunity Survey.\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":36,"sponsors.0.firstName":"Jack","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9239/text?format=json","bill.sponsors.0.lastName":"Babin"}} +{"type":"node","id":"8652","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Edwards","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9249/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9249","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9249/cosponsors?format=json","sponsors.0.bioguideId":"E000246","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9249/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9249/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Edwards, Chuck [R-NC-11]","bill.sponsors.0.bioguideId":"O000171","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9249/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. O'Halleran, Tom [D-AZ-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9249/text?format=json","bill.updateDate":"2024-02-07T13:32:55Z","updateDate":"2024-09-17T08:05:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9249/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/E000246?format=json","request.billNumber":"9249","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9249/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9249/committees?format=json","bill.updateDateIncludingText":"2024-02-07T13:32:55Z","title":"Show Me the Science Act","bill.title":"To address the recovery of certain costs with respect to certain Reclamation facilities in the Colorado River Basin, and for other purposes.","bill.number":"9249","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9249/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9249/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9249/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000171?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9249/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9249/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9249?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\n[Pages H4972-H4973]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EDWARDS:\nH.R. 9249.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18\nAllows Congress to make all laws ``which shall be necessary\nand proper for carrying into execution'' any ``other'' powers\nvested\n[[Page H4973]]\nby the Constitution in the Government of the United States.\nThe single subject of this legislation is:\nRequires the publication of scientific data, incident data,\nor other pertinent data relied on by an agency to justify a\nrule.\n","bill.introducedDate":"2022-10-28","sponsors.0.district":11,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":1,"sponsors.0.firstName":"Chuck","bill.type":"HR","updateDateIncludingText":"2024-09-17T08:05:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9249/text?format=json","bill.sponsors.0.lastName":"O'Halleran"}} +{"type":"node","id":"8653","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9245/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cleaver","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9245/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"F.","number":"9245","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9245/cosponsors?format=json","sponsors.0.bioguideId":"C001061","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9245/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9245/relatedbills?format=json","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Cleaver, Emanuel [D-MO-5]","bill.sponsors.0.bioguideId":"G000592","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":20,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9245/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Golden, Jared F. [D-ME-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9245/text?format=json","bill.updateDate":"2025-01-03T08:03:24Z","updateDate":"2024-09-30T14:23:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9245/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/C001061?format=json","request.billNumber":"9245","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9245/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9245/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:24Z","title":"American Housing and Economic Mobility Act of 2024","bill.title":"Fire Grants and Safety Act","bill.number":"9245","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9245/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9245/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9245/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000592?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jared","sponsors.0.state":"MO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9245/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9245/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9245?format=json","bill.introducedDate":"2022-10-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLEAVER:\nH.R. 9245.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo make housing more affordable, and for other purposes.\n[Page H4972]\n","sponsors.0.district":5,"bill.sponsors.0.state":"ME","bill.sponsors.0.district":2,"sponsors.0.firstName":"Emanuel","bill.type":"HR","updateDateIncludingText":"2024-09-30T14:23:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9245/text?format=json","bill.sponsors.0.lastName":"Golden"}} +{"type":"node","id":"8654","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9062/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Curtis","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9062/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"R","number":"9062","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9062/cosponsors?format=json","sponsors.0.bioguideId":"C001114","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9062/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9062/relatedbills?format=json","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","bill.sponsors.0.bioguideId":"L000583","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9062/text?format=json","bill.updateDate":"2025-01-03T08:02:07Z","updateDate":"2024-12-06T16:35:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9062/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","request.billNumber":"9062","committees.url":"https://api.congress.gov/v3/bill/118/hr/9062/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9062/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:07Z","title":"Operational Flexibility Grazing Management Program Act","bill.title":"Respect State Housing Laws Act","bill.number":"9062","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9062/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9062/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9062/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Barry","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9062/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9062/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9062?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 9062.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo provide for the establishment of an Operational\nFlexibility Grazing Management Program on land managed by the\nBureau of Land Management, and for other purposes.\n[Page H4641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":11,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-12-06T16:35:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9062/text?format=json","bill.sponsors.0.lastName":"Loudermilk"}} +{"type":"node","id":"8655","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9044/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Jackson Lee","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9044/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9044","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9044/cosponsors?format=json","sponsors.0.bioguideId":"J000032","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9044/actions?format=json","latestAction.actionDate":"2024-07-15","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","bill.sponsors.0.bioguideId":"D000399","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-35]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9044/text?format=json","bill.updateDate":"2024-02-07T16:32:33Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9044/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","request.billNumber":"9044","committees.url":"https://api.congress.gov/v3/bill/118/hr/9044/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9044/subjects?format=json","bill.updateDateIncludingText":"2024-02-07T16:32:33Z","title":"To provide for citizen engagement on the development and adoption of Federal civilian agency use of artificial intelligence, and for other purposes.","bill.title":"To amend the Internal Revenue Code of 1986 to create a safe harbor for certain perpetual trust funds.","bill.number":"9044","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9044/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9044/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9044/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"LLOYD","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9044/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9044/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9044?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 9044.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 . . . ''Provide for the common defense\nand general Welfare of the United States, . . . To make all\nLaws which shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution In the Government of the United States\nor in any Department or Officer thereof.\nThe single subject of this legislation is:\nThe bill, should it become law, would establish a process\nfor engaging the American public in a dialogue about\nArtificial Intelligence and its use by federal civilian\nagencies. The bill provides for a series of in-person and\nvirtual listening sessions around the nation.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":18,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":35,"sponsors.0.firstName":"Sheila","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9044/text?format=json","bill.sponsors.0.lastName":"DOGGETT"}} +{"type":"node","id":"8656","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9079/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Beyer","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9079/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9079","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9079/cosponsors?format=json","sponsors.0.bioguideId":"B001292","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9079/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","bill.sponsors.0.bioguideId":"S000510","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9079/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-09-25T17:10:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9079/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","request.billNumber":"9079","committees.url":"https://api.congress.gov/v3/bill/118/hr/9079/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9079/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"NURSE Visa Act of 2024","bill.title":"Community and Technical College Investment Act of 2022","bill.number":"9079","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9079/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9079/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9079/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ADAM","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9079/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9079/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9079?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 9079.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nLegislating\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":8,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-09-25T17:10:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9079/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8657","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Aderholt","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9029/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 485.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9029","sponsors":[],"sponsors.0.bioguideId":"A000055","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9029/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9029/relatedbills?format=json","latestAction.actionDate":"2024-07-12","textVersions.count":1,"bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","bill.sponsors.0.bioguideId":"W000821","bill.actions.count":3,"bill.originChamber":"House","titles.count":6,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-585","bill.sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9029/text?format=json","bill.updateDate":"2025-01-03T08:02:20Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9029/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","request.billNumber":"9029","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9029/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:20Z","title":"Departments of Labor, Health and Human Services, and Education, and Related Agencies Appropriations Act, 2025","bill.title":"Ouachita National Forest Overnight Camping Act","bill.number":"9029","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9029/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/585?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9029/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9029/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","introducedDate":"2024-07-12","bill.originChamberCode":"H","subjects.count":157,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bruce","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9029/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9029/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9029?format=json","bill.introducedDate":"2022-09-29","sponsors.0.district":4,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9029/text?format=json","bill.sponsors.0.lastName":"Westerman"}} +{"type":"node","id":"8658","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9031/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Stauber","bill.latestAction.actionDate":"2022-09-29","cboCostEstimates.0.pubDate":"2024-11-15T17:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9031/summaries?format=json","type":"HR","latestAction.text":"Reported by the Committee on Small Business. H. Rept. 118-853, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9031","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9031/cosponsors?format=json","sponsors.0.bioguideId":"S001212","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9031/actions?format=json","latestAction.actionDate":"2024-12-10","textVersions.count":1,"bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","bill.sponsors.0.bioguideId":"N000190","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-853","bill.sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9031/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-13T01:11:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9031/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","request.billNumber":"9031","committees.url":"https://api.congress.gov/v3/bill/118/hr/9031/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9031/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Assurance for Small Business Act of 2024","bill.title":"No Pay for Congressional Recklessness Act","bill.number":"9031","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60991","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9031/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/853?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9031/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9031/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"H.R. 9031, Assurance for Small Business Act of 2024","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ralph","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9031/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9031/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9031?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 9031.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 ``The Congress shall have\npower to . . . provide for the . . . general welfare of the\nUnited States; . . .''\nThe single subject of this legislation is:\nRequiring agencies to report to Congress how they determine\na rule's impact on businesses.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":8,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":5,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-02-13T01:11:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9031/text?format=json","bill.sponsors.0.lastName":"Norman"}} +{"type":"node","id":"8659","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brecheen","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9080/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9080","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9080/cosponsors?format=json","sponsors.0.bioguideId":"B001317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9080/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Brecheen, Josh [R-OK-2]","bill.sponsors.0.bioguideId":"S000929","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":17,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Spartz, Victoria [R-IN-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9080/text?format=json","bill.updateDate":"2025-01-03T08:02:21Z","updateDate":"2024-09-19T19:10:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9080/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001317?format=json","request.billNumber":"9080","committees.url":"https://api.congress.gov/v3/bill/118/hr/9080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9080/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:21Z","title":"Secret Service Readiness Act of 2024","bill.title":"Non-Profit Hospital Tax Exemption Transparency Act","bill.number":"9080","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9080/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9080/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9080/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000929?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Victoria","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9080/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9080/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9080?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRECHEEN:\nH.R. 9080.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nTo direct the Director of the United States Secret Service\nto implement a uniform fitness standard for Secret Service\nSpecial Agents and Uniformed Division Officers.\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":2,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":5,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-09-19T19:10:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9080/text?format=json","bill.sponsors.0.lastName":"Spartz"}} +{"type":"node","id":"8660","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9030/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Alford","bill.latestAction.actionDate":"2022-09-29","cboCostEstimates.0.pubDate":"2024-11-15T17:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9030/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Reported by the Committee on Small Business. H. Rept. 118-852, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"9030","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9030/cosponsors?format=json","sponsors.0.bioguideId":"A000379","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9030/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9030/relatedbills?format=json","latestAction.actionDate":"2024-12-10","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9030/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-852","bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9030/text?format=json","bill.updateDate":"2025-01-03T08:02:12Z","updateDate":"2025-02-13T01:11:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9030/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","request.billNumber":"9030","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9030/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9030/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:12Z","title":"Regulatory Agenda Clarity Act","bill.title":"Repealing the Ill-Conceived and Problematic (RIP) Book Minimum Tax Act","bill.number":"9030","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60990","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9030/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-29","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/852?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9030/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9030/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 9030, Regulatory Agenda Clarity Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"MO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9030/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9030/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9030?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 9030.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 ``The Congress shall have\npower to . . . provide for the . . . general welfare of the\nUnited States; . . .''\nThe single subject of this legislation is:\nRequires agencies to fully report on the impact of their\nrules.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-13T01:11:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9030/text?format=json","bill.sponsors.0.lastName":"Arrington"}} +{"type":"node","id":"8661","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9068/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Harder","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9068/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9068","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9068/cosponsors?format=json","sponsors.0.bioguideId":"H001090","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9068/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9068/relatedbills?format=json","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","bill.sponsors.0.bioguideId":"O000171","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. O'Halleran, Tom [D-AZ-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9068/text?format=json","bill.updateDate":"2025-01-03T08:02:09Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9068/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","request.billNumber":"9068","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9068/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9068/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:09Z","title":"Child Care Workforce and Facilities Act of 2024","bill.title":"Tribal COPS Act","bill.number":"9068","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9068/committees?format=json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9068/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9068/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000171?format=json","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9068/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9068/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9068?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 9068.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article 1, Sec. 8\nThe single subject of this legislation is:\nThis bill assists States in carrying out projects to expand\nthe child care workforce and child care facilities in the\nStates, and for other purposes,\n[Page H4641]\n","sponsors.0.district":9,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":1,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9068/text?format=json","bill.sponsors.0.lastName":"O'Halleran"}} +{"type":"node","id":"8662","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9027/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Harris","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9027/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 483.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"B.","number":"9027","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9027/cosponsors?format=json","sponsors.0.bioguideId":"H001052","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9027/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9027/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-12","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Harris, Andy [R-MD-1]","bill.sponsors.0.bioguideId":"M001180","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-583","bill.sponsors.0.fullName":"Rep. McKinley, David B. [R-WV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9027/text?format=json","bill.updateDate":"2025-01-03T08:02:10Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9027/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/H001052?format=json","request.billNumber":"9027","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9027/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9027/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:10Z","title":"Agriculture, Rural Development, Food and Drug Administration, and Related Agencies Appropriations Act, 2025","bill.title":"Ocean Restoration Research and Development Act of 2022","bill.number":"9027","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9027/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/583?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9027/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9027/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001180?format=json","introducedDate":"2024-07-12","bill.originChamberCode":"H","subjects.count":54,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"MD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9027/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9027/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9027?format=json","bill.introducedDate":"2022-09-29","sponsors.0.district":1,"bill.sponsors.0.state":"WV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9027/text?format=json","bill.sponsors.0.lastName":"McKinley"}} +{"type":"node","id":"8663","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9076/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2022-09-29","cboCostEstimates.0.pubDate":"2024-10-23T18:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9076/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-258.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9076","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9076/cosponsors?format=json","sponsors.0.bioguideId":"L000585","laws.0.number":"118-258","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9076/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9076/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2025-01-04","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"S001216","bill.originChamber":"House","bill.actions.count":3,"titles.count":8,"cosponsors.count":23,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-679","bill.sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9076/text?format=json","bill.updateDate":"2025-01-03T08:02:12Z","updateDate":"2025-02-27T20:23:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9076/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"9076","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9076/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:12Z","title":"Supporting America’s Children and Families Act","bill.title":"Tax Credit for Student Parents Act","bill.number":"9076","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 24, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":23,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60853","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9076/committees?format=json","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/679?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9076/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9076/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 9076, Protecting America’s Children by Strengthening Families Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":25,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kim","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9076/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9076/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 9076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution--Congress has\nthe power ``To make all laws which shall be necessary and\nproper for carrying into execution the foregoing powers, and\nall other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.''\nThe single subject of this legislation is:\nThe bill would reauthorize and modernize part B of title IV\nof the Social Security Act to strengthen child welfare\nservices, expand the availability of prevention services to\nbetter meet the needs of vulnerable families.\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":16,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2025-02-27T20:23:56Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9076/text?format=json","bill.sponsors.0.lastName":"Schrier"}} +{"type":"node","id":"8664","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9060/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carey","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9060/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9060","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9060/cosponsors?format=json","sponsors.0.bioguideId":"C001126","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9060/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9060/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Carey, Mike [R-OH-15]","bill.sponsors.0.bioguideId":"L000593","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9060/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9060/text?format=json","bill.updateDate":"2025-01-03T08:02:12Z","updateDate":"2024-12-18T09:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9060/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001126?format=json","request.billNumber":"9060","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9060/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9060/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:12Z","title":"Biodiesel Tax Credit Extension Act of 2024","bill.title":"Prevent Family Fire Act of 2022","bill.number":"9060","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9060/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9060/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9060/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9060/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9060/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9060?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAREY:\nH.R. 9060.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to extend the\nbiodiesel fuels credit and the biodiesel mixture credit.\n[Page H4641]\n","sponsors.0.district":15,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9060/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"8665","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Guthrie","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9077/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9077","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9077/cosponsors?format=json","sponsors.0.bioguideId":"G000558","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9077/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","bill.sponsors.0.bioguideId":"S001208","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9077/text?format=json","bill.updateDate":"2025-01-03T08:02:16Z","updateDate":"2024-09-03T17:33:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9077/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","request.billNumber":"9077","committees.url":"https://api.congress.gov/v3/bill/118/hr/9077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9077/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:16Z","title":"Fair and Efficient Regulatory Commonsense Act","bill.title":"Canine Members of the Armed Forces Act","bill.number":"9077","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9077/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9077/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9077/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"KY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9077/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9077/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9077?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 9077.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the U.S. Constitution\nThe single subject of this legislation is:\nThis legislation would remove existing authorities of the\nFederal Energy Regulatory Commission (FERC) to compensate\nindividuals seeking to intervene in Commission proceedings\nand re-designate the Office of Public Participation as a\nDivision under the existing Office of External Affairs\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":2,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Brett","bill.type":"HR","updateDateIncludingText":"2024-09-03T17:33:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9077/text?format=json","bill.sponsors.0.lastName":"Slotkin"}} +{"type":"node","id":"8666","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9084/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McCormick","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9084/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Oversight and Accountability, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"9084","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9084/cosponsors?format=json","sponsors.0.bioguideId":"M001218","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9084/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-22","bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. McCormick, Richard [R-GA-6]","bill.sponsors.0.bioguideId":"V000129","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Valadao, David G. [R-CA-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9084/text?format=json","bill.updateDate":"2025-01-03T08:02:09Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9084/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001218?format=json","request.billNumber":"9084","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9084/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9084/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:09Z","title":"STOP the SWAMP Act","bill.title":"WATER for California Act","bill.number":"9084","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9084/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9084/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9084/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000129?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9084/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9084/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9084?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCORMICK:\nH.R. 9084.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nOversight\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":21,"sponsors.0.firstName":"Richard","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9084/text?format=json","bill.sponsors.0.lastName":"Valadao"}} +{"type":"node","id":"8667","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9056/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pappas","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9056/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"9056","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9056/cosponsors?format=json","sponsors.0.bioguideId":"P000614","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9056/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9056/relatedbills?format=json","latestAction.actionDate":"2024-07-23","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","bill.sponsors.0.bioguideId":"G000551","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9056/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9056/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-05T20:37:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9056/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","request.billNumber":"9056","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9056/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9056/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"VA Insurance Improvement Act","bill.title":"Right to Read Act of 2022","bill.number":"9056","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9056/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9056/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9056/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raúl","sponsors.0.state":"NH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9056/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9056/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9056?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 9056.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution states that ``Congress shall have the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\nThe single subject of this legislation is:\nVeterans\n[Page H4641]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Chris","bill.type":"HR","updateDateIncludingText":"2024-12-05T20:37:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9056/text?format=json","bill.sponsors.0.lastName":"Grijalva"}} +{"type":"node","id":"8668","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallego","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9065/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9065","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9065/cosponsors?format=json","sponsors.0.bioguideId":"G000574","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9065/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","bill.sponsors.0.bioguideId":"M001166","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McNerney, Jerry [D-CA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9065/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-10-02T08:05:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9065/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","request.billNumber":"9065","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9065/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9065/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend the Internal Revenue Code of 1986 to include room air conditioners as qualified energy property for purposes of the energy efficient home improvement credit.","bill.title":"Student Loan Earned Relief Act","bill.number":"9065","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9065/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9065/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9065/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001166?format=json","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jerry","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9065/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9065/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9065?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 9065.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution.\nThe single subject of this legislation is:\nTaxation\n[Page H4641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Ruben","bill.type":"HR","updateDateIncludingText":"2024-10-02T08:05:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9065/text?format=json","bill.sponsors.0.lastName":"McNerney"}} +{"type":"node","id":"8669","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9049/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9049/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9049","bill.cosponsors.countIncludingWithdrawnCosponsors":33,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9049/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9049/actions?format=json","latestAction.actionDate":"2024-07-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9049/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"F000468","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9049/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9049/text?format=json","bill.updateDate":"2025-01-03T08:02:14Z","updateDate":"2024-08-20T17:40:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9049/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"9049","committees.url":"https://api.congress.gov/v3/bill/118/hr/9049/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9049/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:14Z","title":"HEALTH for MOM Act of 2024","bill.title":"RISEE Act of 2022","bill.number":"9049","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9049/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9049/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9049/summaries?format=json","bill.cosponsors.count":33,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lizzie","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9049/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9049/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9049?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 9049.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend title XIX of the Social Security Act to provide\nStates with the option to provide coordinated care through a\npregnancy medical home for high-risk pregnant women, and for\nother purposes.\n[Page H4634]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":7,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-08-20T17:40:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9049/text?format=json","bill.sponsors.0.lastName":"Fletcher"}} +{"type":"node","id":"8670","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9071/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committees on House Administration, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9071/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Intelligence (Permanent Select).","bill.summaries.count":1,"sponsors.0.party":"R","number":"9071","bill.cosponsors.countIncludingWithdrawnCosponsors":69,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9071/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9071/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","bill.policyArea.name":"Arts, Culture, Religion","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"P000607","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committees on House Administration, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pocan, Mark [D-WI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9071/text?format=json","bill.updateDate":"2025-01-03T08:02:13Z","updateDate":"2024-09-16T14:45:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9071/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"9071","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9071/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9071/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:13Z","title":"UAS Threat Disclosure Act","bill.title":"Commission To Study the Potential Creation of a National Museum of American LGBTQ+ History and Culture Act","bill.number":"9071","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9071/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9071/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9071/summaries?format=json","bill.cosponsors.count":69,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000607?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9071/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9071/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9071?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 9071.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Director of National Intelligence to\ndeclassify information relating to security threats posed by\ncovered unmanned aircraft systems, and for other purposes.\n[Page H4641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-09-16T14:45:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9071/text?format=json","bill.sponsors.0.lastName":"Pocan"}} +{"type":"node","id":"8671","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9078/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Aderholt","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9078/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9078","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9078/cosponsors?format=json","sponsors.0.bioguideId":"A000055","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9078/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9078/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","bill.sponsors.0.bioguideId":"S001208","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9078/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9078/text?format=json","bill.updateDate":"2025-01-03T08:02:10Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9078/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","request.billNumber":"9078","committees.url":"https://api.congress.gov/v3/bill/118/hr/9078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9078/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:10Z","title":"Deliver for Democracy Act","bill.title":"PRIMED Act","bill.number":"9078","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9078/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9078/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9078/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9078/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9078/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9078?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ADERHOLT:\nH.R. 9078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 and Article 1, Section 8\nThe single subject of this legislation is:\nTo require on-time delivery of periodicals to unlock\nadditional rate authority, and for other purposes.\n[Page H4730]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9078/text?format=json","bill.sponsors.0.lastName":"Slotkin"}} +{"type":"node","id":"8672","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gimenez","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9066/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9066","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9066/cosponsors?format=json","sponsors.0.bioguideId":"G000593","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9066/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9066/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-28]","bill.sponsors.0.bioguideId":"M001186","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9066/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meijer, Peter [R-MI-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9066/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-21T15:45:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9066/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","request.billNumber":"9066","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9066/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9066/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Cuba Threat Assessment Act","bill.title":"Retirement Savings Modernization Act","bill.number":"9066","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9066/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9066/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9066/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001186?format=json","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Peter","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9066/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9066/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9066?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 9066.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution stating\nthat Congress has the authority to ``make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by the\nConstitution''.\nThe single subject of this legislation is:\nTo require an assessment by the Department of Homeland\nSecurity regarding threats within the United States posed by\nthe Republic of Cuba, and for other purposes.\n[Page H4641]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":28,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":3,"sponsors.0.firstName":"Carlos","bill.type":"HR","updateDateIncludingText":"2024-08-21T15:45:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9066/text?format=json","bill.sponsors.0.lastName":"Meijer"}} +{"type":"node","id":"8673","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Evans","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9041/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"9041","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9041/cosponsors?format=json","sponsors.0.bioguideId":"E000296","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9041/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9041/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Evans, Dwight [D-PA-3]","bill.sponsors.0.bioguideId":"C000537","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9041/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Clyburn, James E. [D-SC-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9041/text?format=json","bill.updateDate":"2025-01-03T08:02:22Z","updateDate":"2024-12-19T09:05:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9041/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/E000296?format=json","request.billNumber":"9041","committees.url":"https://api.congress.gov/v3/bill/118/hr/9041/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9041/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:22Z","title":"PEER Mentors Act of 2024","bill.title":"Domestic Reinvestment Act of 2022","bill.number":"9041","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9041/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9041/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9041/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C000537?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9041/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9041/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9041?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EVANS:\nH.R. 9041.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill promotes the peer mentoring among parents and\nfamilies throughout the services that may be provided under\nTitle IV-B of the Social Security Act.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":3,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":6,"sponsors.0.firstName":"Dwight","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9041/text?format=json","bill.sponsors.0.lastName":"CLYBURN"}} +{"type":"node","id":"8674","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bowman","bill.latestAction.actionDate":"2022-09-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8797/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8797","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 145 (Friday, September 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 8797.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H7742]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8797/cosponsors?format=json","sponsors.0.bioguideId":"B001223","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8797/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8797/relatedbills?format=json","latestAction.actionDate":"2024-06-21","textVersions.count":1,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8797/text?format=json","bill.updateDate":"2025-01-03T07:59:05Z","updateDate":"2024-10-10T20:15:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8797/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","request.billNumber":"8797","committees.url":"https://api.congress.gov/v3/bill/118/hr/8797/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8797/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:05Z","title":"Ending Corporate Greed Act","bill.title":"Caribbean Stakeholders Engagement Act","bill.number":"8797","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8797/committees?format=json","latestAction_actionDate":"2022-09-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8797/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8797/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-06-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8797/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8797/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8797?format=json","bill.introducedDate":"2022-09-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 105 (Friday, June 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOWMAN:\nH.R. 8797.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nTax on corporate windfall profits\n[Page H4120]\n","sponsors.0.district":16,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Jamaal","bill.type":"HR","updateDateIncludingText":"2024-10-10T20:15:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8797/text?format=json","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"8675","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carey","bill.latestAction.actionDate":"2022-09-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8798/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8798","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 145 (Friday, September 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 8798.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H7742]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8798/cosponsors?format=json","sponsors.0.bioguideId":"C001126","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8798/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Carey, Mike [R-OH-15]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8798/text?format=json","bill.updateDate":"2025-01-03T07:59:05Z","updateDate":"2025-01-17T03:11:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8798/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001126?format=json","request.billNumber":"8798","committees.url":"https://api.congress.gov/v3/bill/118/hr/8798/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8798/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:05Z","title":"Promoting Community-Based Prevention Services Act","bill.title":"The INCSR Improvement Act","bill.number":"8798","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8798/committees?format=json","latestAction_actionDate":"2022-09-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8798/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8798/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-06-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8798/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8798/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8798?format=json","bill.introducedDate":"2022-09-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 105 (Friday, June 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAREY:\nH.R. 8798.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo amend subpart 2 of part B of the Social Security Act to\npromote community-based prevention services, and for other\npurposes.\n[Page H4120]\n","sponsors.0.district":15,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-01-17T03:11:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8798/text?format=json","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"8676","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Weber","bill.latestAction.actionDate":"2022-09-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8789/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"8789","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 145 (Friday, September 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 8789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nArticle I, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have Power to lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States.\n[Page H7742]\n","sponsors.0.bioguideId":"W000814","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8789/actions?format=json","latestAction.actionDate":"2024-06-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8789/relatedbills?format=json","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Weber, Randy K. [R-TX-14]","bill.sponsors.0.bioguideId":"M001213","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8789/text?format=json","bill.updateDate":"2025-01-03T07:59:05Z","updateDate":"2024-09-03T16:16:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8789/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000814?format=json","request.billNumber":"8789","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8789/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8789/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:05Z","title":"Officer John Barnes Act","bill.title":"Connecting Forever Families Act of 2022","bill.number":"8789","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8789/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-09-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8789/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8789/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Blake","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8789/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8789/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8789?format=json","bill.introducedDate":"2022-09-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WEBER of Texas:\nH.R. 8789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 9, Clause 7\nThe single subject of this legislation is:\nTo provide a timeline for determinations under the Public\nSafety Officers' Benefit program\n[Page H4115]\n","sponsors.0.district":14,"bill.sponsors.0.state":"UT","bill.sponsors.0.district":1,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-09-03T16:16:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8789/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"8677","labels":["Bill"],"properties":{"relatedBills.count":14,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Peltola","bill.latestAction.actionDate":"2022-09-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":14,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8788/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"W.","number":"8788","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 145 (Friday, September 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEEKS:\nH.R. 8788.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\n[Page H7742]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8788/cosponsors?format=json","sponsors.0.bioguideId":"P000619","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8788/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8788/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Peltola, Mary Sattler [D-AK-At Large]","bill.sponsors.0.bioguideId":"M001137","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8788/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meeks, Gregory W. [D-NY-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8788/text?format=json","bill.updateDate":"2025-01-03T07:59:04Z","updateDate":"2024-12-19T09:06:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8788/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/P000619?format=json","request.billNumber":"8788","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8788/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8788/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:04Z","title":"Fisheries Improvement and Seafood Health Act of 2024","bill.title":"Department of State Authorization Act of 2022","bill.number":"8788","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8788/committees?format=json","request.format":"json","sponsors.0.middleName":"Sattler","latestAction_actionDate":"2022-09-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8788/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8788/summaries?format=json","bill.titles.count":5,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001137?format=json","introducedDate":"2024-06-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"GREGORY","sponsors.0.state":"AK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8788/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8788/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8788?format=json","bill.introducedDate":"2022-09-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. PELTOLA:\nH.R. 8788.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nImprove fisheries management\n[Page H4115]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":5,"sponsors.0.firstName":"Mary","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8788/text?format=json","bill.sponsors.0.lastName":"MEEKS"}} +{"type":"node","id":"8678","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2022-09-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8779/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F.","number":"8779","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 145 (Friday, September 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 8779.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H7742]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8779/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8779/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-18","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"L000562","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8779/text?format=json","bill.updateDate":"2025-01-03T07:59:03Z","updateDate":"2024-08-07T13:04:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8779/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"8779","committees.url":"https://api.congress.gov/v3/bill/118/hr/8779/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8779/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:03Z","title":"Convert HABs to Fuel Act","bill.title":"Embassy Construction Accountability Act of 2022","bill.number":"8779","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8779/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-09-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8779/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8779/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","introducedDate":"2024-06-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephen","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8779/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8779/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8779?format=json","bill.introducedDate":"2022-09-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 8779.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is.\nEnvironment\n[Page H4114]\n","sponsors.0.district":19,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2024-08-07T13:04:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8779/text?format=json","bill.sponsors.0.lastName":"Lynch"}} +{"type":"node","id":"8679","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8776/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kelly","bill.latestAction.actionDate":"2022-09-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8776/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8776","bill.cosponsors.countIncludingWithdrawnCosponsors":30,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 8776.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\n[Page H7738]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8776/cosponsors?format=json","sponsors.0.bioguideId":"K000376","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8776/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Kelly, Mike [R-PA-16]","bill.sponsors.0.bioguideId":"N000190","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8776/text?format=json","bill.updateDate":"2025-01-03T07:58:48Z","updateDate":"2024-12-19T09:06:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8776/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000376?format=json","request.billNumber":"8776","committees.url":"https://api.congress.gov/v3/bill/118/hr/8776/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8776/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:48Z","title":"To amend the Internal Revenue Code of 1986 to treat membership in a health care sharing ministry as a medical expense, and for other purposes.","bill.title":"No Federal Funds for Abortion Travel Expenses Act of 2022","bill.number":"8776","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8776/committees?format=json","latestAction_actionDate":"2022-09-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8776/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8776/summaries?format=json","bill.cosponsors.count":30,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","introducedDate":"2024-06-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ralph","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8776/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8776/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8776?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Pennsylvania:\nH.R. 8776.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to treat\nmembership in a health care sharing ministry as a medical\nexpense\n[Page H4114]\n","sponsors.0.district":16,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":5,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8776/text?format=json","bill.sponsors.0.lastName":"Norman"}} +{"type":"node","id":"8680","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8774/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Calvert","bill.latestAction.actionDate":"2022-09-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8774/summaries?format=json","type":"HR","latestAction.text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 508.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"B.","number":"8774","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McKINLEY:\nH.R. 8774.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\n[Page H7738]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8774/cosponsors?format=json","amendments.count":15,"sponsors.0.bioguideId":"C000059","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8774/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8774/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Calvert, Ken [R-CA-41]","bill.sponsors.0.bioguideId":"M001180","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8774/amendments?format=json","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-557","bill.sponsors.0.fullName":"Rep. McKinley, David B. [R-WV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8774/text?format=json","bill.updateDate":"2025-01-03T07:58:48Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8774/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":55,"sponsors.0.url":"https://api.congress.gov/v3/member/C000059?format=json","request.billNumber":"8774","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8774/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8774/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:48Z","title":"Department of Defense Appropriations Act, 2025","bill.title":"Menopause Research Act of 2022","bill.number":"8774","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8774/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-07","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/557?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8774/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8774/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001180?format=json","introducedDate":"2024-06-17","bill.originChamberCode":"H","subjects.count":107,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8774/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8774/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8774?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CALVERT:\nH.R. 8774.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of Defense, and for other purposes, for fiscal\nyear 2025.\n[Page H4114]\n","sponsors.0.district":41,"bill.sponsors.0.state":"WV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Ken","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8774/text?format=json","bill.sponsors.0.lastName":"McKinley"}} +{"type":"node","id":"8681","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Joyce","bill.latestAction.actionDate":"2022-09-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8773/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 459.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8773","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 8773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the United States\nConstitution.\n[Page H7738]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8773/cosponsors?format=json","sponsors.0.bioguideId":"J000295","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8773/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8773/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","bill.sponsors.0.bioguideId":"L000578","bill.originChamber":"House","bill.actions.count":4,"titles.count":7,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-556","bill.sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8773/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","request.billNumber":"8773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8773/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Financial Services and General Government Appropriations Act, 2025","bill.title":"Revoking Engine and Vehicle Requirements Act of 2022","bill.number":"8773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8773/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-09-07","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/556?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8773/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","introducedDate":"2024-06-17","bill.originChamberCode":"H","subjects.count":117,"bill.committees.count":1,"bill.sponsors.0.firstName":"Doug","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8773/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8773/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8773?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 8773.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of the Treasury, the Executive Office of the\nPresident, the Judiciary, the District of Columbia, and\nindependent agencies for fiscal year 2025.\n[Page H4114]\n","sponsors.0.district":14,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":1,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8773/text?format=json","bill.sponsors.0.lastName":"LaMalfa"}} +{"type":"node","id":"8682","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8772/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Valadao","bill.latestAction.actionDate":"2022-09-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8772/summaries?format=json","type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8772","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 8772.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H7738]\n","amendments.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8772/cosponsors?format=json","sponsors.0.bioguideId":"V000129","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8772/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8772/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-11","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Valadao, David G. [R-CA-22]","bill.sponsors.0.bioguideId":"J000301","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8772/amendments?format=json","bill.actions.count":6,"bill.originChamber":"House","titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-555","bill.sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8772/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8772/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/V000129?format=json","request.billNumber":"8772","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8772/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8772/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Legislative Branch Appropriations Act, 2025","bill.title":"Block the Tok Act","bill.number":"8772","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8772/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-09-07","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/555?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8772/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8772/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"latestAction.actionTime":"11:16:46","bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","introducedDate":"2024-06-17","bill.originChamberCode":"H","subjects.count":46,"bill.committees.count":3,"bill.sponsors.0.firstName":"Dusty","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8772/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8772/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8772?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VALADAO:\nH.R. 8772.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Legislative Branch for fiscal year 2025.\n[Page H4114]\n","sponsors.0.district":22,"bill.sponsors.0.state":"SD","sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8772/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"8683","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8771/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Diaz-Balart","bill.latestAction.actionDate":"2022-09-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8771/summaries?format=json","type":"HR","latestAction.text":"Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 507.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8771","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 8771.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3.\n[Page H7738]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8771/cosponsors?format=json","amendments.count":38,"sponsors.0.bioguideId":"D000600","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8771/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8771/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-09-12","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Diaz-Balart, Mario [R-FL-26]","bill.sponsors.0.bioguideId":"B001295","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8771/amendments?format=json","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-554","bill.sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8771/text?format=json","bill.updateDate":"2025-01-03T07:58:49Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8771/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":100,"sponsors.0.url":"https://api.congress.gov/v3/member/D000600?format=json","request.billNumber":"8771","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8771/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8771/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:49Z","title":"Department of State, Foreign Operations, and Related Programs Appropriations Act, 2025","bill.title":"Options for Ownership Act","bill.number":"8771","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8771/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-07","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/554?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8771/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8771/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":176,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8771/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8771/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8771?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DIAZ-BALART:\nH.R. 8771.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of State, Foreign Operations, and Related\nPrograms for fiscal year 2025.\n[Page H4114]\n","sponsors.0.district":26,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Mario","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8771/text?format=json","bill.sponsors.0.lastName":"Bost"}} +{"type":"node","id":"8684","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steil","bill.latestAction.actionDate":"2022-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8766/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8766","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CHABOT:\nH.R. 8766.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8766/cosponsors?format=json","sponsors.0.bioguideId":"S001213","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8766/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8766/relatedbills?format=json","latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","bill.sponsors.0.bioguideId":"C000266","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8766/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Chabot, Steve [R-OH-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8766/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-12T19:18:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8766/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","request.billNumber":"8766","committees.url":"https://api.congress.gov/v3/bill/118/hr/8766/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8766/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"American Flags to Honor Our Veterans Act of 2024","bill.title":"REFINE Act","bill.number":"8766","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8766/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8766/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8766/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C000266?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"STEVE","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8766/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8766/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8766?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEIL:\nH.R. 8766.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFlag code\n[Page H4109]\n","sponsors.0.district":1,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":1,"sponsors.0.firstName":"Bryan","bill.type":"HR","updateDateIncludingText":"2024-11-12T19:18:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8766/text?format=json","bill.sponsors.0.lastName":"CHABOT"}} +{"type":"node","id":"8685","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8778/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carey","bill.latestAction.actionDate":"2022-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8778/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8778","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 8778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\n[Page H7738]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8778/cosponsors?format=json","sponsors.0.bioguideId":"C001126","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8778/actions?format=json","latestAction.actionDate":"2024-06-18","textVersions.count":1,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Carey, Mike [R-OH-15]","bill.sponsors.0.bioguideId":"W000788","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8778/text?format=json","bill.updateDate":"2025-01-03T07:58:49Z","updateDate":"2024-08-29T11:45:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8778/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001126?format=json","request.billNumber":"8778","committees.url":"https://api.congress.gov/v3/bill/118/hr/8778/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8778/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:49Z","title":"No Passport Fees for Heroes’ Families Act","bill.title":"Home Internet Accessibility Act","bill.number":"8778","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8778/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8778/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8778/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","introducedDate":"2024-06-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Nikema","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8778/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8778/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8778?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAREY:\nH.R. 8778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo waive the fee for the issuance of a passport for a\nfamily member of a member of the Armed Forces who is in a\nhospital or medical facility abroad, and for other purposes.\n[Page H4114]\n","sponsors.0.district":15,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-08-29T11:45:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8778/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8686","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8775/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crenshaw","bill.latestAction.actionDate":"2022-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8775/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8775","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 142 (Tuesday, September 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 8775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H7738]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8775/cosponsors?format=json","sponsors.0.bioguideId":"C001120","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8775/actions?format=json","latestAction.actionDate":"2024-06-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8775/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","bill.sponsors.0.bioguideId":"M001204","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8775/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8775/text?format=json","bill.updateDate":"2025-01-03T07:58:50Z","updateDate":"2024-09-04T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8775/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","request.billNumber":"8775","committees.url":"https://api.congress.gov/v3/bill/118/hr/8775/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8775/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:50Z","title":"Contingency Plan for Critical Infrastructure Act","bill.title":"BASIC Act","bill.number":"8775","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8775/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8775/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8775/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8775/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8775/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8775?format=json","bill.introducedDate":"2022-09-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 103 (Tuesday, June 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 8775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo provide Congress with an assessment on the ability of\ncritical infrastructure owners and operators to operate\ncritical systems in a manual operating mode during cyber\nincidents.\n[Page H4114]\n","sponsors.0.district":2,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-09-04T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8775/text?format=json","bill.sponsors.0.lastName":"Meuser"}} +{"type":"node","id":"8687","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8769/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8769/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8769","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 8769.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8769/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"V000133","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":25,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8769/text?format=json","bill.updateDate":"2025-01-03T07:58:45Z","updateDate":"2024-09-03T16:18:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8769/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"8769","committees.url":"https://api.congress.gov/v3/bill/118/hr/8769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8769/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:45Z","title":"State Industrial Competitiveness Act of 2024","bill.title":"IRS Reduction Act","bill.number":"8769","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8769/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8769/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8769/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jefferson","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8769/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8769/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8769?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 8769\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nTo support State Energy Offices with industrial energy\nefficiency\n[Page H4110]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":2,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-09-03T16:18:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8769/text?format=json","bill.sponsors.0.lastName":"Van Drew"}} +{"type":"node","id":"8688","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8767/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thanedar","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8767/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8767","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8767.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8767/cosponsors?format=json","sponsors.0.bioguideId":"T000488","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.sponsors.0.bioguideId":"G000595","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8767/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-29T12:31:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8767/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","request.billNumber":"8767","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8767/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Improving Access to Institutional Mental Health Care Act","bill.title":"Empowering Parents Act","bill.number":"8767","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8767/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8767/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8767/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bob","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8767/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8767/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8767?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 8767.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have . . . power to make all laws. Article 1\nSection 8\nThe single subject of this legislation is:\nTo amend title XIX of the Social Security Act to remove the\nexclusion from medical assistance under the Medicaid program\nof items and services for patients in an institution for\nmental diseases.\n[Page H4109]\n","sponsors.0.district":13,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Shri","bill.type":"HR","updateDateIncludingText":"2025-02-27T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8767/text?format=json","bill.sponsors.0.lastName":"Good"}} +{"type":"node","id":"8689","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Appropriations.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8768/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8768","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 8768.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8768/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8768/actions?format=json","latestAction.actionDate":"2024-06-14","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"N000190","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Referred to the House Committee on Appropriations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8768/text?format=json","bill.updateDate":"2025-01-03T07:58:46Z","updateDate":"2024-08-07T14:59:24Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8768/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"8768","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8768/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8768/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:46Z","title":"Restoring Trust in Public Safety Act","bill.title":"Fighting Cancer in Children Act","bill.number":"8768","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8768/committees?format=json","sponsors.0.middleName":"N.","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8768/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8768/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ralph","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8768/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8768/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8768?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\n[Pages H4109-H4110]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 8768\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H4110]]\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo authorize the Attorney General to make grants available\nto support State, Tribal, and local firearm destruction\nactivities.\n","sponsors.0.district":2,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-08-07T14:59:24Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8768/text?format=json","bill.sponsors.0.lastName":"Norman"}} +{"type":"node","id":"8690","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Raskin","bill.latestAction.actionDate":"2022-08-30","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8764/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8764","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 140 (Tuesday, August 30, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 8764.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8, Clause 18 of the United States\nConstitution states that ``Congress shall have the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\n[Page H7732]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8764/cosponsors?format=json","sponsors.0.bioguideId":"R000606","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8764/actions?format=json","latestAction.actionDate":"2024-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8764/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Raskin, Jamie [D-MD-8]","bill.sponsors.0.bioguideId":"P000614","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8764/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8764/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/R000606?format=json","request.billNumber":"8764","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8764/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8764/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Clean Hands Firearm Procurement Act","bill.title":"LIHEAP Act","bill.number":"8764","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8764/committees?format=json","latestAction_actionDate":"2022-08-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8764/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8764/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Chris","sponsors.0.state":"MD","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8764/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8764/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8764?format=json","bill.introducedDate":"2022-08-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RASKIN:\nH.R. 8764.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is to require the\nAttorney General to make publicly available a list of\nfederally licensed firearms dealers with a high number of\nshort time-to-crime firearm traces, and to prohibit Federal\ndepartments and agencies from contracting with such dealers.\n[Page H4109]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NH","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jamie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8764/text?format=json","bill.sponsors.0.lastName":"Pappas"}} +{"type":"node","id":"8691","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carson","bill.latestAction.actionDate":"2022-08-30","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8755/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8755","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 140 (Tuesday, August 30, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of California:\nH.R. 8755.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution,\nwhich gives Congress the power ``to regulate commerce with\nforeign nations, and among the several states . . .''\n[Page H7731]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8755/cosponsors?format=json","sponsors.0.bioguideId":"C001072","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8755/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8755/relatedbills?format=json","latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Carson, André [D-IN-7]","bill.sponsors.0.bioguideId":"G000061","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8755/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Mike [R-CA-25]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8755/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8755/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","request.billNumber":"8755","committees.url":"https://api.congress.gov/v3/bill/118/hr/8755/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8755/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Eid Days Act","bill.title":"Restoring Workers’ Rights Act of 2022","bill.number":"8755","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8755/committees?format=json","request.format":"json","latestAction_actionDate":"2022-08-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8755/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8755/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000061?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8755/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8755/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8755?format=json","bill.introducedDate":"2022-08-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARSON:\nH.R. 8755.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nThis legislation establishes Eid, the Muslim holiday, as a\nfederal holiday.\n[Page H4109]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":25,"sponsors.0.firstName":"André","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8755/text?format=json","bill.sponsors.0.lastName":"Garcia"}} +{"type":"node","id":"8692","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8753/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Boebert","bill.latestAction.actionDate":"2022-08-30","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8753/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8753","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 140 (Tuesday, August 30, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 8753.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress taxes and spends (which is applied to numerous\ngovernment programs, including grant programs) under Article\nI, Sec. 8, Cl. ``The Congress shall have Power To lay and\ncollect Taxes, Duties, Imposts and Excises, to pay the Debts\nand provide for the common Defence and general Welfare of the\nUnited States. . . .''\n[Page H7731]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8753/cosponsors?format=json","sponsors.0.bioguideId":"B000825","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8753/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8753/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8753/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8753/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":12,"sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","request.billNumber":"8753","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8753/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8753/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To direct the United States Postal Service to designate single, unique ZIP Codes for certain communities, and for other purposes.","bill.title":"Critical Health Careers Act of 2022","bill.number":"8753","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8753/committees?format=json","request.format":"json","latestAction_actionDate":"2022-08-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8753/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8753/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8753/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8753/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8753?format=json","bill.introducedDate":"2022-08-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BOEBERT:\nH.R. 8753.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nEstablishes zip codes for these 31 individual communities.\n[Page H4109]\n","sponsors.0.district":3,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8753/text?format=json","bill.sponsors.0.lastName":"Budd"}} +{"type":"node","id":"8693","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8752/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Amodei","bill.latestAction.actionDate":"2022-08-30","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8752/summaries?format=json","type":"HR","latestAction.text":"The Clerk was authorized to correct section numbers, punctuation, and cross references, and to make other necessary technical and conforming corrections in the engrossment of H.R. 8752.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8752","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 140 (Tuesday, August 30, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 8752.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution, in that\nthe legislation regulates forms of commerce specified in that\nclause; and, Article I, Section 8, clause 18 of the\nConstitution, in that the legislation ``is necessary and\nproper for carrying into Execution the foregoing Powers'' and\n``other Powers vested by this Constitution in the Government\nof the United States, or in any Department or Officer\nthereof,'' including the powers of the President specified in\nArticle II of the Constitution.\n[Page H7731]\n","amendments.count":31,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8752/cosponsors?format=json","sponsors.0.bioguideId":"A000369","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8752/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8752/relatedbills?format=json","latestAction.actionDate":"2024-06-28","textVersions.count":2,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Amodei, Mark E. [R-NV-2]","bill.sponsors.0.bioguideId":"C001108","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8752/amendments?format=json","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-553","bill.sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8752/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8752/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":73,"sponsors.0.url":"https://api.congress.gov/v3/member/A000369?format=json","request.billNumber":"8752","committees.url":"https://api.congress.gov/v3/bill/118/hr/8752/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8752/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Department of Homeland Security Appropriations Act, 2025","bill.title":"Protecting Speech from Government Interference Act","bill.number":"8752","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8752/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-08-30","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/553?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8752/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8752/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"latestAction.actionTime":"11:06:40","bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":67,"bill.committees.count":1,"bill.sponsors.0.firstName":"James","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8752/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8752/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8752?format=json","bill.introducedDate":"2022-08-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AMODEI:\nH.R. 8752.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of Homeland Security for fiscal year 2024.\n[Page H4109]\n","sponsors.0.district":2,"bill.sponsors.0.state":"KY","bill.sponsors.0.district":1,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8752/text?format=json","bill.sponsors.0.lastName":"Comer"}} +{"type":"node","id":"8694","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6528/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":3,"sponsors.0.party":"R","number":"6528","bill.committeeReports.0.citation":"H. Rept. 117-422","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 18 (Friday, January 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 6528.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H309]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6528/cosponsors?format=json","sponsors.0.bioguideId":"J000301","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6528/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6528/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-30","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":15,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6528/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/422?format=json","committeeReports.0.citation":"H. Rept. 117-422","bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6528/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","updateDate":"2024-11-09T01:57:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6528/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","request.billNumber":"6528","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6528/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6528/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","title":"PRC Accountability and Divestment Act of 2023","bill.title":"Housing Temperature Safety Act of 2022","bill.number":"6528","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6528/committees?format=json","latestAction_actionDate":"2022-07-27","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/422?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6528/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6528/summaries?format=json","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-11-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"SD","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6528/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6528/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6528?format=json","bill.introducedDate":"2022-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 197 (Thursday, November 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 6528.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 10\nThe single subject of this legislation is:\nTo encourage state and local governments to prohibit\ncertain investment activities in the People's Republic of\nChina.\n[Page H6050]\n","sponsors.0.district":15,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Dusty","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:57:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6528/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8695","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5128/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Sewell","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5128/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":2,"sponsors.0.party":"D","number":"5128","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 152 (Tuesday, August 31, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. AXNE:\nH.R. 5128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4501]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5128/cosponsors?format=json","sponsors.0.bioguideId":"S001185","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5128/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5128/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","bill.sponsors.0.bioguideId":"A000378","bill.actions.count":10,"bill.originChamber":"House","titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5128/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Axne, Cynthia [D-IA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5128/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","updateDate":"2024-12-20T09:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5128/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","request.billNumber":"5128","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5128/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5128/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","title":"Preserving Access to Home Health Act of 2023","bill.title":"Expanding Access to Capital for Rural Job Creators Act","bill.number":"5128","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5128/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5128/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5128/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000378?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-08-01","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Cynthia","sponsors.0.state":"AL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5128/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5128/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5128?format=json","bill.introducedDate":"2021-08-31","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 132 (Tuesday, August 1, 2023)]\n[House]\n[Pages H4159-H4160]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 5128.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have the power to make all laws which shall\nbe necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof Article 1, Section 8, Clause\n18\n[[Page H4160]]\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to ensure\nstability in payments to home health agencies under the\nMedicare program.\n","sponsors.0.district":7,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Terri","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5128/text?format=json","bill.sponsors.0.lastName":"Axne"}} +{"type":"node","id":"8696","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 7180, Brycen Gray and Ben Price COVID-19 Cognitive Research Act","sponsors.0.lastName":"Westerman","cboCostEstimates.0.pubDate":"2024-05-07T19:36:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7180/summaries?format=json","bill.relatedBills.count":1,"type":"HR","bill.summaries.count":3,"number":"7180","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"sponsors.0.bioguideId":"W000821","laws.0.number":"118-237","bill.subjects.count":15,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7180/relatedbills?format=json","latestAction.actionDate":"2025-01-04","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-06-22T19:36:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7180/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-371","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60792","updateDate":"2025-02-04T16:54:13Z","committees.count":2,"cboCostEstimates.1.pubDate":"2024-09-27T18:31:00Z","request.billNumber":"7180","committees.url":"https://api.congress.gov/v3/bill/118/hr/7180/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:02:28Z","cboCostEstimates.1.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","bill.number":"7180","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on April 10, 2024\n","committeeReports":[],"latestAction_actionDate":"2022-07-27","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7180/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7180/summaries?format=json","cboCostEstimates.0.title":"H.R. 7180, a bill to designate the facility of the United States Postal Service located at 80 1st Street in Kingsland, Arkansas, as the “Kingsland ‘Johnny Cash’ Post Office","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000588?format=json","introducedDate":"2024-01-31","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Anthony","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7180/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7180?format=json","cboCostEstimates.1.title":"H.R. 7180, an act to designate the facility of the United States Postal Service located at 80 1st Street in Kingsland, Arkansas, as the “Kingsland ‘Johnny Cash’ Post Office","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 18 (Wednesday, January 31, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 7180.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 7 of section 8 of article I\nThe single subject of this legislation is:\nRedesignates the Kingsland Arkansas Post Office\n[Page H365]\n","bill.sponsors.0.district":16,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7180/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-07-27","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","latestAction.text":"Became Public Law No: 118-237.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-371","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GONZALEZ of Ohio:\nH.R. 7180.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department of Officer thereof\n[Page H3858]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7180/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7180/actions?format=json","textVersions.count":6,"bill.sponsors.0.bioguideId":"G000588","bill.cboCostEstimates.0.description":"As reported by the House Committee on Science, Space, and Technology on June 15, 2022\n","bill.actions.count":17,"titles.count":2,"cosponsors.count":3,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/371?format=json","bill.sponsors.0.fullName":"Rep. Gonzalez, Anthony [R-OH-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7180/text?format=json","bill.updateDate":"2025-01-14T19:02:28Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7180/subjects?format=json","request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7180/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 80 1st Street in Kingsland, Arkansas, as the \"Kingsland 'Johnny Cash' Post Office\".","bill.title":"Brycen Gray and Ben Price COVID–19 Cognitive Research Act","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60260","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7180/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/371?format=json","request.billType":"hr","bill.cosponsors.count":9,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"AR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7180/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-03-21","sponsors.0.district":4,"bill.sponsors.0.state":"OH","sponsors.0.firstName":"Bruce","updateDateIncludingText":"2025-02-04T17:04:14Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7180/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58246","bill.sponsors.0.lastName":"Gonzalez"}} +{"type":"node","id":"8697","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 7734, Timely Delivery of Bank Secrecy Act Reports Act","bill.textVersions.count":4,"sponsors.0.lastName":"Franklin","bill.latestAction.actionDate":"2022-07-27","cboCostEstimates.0.pubDate":"2024-06-27T13:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7734/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 511.","bill.summaries.count":3,"sponsors.0.party":"R","number":"7734","bill.committeeReports.0.citation":"H. Rept. 117-425","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 81 (Thursday, May 12, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 7734.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H4920]\n","sponsors.0.bioguideId":"F000472","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7734/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7734/relatedbills?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":2,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Franklin, Scott [R-FL-18]","bill.sponsors.0.bioguideId":"W000187","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on May 17, 2022\n","bill.originChamber":"House","bill.actions.count":17,"titles.count":3,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-07-20T19:28:00Z","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/425?format=json","committeeReports.0.citation":"H. Rept. 118-613","bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7734/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","updateDate":"2025-01-16T06:06:27Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7734/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/F000472?format=json","request.billNumber":"7734","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7734/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7734/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","title":"Personnel Integrity in Veterans Affairs Act of 2024","bill.title":"Timely Delivery of Bank Secrecy Act Reports Act","bill.number":"7734","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on May 1, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60450","committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7734/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/613?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7734/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7734/summaries?format=json","cboCostEstimates.0.title":"H.R. 7734, Personnel Integrity in Veterans Affairs Act of 2024","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","introducedDate":"2024-03-20","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":2,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7734/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7734/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7734?format=json","bill.introducedDate":"2022-05-12","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 49 (Wednesday, March 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT FRANKLIN of Florida:\nH.R. 7734.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to require a\nnotation in the personnel record file of certain employees of\nthe Department of Veterans Affairs who resign from Government\nemployment under certain circumstances.\n[Page H1295]\n","sponsors.0.district":18,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2025-01-16T06:06:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7734/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58317","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"8698","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 6845, Commercial Remote Sensing Amendment Act of 2022","sponsors.0.lastName":"Thanedar","cboCostEstimates.0.pubDate":"2022-05-27T18:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6845/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"D.","number":"6845","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"sponsors.0.bioguideId":"T000488","bill.subjects.count":3,"latestAction.actionDate":"2023-12-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6845/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-05-27T18:05:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-399","updateDate":"2024-11-09T01:57:27Z","committees.count":1,"request.billNumber":"6845","committees.url":"https://api.congress.gov/v3/bill/118/hr/6845/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:51:33Z","bill.number":"6845","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on April 5, 2022\n","committeeReports":[],"sponsors.0.middleName":"D.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6845/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6845/summaries?format=json","cboCostEstimates.0.title":"H.R. 6845, Commercial Remote Sensing Amendment Act of 2022","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","introducedDate":"2023-12-15","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"FRANK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6845/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/6845?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 207 (Friday, December 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 6845.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 Article I of the Constitution\nThe single subject of this legislation is:\nTo require officials of the Department of Defense to\nprovide a briefing on the implementation of category\nmanagement memorandum, and for other purposes\n[Page H6993]\n","bill.sponsors.0.district":3,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6845/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-07-27","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-399","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 35 (Friday, February 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 6845.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8, Clause 18:\n``The Congress shall have Power . . . To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\n[Page H1148]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6845/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6845/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"L000491","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on April 5, 2022\n","bill.actions.count":15,"titles.count":3,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/399?format=json","bill.sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6845/text?format=json","bill.updateDate":"2025-01-14T18:51:33Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6845/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6845/subjects?format=json","title":"Equitable Contracting and Small Business Advancement Act","bill.title":"Commercial Remote Sensing Amendment Act of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58159","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6845/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/399?format=json","request.billType":"hr","bill.cosponsors.count":1,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6845/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-02-25","sponsors.0.district":13,"bill.sponsors.0.state":"OK","sponsors.0.firstName":"Shri","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6845/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58159","bill.sponsors.0.lastName":"LUCAS"}} +{"type":"node","id":"8699","labels":["Bill"],"properties":{"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4586, Risk-Based Credit Examination Act","sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-07-20T15:34:00Z","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4586/summaries?format=json","type":"HR","bill.summaries.count":3,"number":"4586","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"sponsors.0.bioguideId":"M001221","bill.subjects.count":4,"latestAction.actionDate":"2023-08-24","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-07-20T15:34:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-421","updateDate":"2024-11-09T01:57:56Z","committees.count":1,"request.billNumber":"4586","committees.url":"https://api.congress.gov/v3/bill/118/hr/4586/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","bill.number":"4586","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on June 22, 2022\n","committeeReports":[],"sponsors.0.middleName":"J.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4586/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4586/summaries?format=json","cboCostEstimates.0.title":"H.R. 4586, Risk-Based Credit Examination Act","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","introducedDate":"2023-07-12","subjects.count":8,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ann","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4586/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4586?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 119 (Wednesday, July 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 4586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nAgriculture\n[Page H3478]\n","bill.sponsors.0.district":2,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4586/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-07-27","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-421","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 127 (Tuesday, July 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 4586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H3755]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4586/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4586/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"W000812","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on June 22, 2022\n","bill.actions.count":15,"titles.count":3,"cosponsors.count":5,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/421?format=json","bill.sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4586/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4586/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4586/subjects?format=json","title":"ThinkDIFFERENTLY Agriculture Accessibility Act of 2023","bill.title":"Risk-Based Credit Examination Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58316","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4586/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/421?format=json","request.billType":"hr","bill.cosponsors.count":1,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4586/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-20","sponsors.0.district":19,"bill.sponsors.0.state":"MO","sponsors.0.firstName":"Marcus","updateDateIncludingText":"2024-11-09T01:57:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4586/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58316","bill.sponsors.0.lastName":"Wagner"}} +{"type":"node","id":"8700","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4227/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","bill.summaries.count":2,"sponsors.0.party":"R","number":"4227","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 113 (Tuesday, June 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HOLLINGSWORTH:\nH.R. 4227.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H3308]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4227/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4227/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4227/relatedbills?format=json","latestAction.actionDate":"2023-08-21","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"H001074","bill.originChamber":"House","bill.actions.count":11,"titles.count":3,"cosponsors.count":32,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4227/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hollingsworth, Trey [R-IN-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4227/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","updateDate":"2024-12-17T09:05:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4227/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"4227","committees.url":"https://api.congress.gov/v3/bill/118/hr/4227/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4227/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","title":"ReConnecting Rural America Act of 2023","bill.title":"Developing and Empowering our Aspiring Leaders Act of 2022","bill.number":"4227","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":32,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4227/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4227/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4227/summaries?format=json","bill.titles.count":5,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001074?format=json","introducedDate":"2023-06-20","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Trey","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4227/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4227/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4227?format=json","bill.introducedDate":"2021-06-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 107 (Tuesday, June 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 4227.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Rural Electrification Act of 1936 to establish\nthe ReConnect program under that Act, and for other purposes.\nBy Mrs. RODGERS of Washington\nH.R. 4228.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV\nThe single subject of this legislation is:\nThe bill creates Forest Active Management Areas to allow\nfor more active management projects in areas of National\nForests at risk of wildfire.\n[Page H2992]\n","sponsors.0.district":3,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":9,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4227/text?format=json","bill.sponsors.0.lastName":"Hollingsworth"}} +{"type":"node","id":"8701","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 3588, Mathematical and Statistical Modeling Education Act","sponsors.0.lastName":"Porter","cboCostEstimates.0.pubDate":"2022-05-27T18:03:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3588/summaries?format=json","bill.relatedBills.count":1,"type":"HR","bill.summaries.count":3,"number":"3588","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"sponsors.0.bioguideId":"P000618","bill.subjects.count":17,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3588/relatedbills?format=json","latestAction.actionDate":"2023-05-22","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-05-27T18:03:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3588/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-369","updateDate":"2024-11-09T05:11:21Z","committees.count":1,"request.billNumber":"3588","committees.url":"https://api.congress.gov/v3/bill/118/hr/3588/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:02:28Z","bill.number":"3588","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on April 5, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3588/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3588/summaries?format=json","cboCostEstimates.0.title":"H.R. 3588, Mathematical and Statistical Modeling Education Act","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","introducedDate":"2023-05-22","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Chrissy","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3588/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/3588?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 86 (Monday, May 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 3588.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8\nThe single subject of this legislation is:\nTo award a Congressional Gold Medal posthumously to Dr.\nJohn Cheng, a hero who died protecting others on May 15, 2022\n[Page H2502]\n","bill.sponsors.0.district":6,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3588/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-07-27","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-369","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 94 (Friday, May 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 3588.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the U.S. Constitution\n[Page H2679]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3588/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3588/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"H001085","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on April 5, 2022\n","bill.actions.count":17,"titles.count":2,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/369?format=json","bill.sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3588/text?format=json","bill.updateDate":"2025-01-14T19:02:28Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3588/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3588/subjects?format=json","title":"To award a Congressional Gold Medal posthumously to Dr. John Cheng, a hero who died protecting others on May 15, 2022.","bill.title":"Mathematical and Statistical Modeling Education Act","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58155","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3588/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/369?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3588/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-05-28","sponsors.0.district":47,"bill.sponsors.0.state":"PA","sponsors.0.firstName":"Katie","updateDateIncludingText":"2024-11-09T05:11:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3588/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58155","bill.sponsors.0.lastName":"Houlahan"}} +{"type":"node","id":"8702","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4590, Promoting New and Diverse Depository Institutions Act","sponsors.0.lastName":"Steil","cboCostEstimates.0.pubDate":"2021-11-29T19:07:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4590/summaries?format=json","type":"HR","bill.summaries.count":3,"number":"4590","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"sponsors.0.bioguideId":"S001213","bill.subjects.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4590/relatedbills?format=json","latestAction.actionDate":"2023-07-12","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-11-29T19:07:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4590/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-229","cboCostEstimates.1.url":"https://www.cbo.gov/publication/58336","updateDate":"2025-01-07T16:06:12Z","committees.count":1,"cboCostEstimates.1.pubDate":"2022-07-26T20:11:00Z","request.billNumber":"4590","committees.url":"https://api.congress.gov/v3/bill/118/hr/4590/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","cboCostEstimates.1.description":"As Posted on the Website of the Clerk of the House on July 25, 2022\n","bill.number":"4590","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on July 29, 2021\n","committeeReports":[],"latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4590/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4590/summaries?format=json","cboCostEstimates.0.title":"H.R. 4590, Promoting New and Diverse Depository Institutions Act","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000148?format=json","bill.cboCostEstimates.1.url":"https://www.cbo.gov/publication/58336","introducedDate":"2023-07-12","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jake","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4590/actions?format=json","bill.cboCostEstimates.1.title":"H.R. 4590, the Promoting New and Diverse Depository Institutions Act","url":"https://api.congress.gov/v3/bill/117/hr/4590?format=json","cboCostEstimates.1.title":"H.R. 4590, the Promoting New and Diverse Depository Institutions Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 119 (Wednesday, July 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEIL:\nH.R. 4590.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution: ``To regulate commerce with foreign nations,\nand among the several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nThis bill concerns the regulation of proxy advisory firms,\nalso known as proxy voting advice businesses\n[Page H3478]\n","bill.sponsors.0.district":4,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4590/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-07-27","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-229","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 128 (Wednesday, July 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AUCHINCLOSS:\nH.R. 4590.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\n[Page H3803]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4590/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4590/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"A000148","bill.cboCostEstimates.1.description":"As Posted on the Website of the Clerk of the House on July 25, 2022\n","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on July 29, 2021\n","bill.actions.count":16,"titles.count":2,"cosponsors.count":5,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/229?format=json","bill.sponsors.0.fullName":"Rep. Auchincloss, Jake [D-MA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4590/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4590/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4590/subjects?format=json","title":"To amend the Securities Exchange Act of 1934 to provide for liability for certain failures to disclose material information in connection with proxy voting advice, and for other purposes.","bill.title":"Promoting New and Diverse Depository Institutions Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57643","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4590/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/229?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4590/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-21","sponsors.0.district":1,"bill.sponsors.0.state":"MA","sponsors.0.firstName":"Bryan","updateDateIncludingText":"2025-01-07T16:06:12Z","bill.cboCostEstimates.1.pubDate":"2022-07-26T20:11:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4590/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57643","bill.sponsors.0.lastName":"Auchincloss"}} +{"type":"node","id":"8703","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8518/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gosar","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8518/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"K.","number":"8518","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 124 (Tuesday, July 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WEBER of Texas:\nH.R. 8518.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article 1, Section 8.\n[Page H7171]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8518/cosponsors?format=json","sponsors.0.bioguideId":"G000565","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8518/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8518/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","bill.sponsors.0.bioguideId":"W000814","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8518/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Weber, Randy K., Sr. [R-TX-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8518/text?format=json","bill.updateDate":"2025-01-03T07:56:25Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8518/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","request.billNumber":"8518","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8518/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8518/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:25Z","title":"Responsibility in Federal Contracting Act","bill.title":"Texas Coastal Spine Authorization Act","bill.number":"8518","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8518/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8518/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8518/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000814?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Randy","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8518/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8518/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8518?format=json","bill.introducedDate":"2022-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 8518.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1, which grants Congress its\nspending power.\nThe single subject of this legislation is:\nThis legislation adjusts the formula the federal government\nuses to spend money on federal contracts and is authorized by\nthe Constitution under Article 1, Section 8, Clause 1, which\ngrants Congress its spending power.\n[Page H3524]\n","sponsors.0.district":9,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":14,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8518/text?format=json","bill.sponsors.0.lastName":"Weber"}} +{"type":"node","id":"8704","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8499/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8499/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8499","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 124 (Tuesday, July 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 8499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: The Congress shall have\nPower to make all Laws which shall be necessary and proper\nfor carrying into Executive the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or in any Department or Officer thereof.\n[Page H7171]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8499/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8499/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8499/relatedbills?format=json","latestAction.actionDate":"2024-05-22","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"H001067","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8499/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8499/text?format=json","bill.updateDate":"2025-01-03T07:56:14Z","updateDate":"2024-08-19T18:05:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8499/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"8499","committees.url":"https://api.congress.gov/v3/bill/118/hr/8499/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8499/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:14Z","title":"Clean Elections in America Act","bill.title":"Transparency and Honesty in Energy Regulations Act of 2022","bill.number":"8499","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8499/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8499/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8499/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-05-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Richard","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8499/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8499/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8499?format=json","bill.introducedDate":"2022-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 89 (Wednesday, May 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 8499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nAbsentee Ballot Requirements\n[Page H3484]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":8,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2024-09-18T16:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8499/text?format=json","bill.sponsors.0.lastName":"Hudson"}} +{"type":"node","id":"8705","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8535/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Houchin","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8535/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8535","bill.cosponsors.countIncludingWithdrawnCosponsors":123,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of California:\nH.R. 8535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, to make all laws, which\nshall be necessary and proper for carrying into execution the\nforegoing powers.\n[Page H7256]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8535/cosponsors?format=json","sponsors.0.bioguideId":"H001093","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8535/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8535/relatedbills?format=json","latestAction.actionDate":"2024-09-03","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","bill.sponsors.0.bioguideId":"L000551","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":123,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8535/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lee, Barbara [D-CA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8535/text?format=json","bill.updateDate":"2025-01-03T07:56:43Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8535/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","request.billNumber":"8535","committees.url":"https://api.congress.gov/v3/bill/118/hr/8535/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8535/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:43Z","title":"Benjamin Harrison National Recreation Area and Wilderness Establishment Act of 2024","bill.title":"Shirley Chisholm Congressional Gold Medal Act","bill.number":"8535","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":123,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8535/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8535/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8535/summaries?format=json","bill.cosponsors.count":123,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000551?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"BARBARA","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8535/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8535/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8535?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HOUCHIN:\nH.R. 8535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish the Benjamin Harrison National Recreation Area\nand Wilderness in the State of Indiana, and for other\npurposes.\n[Page H3524]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Erin","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8535/text?format=json","bill.sponsors.0.lastName":"LEE"}} +{"type":"node","id":"8706","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8522/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bice","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8522/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8522","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 8522.\nCongress has the power to enact this legislation pursuant\ntc following:\nClause 1 of Section 8 of Article 1 of the Constitution\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8522/cosponsors?format=json","sponsors.0.bioguideId":"B000740","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8522/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8522/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","bill.sponsors.0.bioguideId":"B001278","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8522/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-02T13:36:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8522/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","request.billNumber":"8522","committees.url":"https://api.congress.gov/v3/bill/118/hr/8522/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8522/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Agriculture and National Security Act of 2024","bill.title":"SIMPLE Act","bill.number":"8522","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8522/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8522/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8522/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzanne","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8522/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8522/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8522?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE:\nH.R. 8522.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8: To make all laws which shall be\nnecessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\nThe single subject of this legislation is:\nAgriculture\n[Page H3524]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":1,"sponsors.0.firstName":"Stephanie","bill.type":"HR","updateDateIncludingText":"2024-08-02T13:36:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8522/text?format=json","bill.sponsors.0.lastName":"Bonamici"}} +{"type":"node","id":"8707","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8524/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Clark","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8524/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8524","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUSH:\nH.R. 8524.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8.\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8524/cosponsors?format=json","sponsors.0.bioguideId":"C001101","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8524/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8524/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Clark, Katherine M. [D-MA-5]","bill.sponsors.0.bioguideId":"B001224","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bush, Cori [D-MO-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8524/text?format=json","bill.updateDate":"2025-01-03T07:56:44Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8524/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001101?format=json","request.billNumber":"8524","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8524/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8524/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:44Z","title":"Elementary and Secondary School Counseling Act","bill.title":"Protect Sexual and Reproductive Health Act of 2022","bill.number":"8524","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8524/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8524/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8524/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001224?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Cori","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8524/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8524/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8524?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CLARK of Massachusetts:\nH.R. 8524.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nMental health\n[Page H3524]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":1,"sponsors.0.firstName":"Katherine","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8524/text?format=json","bill.sponsors.0.lastName":"Bush"}} +{"type":"node","id":"8708","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8530/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ezell","bill.latestAction.actionDate":"2022-07-27","cboCostEstimates.0.pubDate":"2024-11-21T22:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8530/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 669.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8530","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACOBS of New York:\nH.R. 8530.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8530/cosponsors?format=json","sponsors.0.bioguideId":"E000235","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8530/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8530/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Ezell, Mike [R-MS-4]","bill.sponsors.0.bioguideId":"J000020","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-818","bill.sponsors.0.fullName":"Rep. Jacobs, Chris [R-NY-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8530/text?format=json","bill.updateDate":"2025-01-03T07:56:44Z","updateDate":"2025-03-13T22:41:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8530/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/E000235?format=json","request.billNumber":"8530","committees.url":"https://api.congress.gov/v3/bill/118/hr/8530/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8530/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:44Z","title":"Improving Federal Building Security Act of 2024","bill.title":"Property Tax Reduction Act of 2022","bill.number":"8530","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61030","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8530/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/818?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8530/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8530/summaries?format=json","bill.cosponsors.count":4,"cboCostEstimates.0.title":"H.R. 8530, Improving Federal Building Security Act of 2024","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000020?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chris","sponsors.0.state":"MS","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8530/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8530/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8530?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EZELL:\nH.R. 8530.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo require Facility Security Committees to respond to\nsecurity recommendations issued by the Federal Protective\nService relating to facility security, and for other\npurposes.\n[Page H3524]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":27,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8530/text?format=json","bill.sponsors.0.lastName":"Jacobs"}} +{"type":"node","id":"8709","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8546/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Social Welfare","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8546/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8546","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 8546.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H7256]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8546/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8546/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8546/text?format=json","bill.updateDate":"2025-01-03T07:56:47Z","updateDate":"2024-12-19T09:06:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8546/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"8546","committees.url":"https://api.congress.gov/v3/bill/118/hr/8546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8546/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:47Z","title":"Social Security Administration Processing Claims Improvement Act of 2024","bill.title":"Clinical Trial Coverage Act of 2022","bill.number":"8546","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8546/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8546/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8546/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8546/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8546/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8546?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 8546.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the Commissioner of the Social Security\nAdministration to take certain actions to improve the\nprocessing of claims and appeals for disability insurance\nbenefits and supplemental security income, and for other\npurposes.\n[Page H3525]\n","sponsors.0.district":2,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8546/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8710","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8545/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Murphy","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Law","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8545/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8545","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 8545.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the U.S. Consitution.\n[Page H7256]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8545/cosponsors?format=json","sponsors.0.bioguideId":"M001210","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8545/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8545/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Murphy, Gregory F. [R-NC-3]","bill.sponsors.0.bioguideId":"S001200","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":45,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8545/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8545/text?format=json","bill.updateDate":"2024-02-07T15:21:41Z","updateDate":"2024-12-17T09:05:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8545/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","request.billNumber":"8545","committees.url":"https://api.congress.gov/v3/bill/118/hr/8545/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8545/subjects?format=json","bill.updateDateIncludingText":"2024-02-07T15:21:41Z","title":"Camp Lejeune Justice Act of 2024","bill.title":"To establish a blockchain and cryptocurrency position within the Office of Science and Technology Policy, and for other purposes.","bill.number":"8545","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":45,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8545/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","sponsors.0.middleName":"F.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8545/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8545/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Darren","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8545/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8545/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8545?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY:\nH.R. 8545.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8; Clause 1 of the Constitution states:\nThe Congress shall have the Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States.\nThe single subject of this legislation is:\nTo amend the Camp Lejeune Justice Act of 2022 to make\ntechnical corrections.\n[Page H3525]\n","sponsors.0.district":3,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":9,"sponsors.0.firstName":"Gregory","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8545/text?format=json","bill.sponsors.0.lastName":"Soto"}} +{"type":"node","id":"8711","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8543/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8543","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCALISE:\nH.R. 8543.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\n[Page H7256]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8543/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8543/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8543/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"S001176","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8543/text?format=json","bill.updateDate":"2025-01-03T07:56:48Z","updateDate":"2024-12-19T09:06:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8543/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"8543","committees.url":"https://api.congress.gov/v3/bill/118/hr/8543/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8543/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:48Z","title":"Ensuring Excellence in Mental Health Act","bill.title":"EAVESDROP Act","bill.number":"8543","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8543/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8543/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8543/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Steve","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8543/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8543/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8543?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\n[Pages H3524-H3525]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 8543.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H3525]]\nsection 8 of article I of the Constitution\nThe single subject of this legislation is:\nhealth care\n","sponsors.0.district":7,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8543/text?format=json","bill.sponsors.0.lastName":"Scalise"}} +{"type":"node","id":"8712","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8523/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8523","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 8523.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress taxes and spends (which is applied to numerous\ngovernment programs) under Article I, Sec. 8, Cl. ``The\nCongress shall have Power to lay and collect Taxes, Duties,\nImposts, and Excises, to pay the Debts and provide for the\ncommon Defence and general Welfare of the United States. . .\n.''\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8523/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8523/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8523/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-31","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8523/text?format=json","bill.updateDate":"2025-01-03T07:56:48Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8523/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"8523","committees.url":"https://api.congress.gov/v3/bill/118/hr/8523/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8523/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:48Z","title":"REDUCE Act","bill.title":"Promote Work and Improve Health Act of 2022","bill.number":"8523","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8523/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8523/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8523/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8523/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8523/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8523?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 8523.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require Electricity Transmission Organizations to allow\nbids from aggregators of certain retail electricity\ncustomers, and for other purposes.\n[Page H3524]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8523/text?format=json","bill.sponsors.0.lastName":"Budd"}} +{"type":"node","id":"8713","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DeLauro","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8529/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8529","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VICENTE GONZALEZ of Texas:\nH.R. 8529 .\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8529/cosponsors?format=json","sponsors.0.bioguideId":"D000216","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8529/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","bill.sponsors.0.bioguideId":"G000581","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Vicente [D-TX-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8529/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-08-22T12:23:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","request.billNumber":"8529","committees.url":"https://api.congress.gov/v3/bill/118/hr/8529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8529/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Physician Education for Fistula Treatment Act","bill.title":"To designate the facility of the United States Postal Service located at 110 East Alexander Street in Three Rivers, Texas, as the \"Private Felix Z. Longoria Veterans' Memorial Post Office\".","bill.number":"8529","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8529/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8529/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000581?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicente","sponsors.0.state":"CT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8529?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 8529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the United States Constitution and its\nsubsequent amendments, and further clarified and interpreted\nby the Supreme Court of the United States.\nThe single subject of this legislation is:\nTo authorize assistance to train and retain obstetrician-\ngynecologists and sub-specialists in urogynecology and to\nhelp improve the quality of care to meet the health care\nneeds of women in least developed countries.\n[Page H3524]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":15,"sponsors.0.firstName":"Rosa","bill.type":"HR","updateDateIncludingText":"2024-08-22T12:23:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8529/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}} +{"type":"node","id":"8714","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Barr","bill.latestAction.actionDate":"2022-07-05","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8287/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"HOLMES","number":"8287","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 111 (Tuesday, July 5, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 8287.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H5935]\n","sponsors.0.bioguideId":"B001282","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8287/actions?format=json","latestAction.actionDate":"2024-05-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8287/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","bill.sponsors.0.bioguideId":"N000147","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8287/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-01-09T12:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8287/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","request.billNumber":"8287","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8287/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8287/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Stress Testing Accountability and Transparency Act","bill.title":"District of Columbia Courts and Public Defender Service Voluntary Separation Incentive Payments Act","bill.number":"8287","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8287/committees?format=json","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2022-07-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8287/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8287/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","introducedDate":"2024-05-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"KY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8287/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8287/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8287?format=json","bill.introducedDate":"2022-07-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 80 (Wednesday, May 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 8287.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo require the Board of Governors of the Federal Reserve\nSystem to issue a rule relating to stress capital buffer\nrequirements.\n[Page H2998]\n","sponsors.0.district":6,"bill.sponsors.0.state":"DC","sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-01-09T12:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8287/text?format=json","bill.sponsors.0.lastName":"NORTON"}} +{"type":"node","id":"8715","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8284/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steube","bill.latestAction.actionDate":"2022-07-05","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committees on Foreign Affairs, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8284/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"O.","number":"8284","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 111 (Tuesday, July 5, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARBAJAL:\nH.R. 8284.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution which provides Congress with the power to\nlay and collect Taxes, Duties, Imposts and Excises in order\nto provide for the general Welfare of the United States.\n[Page H5935]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8284/cosponsors?format=json","sponsors.0.bioguideId":"S001214","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8284/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.sponsors.0.bioguideId":"C001112","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committees on Foreign Affairs, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Carbajal, Salud O. [D-CA-24]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8284/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-19T09:06:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8284/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","request.billNumber":"8284","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8284/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8284/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Women’s Protection in Telehealth Act","bill.title":"Don Young American Grown Act","bill.number":"8284","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8284/committees?format=json","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2022-07-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8284/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8284/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001112?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Salud","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8284/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8284/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8284?format=json","bill.introducedDate":"2022-07-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 8284.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend title XI of the Social Security Act to exclude\nproviders of certain abortion services from participation in\nthe Medicare program.\n[Page H2938]\n","sponsors.0.district":17,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":24,"sponsors.0.firstName":"W.","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8284/text?format=json","bill.sponsors.0.lastName":"Carbajal"}} +{"type":"node","id":"8716","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8289/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Graves","bill.latestAction.actionDate":"2022-07-05","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8289/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-60.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Davis","number":"8289","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 111 (Tuesday, July 5, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 8289.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H5935]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8289/cosponsors?format=json","sponsors.0.bioguideId":"G000546","laws.0.number":"118-60","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8289/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-05-10","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Graves, Sam [R-MO-6]","bill.sponsors.0.bioguideId":"S001209","bill.actions.count":3,"bill.originChamber":"House","titles.count":5,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8289/text?format=json","bill.updateDate":"2025-01-03T07:54:30Z","updateDate":"2024-11-18T14:20:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8289/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":26,"sponsors.0.url":"https://api.congress.gov/v3/member/G000546?format=json","request.billNumber":"8289","committees.url":"https://api.congress.gov/v3/bill/118/hr/8289/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8289/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:30Z","title":"Airport and Airway Extension Act of 2024, Part II","bill.title":"Banning Misleading Drug Ads Act of 2022","bill.number":"8289","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8289/committees?format=json","request.format":"json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2022-07-05","summaries.count":4,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8289/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8289/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-08","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Abigail","sponsors.0.state":"MO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8289/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8289/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8289?format=json","bill.introducedDate":"2022-07-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 80 (Wednesday, May 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Missouri:\nH.R. 8289.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution,\nclause 1, clause 3, and clause 18.\nThe single subject of this legislation is:\nTo extend authorizations for the airport improvement\nprogram, to extend the funding and expenditure authority of\nthe Airport and Airway Trust Fund, and for other purposes.\n[Page H2998]\n","sponsors.0.district":6,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Sam","bill.type":"HR","updateDateIncludingText":"2024-11-18T14:20:31Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8289/text?format=json","bill.sponsors.0.lastName":"Spanberger"}} +{"type":"node","id":"8717","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mooney","bill.latestAction.actionDate":"2022-07-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Cybersecurity, Infrastructure Protection, and Innovation.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8279/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8279","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 8279.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8279/cosponsors?format=json","sponsors.0.bioguideId":"M001195","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8279/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Mooney, Alexander X. [R-WV-2]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Cybersecurity, Infrastructure Protection, and Innovation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8279/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-09T20:06:10Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8279/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001195?format=json","request.billNumber":"8279","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8279/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8279/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Monetary Metals Tax Neutrality Act of 2024","bill.title":"Building Cyber Resilience After SolarWinds Act of 2022","bill.number":"8279","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8279/committees?format=json","request.format":"json","sponsors.0.middleName":"X.","latestAction_actionDate":"2022-07-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8279/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8279/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"WV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8279/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8279/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8279?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOONEY:\nH.R. 8279.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nMonetary metals\n[Page H2937]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Alexander","bill.type":"HR","updateDateIncludingText":"2024-09-09T20:06:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8279/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8718","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Roy","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 309.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8282/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":2,"sponsors.0.party":"R","number":"8282","bill.committeeReports.0.citation":"H. Rept. 117-401","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8282/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"R000614","bill.subjects.count":164,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8282/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-09-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8282/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","bill.sponsors.0.bioguideId":"L000551","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8282/amendments?format=json","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":76,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 309.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8282/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/401?format=json","committeeReports.0.citation":"H. Rept. 117-401","bill.sponsors.0.fullName":"Rep. Lee, Barbara [D-CA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8282/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8282/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","request.billNumber":"8282","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8282/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8282/committees?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"Illegitimate Court Counteraction Act","bill.title":"Department of State, Foreign Operations, and Related Programs Appropriations Act, 2023","bill.number":"8282","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":76,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8282/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/401?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8282/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8282/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000551?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"BARBARA","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8282/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8282/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8282?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 8282.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1. Section 8\nThe single subject of this legislation is:\nTo sanction the ICC if they investigate, arrest, detain, or\nprosecute a United States person, or ally of the United\nStates that are not part of the ICC or have not granted the\nICC jurisdiction.\n[Page H2938]\n","bill.introducedDate":"2022-07-01","sponsors.0.district":21,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Chip","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8282/text?format=json","bill.sponsors.0.lastName":"LEE"}} +{"type":"node","id":"8719","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Leger Fernandez","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 308.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8262/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":2,"sponsors.0.party":"D","number":"8262","bill.committeeReports.0.citation":"H. Rept. 117-400","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8262/cosponsors?format=json","sponsors.0.bioguideId":"L000273","bill.subjects.count":89,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8262/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8262/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","bill.sponsors.0.bioguideId":"P000597","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 308.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8262/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/400?format=json","committeeReports.0.citation":"H. Rept. 117-400","bill.sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8262/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2024-08-09T15:21:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8262/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","request.billNumber":"8262","committees.url":"https://api.congress.gov/v3/bill/118/hr/8262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8262/subjects?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"New Mexico Land Grant-Mercedes Historical or Traditional Use Cooperation and Coordination Act","bill.title":"Department of the Interior, Environment, and Related Agencies Appropriations Act, 2023","bill.number":"8262","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8262/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/400?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8262/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8262/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chellie","sponsors.0.state":"NM","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8262/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8262/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8262?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 8262.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3\nThe single subject of this legislation is:\nFederal lands\n[Page H2937]\n","bill.introducedDate":"2022-07-01","sponsors.0.district":3,"bill.sponsors.0.state":"ME","bill.sponsors.0.district":1,"sponsors.0.firstName":"Teresa","bill.type":"HR","updateDateIncludingText":"2024-08-09T15:21:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8262/text?format=json","bill.sponsors.0.lastName":"Pingree"}} +{"type":"node","id":"8720","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norton","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 304.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8257/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":2,"sponsors.0.party":"D","number":"8257","bill.committeeReports.0.citation":"H. Rept. 117-396","sponsors":[],"sponsors.0.bioguideId":"N000147","bill.subjects.count":36,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8257/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8257/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","bill.sponsors.0.bioguideId":"R000486","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 304.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8257/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/396?format=json","committeeReports.0.citation":"H. Rept. 117-396","bill.sponsors.0.fullName":"Rep. Roybal-Allard, Lucille [D-CA-40]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8257/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2024-11-20T15:37:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8257/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","request.billNumber":"8257","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8257/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8257/committees?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"Washington Channel Public Access Act","bill.title":"Department of Homeland Security Appropriations Act, 2023","bill.number":"8257","bill.sponsors.0.isByRequest":"N","committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8257/committees?format=json","request.format":"json","sponsors.0.middleName":"Holmes","latestAction_actionDate":"2022-07-01","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/396?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8257/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8257/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000486?format=json","introducedDate":"2024-05-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"LUCILLE","sponsors.0.state":"DC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8257/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8257/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8257?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 78 (Monday, May 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 8257.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nThe bill would prohibit the Secretary of the Army from\nimplementing a rule that restricts public access to the\nWashington Channel in the District of Columbia.\n[Page H2875]\n","sponsors.0.district":40,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":40,"sponsors.0.firstName":"Eleanor","bill.type":"HR","updateDateIncludingText":"2024-11-20T15:37:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8257/text?format=json","bill.sponsors.0.lastName":"ROYBAL-ALLARD"}} +{"type":"node","id":"8721","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8272/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Huizenga","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8272/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8272","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 8272.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8272/cosponsors?format=json","sponsors.0.bioguideId":"H001058","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8272/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8272/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-4]","bill.sponsors.0.bioguideId":"S001208","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8272/text?format=json","bill.updateDate":"2025-01-03T07:54:22Z","updateDate":"2024-08-10T08:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8272/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","request.billNumber":"8272","committees.url":"https://api.congress.gov/v3/bill/118/hr/8272/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8272/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:22Z","title":"Runway Integrity and Military Readiness Act of 2024","bill.title":"REEShore Act of 2022","bill.number":"8272","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8272/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8272/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8272/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8272/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8272/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8272?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUIZENGA:\nH.R. 8272.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo prohibit the Secretary of Transportation from\nconditioning the receipt of Federal financial assistance on\nreducing the dimensions of a runway, an apron, or a taxiway\nof certian airports.\n[Page H2937]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-08-10T08:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8272/text?format=json","bill.sponsors.0.lastName":"Slotkin"}} +{"type":"node","id":"8722","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8267/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davis","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Intelligence (Permanent Select).","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8267/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8267","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 8267.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, U.S. Constitution.\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8267/cosponsors?format=json","sponsors.0.bioguideId":"D000230","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8267/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8267/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Davis, Donald G. [D-NC-1]","bill.sponsors.0.bioguideId":"F000246","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Intelligence (Permanent Select).","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8267/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8267/text?format=json","bill.updateDate":"2025-01-03T07:54:23Z","updateDate":"2024-12-19T09:06:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8267/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/D000230?format=json","request.billNumber":"8267","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8267/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8267/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:23Z","title":"Old Drugs, New Cures Act","bill.title":"Container Missile Notification Act","bill.number":"8267","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8267/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8267/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8267/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Pat","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8267/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8267/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8267?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of North Carolina:\nH.R. 8267.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo amend titles XVIII and XIX of the Social Security Act\nto provide that priority research drugs shall not be treated\nas line extensions of existing drugs for purposes of\ncalculating manufacturer rebates under the Medicare and\nMedicaid programs.\n[Page H2937]\n","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":4,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8267/text?format=json","bill.sponsors.0.lastName":"Fallon"}} +{"type":"node","id":"8723","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8270/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Finstad","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8270/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8270","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 8270.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the U.S. Constitution\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8270/cosponsors?format=json","sponsors.0.bioguideId":"F000475","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8270/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.sponsors.0.bioguideId":"M001208","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8270/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-09-04T08:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8270/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","request.billNumber":"8270","committees.url":"https://api.congress.gov/v3/bill/118/hr/8270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8270/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Conservation Reserve Program Modernization Act","bill.title":"Emergency Advance Refill Notification Act of 2022","bill.number":"8270","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8270/committees?format=json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8270/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8270/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Lucy","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8270/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8270/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8270?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 8270.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nThis legislation would make improvements to the\nConservation Reserve Program (CRP) by utilizing science-based\ntargeting of acreage for enrollment.\n[Page H2937]\n","sponsors.0.district":1,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-09-04T08:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8270/text?format=json","bill.sponsors.0.lastName":"McBath"}} +{"type":"node","id":"8724","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8280/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Education","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8280/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"8280","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TURNER:\nH.R. 8280.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority on which this bill rests is\nthe power of Congress ``to provide for the common Defence'',\n``to raise and support Armies'', to provide and maintain a\nNavy'' and ``to make Rules for the Government and Regulation\nof the land and naval Forces'' as enumerated in Article I,\nsection 8 of the United States Constitution\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8280/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8280/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8280/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"T000463","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8280/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Turner, Michael R. [R-OH-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8280/text?format=json","bill.updateDate":"2025-01-03T07:54:21Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8280/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"8280","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8280/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:21Z","title":"Safe Schools and Communities Act of 2024","bill.title":"Preventing Terrorist Transfers to Afghanistan Act","bill.number":"8280","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8280/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8280/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8280/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000463?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8280/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8280/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8280?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\n[Pages H2937-H2938]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 8280.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the\n[[Page H2938]]\nforegoing Powers, and all other Powers vested by this\nConstitution in the Goverment of the United States, or in any\nDepartment or Officer thereof.\nThe single subject of this legislation is:\nTo direct the Secretary of Education to award grants to\nlocal educational agencies to enhance school and community\nsafety, and for other purposes.\n","sponsors.0.district":3,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":10,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8280/text?format=json","bill.sponsors.0.lastName":"Turner"}} +{"type":"node","id":"8725","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8266/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8266","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 8266.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8266/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8266/actions?format=json","latestAction.actionDate":"2024-05-07","textVersions.count":1,"bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"D000623","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8266/text?format=json","bill.updateDate":"2025-01-03T07:54:27Z","updateDate":"2024-08-05T17:41:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8266/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"8266","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8266/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8266/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:27Z","title":"Blockchain Integrity Act","bill.title":"Housing Innovation Act of 2022","bill.number":"8266","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8266/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8266/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8266/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8266/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8266/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8266?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 8266.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nDigital Assets\n[Page H2937]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2024-08-05T17:41:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8266/text?format=json","bill.sponsors.0.lastName":"DeSaulnier"}} +{"type":"node","id":"8726","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8261/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schweikert","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8261/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 786.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"BERNICE","number":"8261","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JOHNSON of Texas:\nH.R. 8261.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution.\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8261/cosponsors?format=json","sponsors.0.bioguideId":"S001183","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8261/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8261/relatedbills?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":2,"bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Schweikert, David [R-AZ-1]","bill.sponsors.0.bioguideId":"J000126","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-891","bill.sponsors.0.fullName":"Rep. Johnson, Eddie Bernice [D-TX-30]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8261/text?format=json","bill.updateDate":"2025-01-03T07:54:22Z","updateDate":"2025-02-21T16:06:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8261/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":13,"sponsors.0.url":"https://api.congress.gov/v3/member/S001183?format=json","request.billNumber":"8261","committees.url":"https://api.congress.gov/v3/bill/118/hr/8261/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8261/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:22Z","title":"Preserving Telehealth, Hospital, and Ambulance Access Act","bill.title":"Hotel Advertising Transparency Act of 2022","bill.number":"8261","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8261/committees?format=json","request.format":"json","sponsors.0.middleName":"BERNICE","latestAction_actionDate":"2022-07-01","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/891?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8261/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8261/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000126?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":31,"bill.committees.count":1,"bill.sponsors.0.firstName":"EDDIE","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8261/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8261/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8261?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHWEIKERT:\nH.R. 8261.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to extend\ncertain flexibilities and payment adjustments under the\nMedicare program, and for other purposes.\n[Page H2937]\n","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":30,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-02-21T16:06:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8261/text?format=json","bill.sponsors.0.lastName":"JOHNSON"}} +{"type":"node","id":"8727","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8268/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Doggett","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8268/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8268","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 8268.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18 of the United States\nConstitution\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8268/cosponsors?format=json","sponsors.0.bioguideId":"D000399","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8268/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8268/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-37]","bill.sponsors.0.bioguideId":"G000578","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8268/text?format=json","bill.updateDate":"2025-01-03T07:54:24Z","updateDate":"2024-09-03T15:14:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8268/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","request.billNumber":"8268","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8268/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8268/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:24Z","title":"Stop Corporate Inversions Act of 2024","bill.title":"Disarm the IRS Act","bill.number":"8268","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8268/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8268/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8268/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8268/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8268/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8268?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 8268.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution.\nThe single subject of this legislation is:\nTo prevent American domiciled multinational corporations\nfrom inverting to evade U.S. taxes.\n[Page H2937]\n","sponsors.0.district":37,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Lloyd","bill.type":"HR","updateDateIncludingText":"2024-09-03T15:14:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8268/text?format=json","bill.sponsors.0.lastName":"Gaetz"}} +{"type":"node","id":"8728","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fallon","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8269/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8269","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GREEN of Texas:\nH.R. 8269.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Art. 1, Sec. 8, Cl. 18)\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8269/cosponsors?format=json","sponsors.0.bioguideId":"F000246","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8269/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8269/relatedbills?format=json","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","bill.sponsors.0.bioguideId":"G000553","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Green, Al [D-TX-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8269/text?format=json","bill.updateDate":"2025-01-03T07:54:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8269/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","request.billNumber":"8269","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8269/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8269/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:27Z","title":"ROC Act","bill.title":"PATH Data Act of 2022","bill.number":"8269","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8269/committees?format=json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8269/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8269/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000553?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Al","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8269/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8269/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8269?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 8269.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Elementary and Secondary Education Act of\n1965 to require local educational agencies to allow\nrecruiters to access the secondary schools served by the\nlocal educational agency for recruiting activities, and for\nother purposes.\n[Page H2937]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":9,"sponsors.0.firstName":"Pat","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8269/text?format=json","bill.sponsors.0.lastName":"Green"}} +{"type":"node","id":"8729","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8273/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kamlager-Dove","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8273/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8273","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 8273.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 1 of\nSection 8 of Article I of the United States Constitution,\nwhich provides Congress with the ability to enact legislation\nnecessary and proper to effectuate its purposes in taxing and\nspending.\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8273/cosponsors?format=json","sponsors.0.bioguideId":"K000400","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8273/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8273/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","bill.sponsors.0.bioguideId":"S001212","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8273/text?format=json","bill.updateDate":"2025-01-03T07:54:23Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8273/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","request.billNumber":"8273","committees.url":"https://api.congress.gov/v3/bill/118/hr/8273/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8273/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:23Z","title":"Higher Education Access and Success for Homeless and Foster Youth Act of 2024","bill.title":"Small Business Payment for Performance Act of 2022","bill.number":"8273","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8273/committees?format=json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8273/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8273/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Pete","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8273/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8273/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8273?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 8273.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 Cl.\n1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8Cl. 18). Further,\nthis statement of constitutional authority is made for the\nsole purpose of compliance with clause 7 of Rule XII of the\nRules of the House of\nThe single subject of this legislation is:\nto provide access to higher education for homeless and\nfoster youth.\n[Page H2937]\n","sponsors.0.district":37,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":8,"sponsors.0.firstName":"Sydney","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8273/text?format=json","bill.sponsors.0.lastName":"Stauber"}} +{"type":"node","id":"8730","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8265/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Caraveo","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Social Welfare","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8265/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8265","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 8265.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 for the Commerce Clause\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8265/cosponsors?format=json","sponsors.0.bioguideId":"C001134","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8265/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8265/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","bill.sponsors.0.bioguideId":"C001119","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8265/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8265/text?format=json","bill.updateDate":"2025-01-03T07:54:24Z","updateDate":"2024-12-19T09:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8265/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","request.billNumber":"8265","committees.url":"https://api.congress.gov/v3/bill/118/hr/8265/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8265/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:24Z","title":"Social Security Overpayment Fairness Act","bill.title":"TEAM Volunteers Act","bill.number":"8265","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8265/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8265/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8265/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Angie","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8265/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8265/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8265?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 8265.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause\n(Art. 1, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe single subject of this legislation is:\nTo amend the Social Security Act to require a 120-day\nperiod between notice of an overpayment of benefits under\ntitles II and XVI and begin- ning recovery of such\noverpayment, and to require the Commissioner of Social\nSecurity to submit a report to Congress on a strategy related\nto recovery of such overpayments.\n[Page H2937]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Yadira","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8265/text?format=json","bill.sponsors.0.lastName":"Craig"}} +{"type":"node","id":"8731","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8281/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Roy","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8281/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 439.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8281","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 8281.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8281/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"R000614","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8281/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8281/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","bill.sponsors.0.bioguideId":"W000788","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8281/amendments?format=json","bill.originChamber":"House","bill.actions.count":3,"titles.count":10,"cosponsors.count":104,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8281/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-552","bill.sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8281/text?format=json","bill.updateDate":"2025-01-03T07:54:25Z","updateDate":"2025-01-16T05:26:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8281/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":25,"sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","request.billNumber":"8281","committees.url":"https://api.congress.gov/v3/bill/118/hr/8281/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8281/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:25Z","title":"SAVE Act","bill.title":"Military Housing Affordability Act of 2022","bill.number":"8281","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":104,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8281/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/552?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8281/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8281/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Nikema","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8281/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8281/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8281?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 8281.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 4, Clause 1--``The Times, Places and\nManner of holding Elections for Senators and Representatives,\nshall be prescribed in each State by the Legislature thereof;\nbut the Congress may at any time by Law make or alter such\nRegulations. . .''\nArticle I, Section 8, Clause 4--``To establish an uniform\nRule of Naturalization. . .''\nArticle I, Section 8, Clause 18--``To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\n15th Amendment--Referring to ``The right of citizens of the\nUnited States to vote. . .''\n19th Amendment--Referring to ``The right of citizens of the\nUnited States to vote. . .''\n24th Amendment--Referring to ``The right of citizens of the\nUnited States to vote. . .''\n26th Amendment--Referring to ``The right of citizens of the\nUnited States, who are eighteen years of age or older, to\nvote. . .''\nThe single subject of this legislation is:\nTo require States to obtain documentary proof of U.S.\ncitizenship to register an applicant to vote in Federal\nelections.\n[Page H2938]\n","sponsors.0.district":21,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Chip","bill.type":"HR","updateDateIncludingText":"2025-02-11T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8281/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8732","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8274/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Taxation","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8274/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"8274","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 8274.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8274/cosponsors?format=json","sponsors.0.bioguideId":"L000585","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8274/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8274/relatedbills?format=json","latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"S001196","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8274/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8274/text?format=json","bill.updateDate":"2025-01-03T07:54:25Z","updateDate":"2024-08-02T16:26:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8274/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"8274","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8274/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:25Z","title":"Bringing Back American Jobs Through Intellectual Property Repatriation Act","bill.title":"PASS Act of 2022","bill.number":"8274","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8274/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8274/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8274/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Elise","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8274/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8274/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8274?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 8274.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 1: ``The\nCongress shall have Power to lay and collect Taxes. . .''\nThe single subject of this legislation is:\nThis bill would amend the tax code to encourage the\ntransfer of intellectual property from controlled foreign\ncorporations to U.S. shareholders.\n[Page H2937]\n","sponsors.0.district":16,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":21,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2024-08-02T16:26:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8274/text?format=json","bill.sponsors.0.lastName":"Stefanik"}} +{"type":"node","id":"8733","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McCaul","bill.latestAction.actionDate":"2022-06-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 303.","policyArea.name":"Immigration","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8256/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Emergency Management and Technology.","bill.summaries.count":2,"sponsors.0.party":"R","number":"8256","bill.committeeReports.0.citation":"H. Rept. 117-395","sponsors":[],"sponsors.0.bioguideId":"M001157","bill.subjects.count":97,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8256/actions?format=json","latestAction.actionDate":"2024-05-06","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8256/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","bill.sponsors.0.bioguideId":"C001090","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 303.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8256/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/395?format=json","committeeReports.0.citation":"H. Rept. 117-395","bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8256/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2024-08-29T18:04:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8256/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","request.billNumber":"8256","committees.url":"https://api.congress.gov/v3/bill/118/hr/8256/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8256/subjects?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"Border Security and Enforcement Block Grant Act of 2024","bill.title":"Commerce, Justice, Science, and Related Agencies Appropriations Act, 2023","bill.number":"8256","bill.sponsors.0.isByRequest":"N","committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8256/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-06-30","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/395?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8256/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8256/summaries?format=json","bill.titles.count":10,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2024-05-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8256/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8256/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8256?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 78 (Monday, May 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 8256.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Clause 4 of Section 8 in Article 1 of the U.S.\nConstitution.\nThe single subject of this legislation is:\nProvides grant funding for qualified states to construct,\nmaintain, improve, or repair physical barriers along the\nSouthwest border of the United States.\n[Page H2875]\n","bill.introducedDate":"2022-06-30","sponsors.0.district":10,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-08-29T18:04:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8256/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"8734","labels":["Bill"],"properties":{"relatedBills.count":11,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8038/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McCaul","bill.latestAction.actionDate":"2022-06-13","cboCostEstimates.0.pubDate":"2024-04-19T15:23:01Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8038/summaries?format=json","type":"HR","latestAction.text":"Pursuant to the provisions of H. Res. 1160, H.R. 8038 is laid on the table.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8038","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 8038.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\n[Page H5487]\n","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8038/cosponsors?format=json","sponsors.0.bioguideId":"M001157","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8038/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8038/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-23","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","bill.sponsors.0.bioguideId":"J000301","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8038/amendments?format=json","bill.originChamber":"House","bill.actions.count":3,"titles.count":13,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8038/text?format=json","bill.updateDate":"2025-01-03T07:52:29Z","updateDate":"2024-11-09T04:56:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8038/subjects?format=json","committees.count":9,"request.congress":"118","actions.count":33,"sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","request.billNumber":"8038","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8038/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8038/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:29Z","title":"21st Century Peace through Strength Act","bill.title":"Formula Shortage Reporting Act of 2022","bill.number":"8038","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on April 17, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60219","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8038/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-06-13","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8038/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8038/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 8038, the 21st Century Peace Through Strength Act of 2024","bill.titles.count":3,"latestAction.actionTime":"10:33:00","bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":45,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dusty","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8038/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8038/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8038?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 8038.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo authorize the President to impose certain sanctions with\nrespect to Russia and Iran, and for other purposes.\n[Page H2502]\n","sponsors.0.district":10,"bill.sponsors.0.state":"SD","sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8038/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"8735","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8027/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mace","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8027/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8027","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BACON:\nH.R. 8027.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe United States Constitution Article I, Section 8, Clause\n18:\n``. . . To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers . .\n.''\n[Page H5486]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8027/cosponsors?format=json","sponsors.0.bioguideId":"M000194","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8027/actions?format=json","latestAction.actionDate":"2024-04-16","textVersions.count":1,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","bill.sponsors.0.bioguideId":"B001298","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bacon, Don [R-NE-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8027/text?format=json","bill.updateDate":"2024-02-07T15:21:41Z","updateDate":"2024-12-16T20:39:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8027/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","request.billNumber":"8027","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8027/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8027/committees?format=json","bill.updateDateIncludingText":"2024-02-07T15:21:41Z","title":"Sue VOYEURS Act","bill.title":"To establish within the Executive Office of the President a Technology Competitiveness Council.","bill.number":"8027","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8027/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8027/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8027/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001298?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Don","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8027/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8027/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8027?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MACE:\nH.R. 8027.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 8 of article I of the Constitution\nThe single subject of this legislation is:\nTo authorize a civil right of action for individuals\naffected by video voyeurism.\n[Page H2444]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NE","bill.sponsors.0.district":2,"sponsors.0.firstName":"Nancy","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8027/text?format=json","bill.sponsors.0.lastName":"Bacon"}} +{"type":"node","id":"8736","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8029/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8029","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 8029.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H5486]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8029/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8029/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8029/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8029/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8029/text?format=json","bill.updateDate":"2025-01-03T07:52:35Z","updateDate":"2024-12-16T20:39:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8029/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"8029","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8029/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:35Z","title":"VA Abortion Transparency Act of 2024","bill.title":"Taiwan Weapons Exports Act of 2022","bill.number":"8029","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8029/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8029/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8029/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8029/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8029/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8029?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 8029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation requires the Department of Veterans\nAffairs to report abortion data to Congress on a quarterly\nbasis.\n[Page H2444]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8029/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"8737","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8045/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hageman","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8045/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8045","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 8045.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII\n[Page H5487]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8045/cosponsors?format=json","sponsors.0.bioguideId":"H001096","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8045/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","bill.sponsors.0.bioguideId":"P000048","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8045/text?format=json","bill.updateDate":"2025-01-03T07:52:31Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8045/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","request.billNumber":"8045","committees.url":"https://api.congress.gov/v3/bill/118/hr/8045/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8045/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:31Z","title":"POSTAL Act","bill.title":"Critical Minerals Classification Improvement Act of 2022","bill.number":"8045","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8045/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","sponsors.0.middleName":"M.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8045/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8045/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"August","sponsors.0.state":"WY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8045/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8045/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8045?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 8045.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nPreserving USPS Processing\n[Page H2502]\n","sponsors.0.district":11,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":11,"sponsors.0.firstName":"Harriet","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8045/text?format=json","bill.sponsors.0.lastName":"Pfluger"}} +{"type":"node","id":"8738","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8039/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Banks","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8039/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8039","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 8039.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 12 provides Congress with the\npower to raise and support armies, and provide and maintain a\nnavy.\n[Page H5487]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8039/cosponsors?format=json","sponsors.0.bioguideId":"B001299","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8039/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","bill.sponsors.0.bioguideId":"K000388","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8039/text?format=json","bill.updateDate":"2023-08-09T20:00:23Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8039/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","request.billNumber":"8039","committees.url":"https://api.congress.gov/v3/bill/118/hr/8039/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8039/subjects?format=json","bill.updateDateIncludingText":"2023-08-09T20:00:23Z","title":"American Students First Act","bill.title":"To amend title 10, United States Code, to expand the period during which days of service on active duty or of performance of active service reduce the age of eligibility for members of the Ready Reserve for retired or retainer pay, and for other purposes.","bill.number":"8039","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8039/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8039/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8039/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Trent","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8039/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8039/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8039?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 8039.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nFederal college preparation aid\n[Page H2502]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8039/text?format=json","bill.sponsors.0.lastName":"Kelly"}} +{"type":"node","id":"8739","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8031/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ruiz","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8031/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8031","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 8031.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Consitution\n[Page H5486]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8031/cosponsors?format=json","sponsors.0.bioguideId":"R000599","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8031/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8031/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Ruiz, Raul [D-CA-25]","bill.sponsors.0.bioguideId":"F000246","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8031/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8031/text?format=json","bill.updateDate":"2025-01-03T07:52:30Z","updateDate":"2024-12-16T20:39:24Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8031/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000599?format=json","request.billNumber":"8031","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8031/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8031/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:30Z","title":"Chuckwalla National Monument Establishment and Joshua Tree National Park Expansion Act of 2024","bill.title":"FIRE Act","bill.number":"8031","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8031/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8031/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8031/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Pat","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8031/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8031/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8031?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUIZ:\nH.R. 8031.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8, Clauses 1 and 18 of the United States\nConstitution, to provide for the general welfare and make all\nlaws necessary and proper to carry out the powers of\nCongress.\nThe single subject of this legislation is:\nTo provide for the protection of natural and cultural\nresources, Tribal collaborative management, sustainable\neconomic development, enhanced recreation, and equitable\naccess on Federal lands in eastern Imperial and Riverside\ncounties, California, and for other purposes.\n[Page H2445]\n","sponsors.0.district":25,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":4,"sponsors.0.firstName":"Raul","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:24Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8031/text?format=json","bill.sponsors.0.lastName":"Fallon"}} +{"type":"node","id":"8740","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8036/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cole","bill.latestAction.actionDate":"2022-06-13","cboCostEstimates.0.pubDate":"2024-04-19T15:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Economics and Public Finance","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8036/summaries?format=json","type":"HR","latestAction.text":"Pursuant to the provisions of H. Res. 1160, H.R. 8036 is laid on the table.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"French","number":"8036","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 8036.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H5487]\n","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8036/cosponsors?format=json","sponsors.0.bioguideId":"C001053","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8036/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8036/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Cole, Tom [R-OK-4]","bill.sponsors.0.bioguideId":"H001072","amendments.url":"https://api.congress.gov/v3/bill/118/hr/8036/amendments?format=json","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8036/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8036/text?format=json","bill.updateDate":"2025-01-03T07:52:30Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8036/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/C001053?format=json","request.billNumber":"8036","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8036/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8036/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:30Z","title":"Indo-Pacific Security Supplemental Appropriations Act, 2024","bill.title":"National Flood Insurance Program Extension Act of 2022","bill.number":"8036","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on April 17, 2024\nhttps://tinyurl.com/4vw6pwrr\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60223","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8036/committees?format=json","request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8036/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8036/summaries?format=json","bill.cosponsors.count":17,"cboCostEstimates.0.title":"CBO Estimate for H.R. 8036, Indo-Pacific Security Supplemental Appropriations Act, 2024","bill.titles.count":3,"latestAction.actionTime":"10:34:00","bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":22,"bill.committees.count":1,"bill.sponsors.0.firstName":"J.","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8036/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8036/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8036?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COLE:\nH.R. 8036.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 9, Clause 7:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law; and a regular\nStatement and Account of the Receipts and Expenditures of all\npublic Money shall be published from time to time.''\nThe single subject of this legislation is:\nMaking emergency supplemental appropriations for assistance\nfor the Indo-Pacific region and for related expenses.\n[Page H2502]\n","sponsors.0.district":4,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":2,"sponsors.0.firstName":"Tom","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8036/text?format=json","bill.sponsors.0.lastName":"Hill"}} +{"type":"node","id":"8741","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8005/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Langworthy","bill.latestAction.actionDate":"2022-06-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8005/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"8005","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeFAZIO:\nH.R. 8005.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 (relating to the power to\nmake all laws necessary and proper for carrying out the\npowers vested in Congress)\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8005/cosponsors?format=json","sponsors.0.bioguideId":"L000600","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8005/actions?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8005/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","bill.sponsors.0.bioguideId":"D000191","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":24,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8005/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeFazio, Peter A. [D-OR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8005/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-16T20:38:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8005/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","request.billNumber":"8005","committees.url":"https://api.congress.gov/v3/bill/118/hr/8005/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8005/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Child Exploitation and Artificial Intelligence Expert Commission Act of 2024","bill.title":"Social Security Expansion Act","bill.number":"8005","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":24,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8005/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8005/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8005/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000191?format=json","introducedDate":"2024-04-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"PETER","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8005/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8005/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8005?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 64 (Monday, April 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGWORTHY:\nH.R. 8005.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of article 1 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill creates a commission that looks at the\nintersection of artificial intelligence and child sexual\nabuse material, specifically to support law enforcement and\nthe ability to prosecute relevant cases.\n[Page H2398]\n","sponsors.0.district":23,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Nicholas","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:38:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8005/text?format=json","bill.sponsors.0.lastName":"DEFAZIO"}} +{"type":"node","id":"8742","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8024/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kelly","bill.latestAction.actionDate":"2022-06-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8024/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8024","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 8024.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution.\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8024/cosponsors?format=json","sponsors.0.bioguideId":"K000388","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8024/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8024/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","bill.sponsors.0.bioguideId":"T000478","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8024/text?format=json","bill.updateDate":"2025-01-03T07:52:20Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8024/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","request.billNumber":"8024","committees.url":"https://api.congress.gov/v3/bill/118/hr/8024/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8024/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:20Z","title":"Emergency Pine Beetle Response Act of 2024","bill.title":"Stop CCP Infrastructure Act of 2022","bill.number":"8024","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8024/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8024/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8024/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Claudia","sponsors.0.state":"MS","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8024/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8024/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8024?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 8024.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nAgriculture\n[Page H2444]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":22,"sponsors.0.firstName":"Trent","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8024/text?format=json","bill.sponsors.0.lastName":"Tenney"}} +{"type":"node","id":"8743","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8016/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Stanton","bill.latestAction.actionDate":"2022-06-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8016/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8016","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 8016.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4 of the United States\nConstitution\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8016/cosponsors?format=json","sponsors.0.bioguideId":"S001211","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8016/actions?format=json","latestAction.actionDate":"2024-04-16","textVersions.count":1,"bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-4]","bill.sponsors.0.bioguideId":"N000189","bill.actions.count":5,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8016/text?format=json","bill.updateDate":"2025-01-03T07:52:20Z","updateDate":"2024-12-16T20:39:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8016/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","request.billNumber":"8016","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8016/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8016/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:20Z","title":"To exclude the Arizona Families Tax Rebate from Federal income tax.","bill.title":"Federal Columbia River Power System Certainty Act","bill.number":"8016","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8016/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8016/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8016/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8016/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8016/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8016?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 8016\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nTax rebates\n[Page H2444]\n","sponsors.0.district":4,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Greg","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8016/text?format=json","bill.sponsors.0.lastName":"Newhouse"}} +{"type":"node","id":"8744","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Harder","bill.latestAction.actionDate":"2022-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8002/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8002","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAWTHORN:\nH.R. 8002.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1. Section 8\n[Page H5447]\n","sponsors.0.bioguideId":"H001090","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8002/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","bill.sponsors.0.bioguideId":"C001104","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cawthorn, Madison [R-NC-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8002/text?format=json","bill.updateDate":"2025-01-23T13:28:35Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8002/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","request.billNumber":"8002","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8002/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8002/committees?format=json","bill.updateDateIncludingText":"2025-01-23T13:28:35Z","title":"Stop the Rate Hikes Act","bill.title":"Energy Independence Task Force Act","bill.number":"8002","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8002/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8002/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8002/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001104?format=json","introducedDate":"2024-04-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madison","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8002/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8002/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8002?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 64 (Monday, April 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 8002.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\nThe single subject of this legislation is:\nTo amend the Public Utility Regulatory Policies Act of 1978\nto require States to consider measures that limit the amount\nof retail utility rate increases a utility company can\nrequest to once every 365 days.\n[Page H2398]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":11,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8002/text?format=json","bill.sponsors.0.lastName":"Cawthorn"}} +{"type":"node","id":"8745","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8000/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Golden","bill.latestAction.actionDate":"2022-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8000/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8000","bill.cosponsors.countIncludingWithdrawnCosponsors":39,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRADY:\nH.R. 8000.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1 Section 8.\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8000/cosponsors?format=json","sponsors.0.bioguideId":"G000592","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8000/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8000/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Golden, Jared F. [D-ME-2]","bill.sponsors.0.bioguideId":"B000755","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8000/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brady, Kevin [R-TX-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8000/text?format=json","bill.updateDate":"2025-01-03T07:52:21Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8000/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000592?format=json","request.billNumber":"8000","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8000/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8000/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:21Z","title":"Timely Mail Delivery and Postal Services Protection Act","bill.title":"Chase COVID Unemployment Fraud Act of 2022","bill.number":"8000","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8000/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8000/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8000/summaries?format=json","bill.cosponsors.count":39,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000755?format=json","introducedDate":"2024-04-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"KEVIN","sponsors.0.state":"ME","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8000/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8000/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8000?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 64 (Monday, April 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDEN of Maine:\nH.R. 8000.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo limit closures and consolidations of United States\nPostal Service mail processing facilities, and for other\npurposes.\n[Page H2398]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":8,"sponsors.0.firstName":"Jared","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8000/text?format=json","bill.sponsors.0.lastName":"BRADY"}} +{"type":"node","id":"8746","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7995/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2022-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7995/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"7995","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\n[Pages H5446-H5447]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 7995.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H5447]]\nArticle I Section 8\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7995/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7995/actions?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"B001248","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7995/text?format=json","bill.updateDate":"2025-01-03T07:52:22Z","updateDate":"2024-12-16T20:38:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7995/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"7995","committees.url":"https://api.congress.gov/v3/bill/118/hr/7995/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7995/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:22Z","title":"Protecting the American Taxpayer from IRS Mishandling Act of 2024","bill.title":"GOLD CARD Act of 2022","bill.number":"7995","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7995/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7995/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7995/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2024-04-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7995/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7995/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7995?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 64 (Monday, April 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 7995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt 1, Sec 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to include\nequitable tolling for negligence or malfeasance by the\nInternal Revenue Service for the period of limitationon\nfiling for a credit or refund of overpayment\n[Page H2398]\n","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:38:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7995/text?format=json","bill.sponsors.0.lastName":"Burgess"}} +{"type":"node","id":"8747","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4363, DHS Contract Reporting Act of 2021","sponsors.0.lastName":"Wasserman Schultz","cboCostEstimates.0.pubDate":"2022-01-26T21:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4363/summaries?format=json","type":"HR","bill.summaries.count":4,"number":"4363","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"W000797","bill.subjects.count":7,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4363/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Wasserman Schultz, Debbie [D-FL-25]","bill.originChamber":"House","bill.latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 402.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-01-26T21:00:00Z","bill.committeeReports.1.url":"https://api.congress.gov/v3/committee-report/117/HRPT/121?format=json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4363/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"S. Rept. 117-120","updateDate":"2025-02-04T16:28:27Z","committees.count":3,"request.billNumber":"4363","committees.url":"https://api.congress.gov/v3/bill/118/hr/4363/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:03:55Z","bill.number":"4363","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on November 3, 2021\n","committeeReports":[],"latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4363/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4363/summaries?format=json","cboCostEstimates.0.title":"H.R. 4363, DHS Contract Reporting Act of 2021","bill.titles.count":7,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/117/HRPT/121?format=json","introducedDate":"2023-06-23","subjects.count":22,"bill.committees.count":2,"bill.sponsors.0.firstName":"Diana","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4363/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4363?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WASSERMAN SCHULTZ:\nH.R. 4363.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution, Article 1, Section 8\nThe single subject of this legislation is:\nTo address cancer survivorship care\n[Page H3145]\n","bill.sponsors.0.district":1,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4363/cosponsors?format=json","bill.textVersions.count":5,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 402.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","bill.committeeReports.0.citation":"S. Rept. 117-120","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARSHBARGER:\nH.R. 4363.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H3611]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4363/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4363/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"H001086","bill.cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on November 3, 2021\n","bill.actions.count":21,"titles.count":3,"cosponsors.count":41,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/120?format=json","bill.sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4363/text?format=json","bill.updateDate":"2025-01-14T19:03:55Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4363/subjects?format=json","request.congress":"118","actions.count":7,"committeeReports.1.citation":"H. Rept. 117-121","sponsors.0.url":"https://api.congress.gov/v3/member/W000797?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4363/subjects?format=json","title":"Comprehensive Cancer Survivorship Act","bill.committeeReports.1.citation":"H. Rept. 117-121","bill.title":"DHS Contract Reporting Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57785","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4363/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/120?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4363/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-06","sponsors.0.district":25,"bill.sponsors.0.state":"TN","sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4363/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57785","bill.sponsors.0.lastName":"Harshbarger"}} +{"type":"node","id":"8748","labels":["Bill"],"properties":{"congress":118,"bill.cboCostEstimates.0.title":"H.R. 7694, Strengthening Subcontracting for Small Businesses Act of 2022","sponsors.0.lastName":"Higgins","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-11-02T17:56:00Z","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7694/summaries?format=json","type":"HR","bill.summaries.count":3,"number":"7694","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"sponsors.0.bioguideId":"H001077","bill.subjects.count":3,"latestAction.actionDate":"2024-03-15","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-11-02T17:56:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-332","updateDate":"2024-12-16T20:37:05Z","committees.count":1,"request.billNumber":"7694","committees.url":"https://api.congress.gov/v3/bill/118/hr/7694/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:16:56Z","bill.number":"7694","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on June 8, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7694/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7694/summaries?format=json","cboCostEstimates.0.title":"H.R. 7694, Strengthening Subcontracting for Small Businesses Act of 2022","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","introducedDate":"2024-03-15","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Pete","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7694/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7694?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 47 (Friday, March 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 7694.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: [The Congress shall have\nPower . . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to limit the use\nof artificial intelligence at the Internal Revenue Service.\n[Page H1189]\n","bill.sponsors.0.district":8,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7694/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-332","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 78 (Tuesday, May 10, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 7694.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H4798]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7694/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7694/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"S001212","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on June 8, 2022\n","bill.actions.count":17,"titles.count":3,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/332?format=json","bill.sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7694/text?format=json","bill.updateDate":"2025-01-14T17:16:56Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7694/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7694/subjects?format=json","title":"No AI Audits Act","bill.title":"Strengthening Subcontracting for Small Businesses Act of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58618","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7694/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/332?format=json","request.billType":"hr","bill.cosponsors.count":1,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7694/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-05-10","sponsors.0.district":3,"bill.sponsors.0.state":"MN","sponsors.0.firstName":"Clay","updateDateIncludingText":"2024-12-16T20:37:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7694/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58618","bill.sponsors.0.lastName":"Stauber"}} +{"type":"node","id":"8749","labels":["Bill"],"properties":{"congress":118,"bill.cboCostEstimates.0.title":"H.R. 7670, Women-Owned Small Business Program Transparency Act","sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-11-02T17:55:00Z","policyArea.name":"Animals","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7670/summaries?format=json","type":"HR","bill.summaries.count":3,"number":"7670","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"sponsors.0.bioguideId":"M000194","bill.subjects.count":6,"latestAction.actionDate":"2024-03-13","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-11-02T17:55:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-331","updateDate":"2024-12-21T09:05:43Z","committees.count":1,"request.billNumber":"7670","committees.url":"https://api.congress.gov/v3/bill/118/hr/7670/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:16:56Z","bill.number":"7670","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on June 8, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-06-09","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7670/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7670/summaries?format=json","cboCostEstimates.0.title":"H.R. 7670, Women-Owned Small Business Program Transparency Act","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","introducedDate":"2024-03-13","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Chrissy","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7670/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7670?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 45 (Wednesday, March 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MACE:\nH.R. 7670.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nTo prohibit the captivity of American mink.\n[Page H1182]\n","bill.sponsors.0.district":6,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7670/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-331","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 7670.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe Congress shall have Power . . . To regulate Commerce\nwith foreign Nations, and among the several States, and with\nthe Indian Tribes.\n[Page H4723]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7670/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7670/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"H001085","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on June 8, 2022\n","bill.actions.count":17,"titles.count":4,"cosponsors.count":24,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/331?format=json","bill.sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7670/text?format=json","bill.updateDate":"2025-01-14T17:16:56Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7670/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7670/subjects?format=json","title":"MINKS are Superspreaders Act","bill.title":"WOSB Program Transparency Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58616","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7670/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/331?format=json","request.billType":"hr","bill.cosponsors.count":1,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7670/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-05-06","sponsors.0.district":1,"bill.sponsors.0.state":"PA","sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-12-21T09:05:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7670/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58616","bill.sponsors.0.lastName":"Houlahan"}} +{"type":"node","id":"8750","labels":["Bill"],"properties":{"relatedBills.count":11,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 7910, the Protecting Our Kids Act","sponsors.0.lastName":"Nickel","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-06-07T18:12:00Z","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7910/summaries?format=json","bill.relatedBills.count":11,"type":"HR","bill.summaries.count":3,"bill.amendments.count":1,"number":"7910","bill.cosponsors.countIncludingWithdrawnCosponsors":177,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"N000194","bill.subjects.count":19,"latestAction.actionDate":"2024-04-29","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7910/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Nickel, Wiley [D-NC-13]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-06-07T18:12:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7910/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-346","updateDate":"2024-11-09T04:56:35Z","committees.count":1,"request.billNumber":"7910","committees.url":"https://api.congress.gov/v3/bill/118/hr/7910/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:51:41Z","bill.number":"7910","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the Clerk of the House on June 6, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-06-09","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7910/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7910/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 7910, the Protecting Our Kids Act","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000002?format=json","introducedDate":"2024-04-09","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"JERROLD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7910/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7910?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 60 (Tuesday, April 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NICKEL:\nH.R. 7910.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 4, Clause 1, allows states to prescribe\nthe ``Time, Places and Manner of holding Elections for\nSenators and Representatives,'' but allows Congress ``at any\ntime'' to ``make or alter such regulations.''\nThe single subject of this legislation is:\nElections\n[Page H2252]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7910/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Received in the Senate.","latestAction.text":"Sponsor introductory remarks on measure. (CR H2639)","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-346","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 94 (Tuesday, May 31, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NADLER:\nH.R. 7910.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution (the\nCommerce Clause)\n[Page H5227]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7910/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/7910/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7910/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"N000002","amendments.url":"https://api.congress.gov/v3/bill/117/hr/7910/amendments?format=json","bill.cboCostEstimates.0.description":"As posted on the website of the Clerk of the House on June 6, 2022\n","bill.actions.count":32,"titles.count":4,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/346?format=json","bill.sponsors.0.fullName":"Rep. Nadler, Jerrold [D-NY-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7910/text?format=json","bill.updateDate":"2025-01-03T07:51:41Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7910/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000194?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7910/subjects?format=json","title":"FAIR MAPS Act","bill.title":"Protecting Our Kids Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58185","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7910/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/346?format=json","request.billType":"hr","bill.cosponsors.count":177,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7910/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-05-31","sponsors.0.district":13,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"Wiley","updateDateIncludingText":"2024-11-09T04:56:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7910/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58185","bill.sponsors.0.lastName":"NADLER"}} +{"type":"node","id":"8751","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 7667, the Food and Drug Amendments of 2022 Act","sponsors.0.lastName":"Langworthy","cboCostEstimates.0.pubDate":"2022-06-06T20:07:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Agriculture and Food","bill.relatedBills.count":20,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7667/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"G.","number":"7667","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"L000600","bill.subjects.count":45,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7667/relatedbills?format=json","latestAction.actionDate":"2024-08-30","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-06-06T20:07:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7667/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-348","updateDate":"2025-01-23T18:51:26Z","committees.count":1,"request.billNumber":"7667","committees.url":"https://api.congress.gov/v3/bill/118/hr/7667/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:49:19Z","bill.number":"7667","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 3, 2022\n","committeeReports":[],"sponsors.0.middleName":"A.","latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7667/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 7667, the Food and Drug Amendments of 2022 Act","bill.titles.count":17,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","introducedDate":"2024-03-13","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ANNA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7667/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7667?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 45 (Wednesday, March 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGWORTHY:\nH.R. 7667.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nMaple\n[Page H1181]\n","bill.sponsors.0.district":18,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7667/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Received in the Senate.","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-348","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 7667.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3: [The Congress shall\nhave Power] To regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes.\n[Page H4723]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7667/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7667/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"E000215","bill.cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 3, 2022\n","bill.actions.count":20,"titles.count":3,"cosponsors.count":11,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/348?format=json","bill.sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7667/text?format=json","bill.updateDate":"2025-01-03T07:49:19Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7667/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7667/subjects?format=json","title":"Making Agricultural Products Locally Essential (MAPLE) Act","bill.title":"Food and Drug Amendments of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58183","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7667/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/348?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7667/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-05-06","sponsors.0.district":23,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Nicholas","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7667/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58183","bill.sponsors.0.lastName":"ESHOO"}} +{"type":"node","id":"8752","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7664/cosponsors?format=json","congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"Kamlager-Dove","bill.latestAction.actionDate":"2022-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Families","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7664/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":3,"sponsors.0.party":"D","number":"7664","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committeeReports.0.citation":"H. Rept. 117-330","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 73 (Tuesday, May 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILLIAMS of Texas:\nH.R. 7664.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H4715]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7664/cosponsors?format=json","sponsors.0.bioguideId":"K000400","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7664/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7664/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","bill.sponsors.0.bioguideId":"W000816","bill.originChamber":"House","bill.actions.count":17,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7664/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/330?format=json","committeeReports.0.citation":"H. Rept. 117-330","bill.sponsors.0.fullName":"Rep. Williams, Roger [R-TX-25]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7664/text?format=json","bill.updateDate":"2025-01-14T17:16:56Z","updateDate":"2024-12-19T09:06:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7664/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","request.billNumber":"7664","committees.url":"https://api.congress.gov/v3/bill/118/hr/7664/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7664/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T17:16:56Z","title":"21st Century Children and Families Act","bill.title":"Supporting Small Business and Career and Technical Education Act of 2022","bill.number":"7664","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7664/committees?format=json","latestAction_actionDate":"2022-06-09","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/330?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7664/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7664/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":5,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000816?format=json","introducedDate":"2024-03-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Roger","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7664/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7664/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7664?format=json","bill.introducedDate":"2022-05-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 45 (Wednesday, March 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 7664.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill. This bill\nintroduced pursuant to the powers granted to Congress under\nthe General Welfare Clause (Art. 1 Sec. 8 CI. 1), the\nCommerce Clause (Art 1 Sec. 8 Cl. 3), and the Necessary and\nProper Clause (Art. 1 Sec. 8 CI. 18).Further, this statement\nof constitutional authority is made for the sole purpose of\ncompliance with clause 7 of Rule XII of the Rules of the\nHouse of Representatives and shall have no bearing on\njudicial review of the accompanying bill.\nThe single subject of this legislation is:\nto expand nondiscrimination protections for children and\nfamilies and offer greater flexibility to States before\npetitioning to terminate parental rights, and for other\npurposes.\n[Page H1181]\n","sponsors.0.district":37,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":25,"sponsors.0.firstName":"Sydney","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7664/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8753","labels":["Bill"],"properties":{"congress":118,"bill.cboCostEstimates.0.title":"H.R. 7622, Small Business Workforce Pipeline Act of 2022","sponsors.0.lastName":"Clyde","cboCostEstimates.0.pubDate":"2022-08-29T18:45:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7622/summaries?format=json","type":"HR","bill.summaries.count":3,"number":"7622","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"C001116","bill.subjects.count":4,"latestAction.actionDate":"2024-03-12","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-08-29T18:45:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-329","updateDate":"2025-02-04T16:54:13Z","committees.count":1,"request.billNumber":"7622","committees.url":"https://api.congress.gov/v3/bill/118/hr/7622/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:16:56Z","bill.number":"7622","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on June 8, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-06-09","sponsors.0.middleName":"S.","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7622/summaries?format=json","cboCostEstimates.0.title":"H.R. 7622, Small Business Workforce Pipeline Act of 2022","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2024-03-12","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jason","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7622/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7622?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 44 (Tuesday, March 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.R. 7622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 states that ``The Congress shall have\nPower . . . To make Rules for the Government''\nThe single subject of this legislation is:\nReporting requirements for cabinet-level officials.\n[Page H1148]\n","bill.sponsors.0.district":6,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7622/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-329","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 70 (Thursday, April 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 7622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n``The Congress shall have Power to regulate Commerce with\nforeign Nations, and among the several States, and with the\nIndian Tribes.''\n[Page H4609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7622/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7622/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001121","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on June 8, 2022\n","bill.actions.count":17,"titles.count":4,"cosponsors.count":12,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/329?format=json","bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7622/text?format=json","bill.updateDate":"2025-01-14T17:16:56Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7622/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7622/subjects?format=json","title":"AUSTIN Act of 2024","bill.title":"Small Business Workforce Pipeline Act of 2022","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58434","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7622/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/329?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7622/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-04-28","sponsors.0.district":9,"bill.sponsors.0.state":"CO","sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7622/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58434","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"8754","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 6023, Multinational Species Conservation Funds Semipostal Stamp Reauthorization Act of 2021","sponsors.0.lastName":"Carbajal","cboCostEstimates.0.pubDate":"2022-04-20T20:36:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6023/summaries?format=json","type":"HR","bill.summaries.count":5,"number":"6023","bill.cosponsors.countIncludingWithdrawnCosponsors":29,"sponsors":[],"sponsors.0.bioguideId":"C001112","laws.0.number":"117-127","bill.subjects.count":6,"latestAction.actionDate":"2023-11-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6023/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Carbajal, Salud O. [D-CA-24]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-127.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-04-20T20:36:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6023/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-301","updateDate":"2024-08-02T18:22:45Z","committees.count":1,"request.billNumber":"6023","committees.url":"https://api.congress.gov/v3/bill/118/hr/6023/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","bill.number":"6023","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on February 16, 2022\n","committeeReports":[],"sponsors.0.middleName":"O.","latestAction_actionDate":"2022-05-16","summaries.count":5,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6023/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6023/summaries?format=json","cboCostEstimates.0.title":"H.R. 6023, Multinational Species Conservation Funds Semipostal Stamp Reauthorization Act of 2021","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001059?format=json","introducedDate":"2023-10-24","subjects.count":6,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6023/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/6023?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARBAJAL:\nH.R. 6023.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution which provides Congress with the power to\nlay and collect Taxes, Duties, Imposts and Excises in order\nto provide for the general Welfare of the United States.\nThe single subject of this legislation is:\nThe bill subject is veteran benefits related to military\nsexual trauma.\n[Page H5043]\n","bill.sponsors.0.district":16,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6023/cosponsors?format=json","bill.textVersions.count":5,"bill.latestAction.actionDate":"2022-05-16","latestAction_text":"Became Public Law No: 117-127.","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-301","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COSTA:\nH.R. 6023.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6023/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6023/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001059","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on February 16, 2022\n","bill.actions.count":28,"titles.count":3,"cosponsors.count":23,"bill.laws.0.type":"Public Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/301?format=json","bill.sponsors.0.fullName":"Rep. Costa, Jim [D-CA-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6023/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6023/subjects?format=json","bill.laws.0.number":"117-127","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001112?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6023/subjects?format=json","title":"Veteran Restitution and Justice Act of 2023","bill.title":"Multinational Species Conservation Funds Semipostal Stamp Reauthorization Act of 2021","cosponsors.countIncludingWithdrawnCosponsors":23,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58013","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6023/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/301?format=json","request.billType":"hr","bill.cosponsors.count":29,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6023/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-11-18","sponsors.0.district":24,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Salud","updateDateIncludingText":"2024-08-02T18:22:45Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6023/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58013","bill.sponsors.0.lastName":"Costa"}} +{"type":"node","id":"8755","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3182/cosponsors?format=json","congress":118,"bill.textVersions.count":5,"sponsors.0.lastName":"Fletcher","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-126.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3182/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","bill.summaries.count":4,"sponsors.0.party":"D","number":"3182","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 83 (Thursday, May 13, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 3182.\nCongress has the power to enact this legislation pursuant\nto the following:\nAritcle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\n[Page H2315]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3182/cosponsors?format=json","sponsors.0.bioguideId":"F000468","laws.0.number":"117-126","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3182/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3182/relatedbills?format=json","latestAction.actionDate":"2023-05-12","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","bill.sponsors.0.bioguideId":"C001097","laws":[],"bill.originChamber":"House","bill.actions.count":23,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Became Public Law No: 117-126.","request.contentType":"application/json","bill.laws.0.type":"Public Law","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3182/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3182/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3182/subjects?format=json","committees.count":2,"bill.laws.0.number":"117-126","request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","request.billNumber":"3182","committees.url":"https://api.congress.gov/v3/bill/118/hr/3182/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3182/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"CLEAR Act","bill.title":"Safe Sleep for Babies Act of 2021","bill.number":"3182","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3182/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":4,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3182/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3182/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":7,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2023-05-10","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":2,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3182/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3182/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3182?format=json","bill.introducedDate":"2021-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FLETCHER:\nH.R. 3182.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nEnergy\n[Page H2245]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"bill.type":"HR","updateDateIncludingText":"2025-01-16T11:56:46Z","sponsors.0.firstName":"Lizzie","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3182/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}} +{"type":"node","id":"8756","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/207/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Schweikert","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/207/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"207","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 3 (Tuesday, January 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 207.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 7 of\nSection 8 of Article I.\n[Page H74]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/207/cosponsors?format=json","sponsors.0.bioguideId":"S001183","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/207/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Schweikert, David [R-AZ-1]","bill.sponsors.0.bioguideId":"K000388","bill.actions.count":14,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/207/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-21T09:05:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/207/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/S001183?format=json","request.billNumber":"207","committees.url":"https://api.congress.gov/v3/bill/118/hr/207/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/207/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"Advanced Safe Testing at Residence Telehealth Act of 2023","bill.title":"To designate the facility of the United States Postal Service located at 215 1st Avenue in Amory, Mississippi, as the \"Command Sergeant Major Lawrence E. 'Rabbit' Kennedy Post Office Building\".","bill.number":"207","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/207/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/207/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/207/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","introducedDate":"2023-01-09","bill.originChamberCode":"H","subjects.count":21,"bill.committees.count":2,"bill.sponsors.0.firstName":"Trent","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/207/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/207/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/207?format=json","bill.introducedDate":"2021-01-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHWEIKERT:\nH.R. 207.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have the Power to make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer therof.\n[Page H112]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":1,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/207/text?format=json","bill.sponsors.0.lastName":"Kelly"}} +{"type":"node","id":"8757","labels":["Bill"],"properties":{"relatedBills.count":8,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/209/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Stauber","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/209/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held.","bill.summaries.count":1,"sponsors.0.party":"R","number":"209","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 3 (Tuesday, January 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 209.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 7 of\nSection 8 of Article I.\n[Page H74]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/209/cosponsors?format=json","sponsors.0.bioguideId":"S001212","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/209/actions?format=json","latestAction.actionDate":"2023-02-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/209/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","bill.sponsors.0.bioguideId":"K000388","bill.actions.count":14,"bill.originChamber":"House","titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/209/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/209/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","request.billNumber":"209","committees.url":"https://api.congress.gov/v3/bill/118/hr/209/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/209/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"Permitting for Mining Needs Act of 2023","bill.title":"To designate the facility of the United States Postal Service located at 305 Highway 15 North in Pontotoc, Mississippi, as the \"Lance Corporal Marc Lucas Tucker Post Office Building\".","bill.number":"209","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/209/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/209/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/209/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","introducedDate":"2023-01-09","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":2,"bill.sponsors.0.firstName":"Trent","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/209/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/209/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/209?format=json","bill.introducedDate":"2021-01-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 209.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 18\n[Page H112]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":1,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/209/text?format=json","bill.sponsors.0.lastName":"Kelly"}} +{"type":"node","id":"8758","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/903/cosponsors?format=json","congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"Cline","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Commerce","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/903/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":3,"sponsors.0.party":"R","bill.amendments.count":4,"number":"903","bill.cosponsors.countIncludingWithdrawnCosponsors":231,"bill.committeeReports.0.citation":"H. Rept. 117-310","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 22 (Friday, February 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Mississippi:\nH.R. 903.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H470]\n","amendments.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/903/cosponsors?format=json","sponsors.0.bioguideId":"C001118","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/903/amendments?format=json","bill.subjects.count":26,"actions.url":"https://api.congress.gov/v3/bill/118/hr/903/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/903/relatedbills?format=json","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Cline, Ben [R-VA-6]","bill.sponsors.0.bioguideId":"T000193","amendments.url":"https://api.congress.gov/v3/bill/117/hr/903/amendments?format=json","bill.originChamber":"House","bill.actions.count":33,"titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/903/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/310?format=json","committeeReports.0.citation":"H. Rept. 117-310","bill.sponsors.0.fullName":"Rep. Thompson, Bennie G. [D-MS-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/903/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/903/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001118?format=json","request.billNumber":"903","committees.url":"https://api.congress.gov/v3/bill/118/hr/903/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/903/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:34Z","title":"Veterans Entrepreneurship Act of 2023","bill.title":"Rights for the TSA Workforce Act of 2022","bill.number":"903","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/903/committees?format=json","latestAction_actionDate":"2022-05-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/310?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/903/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/903/summaries?format=json","bill.cosponsors.count":231,"bill.titles.count":9,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000193?format=json","introducedDate":"2023-02-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"BENNIE","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/903/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/903/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/903?format=json","bill.introducedDate":"2021-02-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLINE:\nH.R. 903.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nVeterans Entrepreneurship\n[Page H827]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ben","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/903/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"8759","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 5129, Community Services Block Grant Modernization Act of 2022","sponsors.0.lastName":"Steube","cboCostEstimates.0.pubDate":"2022-06-09T19:54:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5129/summaries?format=json","bill.relatedBills.count":2,"type":"HR","bill.summaries.count":3,"bill.amendments.count":4,"number":"5129","bill.cosponsors.countIncludingWithdrawnCosponsors":126,"sponsors":[],"amendments.count":4,"sponsors.0.bioguideId":"S001214","bill.subjects.count":10,"latestAction.actionDate":"2023-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5129/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-06-09T19:54:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5129/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-311","updateDate":"2024-07-31T01:26:28Z","committees.count":1,"request.billNumber":"5129","committees.url":"https://api.congress.gov/v3/bill/118/hr/5129/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","bill.number":"5129","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on May 13, 2022\n","committeeReports":[],"sponsors.0.middleName":"Gregory","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5129/summaries?format=json","cboCostEstimates.0.title":"H.R. 5129, Community Services Block Grant Modernization Act of 2022","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","introducedDate":"2023-08-01","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzanne","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5129/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/5129?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 132 (Tuesday, August 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 5129.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Assistant Secretary of State for Consular\nAffairs to notify United States citizens regarding passport\nexpiration and renewal.\n[Page H4160]\n","bill.sponsors.0.district":1,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5129/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-05-16","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-311","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 152 (Tuesday, August 31, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 5129.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of article I of the Constitution.\n[Page H4501]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5129/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/5129/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5129/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"B001278","amendments.url":"https://api.congress.gov/v3/bill/117/hr/5129/amendments?format=json","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on May 13, 2022\n","bill.actions.count":26,"titles.count":3,"cosponsors.count":5,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/311?format=json","bill.sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5129/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5129/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5129/subjects?format=json","title":"Passport Notification Act of 2023","bill.title":"Community Services Block Grant Modernization Act of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58200","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5129/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/311?format=json","request.billType":"hr","bill.cosponsors.count":126,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5129/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-08-31","sponsors.0.district":17,"bill.sponsors.0.state":"OR","sponsors.0.firstName":"W.","updateDateIncludingText":"2024-07-31T01:26:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5129/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58200","bill.sponsors.0.lastName":"Bonamici"}} +{"type":"node","id":"8760","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5673/cosponsors?format=json","congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"MCGOVERN","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Star Print ordered on the bill.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5673/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":3,"sponsors.0.party":"D","number":"5673","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committeeReports.0.citation":"H. Rept. 117-275","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 185 (Thursday, October 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 5673.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 18 of\nSection 8 of Article I of the United States Constitution.\n[Page H5792]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5673/cosponsors?format=json","sponsors.0.bioguideId":"M000312","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5673/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","bill.sponsors.0.bioguideId":"T000468","bill.originChamber":"House","bill.actions.count":20,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Star Print ordered on the bill.","request.contentType":"application/json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/275?format=json","committeeReports.0.citation":"H. Rept. 117-275","bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5673/text?format=json","bill.updateDate":"2025-01-14T19:03:55Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5673/subjects?format=json","committees.count":21,"request.congress":"118","actions.count":26,"sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","request.billNumber":"5673","committees.url":"https://api.congress.gov/v3/bill/118/hr/5673/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5673/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T19:03:55Z","title":"Responsible Legislating Act","bill.title":"Safeguarding Tomorrow through Ongoing Risk Mitigation Technical Corrections Act","bill.number":"5673","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5673/committees?format=json","latestAction_actionDate":"2022-05-16","sponsors.0.middleName":"P.","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/275?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/5673/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5673/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":5,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-09-22","bill.originChamberCode":"H","subjects.count":52,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5673/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5673/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5673?format=json","bill.introducedDate":"2021-10-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 154 (Friday, September 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 5673\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nTo advance responsible policies.\n[Page H4463]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"JAMES","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5673/text?format=json","bill.sponsors.0.lastName":"Titus"}} +{"type":"node","id":"8761","labels":["Bill"],"properties":{"congress":118,"bill.cboCostEstimates.0.title":"H.R. 5706, Stop Sexual Assault and Harassment in Transportation Act","sponsors.0.lastName":"Donalds","cboCostEstimates.0.pubDate":"2022-03-07T17:23:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5706/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"A.","number":"5706","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"sponsors.0.bioguideId":"D000032","bill.subjects.count":18,"latestAction.actionDate":"2023-09-27","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.originChamber":"House","bill.latestAction.text":"Star Print ordered on the bill.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-03-07T17:23:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-278","updateDate":"2024-11-09T01:57:27Z","committees.count":1,"request.billNumber":"5706","committees.url":"https://api.congress.gov/v3/bill/118/hr/5706/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:51:33Z","bill.number":"5706","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on October 27, 2021\n","committeeReports":[],"sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-16","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5706/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5706/summaries?format=json","cboCostEstimates.0.title":"H.R. 5706, Stop Sexual Assault and Harassment in Transportation Act","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000191?format=json","introducedDate":"2023-09-26","subjects.count":9,"bill.committees.count":4,"bill.sponsors.0.firstName":"PETER","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5706/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/5706?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 156 (Tuesday, September 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 5706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H4500]\n","bill.sponsors.0.district":4,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5706/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-05-16","latestAction_text":"Star Print ordered on the bill.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-278","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 187 (Monday, October 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeFAZIO:\nH.R. 5706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe Constitution.\n[Page H5872]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5706/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5706/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"D000191","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on October 27, 2021\n","bill.actions.count":32,"titles.count":3,"cosponsors.count":15,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/278?format=json","bill.sponsors.0.fullName":"Rep. DeFazio, Peter A. [D-OR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5706/text?format=json","bill.updateDate":"2025-01-14T18:51:33Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5706/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5706/subjects?format=json","title":"U.S. Capitol Power Plant Retrofit Act","bill.title":"Stop Sexual Assault and Harassment in Transportation Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57906","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5706/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/278?format=json","request.billType":"hr","bill.cosponsors.count":15,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5706/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-10-25","sponsors.0.district":19,"bill.sponsors.0.state":"OR","sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5706/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57906","bill.sponsors.0.lastName":"DEFAZIO"}} +{"type":"node","id":"8762","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Garamendi","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7771/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7771","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROUZER:\nH.R. 7771.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of article I of the Constitution.\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7771/cosponsors?format=json","sponsors.0.bioguideId":"G000559","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7771/actions?format=json","latestAction.actionDate":"2024-03-21","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","bill.sponsors.0.bioguideId":"R000603","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rouzer, David [R-NC-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7771/text?format=json","bill.updateDate":"2024-02-07T16:02:17Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7771/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","request.billNumber":"7771","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7771/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7771/committees?format=json","bill.updateDateIncludingText":"2024-02-07T16:02:17Z","title":"National Rosie the Riveter Day Act","bill.title":"To require the Secretary of the Army and the Administrator of the Environmental Protection Agency to conduct a study analyzing the cost to permit applicants and permit holders of complying with sections 402 and 404 of the Federal Water Pollution Control Act, and for other purposes.","bill.number":"7771","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7771/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7771/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7771/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000603?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7771/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7771/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7771?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 7771.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo amend title 36, United States Code, to designate\n``National Rosie the Riveter Day'' and request the President\nto issue an annual proclamation.\n[Page H1354]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":7,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7771/text?format=json","bill.sponsors.0.lastName":"Rouzer"}} +{"type":"node","id":"8763","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7769/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Caraveo","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7769/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"B.","number":"7769","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAROLYN B. MALONEY of New York:\nH.R. 7769.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7769/cosponsors?format=json","sponsors.0.bioguideId":"C001134","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7769/actions?format=json","latestAction.actionDate":"2024-03-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7769/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","bill.sponsors.0.bioguideId":"M000087","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Maloney, Carolyn B. [D-NY-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7769/text?format=json","bill.updateDate":"2025-01-03T07:50:07Z","updateDate":"2024-09-18T08:06:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7769/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","request.billNumber":"7769","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7769/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7769/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:07Z","title":"Farm Transitions Act of 2024","bill.title":"Helicopter Safety and Noise Management Act","bill.number":"7769","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7769/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7769/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7769/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000087?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"CAROLYN","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7769/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7769/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7769?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\n[Pages H1353-H1354]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 7769.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H1354]]\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nReauthorize Commission on Farm Transition\n","sponsors.0.district":8,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":12,"sponsors.0.firstName":"Yadira","bill.type":"HR","updateDateIncludingText":"2024-09-18T08:06:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7769/text?format=json","bill.sponsors.0.lastName":"MALONEY"}} +{"type":"node","id":"8764","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7788/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Soto","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7788/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7788","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 83 (Monday, May 16, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.R. 7788.\nCongress has the power to enact this legislation pursuant\nto the following:\n=========================== NOTE ===========================\nOn page H5010, May 16, 2022, in the left column, the following\nlanguage appears: By Mr SMITH of Washington: H.R. 7788. Congress\nhas the power to enact this legis-\nThe online version has been corrected to read: By Mr. SMITH of\nNebraska: H.R. 7788. Congress has the power to enact this legis-\n========================= END NOTE =========================\nArticle I, Section 8 of the United States Constitution,\nspecifically Clause 6\n[Page H5010]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7788/cosponsors?format=json","sponsors.0.bioguideId":"S001200","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7788/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7788/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","bill.sponsors.0.bioguideId":"S001172","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7788/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7788/text?format=json","bill.updateDate":"2025-01-03T07:50:14Z","updateDate":"2024-06-11T15:42:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7788/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","request.billNumber":"7788","committees.url":"https://api.congress.gov/v3/bill/118/hr/7788/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7788/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:14Z","title":"Firefighter PFAS Injury Compensation Act of 2024","bill.title":"North Platte Canteen Congressional Gold Medal Act","bill.number":"7788","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7788/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7788/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7788/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Adrian","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7788/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7788/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7788?format=json","bill.introducedDate":"2022-05-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 7788.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution.\nThe single subject of this legislation is:\nThe bill would set up a Firefighter's Compensation fund for\nfirefighters or their families to claim compensation for\nillness or death caused by their exposure to PFAS through\ntheir profession.\n[Page H1354]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NE","bill.sponsors.0.district":3,"sponsors.0.firstName":"Darren","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:42:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7788/text?format=json","bill.sponsors.0.lastName":"Smith"}} +{"type":"node","id":"8765","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7781/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7781/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7781","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 83 (Monday, May 16, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 7781.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution of\nthe United States\n[Page H5009]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7781/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7781/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7781/relatedbills?format=json","latestAction.actionDate":"2024-03-21","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"B001260","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7781/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7781/text?format=json","bill.updateDate":"2025-01-03T07:50:18Z","updateDate":"2024-10-15T14:40:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7781/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"7781","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7781/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7781/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:18Z","title":"AI PLAN Act","bill.title":"Urgently Feeding America’s Babies Act of 2022","bill.number":"7781","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7781/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7781/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7781/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Vern","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7781/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7781/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7781?format=json","bill.introducedDate":"2022-05-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 7781.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution To\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require a report on the economic and national security\nrisks posed by the use of artificial intelligence in the\ncommission of financial crimes, including fraud and the\ndissemination of misinformation, and for other purposes.\n[Page H1354]\n","sponsors.0.district":3,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":16,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-10-15T14:40:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7781/text?format=json","bill.sponsors.0.lastName":"Buchanan"}} +{"type":"node","id":"8766","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Peltola","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7785/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7785","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 83 (Monday, May 16, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 7785.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H5010]\n","sponsors.0.bioguideId":"P000619","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7785/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7785/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Peltola, Mary Sattler [D-AK-At Large]","bill.sponsors.0.bioguideId":"K000381","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7785/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7785/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-06T21:59:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7785/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000619?format=json","request.billNumber":"7785","committees.url":"https://api.congress.gov/v3/bill/118/hr/7785/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7785/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Alaska Native Vietnam Era Veterans Land Allotment Extension and Fulfillment Act of 2024","bill.title":"Investing in Digital Skills Act","bill.number":"7785","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7785/committees?format=json","request.format":"json","sponsors.0.middleName":"Sattler","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7785/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7785/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Derek","sponsors.0.state":"AK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7785/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7785/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7785?format=json","bill.introducedDate":"2022-05-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. PELTOLA:\nH.R. 7785.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3.\nThe single subject of this legislation is:\nTo make additional Federal public land available for\nselection under the Alaska Native Vietnam era veterans land\nallotment program, and for other purposes.\n[Page H1354]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Mary","bill.type":"HR","updateDateIncludingText":"2024-12-06T21:59:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7785/text?format=json","bill.sponsors.0.lastName":"Kilmer"}} +{"type":"node","id":"8767","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Owens","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Labor and Employment","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7784/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7784","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 83 (Monday, May 16, 2022)]\n[House]\n[Pages H5009-H5010]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 7784.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H5010]]\nArticle I, Section 8\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7784/cosponsors?format=json","sponsors.0.bioguideId":"O000086","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7784/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7784/relatedbills?format=json","latestAction.actionDate":"2024-03-21","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Owens, Burgess [R-UT-4]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7784/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7784/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7784/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/O000086?format=json","request.billNumber":"7784","committees.url":"https://api.congress.gov/v3/bill/118/hr/7784/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7784/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"SALT Act","bill.title":"Supporting Trauma-Informed Education Practices Act of 2022","bill.number":"7784","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7784/committees?format=json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7784/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7784/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7784/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7784/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7784?format=json","bill.introducedDate":"2022-05-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OWENS:\nH.R. 7784.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8\nThe single subject of this legislation is:\nLabor\n[Page H1354]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"Burgess","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7784/text?format=json","bill.sponsors.0.lastName":"Hayes"}} +{"type":"node","id":"8768","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Horsford","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"H.","number":"7773","bill.cosponsors.countIncludingWithdrawnCosponsors":44,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 7773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7773/cosponsors?format=json","sponsors.0.bioguideId":"H001066","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7773/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7773/relatedbills?format=json","latestAction.actionDate":"2024-04-19","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Horsford, Steven [D-NV-4]","bill.sponsors.0.bioguideId":"S000522","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7773/text?format=json","bill.updateDate":"2025-01-03T07:50:07Z","updateDate":"2024-07-24T15:18:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/H001066?format=json","request.billNumber":"7773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:07Z","title":"VET Extension Act of 2024","bill.title":"Alzheimer’s Accountability and Investment Act","bill.number":"7773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7773/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7773/summaries?format=json","bill.cosponsors.count":44,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"CHRISTOPHER","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7773?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HORSFORD:\nH.R. 7773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to provide\nadditional entitlement to Post-9/11 Educational Assistance to\ncertain veterans and members of the Armed Forces who require\nextra time to complete remedial and deficiency courses, and\nfor other purposes.\n[Page H1354]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Steven","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:18:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7773/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8769","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7766/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Eshoo","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7766/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7766","bill.cosponsors.countIncludingWithdrawnCosponsors":20,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 7766.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7766/cosponsors?format=json","sponsors.0.bioguideId":"E000215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7766/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-16]","bill.sponsors.0.bioguideId":"B000825","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":18,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7766/text?format=json","bill.updateDate":"2025-01-03T07:50:06Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7766/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","request.billNumber":"7766","committees.url":"https://api.congress.gov/v3/bill/118/hr/7766/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7766/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:06Z","title":"Protecting Consumers from Deceptive AI Act","bill.title":"Trust the Science Act","bill.number":"7766","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":18,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7766/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7766/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7766/summaries?format=json","bill.cosponsors.count":20,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7766/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7766/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7766?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 7766.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clauses 1 and 3\nThe single subject of this legislation is:\nTo ensure that audio or visual content created or\nsubstantially modified by generative artificial intelligence\nincludes a disclosure acknowledging the generative artificial\nintelligence origin of such content.\n[Page H1353]\n","sponsors.0.district":16,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Anna","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7766/text?format=json","bill.sponsors.0.lastName":"Boebert"}} +{"type":"node","id":"8770","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7775/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7775/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7775","bill.cosponsors.countIncludingWithdrawnCosponsors":64,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 7775.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7775/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7775/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7775/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7775/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7775/text?format=json","bill.updateDate":"2025-01-03T07:50:06Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7775/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"7775","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7775/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7775/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:06Z","title":"PFAS-Free Procurement Act of 2024","bill.title":"NAPA Reauthorization Act","bill.number":"7775","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7775/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7775/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7775/summaries?format=json","bill.cosponsors.count":64,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7775/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7775/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7775?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 7775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo prohibit the procurement of certain items containing\nperfluorooctane sulfonate (PFOS) or perfluorooctanoic acid\n(PFOA) and prioritize the procurement of products not\ncontaining PFAS.\n[Page H1354]\n","sponsors.0.district":17,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7775/text?format=json","bill.sponsors.0.lastName":"Tonko"}} +{"type":"node","id":"8771","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7774/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Jacobs","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7774/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7774","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 7774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7774/cosponsors?format=json","sponsors.0.bioguideId":"J000305","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7774/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7774/relatedbills?format=json","latestAction.actionDate":"2024-03-21","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Jacobs, Sara [D-CA-51]","bill.sponsors.0.bioguideId":"T000460","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7774/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7774/text?format=json","bill.updateDate":"2025-01-03T07:50:07Z","updateDate":"2024-12-06T18:55:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7774/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000305?format=json","request.billNumber":"7774","committees.url":"https://api.congress.gov/v3/bill/118/hr/7774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7774/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:07Z","title":"Upholding Human Rights Abroad Act of 2024","bill.title":"Commonsense Reporting Act of 2022","bill.number":"7774","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7774/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7774/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7774/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"MIKE","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7774/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7774/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7774?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACOBS:\nH.R. 7774.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo amend title 10, United States Code, to make certain\nimprovements in the laws administered by the Secretary of\nDefense relating to the consideration of the human rights\nrecords of recipients of certain support, and for other\npurposes.\n[Page H1354]\n","sponsors.0.district":51,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Sara","bill.type":"HR","updateDateIncludingText":"2024-12-06T18:55:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7774/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"8772","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7767/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luttrell","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7767/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7767","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COURTNEY:\nH.R. 7767.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7767/cosponsors?format=json","sponsors.0.bioguideId":"L000603","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7767/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.sponsors.0.bioguideId":"C001069","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7767/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7767/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-30T20:17:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7767/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","request.billNumber":"7767","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7767/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"STOP Enemies Act of 2024","bill.title":"Strengthening Behavioral Health Benefits Act","bill.number":"7767","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7767/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7767/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7767/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7767/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7767/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7767?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 7767.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nArmed Forces UCMJ\n[Page H1353]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":2,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-07-30T20:17:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7767/text?format=json","bill.sponsors.0.lastName":"Courtney"}} +{"type":"node","id":"8773","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7770/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Garamendi","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committees on Oversight and Reform, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7770/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7770","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PHILLIPS:\nH.R. 7770.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7770/cosponsors?format=json","sponsors.0.bioguideId":"G000559","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7770/actions?format=json","latestAction.actionDate":"2024-03-21","textVersions.count":1,"bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","bill.sponsors.0.bioguideId":"P000616","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":212,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committees on Oversight and Reform, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Phillips, Dean [D-MN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7770/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-21T09:05:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7770/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","request.billNumber":"7770","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7770/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7770/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Rosie the Riveter Commemorative Coin Act","bill.title":"Life Saving Leave Act","bill.number":"7770","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":212,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7770/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7770/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7770/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000616?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Dean","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7770/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7770/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7770?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 7770.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 6 empowers Congress to coin\nmoney.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to mint coins in\nrecognition and celebration of the women who contributed to\nthe Home Front during World War II.\n[Page H1354]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":3,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-11-21T09:05:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7770/text?format=json","bill.sponsors.0.lastName":"Phillips"}} +{"type":"node","id":"8774","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7534/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Auchincloss","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7534/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7534","bill.cosponsors.countIncludingWithdrawnCosponsors":21,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 65 (Monday, April 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: ``[The Congress shall have\nthe power . . .] To make all Laws which shall be necessary\nand proper for carrying into Execution the foregoing Powers,\nand all other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\n[Page H4448]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7534/cosponsors?format=json","sponsors.0.bioguideId":"A000148","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7534/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-08","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Auchincloss, Jake [D-MA-4]","bill.sponsors.0.bioguideId":"G000574","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":21,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7534/text?format=json","bill.updateDate":"2025-01-03T07:47:59Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7534/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/A000148?format=json","request.billNumber":"7534","committees.url":"https://api.congress.gov/v3/bill/118/hr/7534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7534/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:59Z","title":"Verifying Kids’ Online Privacy Act","bill.title":"Excess Urban Heat Mitigation Act of 2022","bill.number":"7534","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":21,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7534/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7534/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7534/summaries?format=json","bill.cosponsors.count":21,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ruben","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7534/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7534/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7534?format=json","bill.introducedDate":"2022-04-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AUCHINCLOSS:\nH.R. 7534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3\nThe single subject of this legislation is:\nTo amend the Children's Online Privacy Protection Act\n(COPPA) to raise the age of data privacy protections and\nrequire privacy-protective methods of age verification.\n[Page H822]\n","sponsors.0.district":4,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":7,"sponsors.0.firstName":"Jake","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7534/text?format=json","bill.sponsors.0.lastName":"Gallego"}} +{"type":"node","id":"8775","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7456/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallego","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Immigration","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7456/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7456","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 62 (Thursday, April 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 7456.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4434]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7456/cosponsors?format=json","sponsors.0.bioguideId":"G000574","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7456/actions?format=json","latestAction.actionDate":"2024-02-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7456/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","bill.sponsors.0.bioguideId":"F000470","bill.originChamber":"House","bill.actions.count":13,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7456/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7456/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-07-24T15:19:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7456/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","request.billNumber":"7456","committees.url":"https://api.congress.gov/v3/bill/118/hr/7456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7456/subjects?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"First Responders Emergency Assistance Act","bill.title":"SHIP IT Act","bill.number":"7456","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7456/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7456/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7456/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":6,"bill.sponsors.0.firstName":"Michelle","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7456/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7456/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7456?format=json","bill.introducedDate":"2022-04-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 34 (Monday, February 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7456.\nCongress has the power to enact this legislation pursuant\nto the following:\n``Article I, Section 8, Clause 18: [The Congress shall have\nPower . . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nImmigration\n[Page H696]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":7,"sponsors.0.firstName":"Ruben","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7456/text?format=json","bill.sponsors.0.lastName":"Fischbach"}} +{"type":"node","id":"8776","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7438/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7438/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-143.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7438","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 62 (Thursday, April 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARTZLER:\nH.R. 7438.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, clause 18 of the United States\nConstitution\n[Page H4433]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7438/cosponsors?format=json","sponsors.0.bioguideId":"L000585","laws.0.number":"118-143","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7438/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7438/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"H001053","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":294,"bill.latestAction.text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hartzler, Vicky [R-MO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7438/text?format=json","bill.updateDate":"2025-01-03T07:47:28Z","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7438/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"7438","committees.url":"https://api.congress.gov/v3/bill/118/hr/7438/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7438/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:28Z","title":"FIFA World Cup 2026 Commemorative Coin Act","bill.title":"A–PLUS Act","bill.number":"7438","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":294,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7438/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7438/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7438/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001053?format=json","introducedDate":"2024-02-23","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicky","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7438/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7438/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7438?format=json","bill.introducedDate":"2022-04-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 33 (Friday, February 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 7438.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 5 of the U.S. Constitution.\n``The Congress shall have power . . . To coin Money, regulate\nthe Value thereof, and of foreign Coin, and fix the Standard\nof Weights and Measures . . .''\nThe single subject of this legislation is:\nThe bill would require the Secretary of the Treasury to\nmint coins in commemoration of the FIFA World Cup 2026.\n[Page H692]\n","sponsors.0.district":16,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":4,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:24:05Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7438/text?format=json","bill.sponsors.0.lastName":"Hartzler"}} +{"type":"node","id":"8777","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Trahan","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7397/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"C.","number":"7397","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 60 (Tuesday, April 5, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 7397.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H4191]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7397/cosponsors?format=json","sponsors.0.bioguideId":"T000482","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7397/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7397/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Trahan, Lori [D-MA-3]","bill.sponsors.0.bioguideId":"B001248","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7397/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7397/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-12-19T09:06:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7397/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/T000482?format=json","request.billNumber":"7397","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7397/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7397/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"To amend title XVIII of the Social Security Act to establish a definition of essential health system in statute.","bill.title":"To restart oil and gas leasing and permitting on Federal land, and for other purposes.","bill.number":"7397","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7397/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7397/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7397/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2024-02-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7397/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7397/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7397?format=json","bill.introducedDate":"2022-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 30 (Thursday, February 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. TRAHAN:\nH.R. 7397.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nHealthcare\n[Page H680]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"Lori","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7397/text?format=json","bill.sponsors.0.lastName":"Burgess"}} +{"type":"node","id":"8778","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7291/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Molinaro","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7291/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7291","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7291/cosponsors?format=json","sponsors.0.bioguideId":"M001221","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7291/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7291/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-07","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","bill.sponsors.0.bioguideId":"G000589","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7291/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gooden, Lance [R-TX-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7291/text?format=json","bill.updateDate":"2025-01-03T07:46:08Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7291/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","request.billNumber":"7291","committees.url":"https://api.congress.gov/v3/bill/118/hr/7291/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7291/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:46:08Z","title":"Broadband Industry Development Act","bill.title":"American Beef Labeling Act of 2022","bill.number":"7291","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7291/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7291/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7291/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000589?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lance","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7291/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7291/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7291?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 22 (Wednesday, February 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 7291.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nBroadband\n[Page H537]\n","bill.introducedDate":"2022-03-30","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":5,"sponsors.0.firstName":"Marcus","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7291/text?format=json","bill.sponsors.0.lastName":"Gooden"}} +{"type":"node","id":"8779","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7272/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brown","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7272/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7272","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 55 (Tuesday, March 29, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 7272.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7272/cosponsors?format=json","sponsors.0.bioguideId":"B001313","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7272/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-07","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Brown, Shontel M. [D-OH-11]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":34,"bill.latestAction.text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7272/text?format=json","bill.updateDate":"2025-01-23T18:51:26Z","updateDate":"2024-11-02T08:05:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7272/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001313?format=json","request.billNumber":"7272","committees.url":"https://api.congress.gov/v3/bill/118/hr/7272/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7272/subjects?format=json","bill.updateDateIncludingText":"2025-01-23T18:51:26Z","title":"Shining a Spotlight on Safer Communities Act","bill.title":"Feed Hungry Veterans Act of 2022","bill.number":"7272","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":34,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7272/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7272/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7272/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-02-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7272/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7272/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7272?format=json","bill.introducedDate":"2022-03-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 22 (Wednesday, February 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWN:\nH.R. 7272.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7(c)(1) of Rule XII and Section 3(c) of\nH . Res. 5 the following statements are submitted regarding\n(1) the specific powers granted to Congress in the U.S.\nConstitution to enact the accompanying bill or joint\nresolution in Article I Section VIII.\nThe single subject of this legislation is:\nTo require additional reporting requirements of the\nDepartment of Justice with regards to the Bipartisan Safer\nCommunities Act.\n[Page H537]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"Shontel","bill.type":"HR","updateDateIncludingText":"2024-11-02T08:05:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7272/text?format=json","bill.sponsors.0.lastName":"Hayes"}} +{"type":"node","id":"8780","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7266/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7266/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7266","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 55 (Tuesday, March 29, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RODNEY DAVIS of Illinois:\nH.R. 7266.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power . . . ] To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H3971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7266/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7266/actions?format=json","latestAction.actionDate":"2024-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7266/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"D000619","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Davis, Rodney [R-IL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7266/text?format=json","bill.updateDate":"2024-02-05T11:45:06Z","updateDate":"2024-08-21T08:05:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7266/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"7266","committees.url":"https://api.congress.gov/v3/bill/118/hr/7266/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7266/subjects?format=json","bill.updateDateIncludingText":"2024-02-05T11:45:06Z","title":"FAAN Act","bill.title":"To amend the Federal Insecticide, Fungicide, and Rodenticide Act to prohibit the local regulation of pesticide use, and for other purposes.","bill.number":"7266","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7266/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7266/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7266/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000619?format=json","introducedDate":"2024-02-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Rodney","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7266/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7266/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7266?format=json","bill.introducedDate":"2022-03-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 22 (Wednesday, February 7, 2024)]\n[House]\n[Pages H536-H537]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 7266.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to to authorize\ngrants to support schools of\n[[Page H537]]\nnursing in increasing the number of nursing students and\nfaculty in program enhacement and infrastructure\nmodernization, and for other purposes.\n","sponsors.0.district":14,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2024-08-21T08:05:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7266/text?format=json","bill.sponsors.0.lastName":"Davis"}} +{"type":"node","id":"8781","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7495/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"HOLMES","number":"7495","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 63 (Monday, April 11, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 7495.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H4438]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7495/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7495/actions?format=json","latestAction.actionDate":"2024-02-29","textVersions.count":1,"bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"N000147","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7495/text?format=json","bill.updateDate":"2025-01-03T07:47:46Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7495/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"7495","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7495/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7495/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:46Z","title":"Empowering Learners through Competency-Based Education Act","bill.title":"Civil War Defenses of Washington National Historical Park Act","bill.number":"7495","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7495/committees?format=json","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2022-04-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7495/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7495/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7495/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7495/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7495?format=json","bill.introducedDate":"2022-04-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 7495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nEducation\n[Page H773]\n","sponsors.0.district":6,"bill.sponsors.0.state":"DC","sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7495/text?format=json","bill.sponsors.0.lastName":"NORTON"}} +{"type":"node","id":"8782","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7471/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Issa","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7471/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"7471","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 62 (Thursday, April 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LURIA:\nH.R. 7471.\nCongress has the power to enact this legislation pursuant\nto the following:\n``U.S. Constitution, Article 8, Necessary and Proper\nClause''\n[Page H4434]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7471/cosponsors?format=json","sponsors.0.bioguideId":"I000056","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7471/actions?format=json","latestAction.actionDate":"2024-02-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7471/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Issa, Darrell [R-CA-48]","bill.sponsors.0.bioguideId":"L000591","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Luria, Elaine G. [D-VA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7471/text?format=json","bill.updateDate":"2025-01-03T07:47:33Z","updateDate":"2024-08-28T08:05:24Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7471/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","request.billNumber":"7471","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7471/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7471/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:33Z","title":"FIREARM Act","bill.title":"Coastal Virginia National Heritage Area Act of 2022","bill.number":"7471","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7471/committees?format=json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-04-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7471/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7471/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000591?format=json","introducedDate":"2024-02-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elaine","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7471/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7471/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7471?format=json","bill.introducedDate":"2022-04-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 36 (Wednesday, February 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 7471.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo provide firearm licensees an opportunity to correct\nstatutory and regulatory violations, and for other purposes.\n[Page H738]\n","sponsors.0.district":48,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Darrell","bill.type":"HR","updateDateIncludingText":"2024-08-28T08:05:24Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7471/text?format=json","bill.sponsors.0.lastName":"Luria"}} +{"type":"node","id":"8783","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sarbanes","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7529/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7529","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\n[Pages H4444-H4445]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 7529.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H4445]]\nThis bill is enacted pursuant to the power granted to\nCongrss under Article I, Section 8, Clause 18 of the United\nStates Constitution.\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7529/cosponsors?format=json","sponsors.0.bioguideId":"S001168","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7529/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7529/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","bill.sponsors.0.bioguideId":"W000788","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7529/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7529/text?format=json","bill.updateDate":"2025-01-03T07:47:52Z","updateDate":"2024-06-11T15:52:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","request.billNumber":"7529","committees.url":"https://api.congress.gov/v3/bill/118/hr/7529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7529/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:52Z","title":"Chesapeake Bay Gateways and Watertrails Network Reauthorization Act of 2024","bill.title":"Plain Prescription Prices Act","bill.number":"7529","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7529/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-04-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7529/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Nikema","sponsors.0.state":"MD","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7529?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 7529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nPublic Lands\n[Page H822]\n","sponsors.0.district":3,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":5,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:52:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7529/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8784","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7516/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Native Americans","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7516/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 748.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"7516","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILDEE:\nH.R. 7516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7516/cosponsors?format=json","sponsors.0.bioguideId":"J000301","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7516/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7516/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-18","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","bill.sponsors.0.bioguideId":"K000380","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7516/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-916","bill.sponsors.0.fullName":"Rep. Kildee, Daniel T. [D-MI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7516/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-03-13T22:41:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7516/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","request.billNumber":"7516","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7516/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7516/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Purchased and Referred Care Improvement Act of 2024","bill.title":"Get the Lead Out of Assisted Housing Act of 2022","bill.number":"7516","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7516/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-04-15","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/916?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7516/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7516/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000380?format=json","introducedDate":"2024-03-01","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":2,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"SD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7516/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7516/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7516?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 7516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Indian Health Care Improvement Act to address\nliability for payment of charges or costs associated with\nprovision of purchased/referred care services, and for other\npurposes.\n[Page H781]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Dusty","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7516/text?format=json","bill.sponsors.0.lastName":"Kildee"}} +{"type":"node","id":"8785","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7512/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Arrington","bill.latestAction.actionDate":"2022-04-15","cboCostEstimates.0.pubDate":"2024-06-26T18:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7512/summaries?format=json","type":"HR","latestAction.text":"Reported (Amended) by the Committee on Ways and Means. H. Rept. 118-549, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7512","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 7512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7512/cosponsors?format=json","sponsors.0.bioguideId":"A000375","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7512/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-11","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-549","bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7512/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-09T05:06:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7512/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","request.billNumber":"7512","committees.url":"https://api.congress.gov/v3/bill/118/hr/7512/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7512/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Real-Time Benefit Tool Implementation Act","bill.title":"Protecting Patients from Deceptive Health Plans Act","bill.number":"7512","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Ways and Means on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60469","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7512/committees?format=json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-04-15","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/549?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7512/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7512/summaries?format=json","bill.cosponsors.count":2,"cboCostEstimates.0.title":"Estimated Direct Spending Effects of H.R. 7512","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","introducedDate":"2024-03-01","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7512/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7512/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7512?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 7512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nEnsuring real-time benefit tools are implemented in\nMedicare.\n[Page H781]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jodey","bill.type":"HR","updateDateIncludingText":"2024-11-09T05:06:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7512/text?format=json","bill.sponsors.0.lastName":"Hayes"}} +{"type":"node","id":"8786","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7506/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sewell","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7506/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7506","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUTTERFIELD:\nH.R. 7506.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3 of the Constitution,\nCongress has the power to collect taxes and expend funds to\nprovide for the general welfare of the United States.\nCongress may also make laws that are necessary and proper for\ncarrying into execution their powers enumerated under Article\nI.\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7506/cosponsors?format=json","sponsors.0.bioguideId":"S001185","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7506/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7506/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","bill.sponsors.0.bioguideId":"B001251","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Butterfield, G. K. [D-NC-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7506/text?format=json","bill.updateDate":"2025-01-03T07:47:53Z","updateDate":"2024-07-24T15:19:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7506/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","request.billNumber":"7506","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7506/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7506/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:53Z","title":"SMART Save Act of 2024","bill.title":"New Era of Preventing End-Stage Kidney Disease Act","bill.number":"7506","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7506/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-15","sponsors.0.middleName":"A.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7506/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7506/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001251?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"G. K.","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7506/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7506/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7506?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 7506.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nMilitary\n[Page H773]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":1,"sponsors.0.firstName":"Terri","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7506/text?format=json","bill.sponsors.0.lastName":"Butterfield"}} +{"type":"node","id":"8787","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7521/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallagher","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7521/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7521","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 7521.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7521/cosponsors?format=json","sponsors.0.bioguideId":"G000579","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7521/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7521/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":54,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-417","bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7521/text?format=json","bill.updateDate":"2025-01-03T07:47:51Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7521/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","request.billNumber":"7521","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7521/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7521/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:51Z","title":"Protecting Americans from Foreign Adversary Controlled Applications Act","bill.title":"Helicopter Passenger Protection Act","bill.number":"7521","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":54,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7521/committees?format=json","latestAction_actionDate":"2022-04-15","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/417?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7521/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7521/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":2,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7521/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7521/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7521?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 7521.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nForeign and interstate commerce--social media applications\n[Page H822]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7521/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8788","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7520/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pallone","bill.latestAction.actionDate":"2022-04-15","cboCostEstimates.0.pubDate":"2024-03-19T15:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7520/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"J.","number":"7520","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 7520.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7520/cosponsors?format=json","sponsors.0.bioguideId":"P000034","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7520/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7520/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-03-21","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Pallone, Frank [D-NJ-6]","bill.sponsors.0.bioguideId":"M001199","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7520/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-418","bill.sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7520/text?format=json","bill.updateDate":"2024-04-17T23:45:33Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7520/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/P000034?format=json","request.billNumber":"7520","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7520/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7520/committees?format=json","bill.updateDateIncludingText":"2024-04-17T23:45:33Z","title":"Protecting Americans’ Data from Foreign Adversaries Act of 2024","bill.title":"To direct the Corps of Engineers to develop a comprehensive plan for Lake Okeechobee and northern estuaries ecosystem restoration, and for other purposes.","bill.number":"7520","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on March 11, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60120","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7520/committees?format=json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-04-15","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/418?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7520/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7520/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":" H.R. 7520, Protecting Americans’ Data from Foreign Adversaries Act of 2024","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7520/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7520/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7520?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALLONE:\nH.R. 7520.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8, Clause 3: [The Congress shall\nhave Power] To regulate Commerce with foreign Nations, sand\namong the several states, and with the Indian Tribes;\nThe single subject of this legislation is:\nTo prohibit data brokers from transferring sensitive data\nof United States individuals to foreign adversaries, and for\nother purposes.\n[Page H822]\n","sponsors.0.district":6,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":18,"sponsors.0.firstName":"Frank","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7520/text?format=json","bill.sponsors.0.lastName":"Mast"}} +{"type":"node","id":"8789","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7501/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norman","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7501/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7501","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 7501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8: The Congress shall have Power To lay\nand collect Taxes, Duties, Imposts and Excises, to pay the\nDebts and provide for the common Defence and general Welfare\nof the United States;\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7501/cosponsors?format=json","sponsors.0.bioguideId":"N000190","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7501/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","bill.sponsors.0.bioguideId":"B000825","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7501/text?format=json","bill.updateDate":"2025-01-03T07:47:54Z","updateDate":"2024-12-11T09:05:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7501/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","request.billNumber":"7501","committees.url":"https://api.congress.gov/v3/bill/118/hr/7501/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7501/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:54Z","title":"Save our Allies Congressional Gold Medal Act","bill.title":"I–70 Detour Act","bill.number":"7501","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7501/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7501/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7501/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7501/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7501/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7501?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 7501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo award a Congressional Gold Medal to Chad Robichaux,\nSarah Verardo, Tim Kennedy, Kevin Rourke, Sean Gabler, Dave\nJohnson, and Dennis Price, in recognition of their\nexceptional efforts and selfless dedication during the\nAfghanistan evacuation in 2021, which led to the safe\nevacuation of over 17,000 people from Taliban-controlled\nAfghanistan.\n[Page H773]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ralph","bill.type":"HR","updateDateIncludingText":"2024-12-11T09:05:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7501/text?format=json","bill.sponsors.0.lastName":"Boebert"}} +{"type":"node","id":"8790","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7530/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2022-04-14","cboCostEstimates.0.pubDate":"2024-05-01T20:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7530/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"7530","bill.cosponsors.countIncludingWithdrawnCosponsors":21,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILSON of Florida:\nH.R. 7530.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4445]\n","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7530/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7530/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7530/relatedbills?format=json","latestAction.actionDate":"2024-05-16","textVersions.count":4,"bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"W000808","amendments.url":"https://api.congress.gov/v3/bill/118/hr/7530/amendments?format=json","bill.originChamber":"House","bill.actions.count":3,"titles.count":10,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-479","bill.sponsors.0.fullName":"Rep. Wilson, Frederica S. [D-FL-24]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7530/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7530/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"7530","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7530/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7530/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"DC CRIMES Act of 2024","bill.title":"Student Loan Borrower Relief Act","bill.number":"7530","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Oversight and Accountability on April 30, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60130","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7530/committees?format=json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-04-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/479?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7530/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7530/summaries?format=json","bill.cosponsors.count":21,"cboCostEstimates.0.title":"H.R. 7530, DC CRIMES Act of 2024","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000808?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Frederica","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7530/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7530/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7530?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 7530.\nCongress has the power to enact this legislation pursuant\nto the following:\nDistrict of Columbia Home Rule Act\nThe single subject of this legislation is:\nWashington, D.C.\n[Page H822]\n","sponsors.0.district":19,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":24,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7530/text?format=json","bill.sponsors.0.lastName":"Wilson"}} +{"type":"node","id":"8791","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7525/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fallon","bill.latestAction.actionDate":"2022-04-14","cboCostEstimates.0.pubDate":"2024-12-11T19:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7525/summaries?format=json","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 689.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7525","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 7525.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7525/cosponsors?format=json","sponsors.0.bioguideId":"F000246","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7525/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7525/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-09","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","bill.sponsors.0.bioguideId":"S001135","bill.originChamber":"House","bill.actions.count":3,"titles.count":6,"cosponsors.count":22,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"S. Rept. 118-286","bill.sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-48]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7525/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7525/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","request.billNumber":"7525","committees.url":"https://api.congress.gov/v3/bill/118/hr/7525/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7525/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Special District Grant Accessibility Act","bill.title":"Protecting Charter Schools from Federal Overreach Act of 2022","bill.number":"7525","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on December 9, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":22,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61093","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7525/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/286?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7525/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7525/summaries?format=json","bill.cosponsors.count":17,"cboCostEstimates.0.title":"H.R. 7525, Special District Grant Accessibility Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michelle","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7525/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7525/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7525?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 7525.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Unites States Constitution.\nThe single subject of this legislation is:\nTo require the Director of the Office of Management and\nBudget to issue guidance to agencies requiring special\ndistricts to be recognized as local government for the\npurpose of Federal financial assistance determinations.\n[Page H822]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":48,"sponsors.0.firstName":"Pat","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7525/text?format=json","bill.sponsors.0.lastName":"Steel"}} +{"type":"node","id":"8792","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7505/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rosendale","bill.latestAction.actionDate":"2022-04-14","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7505/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7505","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 7505.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution of\nthe United States\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7505/cosponsors?format=json","sponsors.0.bioguideId":"R000103","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7505/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Rosendale, Matthew M. [R-MT-2]","bill.sponsors.0.bioguideId":"B001260","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7505/text?format=json","bill.updateDate":"2024-02-07T16:32:33Z","updateDate":"2024-07-09T18:15:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7505/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","request.billNumber":"7505","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7505/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7505/committees?format=json","bill.updateDateIncludingText":"2024-02-07T16:32:33Z","title":"American Worker Protection Act of 2024","bill.title":"To amend the Internal Revenue Code of 1986 to add a new medical research component to the credit for increasing research activities.","bill.number":"7505","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7505/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-04-14","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7505/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7505/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vern","sponsors.0.state":"MT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7505/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7505/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7505?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 7505.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nWork Visas\n[Page H773]\n","sponsors.0.district":2,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":16,"sponsors.0.firstName":"Matthew","bill.type":"HR","updateDateIncludingText":"2024-07-09T18:15:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7505/text?format=json","bill.sponsors.0.lastName":"Buchanan"}} +{"type":"node","id":"8793","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7504/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Perez","bill.latestAction.actionDate":"2022-04-14","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7504/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7504","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 7504.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution of\nthe United States\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7504/cosponsors?format=json","sponsors.0.bioguideId":"G000600","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7504/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7504/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Perez, Marie Gluesenkamp [D-WA-3]","bill.sponsors.0.bioguideId":"B001260","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":15,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7504/text?format=json","bill.updateDate":"2024-02-07T16:32:33Z","updateDate":"2024-12-20T09:06:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7504/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000600?format=json","request.billNumber":"7504","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7504/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7504/committees?format=json","bill.updateDateIncludingText":"2024-02-07T16:32:33Z","title":"Rural Veterans Transportation to Care Act","bill.title":"To amend the Internal Revenue Code of 1986 to make a portion of research credit refundable for certain small businesses engaging in specified medical research.","bill.number":"7504","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7504/committees?format=json","request.format":"json","sponsors.0.middleName":"Gluesenkamp","latestAction_actionDate":"2022-04-14","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7504/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7504/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vern","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7504/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7504/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7504?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PEREZ:\nH.R. 7504.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans Affairs\n[Page H773]\n","sponsors.0.district":3,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":16,"sponsors.0.firstName":"Marie","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7504/text?format=json","bill.sponsors.0.lastName":"Buchanan"}} +{"type":"node","id":"8794","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7048/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7048/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7048","bill.cosponsors.countIncludingWithdrawnCosponsors":28,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 42 (Wednesday, March 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVID SCOTT of Georgia:\nH.R. 7048.\nCongress has the power to enact this legislation pursuant\nto the following:\nto lay and collect Taxes, Duties, Imposts, and Excises, to\npay the Debts, and provide for the common Defence and general\nWelfare of the United States; but all Duties, Imposts and\nExcises shall be uniform throughout the United States.\n[Page H1425]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7048/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7048/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7048/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"S001157","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Scott, David [D-GA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7048/text?format=json","bill.updateDate":"2025-01-03T07:43:44Z","updateDate":"2024-09-24T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7048/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"7048","committees.url":"https://api.congress.gov/v3/bill/118/hr/7048/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7048/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:44Z","title":"No Funding for Sanctuary Cities Act","bill.title":"Protect Lifesaving Anesthesia Care for Veterans Act of 2022","bill.number":"7048","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7048/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7048/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7048/summaries?format=json","bill.cosponsors.count":28,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001157?format=json","introducedDate":"2024-01-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7048/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7048/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7048?format=json","bill.introducedDate":"2022-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 10 (Thursday, January 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 7048.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is;\nThis bill amends the Immigration and Nationality Act to\nmodify provisions relating to assistance by States, and\npolitical subdivisions of States, in the enforcement of\nFederal immigration laws, and for other purposes.\n[Page H241]\n","sponsors.0.district":11,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":13,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2024-09-24T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7048/text?format=json","bill.sponsors.0.lastName":"Scott"}} +{"type":"node","id":"8795","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7001/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tiffany","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7001/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7001","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 41 (Tuesday, March 8, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 7001.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Article I,\nSection 8 of the United States Constitution.\n[Page H1375]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7001/cosponsors?format=json","sponsors.0.bioguideId":"T000165","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7001/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7001/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","bill.sponsors.0.bioguideId":"T000468","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7001/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7001/text?format=json","bill.updateDate":"2025-01-03T07:43:30Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7001/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","request.billNumber":"7001","committees.url":"https://api.congress.gov/v3/bill/118/hr/7001/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7001/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:30Z","title":"Wabeno Economic Development Act","bill.title":"FEMA Intermittent Personnel Employment and Reemployment Rights Act of 2022","bill.number":"7001","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7001/committees?format=json","latestAction_actionDate":"2022-03-28","sponsors.0.middleName":"P.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7001/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7001/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2024-01-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7001/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7001/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7001?format=json","bill.introducedDate":"2022-03-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 7001.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nForest Service land conveyance\n[Page H148]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7001/text?format=json","bill.sponsors.0.lastName":"Titus"}} +{"type":"node","id":"8796","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6991/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaTurner","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6991/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6991","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 41 (Tuesday, March 8, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOULTON:\nH.R. 6991.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1375]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6991/cosponsors?format=json","sponsors.0.bioguideId":"L000266","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6991/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6991/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. LaTurner, Jake [R-KS-2]","bill.sponsors.0.bioguideId":"M001196","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moulton, Seth [D-MA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6991/text?format=json","bill.updateDate":"2024-02-07T16:12:44Z","updateDate":"2024-11-12T20:54:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6991/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/L000266?format=json","request.billNumber":"6991","committees.url":"https://api.congress.gov/v3/bill/118/hr/6991/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6991/subjects?format=json","bill.updateDateIncludingText":"2024-02-07T16:12:44Z","title":"To designate the outpatient clinic of the Department of Veterans Affairs in Wyandotte County, Kansas City, Kansas, as the \"Captain Elwin Shopteese VA Clinic\".","bill.title":"To establish the policy of the Department of Veterans Affairs on medicinal cannabis, and for other purposes.","bill.number":"6991","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6991/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6991/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6991/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001196?format=json","introducedDate":"2024-01-12","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Seth","sponsors.0.state":"KS","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6991/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6991/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6991?format=json","bill.introducedDate":"2022-03-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 7 (Friday, January 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaTURNER:\nH.R. 6991.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo designate the outpatient clinic of the Department of\nVeterans Affairs in Wyandotte County, Kansas City, Kansas, as\nthe ``Captain Elwin Shopteese VA Clinic''.\n[Page H133]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Jake","bill.type":"HR","updateDateIncludingText":"2024-11-12T20:54:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6991/text?format=json","bill.sponsors.0.lastName":"Moulton"}} +{"type":"node","id":"8797","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bean","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6958/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6958","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6958.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6958/cosponsors?format=json","sponsors.0.bioguideId":"B001314","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6958/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Bean, Aaron [R-FL-4]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6958/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6958/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001314?format=json","request.billNumber":"6958","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6958/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6958/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Cabinet Accountability and Transparency Act","bill.title":"A Chance To Serve Act","bill.number":"6958","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6958/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6958/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6958/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6958/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6958/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6958?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEAN of Florida:\nH.R. 6958.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: The Congress shall have\nPower . . . To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nTo require cabinet officials to notify Congress in the\nevent such an official is temporarily unable to perform the\nfunctions and duties of their position.\n[Page H107]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Aaron","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6958/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8798","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6849/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crenshaw","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6849/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6849","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 35 (Friday, February 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NEWMAN:\nH.R. 6849.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution\n[Page H1148]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6849/cosponsors?format=json","sponsors.0.bioguideId":"C001120","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6849/actions?format=json","latestAction.actionDate":"2023-12-19","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","bill.sponsors.0.bioguideId":"N000192","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newman, Marie [D-IL-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6849/text?format=json","bill.updateDate":"2025-01-03T07:42:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6849/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","request.billNumber":"6849","committees.url":"https://api.congress.gov/v3/bill/118/hr/6849/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6849/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:13Z","title":"Cancelling Climate Crusaders Act","bill.title":"Supporting All Veteran Families Act","bill.number":"6849","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6849/committees?format=json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6849/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6849/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000192?format=json","introducedDate":"2023-12-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Marie","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6849/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6849/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6849?format=json","bill.introducedDate":"2022-02-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 209 (Tuesday, December 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 6849.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo prohibit the establishment of a Civilian Climate Corps,\nAmerican Climate Corps, or any similar program, and for other\npurposes.\n[Page H6998]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6849/text?format=json","bill.sponsors.0.lastName":"Newman"}} +{"type":"node","id":"8799","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6830/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pressley","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Arts, Culture, Religion","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6830/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"6830","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 35 (Friday, February 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BROWN of Maryland:\nH.R. 6830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H1147]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6830/cosponsors?format=json","sponsors.0.bioguideId":"P000617","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6830/actions?format=json","latestAction.actionDate":"2023-12-14","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","bill.sponsors.0.bioguideId":"B001304","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6830/text?format=json","bill.updateDate":"2025-01-03T07:42:19Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6830/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","request.billNumber":"6830","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6830/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6830/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:19Z","title":"Books Save Lives Act","bill.title":"Headstones for Honor Act","bill.number":"6830","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6830/committees?format=json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6830/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6830/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-12-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6830/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6830/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6830?format=json","bill.introducedDate":"2022-02-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 206 (Thursday, December 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PRESSLEY:\nH.R. 6830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 18\nThe single subject of this legislation is:\nTo ensure public libraries have diverse collections of\nbooks\n[Page H6988]\n","sponsors.0.district":7,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"Ayanna","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6830/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"8800","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6810/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Franklin","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-09-27T18:30:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6810/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Became Public Law No: 118-223.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6810","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 34 (Tuesday, February 22, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VICENTE GONZALEZ of Texas:\nH.R. 6810.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, To make all laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof\n[Page H1140]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6810/cosponsors?format=json","sponsors.0.bioguideId":"F000472","laws.0.number":"118-223","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6810/actions?format=json","textVersions.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6810/relatedbills?format=json","latestAction.actionDate":"2025-01-02","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Franklin, Scott [R-FL-18]","bill.sponsors.0.bioguideId":"G000581","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":27,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6810/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Vicente [D-TX-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6810/text?format=json","bill.updateDate":"2025-01-03T07:42:09Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6810/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":25,"sponsors.0.url":"https://api.congress.gov/v3/member/F000472?format=json","request.billNumber":"6810","committees.url":"https://api.congress.gov/v3/bill/118/hr/6810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6810/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:09Z","title":"To designate the facility of the United States Postal Service located at 518 North Ridgewood Drive in Sebring, Florida, as the \"U.S. Army Air Corps Major Thomas B. McGuire Post Office Building\".","bill.title":"Housing our Veterans Act","bill.number":"6810","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60790","cosponsors.countIncludingWithdrawnCosponsors":27,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6810/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6810/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6810/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 6810, an act to designate the facility of the United States Postal Service located at 518 North Ridgewood Drive in Sebring, Florida, as the “U.S. Army Air Corps Major Thomas B. McGuire Post Office Building","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000581?format=json","introducedDate":"2023-12-14","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicente","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6810/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6810/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6810?format=json","bill.introducedDate":"2022-02-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 206 (Thursday, December 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT FRANKLIN of Florida:\nH.R. 6810.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress is granted the authority to introduce and enact\nlegislation pursuant to Article 1, Section 8 of the U.S.\nConstitution\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 518 North Ridgewood Drive in Sebring,\nFlorida, as the ``U.S. Army Air Corps Major Thomas B. McGuire\nPost Office Building''.\n[Page H6987]\n","sponsors.0.district":18,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":15,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:16Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6810/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}} +{"type":"node","id":"8801","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bilirakis","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6790/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"McMorris","number":"6790","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 33 (Friday, February 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 6790.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution.\n[Page H1133]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6790/cosponsors?format=json","sponsors.0.bioguideId":"B001257","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6790/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","bill.sponsors.0.bioguideId":"M001159","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":50,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6790/text?format=json","bill.updateDate":"2025-01-03T07:42:03Z","updateDate":"2024-12-19T09:06:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6790/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","request.billNumber":"6790","committees.url":"https://api.congress.gov/v3/bill/118/hr/6790/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6790/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:03Z","title":"New Era of Preventing End-Stage Kidney Disease Act","bill.title":"Arlington Cemetery Marker Fairness Act","bill.number":"6790","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":50,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6790/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6790/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6790/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","introducedDate":"2023-12-14","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":2,"bill.sponsors.0.firstName":"Cathy","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6790/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6790/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6790?format=json","bill.introducedDate":"2022-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 206 (Thursday, December 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 6790.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article 1, Section 8,\nClause 18 of the Constitution of the United States.\nThe single subject of this legislation is:\nThis bill addresses rare kidney diseases through research,\ntraining for health professionals, and other means.\n[Page H6986]\n","sponsors.0.district":12,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Gus","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6790/text?format=json","bill.sponsors.0.lastName":"Rodgers"}} +{"type":"node","id":"8802","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6774/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"THOMPSON","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6774/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6774","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 33 (Friday, February 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of New York:\nH.R. 6774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H1132]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6774/cosponsors?format=json","sponsors.0.bioguideId":"T000460","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6774/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-13","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","bill.sponsors.0.bioguideId":"H001038","bill.actions.count":5,"bill.originChamber":"House","titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Higgins, Brian [D-NY-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6774/text?format=json","bill.updateDate":"2025-01-03T07:42:01Z","updateDate":"2024-07-24T15:19:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6774/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","request.billNumber":"6774","committees.url":"https://api.congress.gov/v3/bill/118/hr/6774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6774/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:01Z","title":"To amend the Internal Revenue Code of 1986 to establish special rules relating to which professional sports leagues qualify to be exempt from taxation.","bill.title":"Boxing Therapy for Parkinson’s Access Act of 2022","bill.number":"6774","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6774/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6774/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6774/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001038?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6774/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6774/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6774?format=json","bill.introducedDate":"2022-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 205 (Wednesday, December 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 6774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nLimit the availability of 501(c)6 tax treatment in certain\ncircumstances\n[Page H6943]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":26,"sponsors.0.firstName":"MIKE","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6774/text?format=json","bill.sponsors.0.lastName":"Higgins"}} +{"type":"node","id":"8803","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davids","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-08-14T18:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7227/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 630.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7227","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TAKANO:\nH.R. 7227.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H3865]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7227/cosponsors?format=json","sponsors.0.bioguideId":"D000629","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7227/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7227/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-22","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Davids, Sharice [D-KS-3]","bill.sponsors.0.bioguideId":"T000472","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":80,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-760","bill.sponsors.0.fullName":"Rep. Takano, Mark [D-CA-41]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7227/text?format=json","bill.updateDate":"2025-01-03T07:45:33Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7227/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/D000629?format=json","request.billNumber":"7227","committees.url":"https://api.congress.gov/v3/bill/118/hr/7227/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7227/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:33Z","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2024","bill.title":"INFORMS Act","bill.number":"7227","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":80,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60642","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7227/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/760?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7227/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7227/summaries?format=json","cboCostEstimates.0.title":"H.R. 7227, Truth and Healing Commission on Indian Boarding School Policies Act of 2024","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000472?format=json","introducedDate":"2024-02-05","bill.originChamberCode":"H","subjects.count":20,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"KS","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7227/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7227/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7227?format=json","bill.introducedDate":"2022-03-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 20 (Monday, February 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DAVIDS of Kansas:\nH.R. 7227.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo establish the Truth and Healing Commission on Indian\nBoarding School Policies in the United States, and for other\npurposes.\n[Page H431]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":41,"sponsors.0.firstName":"Sharice","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:39:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7227/text?format=json","bill.sponsors.0.lastName":"Takano"}} +{"type":"node","id":"8804","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7186/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"CALVERT","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Technology Modernization.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7186/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"7186","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 7186.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution\n[Page H3859]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7186/cosponsors?format=json","sponsors.0.bioguideId":"C000059","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7186/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Calvert, Ken [R-CA-41]","bill.sponsors.0.bioguideId":"M001199","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Technology Modernization.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7186/text?format=json","bill.updateDate":"2025-01-03T07:45:07Z","updateDate":"2024-08-28T08:05:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7186/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C000059?format=json","request.billNumber":"7186","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7186/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7186/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:07Z","title":"Treatment and Homelessness Housing Integration Act of 2024","bill.title":"Emergency Community Care Notification Time Adjustment Act of 2022","bill.number":"7186","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7186/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7186/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7186/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7186/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7186/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7186?format=json","bill.introducedDate":"2022-03-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CALVERT:\nH.R. 7186.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThis bill integrates participant treatment within the\nContinuum of Care Program with Certified Community Behavioral\nHealth Clinics.\n[Page H388]\n","sponsors.0.district":41,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":18,"sponsors.0.firstName":"KEN","bill.type":"HR","updateDateIncludingText":"2024-08-28T08:05:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7186/text?format=json","bill.sponsors.0.lastName":"Mast"}} +{"type":"node","id":"8805","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7184/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-03-28T16:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Economics and Public Finance","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7184/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported (Amended) by the Yeas and Nays: 41 - 0.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7184","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 7184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[[Page H3859]]\n[Page H3858]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7184/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7184/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7184/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"L000582","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7184/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-33]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7184/text?format=json","bill.updateDate":"2024-02-07T16:12:44Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7184/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"7184","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7184/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7184/committees?format=json","bill.updateDateIncludingText":"2024-02-07T16:12:44Z","title":"Congressional Budget Office Data Access Act","bill.title":"To amend the West Los Angeles Leasing Act of 2016 with respect to the definition of land use revenue.","bill.number":"7184","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60160","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7184/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7184/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7184/summaries?format=json","bill.cosponsors.count":2,"cboCostEstimates.0.title":"H.R. 7184, Congressional Budget Office Data Access Act of 2024","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-02-01","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7184/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7184/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7184?format=json","bill.introducedDate":"2022-03-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 7184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nData Access\n[Page H388]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":33,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7184/text?format=json","bill.sponsors.0.lastName":"Lieu"}} +{"type":"node","id":"8806","labels":["Bill"],"properties":{"relatedBills.count":7,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7176/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7176/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7176","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 7176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the United States\nConstitution\n[Page H3858]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7176/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7176/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7176/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"B001301","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7176/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7176/text?format=json","bill.updateDate":"2025-01-03T07:45:07Z","updateDate":"2024-11-09T04:56:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7176/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"7176","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7176/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7176/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:07Z","title":"Unlocking our Domestic LNG Potential Act of 2024","bill.title":"Gerald’s Law Act","bill.number":"7176","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7176/committees?format=json","latestAction_actionDate":"2022-03-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7176/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7176/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","latestAction.actionTime":"14:24:25","introducedDate":"2024-01-31","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jack","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7176/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7176/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7176?format=json","bill.introducedDate":"2022-03-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 18 (Wednesday, January 31, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 7176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing restrictions on the import and export\nof natural gas.\n[Page H365]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":1,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7176/text?format=json","bill.sponsors.0.lastName":"Bergman"}} +{"type":"node","id":"8807","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7121/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7121/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7121","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 48 (Thursday, March 17, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 7121.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Interstate Commerce Clause: Clause 3 of Section 8 of\nArticle I.\n[Page H3828]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7121/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7121/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7121/relatedbills?format=json","latestAction.actionDate":"2024-01-29","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"G000579","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7121/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7121/text?format=json","bill.updateDate":"2025-01-03T07:44:45Z","updateDate":"2024-09-20T13:59:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7121/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"7121","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7121/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7121/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:44:45Z","title":"Financial Regulators Revolving Door Enforcement Act","bill.title":"Protecting our Pharmaceutical Supply Chain from China Act of 2022","bill.number":"7121","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7121/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7121/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7121/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-01-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7121/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7121/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7121?format=json","bill.introducedDate":"2022-03-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 16 (Monday, January 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 7121.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nFinancial Services\n[Page H272]\n","sponsors.0.district":28,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-09-20T13:59:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7121/text?format=json","bill.sponsors.0.lastName":"Gallagher"}} +{"type":"node","id":"8808","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7116/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"PALLONE","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7116/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7116","bill.cosponsors.countIncludingWithdrawnCosponsors":56,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 48 (Thursday, March 17, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 7116.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\n[Page H3828]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7116/cosponsors?format=json","sponsors.0.bioguideId":"P000034","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7116/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7116/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Pallone, Frank, Jr. [D-NJ-6]","bill.sponsors.0.bioguideId":"C001097","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7116/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-11T08:05:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7116/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000034?format=json","request.billNumber":"7116","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7116/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Do Not Disturb Act","bill.title":"9–8–8 Implementation Act of 2022","bill.number":"7116","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7116/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7116/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7116/summaries?format=json","bill.cosponsors.count":56,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2024-01-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7116/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7116/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7116?format=json","bill.introducedDate":"2022-03-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 16 (Monday, January 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALLONE:\nH.R. 7116.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8, Clause 3: [The Congrss shall\nhave Power] To regulate Commerce with foreign Nations, and\namong the several states, and with the Indian Tribes;\nThe single subject of this legislation is:\nTo strengthen certain provisions relating to restrictions\non robocalls and telemarketing, and for other purposes.\n[Page H272]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"sponsors.0.firstName":"FRANK","bill.type":"HR","updateDateIncludingText":"2024-09-11T08:05:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7116/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}} +{"type":"node","id":"8809","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7089/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"James","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-02-15T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7089/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"7089","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 46 (Tuesday, March 15, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILDEE:\nH.R. 7089.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3744]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7089/cosponsors?format=json","sponsors.0.bioguideId":"J000307","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7089/actions?format=json","latestAction.actionDate":"2024-09-10","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7089/relatedbills?format=json","textVersions.count":3,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. James, John [R-MI-10]","bill.sponsors.0.bioguideId":"K000380","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7089/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kildee, Daniel T. [D-MI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7089/text?format=json","bill.updateDate":"2025-01-03T07:44:23Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7089/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":12,"sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","request.billNumber":"7089","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7089/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7089/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:44:23Z","title":"Global Anti-Human Trafficking Enhancement Act","bill.title":"VET PFAS Act","bill.number":"7089","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59976","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7089/committees?format=json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7089/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7089/summaries?format=json","bill.cosponsors.count":15,"cboCostEstimates.0.title":"H.R. 7089, Global Anti-Human Trafficking Enhancement Act","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000380?format=json","introducedDate":"2024-01-25","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7089/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7089/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7089?format=json","bill.introducedDate":"2022-03-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 14 (Thursday, January 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JAMES:\nH.R. 7089.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H253]\n","sponsors.0.district":10,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":5,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7089/text?format=json","bill.sponsors.0.lastName":"Kildee"}} +{"type":"node","id":"8810","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7074/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Williams","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7074/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7074","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 46 (Tuesday, March 15, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Alabama:\nH.R. 7074.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H3744]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7074/cosponsors?format=json","sponsors.0.bioguideId":"W000816","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7074/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7074/relatedbills?format=json","latestAction.actionDate":"2024-01-22","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Williams, Roger [R-TX-25]","bill.sponsors.0.bioguideId":"M001212","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7074/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Barry [R-AL-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7074/text?format=json","bill.updateDate":"2025-01-03T07:44:20Z","updateDate":"2024-07-24T15:19:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7074/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000816?format=json","request.billNumber":"7074","committees.url":"https://api.congress.gov/v3/bill/118/hr/7074/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7074/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:44:20Z","title":"STOP Act","bill.title":"Quality Education for Veterans Act of 2022","bill.number":"7074","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7074/committees?format=json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7074/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7074/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001212?format=json","introducedDate":"2024-01-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Barry","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7074/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7074/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7074?format=json","bill.introducedDate":"2022-03-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 11 (Monday, January 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILLIAMS of Texas:\nH.R. 7074.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nAcknowledges the State of Texas' right to secure the\nborder, provides the State of Texas the authority to secure\nthe border, including physical barriers, increased law\nenforcement presence, surveillance technologies, and other\nmeasures deemed necessary to enhance border security and stop\nillegal crossings, and allows the State to apply for\nreimbursement.\n[Page H247]\n","sponsors.0.district":25,"bill.sponsors.0.state":"AL","bill.sponsors.0.district":2,"sponsors.0.firstName":"Roger","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7074/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"8811","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7206/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ogles","bill.latestAction.actionDate":"2022-03-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7206/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7206","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 7206.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8\n[Page H3864]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7206/cosponsors?format=json","sponsors.0.bioguideId":"O000175","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7206/actions?format=json","latestAction.actionDate":"2024-02-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7206/relatedbills?format=json","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","bill.sponsors.0.bioguideId":"D000032","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7206/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7206/text?format=json","bill.updateDate":"2025-01-03T07:45:26Z","updateDate":"2024-11-26T19:45:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7206/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","request.billNumber":"7206","committees.url":"https://api.congress.gov/v3/bill/118/hr/7206/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7206/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:26Z","title":"UNRWA FTO Designation Act","bill.title":"Protecting Communities from Harmful Algal Blooms Act","bill.number":"7206","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7206/committees?format=json","latestAction_actionDate":"2022-03-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7206/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7206/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","introducedDate":"2024-02-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Byron","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7206/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7206/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7206?format=json","bill.introducedDate":"2022-03-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 7206.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo designate UNRWA as a foreign terrorist organization\n[Page H389]\n","sponsors.0.district":5,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":19,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-11-26T19:45:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7206/text?format=json","bill.sponsors.0.lastName":"Donalds"}} +{"type":"node","id":"8812","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7204/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Molinaro","bill.latestAction.actionDate":"2022-03-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Water Resources Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7204/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A. \"Rick\"","number":"7204","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRAWFORD:\nH.R. 7204.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\n[Page H3864]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7204/cosponsors?format=json","sponsors.0.bioguideId":"M001221","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7204/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-12","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","bill.sponsors.0.bioguideId":"C001087","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7204/text?format=json","bill.updateDate":"2025-01-03T07:45:26Z","updateDate":"2024-11-12T15:08:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7204/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","request.billNumber":"7204","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7204/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7204/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:26Z","title":"Ensure Funding for Our Environment Act","bill.title":"RATES Act","bill.number":"7204","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7204/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-03-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7204/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7204/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-01","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"Eric","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7204/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7204/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7204?format=json","bill.introducedDate":"2022-03-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 7204.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\ninfrastructure\n[Page H389]\n","sponsors.0.district":19,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":1,"sponsors.0.firstName":"Marcus","bill.type":"HR","updateDateIncludingText":"2024-11-12T15:08:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7204/text?format=json","bill.sponsors.0.lastName":"Crawford"}} +{"type":"node","id":"8813","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Finstad","cboCostEstimates.0.pubDate":"2024-12-02T21:28:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7198/summaries?format=json","bill.relatedBills.count":6,"type":"HR","bill.summaries.count":1,"number":"7198","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"amendments.count":2,"sponsors.0.bioguideId":"F000475","bill.subjects.count":1,"latestAction.actionDate":"2024-12-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7198/relatedbills?format=json","bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.originChamber":"House","bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7198/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-761","cboCostEstimates.1.url":"https://www.cbo.gov/publication/61043","updateDate":"2024-12-16T20:43:55Z","committees.count":2,"cboCostEstimates.1.pubDate":"2024-12-02T21:29:00Z","request.billNumber":"7198","committees.url":"https://api.congress.gov/v3/bill/118/hr/7198/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:31Z","cboCostEstimates.1.description":"As reported by the House Committee on the Judiciary on\nNovember 22, 2024\n","bill.number":"7198","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on September 10, 2024\n","latestAction_actionDate":"2022-03-25","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7198/summaries?format=json","cboCostEstimates.0.title":"H.R. 7198, Prove It Act of 2024","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001312?format=json","introducedDate":"2024-02-01","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Carolyn","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7198/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7198?format=json","cboCostEstimates.1.title":"H.R. 7198, Prove It Act of 2024","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 7198.\nCongress has the power to enact this legislation pursuant\nto the following:\nLaws which shall be necessary and proper for carying into\nExecution the foregoing Powers, and all Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nMaking amendments to the Executive Branch regulatory\nprocess.\n[Page H389]\n","bill.sponsors.0.district":7,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7198/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2022-03-25","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BOURDEAUX:\nH.R. 7198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H3864]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7198/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7198/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"B001312","amendments.url":"https://api.congress.gov/v3/bill/118/hr/7198/amendments?format=json","bill.actions.count":4,"titles.count":5,"cosponsors.count":17,"bill.sponsors.0.fullName":"Rep. Bourdeaux, Carolyn [D-GA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7198/text?format=json","bill.updateDate":"2025-01-03T07:45:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7198/subjects?format=json","request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7198/subjects?format=json","title":"Prove It Act of 2024","bill.title":"Chattahoochee River Act","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61042","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7198/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/761?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7198/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-03-24","sponsors.0.district":1,"bill.sponsors.0.state":"GA","sponsors.0.firstName":"Brad","updateDateIncludingText":"2025-01-08T02:03:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7198/text?format=json","bill.sponsors.0.lastName":"Bourdeaux"}} +{"type":"node","id":"8814","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moore","bill.latestAction.actionDate":"2022-03-07","cboCostEstimates.0.pubDate":"2024-01-24T22:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6952/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6952","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 6952.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6952/cosponsors?format=json","sponsors.0.bioguideId":"M001213","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6952/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6952/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","bill.sponsors.0.bioguideId":"J000301","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6952/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6952/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-12T14:20:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6952/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","request.billNumber":"6952","committees.url":"https://api.congress.gov/v3/bill/118/hr/6952/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6952/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Fiscal State of the Nation Act","bill.title":"RAISE Act","bill.number":"6952","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Budget on\nJanuary 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59914","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6952/committees?format=json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6952/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6952/summaries?format=json","cboCostEstimates.0.title":"H.R. 6952, Fiscal State of the Nation Act","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dusty","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6952/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6952/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6952?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 6952.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nBudget\n[Page H107]\n","sponsors.0.district":1,"bill.sponsors.0.state":"SD","sponsors.0.firstName":"Blake","bill.type":"HR","updateDateIncludingText":"2024-11-12T14:20:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6952/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"8815","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6951/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foxx","bill.latestAction.actionDate":"2022-03-07","cboCostEstimates.0.pubDate":"2024-05-10T13:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6951/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 624.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6951","bill.cosponsors.countIncludingWithdrawnCosponsors":56,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 6951.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article I, Section 8, Clause 18: To make\nall laws that shall be necessary and proper for carrying into\nexecution the foregoing powers, and all powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6951/cosponsors?format=json","sponsors.0.bioguideId":"F000450","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6951/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6951/relatedbills?format=json","latestAction.actionDate":"2024-11-18","textVersions.count":2,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Foxx, Virginia [R-NC-5]","bill.sponsors.0.bioguideId":"G000583","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":153,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6951/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-739","bill.sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6951/text?format=json","bill.updateDate":"2025-01-03T07:43:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6951/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/F000450?format=json","request.billNumber":"6951","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6951/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6951/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:13Z","title":"College Cost Reduction Act","bill.title":"Ban Russian Energy Imports Act","bill.number":"6951","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":153,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60285","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6951/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/739?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6951/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6951/summaries?format=json","bill.cosponsors.count":56,"cboCostEstimates.0.title":"H.R. 6951, College Cost Reduction Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":26,"bill.committees.count":2,"bill.sponsors.0.firstName":"Josh","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6951/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6951/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6951?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. FOXX:\nH.R. 6951.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo lower the cost of postsecondary education for students\nand families.\n[Page H107]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":5,"sponsors.0.firstName":"Virginia","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6951/text?format=json","bill.sponsors.0.lastName":"Gottheimer"}} +{"type":"node","id":"8816","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6966/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallagher","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6966/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6966","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILD:\nH.R. 6966.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6966/cosponsors?format=json","sponsors.0.bioguideId":"G000579","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6966/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6966/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","bill.sponsors.0.bioguideId":"W000826","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wild, Susan [D-PA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6966/text?format=json","bill.updateDate":"2025-01-03T07:43:14Z","updateDate":"2024-06-11T15:45:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6966/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","request.billNumber":"6966","committees.url":"https://api.congress.gov/v3/bill/118/hr/6966/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6966/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:14Z","title":"Go Pack Go Act of 2024","bill.title":"Better Service for Taxpayers Act","bill.number":"6966","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6966/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6966/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6966/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000826?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Susan","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6966/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6966/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6966?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 6966.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo increase access to local media markets for\nWisconsinites.\n[Page H107]\n","sponsors.0.district":8,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:45:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6966/text?format=json","bill.sponsors.0.lastName":"Wild"}} +{"type":"node","id":"8817","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6942/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rosendale","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6942/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"6942","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GREEN of Tennessee:\nH.R. 6942.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\n[Page H1329]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6942/cosponsors?format=json","sponsors.0.bioguideId":"R000103","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6942/actions?format=json","latestAction.actionDate":"2024-01-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6942/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","bill.sponsors.0.bioguideId":"G000590","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":17,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Green, Mark E. [R-TN-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6942/text?format=json","bill.updateDate":"2024-02-07T16:32:33Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6942/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","request.billNumber":"6942","committees.url":"https://api.congress.gov/v3/bill/118/hr/6942/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6942/subjects?format=json","bill.updateDateIncludingText":"2024-02-07T16:32:33Z","title":"Count Only Citizens Act","bill.title":"To prohibit the importation of oil and gas products from Russia, Iran, or Venezuela, and for other purposes.","bill.number":"6942","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6942/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6942/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6942/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000590?format=json","introducedDate":"2024-01-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"MT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6942/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6942/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6942?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 5 (Wednesday, January 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 6942.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nDecennial census\n[Page H52]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":7,"sponsors.0.firstName":"Matthew","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6942/text?format=json","bill.sponsors.0.lastName":"Green"}} +{"type":"node","id":"8818","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6956/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6956","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6956/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6956/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-12","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6956/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-06-11T15:45:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6956/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"6956","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6956/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6956/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Opioid Settlement Accountability Act","bill.title":"Service Starts At Home Act","bill.number":"6956","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6956/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6956/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6956/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6956/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6956/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6956?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section VIII, to regulate commerce\nThe single subject of this legislation is:\nCommerce\n[Page H107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:45:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6956/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8819","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rutherford","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Appropriations.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6955/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6955","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6955.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6955/cosponsors?format=json","sponsors.0.bioguideId":"R000609","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6955/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Rutherford, John H. [R-FL-5]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Appropriations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6955/text?format=json","bill.updateDate":"2025-01-03T07:43:17Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6955/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000609?format=json","request.billNumber":"6955","committees.url":"https://api.congress.gov/v3/bill/118/hr/6955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6955/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:17Z","title":"Investing in Uniformed Division Leadership Act","bill.title":"Learn and Serve American Reinvestment Act","bill.number":"6955","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6955/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6955/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6955/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6955/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6955/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6955?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUTHERFORD:\nH.R. 6955.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nAdding the Chief and Assistant Chief of the Uniformed\nDivision of the United States Secret Service to the Senior\nExecutive Service.\n[Page H107]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6955/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8820","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smucker","bill.latestAction.actionDate":"2022-03-07","cboCostEstimates.0.pubDate":"2024-01-24T22:21:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6957/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6957","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6957.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6957/cosponsors?format=json","sponsors.0.bioguideId":"S001199","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6957/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6957/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-18","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6957/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-19T08:05:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6957/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","request.billNumber":"6957","committees.url":"https://api.congress.gov/v3/bill/118/hr/6957/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6957/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Debt-to-GDP Transparency and Stabilization Act","bill.title":"To expand opportunities for employment of recent graduates in Federal Government positions, and for other purposes.","bill.number":"6957","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Budget on\nJanuary 18, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59913","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6957/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6957/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6957/summaries?format=json","cboCostEstimates.0.title":"H.R. 6957, Debt-to-GDP Transparency and Stabilization Act","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6957/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6957/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6957?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 6957.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 article 1 of the Constitution\nThe single subject of this legislation is:\nThe Debt-to-GDP Stabilization Act requires that the\nPresident's annual budget submission to Congress and any\nconcurrent resolution on the budget include the current ratio\nof the public debt to the estimated gross domestic product\n(GDP).\n[Page H107]\n","sponsors.0.district":11,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Lloyd","bill.type":"HR","updateDateIncludingText":"2024-09-19T08:05:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6957/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8821","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brownley","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6959/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6959","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6959.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6959/cosponsors?format=json","sponsors.0.bioguideId":"B001285","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6959/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6959/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6959/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","request.billNumber":"6959","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6959/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6959/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Fix FEDVIP Age Act","bill.title":"American Volunteering Corporation Act","bill.number":"6959","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6959/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6959/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6959/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6959/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6959/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6959?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 6959.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nHealthcare\n[Page H107]\n","sponsors.0.district":26,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Julia","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6959/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8822","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6954/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6954/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6954","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 6954.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6954/cosponsors?format=json","sponsors.0.bioguideId":"S000522","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6954/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6954/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","bill.sponsors.0.bioguideId":"K000397","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Young [R-CA-39]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6954/text?format=json","bill.updateDate":"2025-01-03T07:43:12Z","updateDate":"2024-12-19T09:06:10Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6954/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","request.billNumber":"6954","committees.url":"https://api.congress.gov/v3/bill/118/hr/6954/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6954/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:12Z","title":"Restoring Sovereignty and Human Rights in Nicaragua Act of 2024","bill.title":"DICTATOR Act of 2022","bill.number":"6954","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6954/committees?format=json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6954/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6954/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":32,"bill.committees.count":2,"bill.sponsors.0.firstName":"Young","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6954/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6954/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6954?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 6954.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nInternational Financial Services\n[Page H107]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":39,"sponsors.0.firstName":"CHRISTOPHER","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6954/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"8823","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6941/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rosendale","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6941/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F. Q.","number":"6941","bill.cosponsors.countIncludingWithdrawnCosponsors":21,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SAN NICOLAS:\nH.R. 6941.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, sec. 3, cl. 2: ``The Congress shall have Power\nto dispose of and make all needful Rules and Regulations\nrespecting the Territory or other Property belonging to the\nUnited States.''\n[Page H1329]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6941/cosponsors?format=json","sponsors.0.bioguideId":"R000103","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6941/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-10","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","bill.sponsors.0.bioguideId":"S001204","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":18,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. San Nicolas, Michael F. Q. [D-GU-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6941/text?format=json","bill.updateDate":"2025-01-03T07:43:13Z","updateDate":"2024-07-09T18:15:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6941/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","request.billNumber":"6941","committees.url":"https://api.congress.gov/v3/bill/118/hr/6941/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6941/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:13Z","title":"Criminalize Fleeing from Immigration Enforcement Act of 2024","bill.title":"Territorial Representation in the Senate Act","bill.number":"6941","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":18,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6941/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6941/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6941/summaries?format=json","bill.cosponsors.count":21,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001204?format=json","introducedDate":"2024-01-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"MT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6941/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6941/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6941?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 5 (Wednesday, January 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 6941.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLaw enforcement\n[Page H52]\n","sponsors.0.district":2,"bill.sponsors.0.state":"GU","sponsors.0.firstName":"Matthew","bill.type":"HR","updateDateIncludingText":"2024-07-09T18:15:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6941/text?format=json","bill.sponsors.0.lastName":"San Nicolas"}} +{"type":"node","id":"8824","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6923/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Malliotakis","bill.latestAction.actionDate":"2022-03-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6923/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6923","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOMEZ:\nH.R. 6923.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H1303]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6923/cosponsors?format=json","sponsors.0.bioguideId":"M000317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6923/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6923/relatedbills?format=json","latestAction.actionDate":"2024-01-19","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","bill.sponsors.0.bioguideId":"G000585","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6923/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gomez, Jimmy [D-CA-34]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6923/text?format=json","bill.updateDate":"2025-01-03T07:42:56Z","updateDate":"2024-09-16T13:20:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6923/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","request.billNumber":"6923","committees.url":"https://api.congress.gov/v3/bill/118/hr/6923/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6923/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:56Z","title":"States Helping Apprehend Rogue Exports Act","bill.title":"Accelerating Small Business Growth Act","bill.number":"6923","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6923/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6923/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6923/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000585?format=json","introducedDate":"2024-01-09","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6923/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6923/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6923?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 6923.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nTransportation and Public Works\n[Page H13]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":34,"sponsors.0.firstName":"Nicole","bill.type":"HR","updateDateIncludingText":"2024-09-16T13:20:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6923/text?format=json","bill.sponsors.0.lastName":"Gomez"}} +{"type":"node","id":"8825","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6915/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Huffman","bill.latestAction.actionDate":"2022-03-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6915/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6915","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURCHETT:\nH.R. 6915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1303]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6915/cosponsors?format=json","sponsors.0.bioguideId":"H001068","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6915/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6915/relatedbills?format=json","latestAction.actionDate":"2024-08-29","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","bill.sponsors.0.bioguideId":"B001309","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6915/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6915/text?format=json","bill.updateDate":"2025-01-03T07:42:56Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6915/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","request.billNumber":"6915","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6915/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6915/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:56Z","title":"Public Lands Telecommunications Act","bill.title":"Trailer Safety Improvement Act","bill.number":"6915","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6915/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6915/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6915/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","introducedDate":"2024-01-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tim","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6915/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6915/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6915?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 6915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo improve rural broadband on Public Lands.\n[Page H13]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jared","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6915/text?format=json","bill.sponsors.0.lastName":"Burchett"}} +{"type":"node","id":"8826","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6926/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rouzer","bill.latestAction.actionDate":"2022-03-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6926/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6926","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARSHBARGER:\nH.R. 6926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1303]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6926/cosponsors?format=json","sponsors.0.bioguideId":"R000603","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6926/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6926/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Rouzer, David [R-NC-7]","bill.sponsors.0.bioguideId":"H001086","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":21,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6926/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6926/text?format=json","bill.updateDate":"2025-01-03T07:42:52Z","updateDate":"2024-06-11T15:50:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6926/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000603?format=json","request.billNumber":"6926","committees.url":"https://api.congress.gov/v3/bill/118/hr/6926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6926/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:52Z","title":"Safe and Open Streets Act","bill.title":"No Taxpayer Dollars for Communist China COVID Tests Act","bill.number":"6926","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":21,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6926/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6926/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6926/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-01-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Diana","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6926/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6926/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6926?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROUZER:\nH.R. 6926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to establish a\ncriminal penalty for interfering with commerce by blocking\npublic roads.\n[Page H13]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":1,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:50:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6926/text?format=json","bill.sponsors.0.lastName":"Harshbarger"}} +{"type":"node","id":"8827","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6914/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hinson","bill.latestAction.actionDate":"2022-03-04","cboCostEstimates.0.pubDate":"2024-01-11T22:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6914/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 310.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"6914","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 6914.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article 1, Section 8,\nClause 18 of the Constitution of the United States.\n[[Page H1303]]\n[Page H1302]\n","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6914/cosponsors?format=json","sponsors.0.bioguideId":"H001091","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6914/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6914/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-23","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-2]","bill.sponsors.0.bioguideId":"B001257","amendments.url":"https://api.congress.gov/v3/bill/118/hr/6914/amendments?format=json","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-344","bill.sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6914/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6914/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":23,"sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","request.billNumber":"6914","committees.url":"https://api.congress.gov/v3/bill/118/hr/6914/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6914/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Pregnant Students’ Rights Act","bill.title":"SMALL GOVT Act of 2022","bill.number":"6914","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on January 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59873","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6914/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/344?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6914/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6914/summaries?format=json","bill.cosponsors.count":2,"cboCostEstimates.0.title":"H.R. 6914, Pregnant Students’ Rights Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","introducedDate":"2024-01-05","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Gus","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6914/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6914/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6914?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6914.\nCongress has the power to enact this legislation pursuant\nto the following:\nAricle 1, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nRequires a public institution of higher education (IHE)\nthat participates in federal student-aid programs to provide\ninformation to admitted and enrolled students on the rights\nand resources for students who are pregnant or may become\npregnant, excluding abortion services.\n[Page H13]\n","sponsors.0.district":2,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Ashley","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6914/text?format=json","bill.sponsors.0.lastName":"Bilirakis"}} +{"type":"node","id":"8828","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Spanberger","sponsors.0.isByRequest":"N","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4445/summaries?format=json","bill.relatedBills.count":4,"type":"HR","bill.summaries.count":5,"bill.amendments.count":2,"number":"4445","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"amendments.count":2,"sponsors.0.bioguideId":"S001209","laws.0.number":"117-90","bill.subjects.count":9,"latestAction.actionDate":"2023-06-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4445/relatedbills?format=json","bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-90.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4445/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-234","updateDate":"2024-07-24T15:21:14Z","committees.count":1,"request.billNumber":"4445","committees.url":"https://api.congress.gov/v3/bill/118/hr/4445/committees?format=json","bill.updateDateIncludingText":"2024-04-17T23:45:12Z","bill.number":"4445","bill.sponsors.0.isByRequest":"N","committeeReports":[],"sponsors.0.middleName":"Davis","latestAction_actionDate":"2022-03-03","summaries.count":5,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4445/summaries?format=json","bill.titles.count":8,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001286?format=json","introducedDate":"2023-06-30","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Cheri","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4445/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4445?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 4445.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nRepeals the 1957 AUMF.\n[Page H3162]\n","bill.sponsors.0.district":17,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4445/cosponsors?format=json","bill.textVersions.count":6,"bill.latestAction.actionDate":"2022-03-03","latestAction_text":"Became Public Law No: 117-90.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-234","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 125 (Friday, July 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BUSTOS:\nH.R. 4445.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\n[Page H3633]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4445/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/4445/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4445/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"B001286","amendments.url":"https://api.congress.gov/v3/bill/117/hr/4445/amendments?format=json","bill.actions.count":31,"titles.count":2,"cosponsors.count":6,"bill.laws.0.type":"Public Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/234?format=json","bill.sponsors.0.fullName":"Rep. Bustos, Cheri [D-IL-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4445/text?format=json","bill.updateDate":"2024-04-17T23:45:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4445/subjects?format=json","bill.laws.0.number":"117-90","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4445/subjects?format=json","title":"To repeal the joint resolution entitled \"A joint resolution to promote peace and stability in the Middle East\".","bill.title":"Ending Forced Arbitration of Sexual Assault and Sexual Harassment Act of 2021","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4445/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/234?format=json","request.billType":"hr","bill.cosponsors.count":25,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4445/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-16","sponsors.0.district":7,"bill.sponsors.0.state":"IL","sponsors.0.firstName":"Abigail","updateDateIncludingText":"2024-07-24T15:21:14Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4445/text?format=json","bill.sponsors.0.lastName":"Bustos"}} +{"type":"node","id":"8829","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4616, Adjustable Interest Rate (LIBOR) Act of 2021","bill.textVersions.count":4,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-03-03","cboCostEstimates.0.pubDate":"2022-03-03T16:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Education","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4616/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":3,"sponsors.0.party":"R","number":"4616","bill.committeeReports.0.citation":"H. Rept. 117-206","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SHERMAN:\nH.R. 4616.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe power granted to Congress under Article I, Section 8,\nClauses 1 and 18 of the United States Constitution.\n[Page H3844]\n","sponsors.0.bioguideId":"G000576","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4616/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4616/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"S000344","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on December 8, 2021\n","bill.originChamber":"House","bill.actions.count":25,"titles.count":3,"bill.latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-03-03T16:03:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4616/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/206?format=json","committeeReports.0.citation":"H. Rept. 117-206","bill.sponsors.0.fullName":"Rep. Sherman, Brad [D-CA-30]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4616/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4616/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"4616","committees.url":"https://api.congress.gov/v3/bill/118/hr/4616/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4616/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:38:14Z","title":"Informed Student Borrowing Act of 2023","bill.title":"Adjustable Interest Rate (LIBOR) Act of 2021","bill.number":"4616","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on December 8, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57896","committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4616/committees?format=json","latestAction_actionDate":"2022-03-03","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/206?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4616/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4616/summaries?format=json","cboCostEstimates.0.title":"H.R. 4616, Adjustable Interest Rate (LIBOR) Act of 2021","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000344?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"BRAD","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4616/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4616/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4616?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 4616.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nEducation\n[Page H3576]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":30,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4616/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57896","bill.sponsors.0.lastName":"SHERMAN"}} +{"type":"node","id":"8830","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6904/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6904/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6904","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 6904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6904/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6904/actions?format=json","latestAction.actionDate":"2023-12-22","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"P000618","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6904/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6904/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6904","committees.url":"https://api.congress.gov/v3/bill/118/hr/6904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6904/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Support Our Afghan Partners Act of 2023","bill.title":"Patients Before Profits Act of 2022","bill.number":"6904","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6904/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6904/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6904/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Katie","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6904/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6904/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6904?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill requires the Department of State to increase\nconsular personnel to support the processing of visa\napplications for Afghan nationals.\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":45,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6904/text?format=json","bill.sponsors.0.lastName":"Porter"}} +{"type":"node","id":"8831","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6901/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6901/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6901","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 6901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6901/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6901/actions?format=json","latestAction.actionDate":"2023-12-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6901/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"L000273","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6901/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6901/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6901/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6901","committees.url":"https://api.congress.gov/v3/bill/118/hr/6901/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6901/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"To direct the Secretary of Defense to submit to Congress a report on Department of Defense restrictions on the employment of former Department employees by certain countries.","bill.title":"To prohibit the use of Federal funds for the private interim storage of spent nuclear fuel, and for other purposes.","bill.number":"6901","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6901/committees?format=json","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6901/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6901/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Teresa","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6901/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6901/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6901?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to submit to Congress a\nreport on Department of Defense restrictions on the\nemployment of former Department employees by certain\ncountries\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NM","bill.sponsors.0.district":3,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6901/text?format=json","bill.sponsors.0.lastName":"Leger Fernandez"}} +{"type":"node","id":"8832","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6895/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"6895","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 6895.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","sponsors.0.bioguideId":"S001208","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6895/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6895/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-22","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"B001257","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6895/text?format=json","bill.updateDate":"2025-01-03T07:42:51Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6895/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6895","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6895/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6895/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:51Z","title":"Defense Production and Active Pharmaceutical Ingredients Act","bill.title":"Commission on Sustaining Medicare and Social Security Act of 2022","bill.number":"6895","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6895/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6895/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6895/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Gus","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6895/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6895/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6895?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6895.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\nThe single subject of this legislation is:\nTo amend the National Defense Authorization Act for Fiscal\nYear 2023 to extend Federal support for bioindustrial\nmanufacturing processes to include support for the\nmanufacturing of certain pharmaceutical ingredients.\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6895/text?format=json","bill.sponsors.0.lastName":"Bilirakis"}} +{"type":"node","id":"8833","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6919/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Van Orden","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6919/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6919","bill.cosponsors.countIncludingWithdrawnCosponsors":34,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COLE:\nH.R. 6919.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H1303]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6919/cosponsors?format=json","sponsors.0.bioguideId":"V000135","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6919/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6919/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Van Orden, Derrick [R-WI-3]","bill.sponsors.0.bioguideId":"C001053","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":7,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cole, Tom [R-OK-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6919/text?format=json","bill.updateDate":"2025-01-03T07:42:57Z","updateDate":"2024-08-09T17:53:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6919/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/V000135?format=json","request.billNumber":"6919","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6919/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6919/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:57Z","title":"To name the Department of Veterans Affairs medical center in Tomah, Wisconsin, as the \"Jason Simcakoski Department of Veterans Affairs Medical Center\".","bill.title":"Prohibition on Imports of Russian Oil Act","bill.number":"6919","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6919/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6919/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6919/summaries?format=json","bill.cosponsors.count":34,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001053?format=json","introducedDate":"2024-01-09","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6919/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6919/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6919?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN ORDEN:\nH.R. 6919.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Sec. 3, Cl. 2.\nThe single subject of this legislation is:\nTo name the Department of Veterans Affairs Medical Center\nin Tomah, Wisconsin, as the ``Jason Simcakoski Department of\nVeterans Affairs Medical Center.''\n[Page H13]\n","sponsors.0.district":3,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":4,"sponsors.0.firstName":"Derrick","bill.type":"HR","updateDateIncludingText":"2024-08-09T17:53:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6919/text?format=json","bill.sponsors.0.lastName":"Cole"}} +{"type":"node","id":"8834","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6591/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ellzey","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-02-26T16:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6591/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"6591","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 22 (Thursday, February 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 6591.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H947]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6591/cosponsors?format=json","sponsors.0.bioguideId":"E000071","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6591/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-02-29","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Ellzey, Jake [R-TX-6]","bill.sponsors.0.bioguideId":"M001136","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-379","bill.sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6591/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-01-17T03:06:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6591/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/E000071?format=json","request.billNumber":"6591","committees.url":"https://api.congress.gov/v3/bill/118/hr/6591/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6591/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Encouraging Success Act","bill.title":"PIPES Act","bill.number":"6591","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60008","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6591/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-02-04","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/379?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6591/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6591/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 6591, Encouraging Success Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lisa","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6591/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6591/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6591?format=json","bill.introducedDate":"2022-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ELLZEY:\nH.R. 6591.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nwhich states ``[t]he Congress shall have power to lay and\ncollect taxes, duties, imposts and excises, to pay the debts\nand provide for the common defense and general welfare of the\nUnited States; but all duties, imposts and excises shall be\nuniform throughout the United States''.\nThe single subject of this legislation is:\nAmends section 8(a) of the Small Business Act to require\nthe Administrator of the Small Business Administration to\nregularly reassess the asset and net worth thresholds for\nqualifying as an economically disadvantaged individual.\n[Page H6144]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":10,"sponsors.0.firstName":"Jake","bill.type":"HR","updateDateIncludingText":"2025-01-17T03:06:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6591/text?format=json","bill.sponsors.0.lastName":"McClain"}} +{"type":"node","id":"8835","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6584/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Timmons","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6584/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"6584","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 22 (Thursday, February 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 6584.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the Constitution.\n[Page H947]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6584/cosponsors?format=json","sponsors.0.bioguideId":"T000480","bill.subjects.count":22,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6584/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-04","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","bill.sponsors.0.bioguideId":"E000215","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":17,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6584/text?format=json","bill.updateDate":"2025-01-03T07:40:17Z","updateDate":"2024-07-24T15:19:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6584/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","request.billNumber":"6584","committees.url":"https://api.congress.gov/v3/bill/118/hr/6584/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6584/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:17Z","title":"Encouraging Innovation and Protecting Consumers Act","bill.title":"DEPICT Act","bill.number":"6584","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6584/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6584/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6584/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ANNA","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6584/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6584/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6584?format=json","bill.introducedDate":"2022-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 6584.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\nThe singe subject of this legislation is:\nTo restore the functions of the Office of Innovation of the\nBureau of Consumer Financial Protection, and for other\npurposes.\n[Page H6111]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":18,"sponsors.0.firstName":"William","bill.type":"HR","updateDateIncludingText":"2024-11-08T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6584/text?format=json","bill.sponsors.0.lastName":"ESHOO"}} +{"type":"node","id":"8836","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"THOMPSON","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6583/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6583","bill.cosponsors.countIncludingWithdrawnCosponsors":105,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 22 (Thursday, February 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 6583.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution.\n[Page H947]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6583/cosponsors?format=json","sponsors.0.bioguideId":"T000460","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6583/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6583/relatedbills?format=json","latestAction.actionDate":"2023-12-04","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","bill.sponsors.0.bioguideId":"D000399","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-35]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6583/text?format=json","bill.updateDate":"2025-01-03T07:40:17Z","updateDate":"2024-07-24T15:19:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","request.billNumber":"6583","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6583/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6583/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:17Z","title":"Refuge System Protection Act of 2023","bill.title":"Stop the Wait Act of 2022","bill.number":"6583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6583/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6583/summaries?format=json","bill.cosponsors.count":105,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"LLOYD","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6583/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6583/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6583?format=json","bill.introducedDate":"2022-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 6583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\n[The Congress shall have Power . . .] To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.\nThe single subject of this legislation is:\nauthorizing the U.S. Fish and Wildlife Service to seek\ncompensation for injuries to trust resources and to use funds\nreceived as that compensation to restore, replace, or acquire\nequivalent resources, and for other purposes.\n[Page H6111]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":35,"sponsors.0.firstName":"MIKE","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6583/text?format=json","bill.sponsors.0.lastName":"DOGGETT"}} +{"type":"node","id":"8837","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6580/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rosendale","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6580/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"6580","bill.cosponsors.countIncludingWithdrawnCosponsors":39,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 22 (Thursday, February 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CLARKE of New York:\nH.R. 6580.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H947]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6580/cosponsors?format=json","sponsors.0.bioguideId":"R000103","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6580/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6580/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-04","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","bill.sponsors.0.bioguideId":"C001067","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6580/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Clarke, Yvette D. [D-NY-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6580/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:19:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6580/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","request.billNumber":"6580","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6580/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6580/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"LAND Act","bill.title":"Algorithmic Accountability Act of 2022","bill.number":"6580","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6580/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6580/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6580/summaries?format=json","bill.cosponsors.count":39,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001067?format=json","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Yvette","sponsors.0.state":"MT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6580/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6580/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6580?format=json","bill.introducedDate":"2022-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 6580.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe legislation creates guidelines for when foreign\nentities purchase U.S. agricultural land.\n[Page H6111]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":9,"sponsors.0.firstName":"Matthew","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6580/text?format=json","bill.sponsors.0.lastName":"Clarke"}} +{"type":"node","id":"8838","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6613/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rutherford","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6613/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Davis","number":"6613","bill.cosponsors.countIncludingWithdrawnCosponsors":106,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 6613.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\n[Page H977]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6613/cosponsors?format=json","sponsors.0.bioguideId":"R000609","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6613/actions?format=json","latestAction.actionDate":"2023-12-06","textVersions.count":1,"bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Rutherford, John H. [R-FL-5]","bill.sponsors.0.bioguideId":"S001209","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":28,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6613/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6613/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000609?format=json","request.billNumber":"6613","committees.url":"https://api.congress.gov/v3/bill/118/hr/6613/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6613/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"PLAN for School Safety Act of 2023","bill.title":"Keeping School Meals Flexible Act","bill.number":"6613","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":28,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6613/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6613/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6613/summaries?format=json","bill.cosponsors.count":106,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","introducedDate":"2023-12-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Abigail","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6613/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6613/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6613?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 201 (Wednesday, December 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUTHERFORD:\nH.R. 6613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nGrants to create school safety resource centers.\n[Page H6209]\n","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":7,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6613/text?format=json","bill.sponsors.0.lastName":"Spanberger"}} +{"type":"node","id":"8839","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6602/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McCormick","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-03-11T15:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Education and Labor, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6602/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6602","bill.cosponsors.countIncludingWithdrawnCosponsors":19,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AGUILAR:\nH.R. 6602.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6602/cosponsors?format=json","sponsors.0.bioguideId":"M001218","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6602/actions?format=json","latestAction.actionDate":"2024-03-20","textVersions.count":3,"bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. McCormick, Richard [R-GA-6]","bill.sponsors.0.bioguideId":"A000371","bill.actions.count":5,"bill.originChamber":"House","titles.count":2,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on Education and Labor, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Aguilar, Pete [D-CA-31]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6602/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6602/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":12,"sponsors.0.url":"https://api.congress.gov/v3/member/M001218?format=json","request.billNumber":"6602","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6602/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6602/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend the Export Control Reform Act of 2018 relating to the review of the interagency dispute resolution process.","bill.title":"Affordable Housing Resident Services Act of 2022","bill.number":"6602","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on December 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":19,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60078","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6602/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6602/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6602/summaries?format=json","bill.cosponsors.count":19,"cboCostEstimates.0.title":"H.R. 6602, a bill to amend the Export Control Reform Act of 2018 relating to the review of the interagency dispute resolution process","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000371?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":3,"bill.sponsors.0.firstName":"Pete","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6602/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6602/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6602?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCORMICK:\nH.R. 6602.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 under Article I, Section 8 of the Constitution\nThe single subject of this legislation is:\nReforms the Department of Commerce Bureau of Industry and\nSecurity's Operating Committee for Export Policy\n[Page H6145]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":31,"sponsors.0.firstName":"Richard","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:20:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6602/text?format=json","bill.sponsors.0.lastName":"Aguilar"}} +{"type":"node","id":"8840","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6605/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Intelligence (Permanent Select).","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6605/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6605","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 6605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, U.S. Constitution.\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6605/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6605/actions?format=json","latestAction.actionDate":"2023-12-05","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Intelligence (Permanent Select).","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6605/text?format=json","bill.updateDate":"2025-01-03T07:40:23Z","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6605/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"6605","committees.url":"https://api.congress.gov/v3/bill/118/hr/6605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6605/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:23Z","title":"STIFLE Act of 2023","bill.title":"Climate Security Intelligence Act of 2022","bill.number":"6605","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6605/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6605/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6605/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6605/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6605/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6605?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 6605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to study the\nthreat of digital location obfuscation as it relates to\nnational security and financial technology, and for other\npurposes.\n[Page H6145]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6605/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"8841","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6601/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McBath","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6601/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6601","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MALINOWSKI:\nH.R. 6601.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution of the\nUnited States\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6601/cosponsors?format=json","sponsors.0.bioguideId":"M001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6601/actions?format=json","latestAction.actionDate":"2023-12-05","textVersions.count":1,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-7]","bill.sponsors.0.bioguideId":"M001203","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Malinowski, Tom [D-NJ-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6601/text?format=json","bill.updateDate":"2025-01-03T07:40:20Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6601/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","request.billNumber":"6601","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6601/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6601/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:20Z","title":"TRAIN Act","bill.title":"Saudi Arabia Legitimate Self Defense Act","bill.number":"6601","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6601/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6601/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6601/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001203?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6601/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6601/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6601?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 6601.\nCongress has the power to enact this legislation pursuant\nto the following:\nInterstate Commerce Clause--Article 1, Section 8, Clause 3\nThe single subject of this legislation is:\nThis bill expands and provides statutory authority for the\nDepartment of Labor's Strengthening Community Colleges\nTraining Grants program, which awards competitive grants for\ncommunity colleges to provide education or career skills\ndevelopment for jobs in high-demand industries.\n[Page H6145]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":7,"sponsors.0.firstName":"Lucy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6601/text?format=json","bill.sponsors.0.lastName":"Malinowski"}} +{"type":"node","id":"8842","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6607/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHAKOWSKY","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6607/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6607","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 6607.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 14 of the U.S.\nConstitution\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6607/cosponsors?format=json","sponsors.0.bioguideId":"S001145","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6607/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6607/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","bill.sponsors.0.bioguideId":"G000559","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garamendi, John [D-CA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6607/text?format=json","bill.updateDate":"2025-01-03T07:40:18Z","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6607/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","request.billNumber":"6607","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6607/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6607/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:18Z","title":"Affordable Drug Manufacturing Act of 2023","bill.title":"To identify certain roads in the vicinity of Beale Air Force Base and Travis Air Force Base, California, as defense access roads for purposes of the Defense Access Road Program.","bill.number":"6607","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6607/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6607/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6607/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6607/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6607/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6607?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 6607.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nTo create an Office of Drug Manufacturing in HHS\nresponsible for manufacturing generic drugs, lowering prices,\nincreasing competition, and addressing drug shortages.\n[Page H6145]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":3,"sponsors.0.firstName":"JANICE","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6607/text?format=json","bill.sponsors.0.lastName":"Garamendi"}} +{"type":"node","id":"8843","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bowman","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6616/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6616","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WALORSKI:\nH.R. 6616.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H977]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6616/cosponsors?format=json","sponsors.0.bioguideId":"B001223","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6616/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6616/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-06","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","bill.sponsors.0.bioguideId":"W000813","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Walorski, Jackie [R-IN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6616/text?format=json","bill.updateDate":"2025-01-03T07:40:23Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6616/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","request.billNumber":"6616","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6616/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6616/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:23Z","title":"College Athlete Right to Organize Act","bill.title":"Save Taxpayers’ Privacy Act","bill.number":"6616","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6616/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6616/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6616/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000813?format=json","introducedDate":"2023-12-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6616/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6616/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6616?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 201 (Wednesday, December 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOWMAN:\nH.R. 6616.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nCollege athletes' right to organize\n[Page H6209]\n","sponsors.0.district":16,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jamaal","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6616/text?format=json","bill.sponsors.0.lastName":"Walorski"}} +{"type":"node","id":"8844","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-03-29T16:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6609/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6609","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUIZENGA:\nH.R. 6609.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6609/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6609/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"H001058","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6609/text?format=json","bill.updateDate":"2025-01-03T07:40:24Z","updateDate":"2024-12-10T17:47:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6609/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"6609","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6609/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:24Z","title":"TIGER Act","bill.title":"FACE Act","bill.number":"6609","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60015","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6609/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6609/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6609/summaries?format=json","cboCostEstimates.0.title":"H.R. 6609, Foreign Military Sales Technical, Industrial, and Governmental Engagement for Readiness Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6609/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6609/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6609?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 6609.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, ``The Congress Shall have Power . . . To\nregulate Commerce with foreign Nations, and among the several\nStates, and with the Indian Tribes;''\nThe single subject of this legislation is:\nForeign Military Sales\n[Page H6145]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-12-10T17:47:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6609/text?format=json","bill.sponsors.0.lastName":"Huizenga"}} +{"type":"node","id":"8845","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6608/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6608/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6608","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 6608.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6608/cosponsors?format=json","sponsors.0.bioguideId":"S000510","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6608/actions?format=json","latestAction.actionDate":"2023-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6608/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":17,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6608/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-10T09:05:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6608/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","request.billNumber":"6608","committees.url":"https://api.congress.gov/v3/bill/118/hr/6608/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6608/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"End Hedge Fund Control of American Homes Act","bill.title":"Scratch Cooked Meals for Students Act","bill.number":"6608","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6608/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6608/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6608/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6608/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6608/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6608?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 6608.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\nThe single subject of this legislation is:\nTax on certain hedge funds.\n[Page H6145]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-12-10T09:05:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6608/text?format=json","bill.sponsors.0.lastName":"Hayes"}} +{"type":"node","id":"8846","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moran","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-03-13T17:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6603/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6603","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 6603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6603/cosponsors?format=json","sponsors.0.bioguideId":"M001224","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6603/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6603/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Moran, Nathaniel [R-TX-1]","bill.sponsors.0.bioguideId":"B001302","bill.actions.count":3,"bill.originChamber":"House","titles.count":5,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6603/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6603/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/M001224?format=json","request.billNumber":"6603","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6603/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6603/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"No Technology for Terror Act","bill.title":"Ending Common Core and Expanding School Choice Act","bill.number":"6603","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59997","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6603/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6603/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6603/summaries?format=json","cboCostEstimates.0.title":"H.R. 6603, No Technology for Terror Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6603/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6603/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6603?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORAN:\nH.R. 6603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nForeign Direct Product Rule application to Iran\n[Page H6145]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":5,"sponsors.0.firstName":"Nathaniel","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:20:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6603/text?format=json","bill.sponsors.0.lastName":"Biggs"}} +{"type":"node","id":"8847","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Porter","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Subcommittee Hearings Held.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6451/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6451","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 13 (Thursday, January 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIRKPATRICK:\nH.R. 6451.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority on which this bill rests is\nthe power of Congress to make rules for the government and\nregulation of the land and naval forces, as enumerated in\nArticle I, Section 8, Clause 14 of the United States\nConstitution.\n[Page H290]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6451/cosponsors?format=json","sponsors.0.bioguideId":"P000618","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6451/actions?format=json","latestAction.actionDate":"2023-11-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6451/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","bill.sponsors.0.bioguideId":"K000368","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":161,"bill.latestAction.text":"Subcommittee Hearings Held.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6451/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kirkpatrick, Ann [D-AZ-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6451/text?format=json","bill.updateDate":"2025-01-03T07:39:20Z","updateDate":"2024-12-10T09:05:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6451/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","request.billNumber":"6451","committees.url":"https://api.congress.gov/v3/bill/118/hr/6451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6451/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:20Z","title":"Mental Health Justice Act of 2023","bill.title":"Chiricahua National Park Act","bill.number":"6451","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":161,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6451/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6451/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6451/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000368?format=json","introducedDate":"2023-11-17","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ann","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6451/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6451/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6451?format=json","bill.introducedDate":"2022-01-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 6451.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to authorize grants\nto States, Indian Tribes, Tribal organizations, and political\nsubdivisions thereof to hire, employ, train, and dispatch\nmental health professionals to respond in lieu of law\nenforcement officers in emergencies involving one or more\npersons with a mental illness or an intellectual or\ndevelopmental disability, and for other\n[Page H5900]\n","sponsors.0.district":47,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":2,"sponsors.0.firstName":"Katie","bill.type":"HR","updateDateIncludingText":"2024-12-10T09:05:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6451/text?format=json","bill.sponsors.0.lastName":"Kirkpatrick"}} +{"type":"node","id":"8848","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6571/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bucshon","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Transportation and Maritime Security.","policyArea.name":"Commerce","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6571/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6571","bill.cosponsors.countIncludingWithdrawnCosponsors":59,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 6571.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6571/cosponsors?format=json","sponsors.0.bioguideId":"B001275","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6571/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6571/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","bill.sponsors.0.bioguideId":"S000510","bill.actions.count":4,"bill.originChamber":"House","titles.count":6,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6571/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-473","bill.sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6571/text?format=json","bill.updateDate":"2025-01-03T07:39:59Z","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6571/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","request.billNumber":"6571","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6571/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6571/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:59Z","title":"Promoting Resilient Supply Chains Act of 2023","bill.title":"TSA Security Threat Assessment Application Modernization Act","bill.number":"6571","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6571/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-03","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/473?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6571/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6571/summaries?format=json","bill.cosponsors.count":59,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"ADAM","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6571/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6571/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6571?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 6571.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nCommerce\n[Page H6110]\n","sponsors.0.district":8,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Larry","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:51:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6571/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8849","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6576/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lee","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6576/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6576","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WELCH:\nH.R. 6576.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: The Congress shall have\nPower To . . . make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer therof . .\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6576/cosponsors?format=json","sponsors.0.bioguideId":"L000590","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6576/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6576/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lee, Susie [D-NV-3]","bill.sponsors.0.bioguideId":"W000800","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":20,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6576/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Welch, Peter [D-VT-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6576/text?format=json","bill.updateDate":"2025-01-03T07:40:03Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6576/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000590?format=json","request.billNumber":"6576","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6576/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6576/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:03Z","title":"Full-Service Community School Expansion Act of 2023","bill.title":"SURS Extension Act","bill.number":"6576","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6576/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6576/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6576/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Peter","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6576/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6576/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6576?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of Nevada:\nH.R. 6576.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 provides Congress with the\npower to ``lay and collect Taxes Duties, Imposts, and\nExcises''\nThe single subject of this legislation is:\nEducation\n[Page H6110]\n","bill.sponsors.0.state":"VT","sponsors.0.district":3,"sponsors.0.firstName":"Susie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6576/text?format=json","bill.sponsors.0.lastName":"Welch"}} +{"type":"node","id":"8850","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6572/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bucshon","bill.latestAction.actionDate":"2022-02-03","cboCostEstimates.0.pubDate":"2024-08-22T12:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Commerce","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6572/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"6572","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 6572.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6572/cosponsors?format=json","sponsors.0.bioguideId":"B001275","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6572/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6572/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-05-16","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","bill.sponsors.0.bioguideId":"S001196","bill.actions.count":4,"bill.originChamber":"House","titles.count":6,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6572/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-501","bill.sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6572/text?format=json","bill.updateDate":"2025-01-03T07:40:00Z","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6572/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","request.billNumber":"6572","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6572/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6572/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:00Z","title":"Deploying American Blockchains Act of 2023","bill.title":"Countering CCP Drones Act","bill.number":"6572","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on May 15, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60655","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6572/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-03","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/501?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6572/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6572/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 6572, Deploying American Blockchains Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elise","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6572/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6572/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6572?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 6572.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nCommerce\n[Page H6110]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":21,"sponsors.0.firstName":"Larry","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:51:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6572/text?format=json","bill.sponsors.0.lastName":"Stefanik"}} +{"type":"node","id":"8851","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6570/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6570/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 248.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"L.","number":"6570","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUSH:\nH.R. 6570.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6570/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6570/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6570/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"R000515","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":33,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-307","bill.sponsors.0.fullName":"Rep. Rush, Bobby L. [D-IL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6570/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-11-09T04:56:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6570/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"6570","committees.url":"https://api.congress.gov/v3/bill/118/hr/6570/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6570/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Protect Liberty and End Warrantless Surveillance Act of 2023","bill.title":"REPAIR Act.","bill.number":"6570","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":33,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6570/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-02-03","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/307?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6570/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6570/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000515?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":1,"bill.sponsors.0.firstName":"BOBBY","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6570/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6570/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6570?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 6570.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to amend the Foreign\nintelligence Surveillance Act of 1978 to reform certain\nauthorities and to provide greater transparency and\noversight.\n[Page H6110]\n","sponsors.0.district":5,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6570/text?format=json","bill.sponsors.0.lastName":"RUSH"}} +{"type":"node","id":"8852","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6562/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6562","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FLETCHER:\nH.R. 6562.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6562/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6562/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"F000468","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6562/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-09-13T15:34:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6562/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"6562","committees.url":"https://api.congress.gov/v3/bill/118/hr/6562/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6562/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"REST Act of 2023","bill.title":"CLEAR Act","bill.number":"6562","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6562/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6562/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6562/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2023-12-01","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lizzie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6562/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6562/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6562?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 198 (Friday, December 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 6562.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo allow airports to set curfews for certain flights\n[Page H6081]\n","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":7,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-09-13T15:34:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6562/text?format=json","bill.sponsors.0.lastName":"Fletcher"}} +{"type":"node","id":"8853","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6560/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6560/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"6560","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWN of Ohio:\nH.R. 6560.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6560/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6560/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"B001313","bill.originChamber":"House","bill.actions.count":11,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Shontel M. [D-OH-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6560/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-13T15:32:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6560/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"6560","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6560/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6560/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"NOTIFIED Act","bill.title":"GAO Audit Mandates Revision Act of 2022","bill.number":"6560","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6560/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6560/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6560/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001313?format=json","introducedDate":"2023-12-01","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":7,"bill.sponsors.0.firstName":"Shontel","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6560/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6560/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6560?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 198 (Friday, December 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 6560.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nFAA responsiveness to requests from Congress\n[Page H6081]\n","sponsors.0.district":19,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":11,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-09-13T15:32:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6560/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"8854","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Dingell","bill.latestAction.actionDate":"2021-12-21","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6333/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6333","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 6333.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H7838]\n","sponsors.0.bioguideId":"D000624","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6333/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6333/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","bill.sponsors.0.bioguideId":"L000589","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6333/text?format=json","bill.updateDate":"2025-01-03T07:38:07Z","updateDate":"2024-08-02T18:28:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6333/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","request.billNumber":"6333","committees.url":"https://api.congress.gov/v3/bill/118/hr/6333/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6333/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:07Z","title":"Veterans Emergency Care Reimbursement Act of 2023","bill.title":"To prohibit the use of Federal funds to establish, maintain, or support any national database identifying individuals as having received or not received any vaccine.","bill.number":"6333","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6333/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6333/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6333/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6333/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6333/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6333?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 6333.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to modify the\nlimitation on reimbursement for emergency treatment of\namounts owed to a third party or which the veteran is\nresponsible under a health-plan contract.\n[Page H5670]\n","sponsors.0.district":6,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":8,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-08-02T18:28:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6333/text?format=json","bill.sponsors.0.lastName":"Lesko"}} +{"type":"node","id":"8855","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6229/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-12-20","cboCostEstimates.0.pubDate":"2024-07-18T17:29:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6229/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"J.","number":"6229","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 213 (Thursday, December 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 6229.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution\n[Page H7638]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6229/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6229/actions?format=json","latestAction.actionDate":"2024-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6229/relatedbills?format=json","textVersions.count":4,"bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"M001199","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6229/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-826","bill.sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6229/text?format=json","bill.updateDate":"2025-01-03T07:37:10Z","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6229/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":20,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"6229","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6229/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6229/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:10Z","title":"DHS Special Events Program and Support Act","bill.title":"Land and Water Conservation Fund Water Amendments Act of 2021","bill.number":"6229","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on June 12, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60545","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6229/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-20","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/826?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6229/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6229/summaries?format=json","bill.cosponsors.count":6,"cboCostEstimates.0.title":"H.R. 6229, DHS Special Events Program and Support Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","introducedDate":"2023-11-03","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6229/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6229/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6229?format=json","bill.introducedDate":"2021-12-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 182 (Friday, November 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 6229.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nAuthorizing a program within the Department of Homeland\nSecurity to assess the security and counterterrorism needs of\nhigh-profile events.\n[Page H5405]\n","sponsors.0.district":1,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":18,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2025-03-03T20:01:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6229/text?format=json","bill.sponsors.0.lastName":"Mast"}} +{"type":"node","id":"8856","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 612, the Downwinders Parity Act of 2021","sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-02-23T21:00:00Z","policyArea.name":"International Affairs","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/612/summaries?format=json","type":"HR","bill.summaries.count":2,"number":"612","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"sponsors.0.bioguideId":"T000486","bill.subjects.count":11,"latestAction.actionDate":"2023-01-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/612/relatedbills?format=json","bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","bill.originChamber":"House","bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 158.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-02-23T21:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/612/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-220","updateDate":"2024-07-24T15:23:55Z","committees.count":1,"request.billNumber":"612","committees.url":"https://api.congress.gov/v3/bill/118/hr/612/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:40Z","bill.number":"612","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on the Judiciary on December 20, 2021\n","committeeReports":[],"latestAction_actionDate":"2021-12-20","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/612/summaries?format=json","cboCostEstimates.0.title":"H.R. 612, the Downwinders Parity Act of 2021","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","introducedDate":"2023-01-27","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Greg","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/612/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/612?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 612.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H491]\n","bill.sponsors.0.district":9,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/612/cosponsors?format=json","bill.textVersions.count":2,"bill.latestAction.actionDate":"2021-12-20","latestAction_text":"Placed on the Union Calendar, Calendar No. 158.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-220","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 612.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/612/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/612/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"S001211","bill.cboCostEstimates.0.description":"As reported by the House Committee on the Judiciary on December 20, 2021\n","bill.actions.count":10,"titles.count":3,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/220?format=json","bill.sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/612/text?format=json","bill.updateDate":"2025-01-03T04:43:40Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/612/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/612/subjects?format=json","title":"Balkans Security Cooperation Act","bill.title":"Downwinders Parity Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57845","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/612/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/220?format=json","request.billType":"hr","bill.cosponsors.count":11,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/612/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-01-28","sponsors.0.district":15,"bill.sponsors.0.state":"AZ","sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/612/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57845","bill.sponsors.0.lastName":"Stanton"}} +{"type":"node","id":"8857","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Harder","bill.latestAction.actionDate":"2021-12-20","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6340/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6340","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 6340.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H7838]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6340/cosponsors?format=json","sponsors.0.bioguideId":"H001090","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6340/actions?format=json","latestAction.actionDate":"2023-11-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6340/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6340/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6340/text?format=json","bill.updateDate":"2025-01-03T07:38:09Z","updateDate":"2024-08-02T18:30:24Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6340/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","request.billNumber":"6340","committees.url":"https://api.congress.gov/v3/bill/118/hr/6340/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6340/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:09Z","title":"Improving Housing Outcomes for Veterans Act of 2023","bill.title":"To establish the United States policy on Burma at the International Monetary Fund, the World Bank Group, and the Asian Development Bank, and for other purposes.","bill.number":"6340","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6340/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-20","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6340/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6340/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6340/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6340/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6340?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 6340.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article 1, Sec. 8\nThe single subject of this legislation is:\nThe bill directs the Under Secretary for Health of the\nDepartment of Veterans Affairs to provide certain information\nto Department of Veterans Affairs medical center staff and\nhomelessness service providers regarding the Coordinated\nEntry program, and for other purposes.\n[Page H5670]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-08-02T18:30:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6340/text?format=json","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"8858","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castro","bill.latestAction.actionDate":"2021-12-20","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6328/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6328","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLEAVER:\nH.R. 6328.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H7838]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6328/cosponsors?format=json","sponsors.0.bioguideId":"C001091","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6328/actions?format=json","latestAction.actionDate":"2023-11-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6328/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","bill.sponsors.0.bioguideId":"C001061","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6328/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cleaver, Emanuel [D-MO-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6328/text?format=json","bill.updateDate":"2025-01-03T07:38:09Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6328/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","request.billNumber":"6328","committees.url":"https://api.congress.gov/v3/bill/118/hr/6328/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6328/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:09Z","title":"Advanced Coursework Equity Act","bill.title":"FinCEN Exam Delegation Study","bill.number":"6328","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6328/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-20","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6328/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6328/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001061?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Emanuel","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6328/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6328/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6328?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 6328.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18) THE U.S. CONSTITUTION ARTICLE I,\nSECTION 8: POWERS OF CONGRESS CLAUSE 18 The Congress shall\nhave power . . . To make all laws which shall be necessary\nand proper for\nThe single subject of this legislation is:\nThe purpose of the resolution is regarding education.\n[Page H5670]\n","sponsors.0.district":20,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":5,"sponsors.0.firstName":"Joaquin","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6328/text?format=json","bill.sponsors.0.lastName":"Cleaver"}} +{"type":"node","id":"8859","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6331/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davis","bill.latestAction.actionDate":"2021-12-20","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6331/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6331","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 6331.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\n[Page H7838]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6331/cosponsors?format=json","sponsors.0.bioguideId":"D000230","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6331/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6331/relatedbills?format=json","latestAction.actionDate":"2023-11-27","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Davis, Donald G. [D-NC-1]","bill.sponsors.0.bioguideId":"J000301","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6331/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6331/text?format=json","bill.updateDate":"2025-01-03T07:38:05Z","updateDate":"2024-08-02T18:28:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6331/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000230?format=json","request.billNumber":"6331","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6331/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6331/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:05Z","title":"DOULA for VA Act of 2023","bill.title":"Native American Rural Homeownership Improvement Act of 2021","bill.number":"6331","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6331/committees?format=json","latestAction_actionDate":"2021-12-20","sponsors.0.middleName":"G.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6331/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6331/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dusty","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6331/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6331/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6331?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of North Carolina:\nH.R. 6331.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo require the Secretary of Veterans Affairs to establish a\npilot program to furnish doula services to veterans.\n[Page H5670]\n","sponsors.0.district":1,"bill.sponsors.0.state":"SD","sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-08-02T18:28:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6331/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"8860","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6339/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Green","bill.latestAction.actionDate":"2021-12-20","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6339/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"6339","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TURNER:\nH.R. 6339.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H7838]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6339/cosponsors?format=json","sponsors.0.bioguideId":"G000590","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6339/actions?format=json","latestAction.actionDate":"2023-11-09","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Green, Mark E. [R-TN-7]","bill.sponsors.0.bioguideId":"T000463","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Turner, Michael R. [R-OH-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6339/text?format=json","bill.updateDate":"2025-01-03T07:38:06Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6339/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000590?format=json","request.billNumber":"6339","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6339/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6339/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:06Z","title":"States Choose Common Sense Act of 2023","bill.title":"Health Coverage Tax Credit Reauthorization Act of 2021","bill.number":"6339","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6339/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-12-20","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6339/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6339/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000463?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6339/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6339/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6339?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GREEN of Tennessee:\nH.R. 6339.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 9, Clause 7 of the Constitution of the\nUnited States.\nThe single subject of this legislation is:\nProhibits the withholding or revoking of Federal funds\nbased on the definition of ``sex'' used by a State, if that\ndefinition is based on the biological sex of an individual.\n[Page H5670]\n","sponsors.0.district":7,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":10,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6339/text?format=json","bill.sponsors.0.lastName":"Turner"}} +{"type":"node","id":"8861","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6326/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bucshon","bill.latestAction.actionDate":"2021-12-20","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6326/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6326","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 6326.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 Cl.\n1), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8 Cl. 18).\nFurther, this statement of constitutional authority is\nmade for the sole purpose of compliance with clause 7 of Rule\nXII of the Rules of the House of Representatives and shall\nhave no bearing on judicial review of the accompanying bill.\n[Page H7837]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6326/cosponsors?format=json","sponsors.0.bioguideId":"B001275","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6326/actions?format=json","latestAction.actionDate":"2023-11-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6326/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","bill.sponsors.0.bioguideId":"C001125","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Carter, Troy [D-LA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6326/text?format=json","bill.updateDate":"2025-01-03T07:38:08Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6326/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","request.billNumber":"6326","committees.url":"https://api.congress.gov/v3/bill/118/hr/6326/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6326/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:08Z","title":"Advanced Reactor Fee Reduction Act","bill.title":"NEW START Act of 2021","bill.number":"6326","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6326/committees?format=json","latestAction_actionDate":"2021-12-20","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6326/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6326/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Troy","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6326/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6326/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6326?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\n[Pages H5669-H5670]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 6326.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H5670]]\nThis resolution is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 3 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo advance nuclear energy by reducing regulatory costs for\nadvanced nuclear reactor application reviews.\n","sponsors.0.district":8,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Larry","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6326/text?format=json","bill.sponsors.0.lastName":"Carter"}} +{"type":"node","id":"8862","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6329/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castro","bill.latestAction.actionDate":"2021-12-20","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6329/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Intelligence (Permanent Select).","bill.summaries.count":1,"sponsors.0.party":"D","number":"6329","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 219 (Monday, December 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 6329.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7838]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6329/cosponsors?format=json","sponsors.0.bioguideId":"C001091","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6329/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6329/relatedbills?format=json","latestAction.actionDate":"2023-11-09","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","bill.sponsors.0.bioguideId":"D000216","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6329/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6329/text?format=json","bill.updateDate":"2025-01-03T07:38:07Z","updateDate":"2024-07-24T15:19:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6329/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","request.billNumber":"6329","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6329/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6329/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:07Z","title":"Open Source Intelligence Availability Act","bill.title":"National Critical Capabilities Defense Act of 2021","bill.number":"6329","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6329/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-20","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6329/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6329/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","introducedDate":"2023-11-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ROSA","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6329/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6329/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6329?format=json","bill.introducedDate":"2021-12-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 6329.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18) THE U.S. CONSTITUTION ARTICLE I,\nSECTION 8: POWERS OF CONGRESS CLAUSE 18 The Congress shall\nhave power . . . To make all laws which shall be necessary\nand proper for\nThe single subject of this legislation is:\nThe purpose of the bill is regarding the US intelligence\ncommunity.\n[Page H5670]\n","sponsors.0.district":20,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":3,"sponsors.0.firstName":"Joaquin","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6329/text?format=json","bill.sponsors.0.lastName":"DELAURO"}} +{"type":"node","id":"8863","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6148/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grijalva","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6148/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"L.","number":"6148","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 211 (Tuesday, December 7, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARL:\nH.R. 6148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H7262]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6148/cosponsors?format=json","sponsors.0.bioguideId":"G000551","bill.subjects.count":19,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6148/actions?format=json","latestAction.actionDate":"2024-03-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6148/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","bill.sponsors.0.bioguideId":"C001054","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Carl, Jerry L. [R-AL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6148/text?format=json","bill.updateDate":"2025-01-03T07:36:42Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6148/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","request.billNumber":"6148","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6148/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6148/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:36:42Z","title":"Advancing Tribal Parity on Public Land Act","bill.title":"Alabama Underwater Forest National Marine Sanctuary and Protection Act","bill.number":"6148","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6148/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6148/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6148/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001054?format=json","introducedDate":"2023-11-01","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jerry","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6148/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6148/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6148?format=json","bill.introducedDate":"2021-12-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 6148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3\nThe single subject of this legislation is:\nTo protect Native cultural sites located on Federal land,\nto improve consultation with Indian Tribes, to bring parity\nto Indian Tribes with regard to Federal public land\nmanagement laws, and for other purposes.\n[Page H5230]\n","sponsors.0.district":7,"bill.sponsors.0.state":"AL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Raúl","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6148/text?format=json","bill.sponsors.0.lastName":"Carl"}} +{"type":"node","id":"8864","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6168/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sykes","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy and Mineral Resources.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6168/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"D.","number":"6168","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 211 (Tuesday, December 7, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 6168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 3 and 18.\nThe Congress shall have Power . . .\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes.\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof\n[Page H7262]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6168/cosponsors?format=json","sponsors.0.bioguideId":"S001223","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6168/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6168/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Sykes, Emilia Strong [D-OH-13]","bill.sponsors.0.bioguideId":"S001145","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6168/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-12T21:14:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6168/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001223?format=json","request.billNumber":"6168","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6168/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6168/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Better Care For Domestic Violence Survivors Act","bill.title":"Future Generations Protection Act","bill.number":"6168","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6168/committees?format=json","sponsors.0.middleName":"Strong","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6168/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6168/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","introducedDate":"2023-11-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"JANICE","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6168/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6168/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6168?format=json","bill.introducedDate":"2021-12-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\n[Pages H5230-H5231]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. SYKES:\nH.R. 6168.\n[[Page H5231]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nThis legislation authorizes a pilot program to train\nmedical practitioners to better treat and assist survivors of\ndomestic violence.\n","sponsors.0.district":13,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":9,"sponsors.0.firstName":"Emilia","bill.type":"HR","updateDateIncludingText":"2024-12-12T21:14:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6168/text?format=json","bill.sponsors.0.lastName":"SCHAKOWSKY"}} +{"type":"node","id":"8865","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6306/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mills","bill.latestAction.actionDate":"2021-12-17","cboCostEstimates.0.pubDate":"2024-01-05T18:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6306/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6306","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON:\nH.R. 6306.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6306/cosponsors?format=json","sponsors.0.bioguideId":"M001216","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6306/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-03-20","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Mills, Cory [R-FL-7]","bill.sponsors.0.bioguideId":"J000304","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6306/text?format=json","bill.updateDate":"2025-01-03T07:37:55Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6306/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":13,"sponsors.0.url":"https://api.congress.gov/v3/member/M001216?format=json","request.billNumber":"6306","committees.url":"https://api.congress.gov/v3/bill/118/hr/6306/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6306/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:55Z","title":"Embassy Construction Integrity Act of 2023","bill.title":"POLAR Response Act","bill.number":"6306","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on December 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59849","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6306/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6306/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6306/summaries?format=json","bill.cosponsors.count":9,"cboCostEstimates.0.title":"H.R. 6306, Embassy Construction Integrity Act of 2023","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6306/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6306/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6306?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MILLS:\nH.R. 6306.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo amend the State Department Basic Authorities Act of 1956\nto prohibit the acquisition or lease of a consular or\ndiplomatic post built or owned by an entity beneficially\nowned by the People's Republic of China, and for other\npurposes.\n[Page H5653]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Cory","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6306/text?format=json","bill.sponsors.0.lastName":"Jackson"}} +{"type":"node","id":"8866","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smucker","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6315/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6315","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 6315.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6315/cosponsors?format=json","sponsors.0.bioguideId":"S001199","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6315/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6315/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6315/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6315/text?format=json","bill.updateDate":"2025-01-03T07:38:01Z","updateDate":"2024-08-02T18:26:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6315/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","request.billNumber":"6315","committees.url":"https://api.congress.gov/v3/bill/118/hr/6315/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6315/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:01Z","title":"VA Billing Accountability Act","bill.title":"Safe Routes to All Schools Act","bill.number":"6315","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6315/committees?format=json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6315/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6315/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6315/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6315/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6315?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 6315.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Section VIII of Article I of the U.S. Constitution.\nThe single subject of this legislation is:\nThis bill authorizes the Secretary of Veterans Affairs to\nwaive the requirement of certain veterans to make copayments\nfor hospital care and medical services in the case of an\nerror by the Department of Veterans Affairs.\n[Page H5653]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Lloyd","bill.type":"HR","updateDateIncludingText":"2024-08-02T18:26:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6315/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8867","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6310/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ruiz","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6310/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6310","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KUSTOFF:\nH.R. 6310.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by the Constitution in\nthe Government of the United States, or in any Department of\nOfficer thereof.\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6310/cosponsors?format=json","sponsors.0.bioguideId":"R000599","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6310/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6310/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Ruiz, Raul [D-CA-25]","bill.sponsors.0.bioguideId":"K000392","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6310/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6310/text?format=json","bill.updateDate":"2025-01-03T07:37:58Z","updateDate":"2024-12-19T09:06:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6310/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/R000599?format=json","request.billNumber":"6310","committees.url":"https://api.congress.gov/v3/bill/118/hr/6310/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6310/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:58Z","title":"To amend title XVIII of the Social Security Act to extend incentive payments for participation in eligible alternative payment models under the Medicare program.","bill.title":"To designate the building utilized as a United States courthouse located at 111 South Highland Avenue in Jackson, Tennessee, as the \"James D. Todd United States Courthouse\", and for other purposes.","bill.number":"6310","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6310/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6310/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6310/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6310/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6310/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6310?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUIZ:\nH.R. 6310.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7(c)(1) of Rule XII and Section 3(c) of\nH. Res. 5 the following statements are submitted regarding\n(1) the specific powers granted to Congress in the U.S.\nConstitution to enact the accompanying bill or joint\nresolution and (2) the single subject of the bill or joint\nresolution.\nThe single subject of this legislation is:\nExtend Incentive Payments for Participation in Eligible\nAlternative Payment Models under the Medicare Program.\n[Page H5653]\n","sponsors.0.district":25,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":8,"sponsors.0.firstName":"Raul","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6310/text?format=json","bill.sponsors.0.lastName":"Kustoff"}} +{"type":"node","id":"8868","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6320/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"VELAZQUEZ","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Commerce","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6320/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6320","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RICE of South Carolina:\nH.R. 6320.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6320/cosponsors?format=json","sponsors.0.bioguideId":"V000081","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6320/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6320/relatedbills?format=json","latestAction.actionDate":"2023-11-08","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","bill.sponsors.0.bioguideId":"R000597","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6320/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rice, Tom [R-SC-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6320/text?format=json","bill.updateDate":"2025-01-03T07:37:54Z","updateDate":"2024-07-24T15:19:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6320/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","request.billNumber":"6320","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6320/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6320/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:54Z","title":"Increase Small Business Utilization Act of 2023","bill.title":"Anti-Spoofing Penalties Modernization Act of 2021","bill.number":"6320","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6320/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6320/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6320/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000597?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6320/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6320/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6320?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 6320.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nwhich gives Congress the power ``to make all Laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nThis legislation would clarify when federal agencies have\nto utilize small businesses during federal procurements.\n[Page H5653]\n","sponsors.0.district":7,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":7,"sponsors.0.firstName":"NYDIA","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6320/text?format=json","bill.sponsors.0.lastName":"Rice"}} +{"type":"node","id":"8869","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-12-17","cboCostEstimates.0.pubDate":"2024-03-06T21:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6316/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6316","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 6316.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6316/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6316/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6316/relatedbills?format=json","latestAction.actionDate":"2024-03-12","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6316/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-413","bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6316/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2025-01-14T17:12:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6316/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"6316","committees.url":"https://api.congress.gov/v3/bill/118/hr/6316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6316/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"To amend title 40, United States Code, to establish an expiration date of certain committee resolutions with respect to leases or projects, and for other purposes.","bill.title":"Clean Cooking Support Act","bill.number":"6316","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on November 15, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60063","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6316/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/413?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6316/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6316/summaries?format=json","cboCostEstimates.0.title":"H.R. 6316, a bill to amend title 40, United States Code, to establish an expiration date of certain committee resolutions with respect to leases or projects, and for other purposes","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6316/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6316/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6316?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 6316.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 18 of\nSection 8 of Article I of the United States Constitution.\nThe single subject of this legislation is:\nPublic Buildings\n[Page H5653]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2025-01-14T17:12:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6316/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8870","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6314/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6314/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6314","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 6314.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6314/cosponsors?format=json","sponsors.0.bioguideId":"S000510","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6314/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-08","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6314/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6314/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6314/text?format=json","bill.updateDate":"2025-01-03T07:37:54Z","updateDate":"2024-07-24T15:19:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6314/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","request.billNumber":"6314","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6314/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6314/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:54Z","title":"Voluntary Grazing Permit Retirement Act","bill.title":"Reforming Broadband Connectivity Act of 2021","bill.number":"6314","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6314/committees?format=json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6314/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6314/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6314/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6314/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6314?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 6314.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV Section 3.\nThe single subject of this legislation is:\nTo expand the authorization of voluntary Federal grazing\npermit retirement, provide increased flexibility for Federal\ngrazing permittees, promote the equitable resolution or\navoidance of conflicts on Federal lands managed by the\nDepartment of Agriculture or the Department of the Interior,\nand for other purposes.\n[Page H5653]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6314/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8871","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6308/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Plaskett","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6308/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6308","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 6308.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6308/cosponsors?format=json","sponsors.0.bioguideId":"P000610","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6308/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6308/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Del. Plaskett, Stacey E. [D-VI-At Large]","bill.sponsors.0.bioguideId":"K000381","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6308/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6308/text?format=json","bill.updateDate":"2025-01-03T07:37:59Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6308/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000610?format=json","request.billNumber":"6308","committees.url":"https://api.congress.gov/v3/bill/118/hr/6308/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6308/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:59Z","title":"Farm to School Act of 2023","bill.title":"ACO Assignment Improvement Act of 2021","bill.number":"6308","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6308/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","sponsors.0.middleName":"E.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6308/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6308/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Derek","sponsors.0.state":"VI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6308/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6308/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6308?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PLASKETT:\nH.R. 6308.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo reauthorize and enhance the farm to school program.\n[Page H5653]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Stacey","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6308/text?format=json","bill.sponsors.0.lastName":"Kilmer"}} +{"type":"node","id":"8872","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6305/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luna","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6305/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6305","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 6305.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution.\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6305/cosponsors?format=json","sponsors.0.bioguideId":"L000596","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6305/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6305/relatedbills?format=json","latestAction.actionDate":"2023-11-10","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","bill.sponsors.0.bioguideId":"H001067","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6305/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6305/text?format=json","bill.updateDate":"2025-01-03T07:37:59Z","updateDate":"2025-02-06T20:56:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6305/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","request.billNumber":"6305","committees.url":"https://api.congress.gov/v3/bill/118/hr/6305/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6305/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:59Z","title":"Terminate CDC Overreach Act","bill.title":"Protect America’s Biomedical Research Enterprise Act of 2021","bill.number":"6305","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6305/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6305/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6305/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Richard","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6305/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6305/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6305?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 6305.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\nThe single subject of this legislation is:\nThis bill would limit the authority that the CDC can take\nin the event of an emergency.\n[Page H5653]\n","sponsors.0.district":13,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":8,"sponsors.0.firstName":"Anna Paulina","bill.type":"HR","updateDateIncludingText":"2025-02-06T20:56:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6305/text?format=json","bill.sponsors.0.lastName":"Hudson"}} +{"type":"node","id":"8873","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6302/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Huffman","bill.latestAction.actionDate":"2021-12-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6302/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6302","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LOIS FRANKEL of Florida:\nH.R. 6302.\nCongress has the power to enact this legislation pursuant\nto the following:\nCommerce Clause, Article I, Section 8, Clause 3; Spending\nPower, Article I, Section 8, Clause 1.\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6302/cosponsors?format=json","sponsors.0.bioguideId":"H001068","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6302/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-10","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","bill.sponsors.0.bioguideId":"F000462","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Frankel, Lois [D-FL-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6302/text?format=json","bill.updateDate":"2025-01-03T07:37:54Z","updateDate":"2024-09-24T08:05:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6302/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","request.billNumber":"6302","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6302/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6302/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:54Z","title":"Health Share Transparency Act of 2023","bill.title":"Protecting the Health of America’s Older Adults Act","bill.number":"6302","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6302/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6302/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6302/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000462?format=json","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lois","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6302/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6302/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6302?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\n[Pages H5652-H5653]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 6302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\n[[Page H5653]]\nHealth Shares\n","sponsors.0.district":2,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":21,"sponsors.0.firstName":"Jared","bill.type":"HR","updateDateIncludingText":"2024-09-24T08:05:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6302/text?format=json","bill.sponsors.0.lastName":"Frankel"}} +{"type":"node","id":"8874","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6061/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Radewagen","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6061/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6061","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 6061.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6061/cosponsors?format=json","sponsors.0.bioguideId":"R000600","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6061/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6061/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Del. Radewagen, Aumua Amata Coleman [R-AS-At Large]","bill.sponsors.0.bioguideId":"K000381","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6061/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6061/text?format=json","bill.updateDate":"2025-01-03T07:35:52Z","updateDate":"2024-07-24T15:20:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6061/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000600?format=json","request.billNumber":"6061","committees.url":"https://api.congress.gov/v3/bill/118/hr/6061/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6061/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:52Z","title":"To amend the Immigration and Nationality Act to waive certain naturalization requirements for United States nationals, and for other purposes.","bill.title":"Ocean Acidification Innovation Act of 2021","bill.number":"6061","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6061/committees?format=json","request.format":"json","sponsors.0.middleName":"Coleman","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6061/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6061/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Derek","sponsors.0.state":"AS","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6061/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6061/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6061?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RADEWAGEN:\nH.R. 6061.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nEases requirements for US Nationals from American Samoa to\nnaturalize as US Citizens.\n[Page H5107]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Aumua Amata","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6061/text?format=json","bill.sponsors.0.lastName":"Kilmer"}} +{"type":"node","id":"8875","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6026/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foster","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6026/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6026","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 6026.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6026/cosponsors?format=json","sponsors.0.bioguideId":"F000454","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6026/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6026/relatedbills?format=json","latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","bill.sponsors.0.bioguideId":"D000624","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6026/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6026/text?format=json","bill.updateDate":"2025-01-03T07:35:36Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6026/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","request.billNumber":"6026","committees.url":"https://api.congress.gov/v3/bill/118/hr/6026/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6026/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:36Z","title":"No Cost Educational Resources Act of 2023","bill.title":"Keep Food Containers Safe from PFAS Act of 2021","bill.number":"6026","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6026/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6026/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6026/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6026/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6026/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6026?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 6026.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nThe single subject of this legislation is education.\n[Page H5043]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":12,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6026/text?format=json","bill.sponsors.0.lastName":"Dingell"}} +{"type":"node","id":"8876","labels":["Bill"],"properties":{"relatedBills.count":5,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6050/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hern","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6050/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6050","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 6050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6050/cosponsors?format=json","sponsors.0.bioguideId":"H001082","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6050/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6050/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.sponsors.0.bioguideId":"S000510","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6050/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-08-14T18:47:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6050/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","request.billNumber":"6050","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6050/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6050/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Student Empowerment Act","bill.title":"Aviation Noise and Emissions Mitigation Act","bill.number":"6050","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6050/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6050/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6050/summaries?format=json","bill.cosponsors.count":18,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"ADAM","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6050/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6050/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6050?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 6050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo encourage saving for education\n[Page H5107]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2024-08-14T18:47:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6050/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8877","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6046/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Clyde","bill.latestAction.actionDate":"2021-11-19","cboCostEstimates.0.pubDate":"2024-02-13T19:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6046/summaries?format=json","type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6046","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROUZER:\nH.R. 6046.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\n[Page H6609]\n","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6046/cosponsors?format=json","sponsors.0.bioguideId":"C001116","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6046/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6046/relatedbills?format=json","latestAction.actionDate":"2024-04-17","textVersions.count":2,"bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","bill.sponsors.0.bioguideId":"R000603","amendments.url":"https://api.congress.gov/v3/bill/118/hr/6046/amendments?format=json","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":63,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-404","bill.sponsors.0.fullName":"Rep. Rouzer, David [R-NC-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6046/text?format=json","bill.updateDate":"2025-01-03T07:35:40Z","updateDate":"2024-11-09T04:56:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6046/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","request.billNumber":"6046","committees.url":"https://api.congress.gov/v3/bill/118/hr/6046/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6046/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:40Z","title":"Standing Against Houthi Aggression Act","bill.title":"To amend title 49, United States Code, to allow passenger ferry boats in nonurbanized areas to qualify for certain grants.","bill.number":"6046","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":63,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59968","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6046/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-11-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/404?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6046/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6046/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"H.R. 6046, Standing Against Houthi Aggression Act","bill.titles.count":2,"latestAction.actionTime":"17:59:39","bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000603?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6046/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6046/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6046?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.R. 6046.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1, 3, 10, 11, 12, 15, 16, and 18 of Section 8 of\nArticle I of the Constitution, which grant Congress powers\nrelated to national defense, foreign commerce, military\nforces, war declaration, maritime operations, militia, and\nlaws necessary and proper to effectuate those powers.\nThe single subject of this legislation is:\nThe single subject of this legislation is to impose\nsanctions on the Houthi rebels in Yemen by designating them\nas a foreign terrorist organization.\n[Page H5107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":7,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6046/text?format=json","bill.sponsors.0.lastName":"Rouzer"}} +{"type":"node","id":"8878","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6044/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bonamici","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6044/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6044","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 6044.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6044/cosponsors?format=json","sponsors.0.bioguideId":"B001278","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6044/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6044/relatedbills?format=json","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","bill.sponsors.0.bioguideId":"M001188","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6044/text?format=json","bill.updateDate":"2025-01-03T07:35:41Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6044/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","request.billNumber":"6044","committees.url":"https://api.congress.gov/v3/bill/118/hr/6044/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6044/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:41Z","title":"PARTNERS Act of 2023","bill.title":"FEMA Emergency Management Performance Grants Program Reauthorization Act of 2021","bill.number":"6044","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6044/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6044/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6044/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Grace","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6044/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6044/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6044?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 6044.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nWorkforce development\n[Page H5107]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":6,"sponsors.0.firstName":"Suzanne","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6044/text?format=json","bill.sponsors.0.lastName":"Meng"}} +{"type":"node","id":"8879","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6036/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thanedar","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6036/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Homeland Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6036","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAMB:\nH.R. 6036.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6036/cosponsors?format=json","sponsors.0.bioguideId":"T000488","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6036/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6036/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.sponsors.0.bioguideId":"L000588","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6036/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lamb, Conor [D-PA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6036/text?format=json","bill.updateDate":"2025-01-03T07:35:34Z","updateDate":"2024-07-24T15:19:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6036/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","request.billNumber":"6036","subjects.url":"https://api.congress.gov/v3/bill/117/hr/6036/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6036/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:34Z","title":"To require GAO to conduct annual assessments to determine the extent to which TSA's passenger security screening practices comply with TSA non-discrimination policies to identify any needed actions to improve compliance, and for other purposes.","bill.title":"PATH to College Act","bill.number":"6036","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6036/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6036/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6036/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000588?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Conor","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6036/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6036/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6036?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 6036.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 Article 1 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation will require GAO to conduct annual\nassessments to determine the extent to which TSA's passenger\nsecurity screening practices comply with TSA non-\ndiscrimination policies to identify any needed actions to\nimprove compliance, and for other purposes.\n[Page H5044]\n","sponsors.0.district":13,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Shri","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6036/text?format=json","bill.sponsors.0.lastName":"Lamb"}} +{"type":"node","id":"8880","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5574/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Pettersen","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Taxation","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5574/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":2,"sponsors.0.party":"D","number":"5574","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 179 (Tuesday, October 12, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 5574.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H5632]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5574/cosponsors?format=json","sponsors.0.bioguideId":"P000620","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5574/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5574/relatedbills?format=json","latestAction.actionDate":"2023-09-19","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Pettersen, Brittany [D-CO-7]","bill.sponsors.0.bioguideId":"T000468","bill.originChamber":"House","bill.actions.count":16,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5574/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5574/text?format=json","bill.updateDate":"2025-01-14T18:51:33Z","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5574/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000620?format=json","request.billNumber":"5574","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5574/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5574/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:51:33Z","title":"Natural Disaster Property Protection Act of 2023","bill.title":"TRANSLATE Act","bill.number":"5574","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5574/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5574/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5574/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":8,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5574/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5574/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5574?format=json","bill.introducedDate":"2021-10-12","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PETTERSEN:\nH.R. 5574.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTax\n[Page H4409]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Brittany","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5574/text?format=json","bill.sponsors.0.lastName":"Titus"}} +{"type":"node","id":"8881","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3730/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Smith","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3730/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Kilili Camacho","number":"3730","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 97 (Friday, June 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 3730.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution.\n[Page H2693]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3730/cosponsors?format=json","sponsors.0.bioguideId":"S001172","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3730/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3730/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","bill.sponsors.0.bioguideId":"S001177","bill.originChamber":"House","bill.actions.count":17,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Veterans' Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3730/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3730/text?format=json","bill.updateDate":"2025-01-14T17:02:09Z","updateDate":"2024-12-20T09:06:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3730/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","request.billNumber":"3730","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3730/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3730/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:02:09Z","title":"Rural Health Clinic Burden Reduction Act","bill.title":"To amend title 38, United States Code, to establish in the Department of Veterans Affairs an Advisory Committee on United States Outlying Areas and Freely Associated States, and for other purposes.","bill.number":"3730","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3730/committees?format=json","request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3730/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3730/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-25","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Gregorio","sponsors.0.state":"NE","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3730/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3730/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3730?format=json","bill.introducedDate":"2021-06-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 89 (Thursday, May 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.R. 3730.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nRural Health Care\n[Page H2641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MP","sponsors.0.firstName":"Adrian","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3730/text?format=json","bill.sponsors.0.lastName":"Sablan"}} +{"type":"node","id":"8882","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6048/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DeSaulnier","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Civil Rights and Liberties, Minority Issues","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6048/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Education and the Workforce, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"L.","number":"6048","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUSH:\nH.R. 6048.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6048/cosponsors?format=json","sponsors.0.bioguideId":"D000623","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6048/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","bill.sponsors.0.bioguideId":"R000515","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rush, Bobby L. [D-IL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6048/text?format=json","bill.updateDate":"2025-01-03T07:35:42Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6048/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","request.billNumber":"6048","committees.url":"https://api.congress.gov/v3/bill/118/hr/6048/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6048/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:42Z","title":"Confronting and Correcting Historical Injustices Act","bill.title":"Medicare Stability for Patients and Providers Act","bill.number":"6048","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6048/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6048/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6048/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000515?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"BOBBY","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6048/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6048/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6048?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 6048.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo establish a Commission for review and correction of\nhistorical injustices.\n[Page H5107]\n","sponsors.0.district":10,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6048/text?format=json","bill.sponsors.0.lastName":"RUSH"}} +{"type":"node","id":"8883","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6047/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Craig","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6047/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6047","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 6047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution--to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6047/cosponsors?format=json","sponsors.0.bioguideId":"C001119","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6047/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6047/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","bill.sponsors.0.bioguideId":"R000614","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6047/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6047/text?format=json","bill.updateDate":"2025-01-03T07:35:35Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6047/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","request.billNumber":"6047","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6047/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6047/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:35Z","title":"To require the Postal Service to implement recommendations from the Inspector General of the United States Postal Service for improving identification and notification of undelivered and partially delivered routes, and for other purposes.","bill.title":"Natural Immunity Transparency Act","bill.number":"6047","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6047/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6047/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6047/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chip","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6047/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6047/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6047?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 6047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nUSPS Service Standard Transparency\n[Page H5107]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":21,"sponsors.0.firstName":"Angie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6047/text?format=json","bill.sponsors.0.lastName":"Roy"}} +{"type":"node","id":"8884","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sánchez","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6031/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6031","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6031.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nArticle I, Section 8, Clause 1\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6031/cosponsors?format=json","sponsors.0.bioguideId":"S001156","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6031/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6031/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","bill.sponsors.0.bioguideId":"H001091","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":195,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6031/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6031/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6031/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","request.billNumber":"6031","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6031/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6031/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Safe Schools Improvement Act","bill.title":"HEALING Mothers and Fathers Act","bill.number":"6031","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":195,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6031/committees?format=json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6031/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6031/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Ashley","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6031/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6031/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6031?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 6031.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution, to\n``provide for the common Defence and general Welfare of the\nUnited States.''\nThe single subject of this legislation is:\nEducation\n[Page H5043]\n","sponsors.0.district":38,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Linda","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6031/text?format=json","bill.sponsors.0.lastName":"Hinson"}} +{"type":"node","id":"8885","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6027/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Loudermilk","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6027/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"6027","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 6027.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 3 of the U.S. Constitution,\nwhich gives Congress the power ``to regulate commerce with\nforeign nations, and among the several states, and with the\nIndian tribes.''\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6027/cosponsors?format=json","sponsors.0.bioguideId":"L000583","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6027/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","bill.sponsors.0.bioguideId":"E000215","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6027/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:19:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6027/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","request.billNumber":"6027","committees.url":"https://api.congress.gov/v3/bill/118/hr/6027/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6027/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Exchange Regulatory Improvement Act of 2023","bill.title":"Online Privacy Act of 2021","bill.number":"6027","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6027/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6027/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6027/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"ANNA","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6027/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6027/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6027?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 6027.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo provide the definition of a `facility' of an exchange\nunder 15 U.S.C. 78c(a).\n[Page H5043]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":18,"sponsors.0.firstName":"Barry","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6027/text?format=json","bill.sponsors.0.lastName":"ESHOO"}} +{"type":"node","id":"8886","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Dingell","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6025/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6025","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6025/cosponsors?format=json","sponsors.0.bioguideId":"D000624","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6025/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6025/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","bill.sponsors.0.bioguideId":"D000216","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6025/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6025/text?format=json","bill.updateDate":"2025-01-03T07:35:49Z","updateDate":"2024-07-24T15:19:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6025/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","request.billNumber":"6025","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6025/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6025/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:49Z","title":"Leave No Americans Behind Act of 2023","bill.title":"Flu Vaccine Act","bill.number":"6025","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6025/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6025/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6025/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ROSA","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6025/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6025/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6025?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 6025.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo amend the State Department Basic Authorities Act of 1956\nto eliminate the repatriation loan program, and for other\npurposes.\n[Page H5043]\n","bill.introducedDate":"2021-11-18","sponsors.0.district":6,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":3,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6025/text?format=json","bill.sponsors.0.lastName":"DELAURO"}} +{"type":"node","id":"8887","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6020/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Obernolte","bill.latestAction.actionDate":"2021-11-19","cboCostEstimates.0.pubDate":"2024-12-18T21:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6020/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6020","bill.cosponsors.countIncludingWithdrawnCosponsors":41,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 6020.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6020/cosponsors?format=json","sponsors.0.bioguideId":"O000019","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6020/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6020/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Obernolte, Jay [R-CA-23]","bill.sponsors.0.bioguideId":"B001287","bill.originChamber":"House","bill.actions.count":6,"titles.count":6,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6020/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-611","bill.sponsors.0.fullName":"Rep. Bera, Ami [D-CA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6020/text?format=json","bill.updateDate":"2025-01-03T07:35:35Z","updateDate":"2025-01-30T14:15:17Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6020/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/O000019?format=json","request.billNumber":"6020","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6020/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6020/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:35Z","title":"Honor Our Living Donors Act","bill.title":"Supporting Medicare Providers Act of 2021","bill.number":"6020","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on December 16, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61132","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6020/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/611?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6020/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6020/summaries?format=json","bill.cosponsors.count":41,"cboCostEstimates.0.title":"H.R. 6020, Honor Our Living Donors Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ami","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6020/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6020/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6020?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OBERNOLTE:\nH.R. 6020.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAccess to assistance for organ donations\n[Page H5043]\n","sponsors.0.district":23,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Jay","bill.type":"HR","updateDateIncludingText":"2025-01-30T14:15:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6020/text?format=json","bill.sponsors.0.lastName":"Bera"}} +{"type":"node","id":"8888","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6017/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steel","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6017/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6017","bill.cosponsors.countIncludingWithdrawnCosponsors":30,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\n[Pages H6608-H6609]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 6017.\n[[Page H6609]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6017/cosponsors?format=json","sponsors.0.bioguideId":"S001135","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6017/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6017/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6017/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6017/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6017/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","request.billNumber":"6017","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6017/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6017/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To revoke the waiver determination submitted to Congress on September 11, 2023, with respect to certain sanctions imposed with respect to Iran.","bill.title":"Parental Rights Protection Act","bill.number":"6017","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6017/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6017/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6017/summaries?format=json","bill.cosponsors.count":30,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-10-20","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6017/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6017/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6017?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 173 (Friday, October 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 6017.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nForeign Affairs\n[Page H5039]\n","sponsors.0.district":45,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Michelle","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6017/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"8889","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Radewagen","cboCostEstimates.0.pubDate":"2024-07-30T20:02:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6062/summaries?format=json","bill.relatedBills.count":1,"type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"B.","number":"6062","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"sponsors.0.bioguideId":"R000600","laws.0.number":"118-232","bill.subjects.count":1,"latestAction.actionDate":"2025-01-04","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6062/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Del. Radewagen, Aumua Amata Coleman [R-AS-At Large]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6062/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-564","updateDate":"2025-01-16T05:26:34Z","committees.count":2,"request.billNumber":"6062","committees.url":"https://api.congress.gov/v3/bill/118/hr/6062/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","bill.number":"6062","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the U.S. House of Representatives on July 8, 2024\n","sponsors.0.middleName":"Coleman","latestAction_actionDate":"2021-11-19","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6062/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6062/summaries?format=json","cboCostEstimates.0.title":"H.R. 6062, an act to restore the ability of the people of American Samoa to approve amendments to the territorial constitution based on majority rule in a democratic act of self-determination, as authorized pursuant to an Act of Congress delegating administration of Federal territorial law in the territory to the President, and to the Secretary of the Interior under Executive Order 10264, dated June 29, 1951, under which the Constitution of American Samoa was approved and may be amended without ","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000087?format=json","introducedDate":"2023-10-25","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"CAROLYN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6062/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/6062?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RADEWAGEN:\nH.R. 6062.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nRemoves restrictions on amendments to or modifications of\nthe constitution of American Samoa.\n[Page H5107]\n","bill.sponsors.0.district":12,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6062/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-11-19","latestAction_text":"Referred to the House Committee on Oversight and Reform.","latestAction.text":"Became Public Law No: 118-232.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAROLYN B. MALONEY of New York:\nH.R. 6062.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution of the\nUnited States grants the Congress the power to enact this\nlaw.\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6062/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6062/actions?format=json","textVersions.count":7,"bill.sponsors.0.bioguideId":"M000087","bill.actions.count":3,"titles.count":2,"cosponsors.count":2,"bill.sponsors.0.fullName":"Rep. Maloney, Carolyn B. [D-NY-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6062/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6062/subjects?format=json","request.congress":"118","actions.count":32,"sponsors.0.url":"https://api.congress.gov/v3/member/R000600?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6062/subjects?format=json","title":"To restore the ability of the people of American Samoa to approve amendments to the territorial constitution based on majority rule in a democratic act of self-determination, as authorized pursuant to an Act of Congress delegating administration of Federal territorial law in the territory to the President, and to the Secretary of the Interior under Executive Order 10264, dated June 29, 1951, under which the Constitution of American Samoa was approved and may be amended without requirement for further congressional action, subject to the authority of Congress under the Territorial Clause in article IV, section 3, clause 2 of the United States Constitution.","bill.title":"Hatch Act Accountability Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60587","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6062/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/564?format=json","request.billType":"hr","bill.cosponsors.count":2,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"AS","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6062/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-11-19","sponsors.0.district":12,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"Aumua Amata","updateDateIncludingText":"2025-01-16T05:26:34Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6062/text?format=json","bill.sponsors.0.lastName":"MALONEY"}} +{"type":"node","id":"8890","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6057/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClain","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6057/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"6057","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 6057.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6057/cosponsors?format=json","sponsors.0.bioguideId":"M001136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6057/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6057/text?format=json","bill.updateDate":"2025-01-03T07:35:51Z","updateDate":"2024-07-24T15:20:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6057/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","request.billNumber":"6057","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6057/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6057/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:51Z","title":"Iran Nuclear Verification Act","bill.title":"Tax Simplification for Americans Abroad Act","bill.number":"6057","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6057/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6057/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6057/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6057/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6057/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6057?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 6057.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis legislation is solely for preventing the US from\nreestablishing the JCPOA without Iran allowing UN nuclear\ninspectors from inspecting and confirming that Iran is in\n100% compliance with the JCPOA.\n[Page H5107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6057/text?format=json","bill.sponsors.0.lastName":"Beyer"}} +{"type":"node","id":"8891","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Commerce","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6058/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6058","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DEAN:\nH.R. 6058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6058/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6058/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6058/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"D000631","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","cosponsors.count":3,"request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6058/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Dean, Madeleine [D-PA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6058/text?format=json","bill.updateDate":"2025-01-03T07:35:52Z","updateDate":"2024-07-25T08:06:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6058/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"6058","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6058/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6058/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:52Z","title":"Interagency Committee on Women’s Business Enterprise Act of 2023","bill.title":"PFAS Health Study Act of 2021","bill.number":"6058","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6058/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6058/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6058/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000631?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madeleine","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6058/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6058/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6058?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 6058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nSupporting women in business.\n[Page H5107]\n","sponsors.0.district":6,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2024-07-25T08:06:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6058/text?format=json","bill.sponsors.0.lastName":"Dean"}} +{"type":"node","id":"8892","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6056/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lee","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6056/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6056","bill.cosponsors.countIncludingWithdrawnCosponsors":116,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LETLOW:\nH.R. 6056.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the Constitution of the United\nStates.\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6056/cosponsors?format=json","sponsors.0.bioguideId":"L000590","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6056/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6056/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Lee, Susie [D-NV-3]","bill.sponsors.0.bioguideId":"L000595","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6056/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Letlow, Julia [R-LA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6056/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-14T08:05:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6056/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000590?format=json","request.billNumber":"6056","committees.url":"https://api.congress.gov/v3/bill/118/hr/6056/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6056/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"More Child Care and Jobs for Military Families Act","bill.title":"Parents Bill of Rights Act","bill.number":"6056","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6056/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6056/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6056/summaries?format=json","bill.cosponsors.count":116,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000595?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6056/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6056/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6056?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of Nevada:\nH.R. 6056.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 provides Congress with the\npower to ``lay and collect Taxes, Duties, Imposts and\nExcises'' in order to ``provide for the . . . general Welfare\nof the United States.''\nThe single subject of this legislation is:\nArmed Services\n[Page H5107]\n","sponsors.0.district":3,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Susie","bill.type":"HR","updateDateIncludingText":"2024-08-14T08:05:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6056/text?format=json","bill.sponsors.0.lastName":"Letlow"}} +{"type":"node","id":"8893","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6033/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steel","bill.latestAction.actionDate":"2021-11-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6033/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6033","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON:\nH.R. 6033.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6033/cosponsors?format=json","sponsors.0.bioguideId":"S001135","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6033/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6033/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","bill.sponsors.0.bioguideId":"J000304","bill.originChamber":"House","bill.actions.count":8,"titles.count":10,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6033/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-621","bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6033/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-01-16T06:06:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6033/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","request.billNumber":"6033","committees.url":"https://api.congress.gov/v3/bill/118/hr/6033/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6033/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"SPEAK Act of 2024","bill.title":"CRUCIAL Act of 2021","bill.number":"6033","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6033/committees?format=json","latestAction_actionDate":"2021-11-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/621?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6033/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6033/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":5,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6033/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6033/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6033?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\n[Pages H5043-H5044]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 6033.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H5044]]\nArticle I, Section 8\nThe single subject of this legislation is:\nHealth Care\n","sponsors.0.district":45,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michelle","bill.type":"HR","updateDateIncludingText":"2025-01-16T06:06:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6033/text?format=json","bill.sponsors.0.lastName":"Jackson"}} +{"type":"node","id":"8894","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5858/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"VELAZQUEZ","bill.latestAction.actionDate":"2021-11-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5858/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5858","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 194 (Thursday, November 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 5858.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H6208]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5858/cosponsors?format=json","sponsors.0.bioguideId":"V000081","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5858/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5858/relatedbills?format=json","latestAction.actionDate":"2023-10-06","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","bill.sponsors.0.bioguideId":"B001260","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5858/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5858/text?format=json","bill.updateDate":"2025-01-03T07:34:24Z","updateDate":"2024-07-24T15:20:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5858/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","request.billNumber":"5858","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5858/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5858/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:34:24Z","title":"Ovarian, Cervical, and Endometrial Cancer Awareness Act of 2023","bill.title":"Rachel Booth Act","bill.number":"5858","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5858/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-11-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5858/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5858/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","introducedDate":"2023-09-29","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vern","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5858/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5858/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5858?format=json","bill.introducedDate":"2021-11-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 159 (Friday, September 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 5858.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\nThe single subject of this legislation is:\nHealth\n[Page H4912]\n","sponsors.0.district":7,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":16,"sponsors.0.firstName":"NYDIA","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5858/text?format=json","bill.sponsors.0.lastName":"Buchanan"}} +{"type":"node","id":"8895","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5741/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Flood","bill.latestAction.actionDate":"2021-11-04","sponsors.0.isByRequest":"N","latestAction_text":"Sponsor introductory remarks on measure. (CR H6186)","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5741/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5741","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 188 (Tuesday, October 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 5741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4 of the United States\nConstitution\n[Page H5932]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5741/cosponsors?format=json","sponsors.0.bioguideId":"F000474","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5741/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Flood, Mike [R-NE-1]","bill.sponsors.0.bioguideId":"N000189","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Sponsor introductory remarks on measure. (CR H6186)","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5741/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-20T09:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5741/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000474?format=json","request.billNumber":"5741","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5741/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5741/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Uniform Treatment of Custodial Assets Act","bill.title":"Options Over Terminations Act","bill.number":"5741","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5741/committees?format=json","latestAction_actionDate":"2021-11-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5741/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5741/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2023-09-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"NE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5741/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5741/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5741?format=json","bill.introducedDate":"2021-10-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 157 (Wednesday, September 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FLOOD:\nH.R. 5741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThe bill would standardize the treatment of custodial\nassets for banks, credit unions and trusts.\n[Page H4714]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-11-20T09:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5741/text?format=json","bill.sponsors.0.lastName":"Newhouse"}} +{"type":"node","id":"8896","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5829/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Barr","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5829/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"5829","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 192 (Tuesday, November 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 5829\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H6126]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5829/cosponsors?format=json","sponsors.0.bioguideId":"B001282","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5829/actions?format=json","latestAction.actionDate":"2023-10-06","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","bill.sponsors.0.bioguideId":"T000480","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":38,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5829/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-30T08:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5829/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","request.billNumber":"5829","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5829/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5829/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Health Care Practitioner Disaster Protection Act","bill.title":"COVID–19 Individual Liberty Act of 2021","bill.number":"5829","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":38,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5829/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5829/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5829/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","introducedDate":"2023-09-29","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":4,"bill.sponsors.0.firstName":"William","sponsors.0.state":"KY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5829/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5829/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5829?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 159 (Friday, September 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 5829.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill extends certain liability protections available\nfor health care practitioners who provide voluntary health\ncare services in declared emergencies through a community\nhealth center other than the one that initially sponsored\nthem.\n[Page H4910]\n","sponsors.0.district":6,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":4,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-10-30T08:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5829/text?format=json","bill.sponsors.0.lastName":"Timmons"}} +{"type":"node","id":"8897","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5826/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wilson","bill.latestAction.actionDate":"2021-11-03","cboCostEstimates.0.pubDate":"2023-11-09T18:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5826/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5826","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 192 (Tuesday, November 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROGERS of Alabama:\nH.R. 5826\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H6126]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5826/cosponsors?format=json","sponsors.0.bioguideId":"W000795","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5826/actions?format=json","latestAction.actionDate":"2024-04-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5826/relatedbills?format=json","textVersions.count":3,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","bill.sponsors.0.bioguideId":"R000575","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5826/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rogers, Mike D. [R-AL-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5826/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5826/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","request.billNumber":"5826","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5826/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5826/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"No Paydays for Hostage-Takers Act","bill.title":"To allow States to elect to observe year-round daylight saving time, and for other purposes.","bill.number":"5826","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on October 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59717","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5826/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5826/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5826/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 5826, No Paydays for Hostage-Takers Act","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000575?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":19,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5826/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5826/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5826?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 5826.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article 1. Section 8.\nThe single subject of this legislation is:\nTo require a report on sanctions under the Robert Levinson\nHostage Recovery and Hostage-Taking Accountability Act.\n[Page H4857]\n","sponsors.0.district":2,"bill.sponsors.0.state":"AL","bill.sponsors.0.district":3,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5826/text?format=json","bill.sponsors.0.lastName":"Rogers"}} +{"type":"node","id":"8898","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5820/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5820","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 192 (Tuesday, November 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 5820\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H6125]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5820/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5820/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5820/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"L000589","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5820/text?format=json","bill.updateDate":"2025-01-03T07:33:49Z","updateDate":"2025-01-21T19:51:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5820/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"5820","committees.url":"https://api.congress.gov/v3/bill/118/hr/5820/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5820/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:49Z","title":"Technology for Energy Security Act","bill.title":"To prohibit the use of certain Federal funds to facilitate mandatory vaccination programs, and for other purposes.","bill.number":"5820","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5820/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5820/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5820/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5820/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5820/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5820?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5820.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIt would extend the investment tax credit for qualified\nfuel cells until January 1, 2033.\n[Page H4857]\n","sponsors.0.district":24,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":8,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2025-01-21T19:51:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5820/text?format=json","bill.sponsors.0.lastName":"Lesko"}} +{"type":"node","id":"8899","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5816/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5816/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5816","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5816/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5816/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"G000552","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5816/text?format=json","bill.updateDate":"2025-01-03T07:33:45Z","updateDate":"2024-06-11T16:02:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5816/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5816","committees.url":"https://api.congress.gov/v3/bill/118/hr/5816/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5816/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:45Z","title":"Eviction Protection Act of 2023","bill.title":"National Informed Consent Exemption (NICE) Act","bill.number":"5816","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5816/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","sponsors.0.middleName":"B.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5816/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5816/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5816/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5816/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H4856]\n","bill.introducedDate":"2021-11-02","sponsors.0.district":28,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-06-11T16:02:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5816/text?format=json","bill.sponsors.0.lastName":"Gohmert"}} +{"type":"node","id":"8900","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5812/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sánchez","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5812/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5812","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5812/cosponsors?format=json","sponsors.0.bioguideId":"S001156","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5812/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5812/relatedbills?format=json","latestAction.actionDate":"2023-09-29","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","bill.sponsors.0.bioguideId":"R000614","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5812/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5812/text?format=json","bill.updateDate":"2025-01-03T07:33:47Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5812/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","request.billNumber":"5812","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5812/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5812/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:47Z","title":"No Glory for Hate Act","bill.title":"National Patient ID Repeal Act","bill.number":"5812","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5812/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5812/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5812/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":2,"bill.sponsors.0.firstName":"Chip","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5812/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5812/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5812?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 5812.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution, to\n``provide for the common defence and general welfare of the\nUnited States.''\nThe single subject of this legislation is:\nGovernment oversight\n[Page H4856]\n","bill.introducedDate":"2021-11-02","sponsors.0.district":38,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":21,"sponsors.0.firstName":"Linda","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5812/text?format=json","bill.sponsors.0.lastName":"Roy"}} +{"type":"node","id":"8901","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5811/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ryan","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5811/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"5811","bill.cosponsors.countIncludingWithdrawnCosponsors":44,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5811/cosponsors?format=json","sponsors.0.bioguideId":"R000579","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5811/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","bill.sponsors.0.bioguideId":"M001194","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moolenaar, John R. [R-MI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5811/text?format=json","bill.updateDate":"2025-01-03T07:33:48Z","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5811/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","request.billNumber":"5811","committees.url":"https://api.congress.gov/v3/bill/118/hr/5811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5811/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:48Z","title":"Public Safety and Community Support Act","bill.title":"No Vaccine Mandate Act","bill.number":"5811","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5811/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5811/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5811/summaries?format=json","bill.cosponsors.count":44,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001194?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5811/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5811/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5811?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 5811.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nLaw Enforcement\n[Page H4856]\n","sponsors.0.district":18,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":4,"sponsors.0.firstName":"Patrick","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5811/text?format=json","bill.sponsors.0.lastName":"Moolenaar"}} +{"type":"node","id":"8902","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5818/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smith","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5818/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"B.","number":"5818","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5818/cosponsors?format=json","sponsors.0.bioguideId":"S001172","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5818/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5818/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","bill.sponsors.0.bioguideId":"L000557","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5818/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Larson, John B. [D-CT-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5818/text?format=json","bill.updateDate":"2025-01-03T07:33:48Z","updateDate":"2024-12-19T09:05:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5818/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","request.billNumber":"5818","committees.url":"https://api.congress.gov/v3/bill/118/hr/5818/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5818/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:48Z","title":"Medicare IVIG Access Enhancement Act of 2023","bill.title":"Outpatient Surgery Quality and Access Act of 2021","bill.number":"5818","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5818/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5818/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5818/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000557?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"JOHN","sponsors.0.state":"NE","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5818/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5818/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5818?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.R. 5818.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nMedicare reimbursement for certain home infusion services.\n[Page H4857]\n","bill.introducedDate":"2021-11-02","sponsors.0.district":3,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":1,"sponsors.0.firstName":"Adrian","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5818/text?format=json","bill.sponsors.0.lastName":"LARSON"}} +{"type":"node","id":"8903","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5852/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norcross","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5852/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5852","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 193 (Wednesday, November 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 5852.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6179]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5852/cosponsors?format=json","sponsors.0.bioguideId":"N000188","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5852/actions?format=json","latestAction.actionDate":"2023-09-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5852/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Norcross, Donald [D-NJ-1]","bill.sponsors.0.bioguideId":"W000823","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5852/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5852/text?format=json","bill.updateDate":"2025-01-03T07:34:02Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5852/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000188?format=json","request.billNumber":"5852","committees.url":"https://api.congress.gov/v3/bill/118/hr/5852/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5852/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:34:02Z","title":"21st Century SKILLS Act","bill.title":"Extending Limits of U.S. Customs Waters Act","bill.number":"5852","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5852/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5852/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5852/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","introducedDate":"2023-09-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5852/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5852/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5852?format=json","bill.introducedDate":"2021-11-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 159 (Friday, September 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORCROSS:\nH.R. 5852.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Art. 1, Sec. 8, Cl. 18)\nThe single subject of this legislation is:\nWorkforce Development\n[Page H4911]\n","sponsors.0.district":1,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":6,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5852/text?format=json","bill.sponsors.0.lastName":"Waltz"}} +{"type":"node","id":"8904","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mann","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5850/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Scott","number":"5850","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 193 (Wednesday, November 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHNEIDER:\nH.R. 5850.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6179]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5850/cosponsors?format=json","sponsors.0.bioguideId":"M000871","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5850/actions?format=json","latestAction.actionDate":"2023-10-06","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Mann, Tracey [R-KS-1]","bill.sponsors.0.bioguideId":"S001190","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Schneider, Bradley Scott [D-IL-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5850/text?format=json","bill.updateDate":"2025-01-03T07:34:04Z","updateDate":"2024-07-24T15:20:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5850/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M000871?format=json","request.billNumber":"5850","committees.url":"https://api.congress.gov/v3/bill/118/hr/5850/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5850/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:34:04Z","title":"To nullify modifications made by the Food and Drug Administration on January 3, 2023, to the risk evaluation and mitigation strategy under section 505-1 of the Federal Food, Drug, and Cosmetic Act (21 U.S.C. 355-1) for mifepristone, and for other purposes.","bill.title":"Impacts and Outcomes for Health Career Training Act","bill.number":"5850","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5850/committees?format=json","request.format":"json","sponsors.0.middleName":"Scott","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5850/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5850/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001190?format=json","introducedDate":"2023-09-29","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bradley","sponsors.0.state":"KS","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5850/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5850/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5850?format=json","bill.introducedDate":"2021-11-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 159 (Friday, September 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MANN:\nH.R. 5850.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following--Article 1, Section 8 of the U.S.\nConstitution.\nThe single subject of this legislation is:\nTo prohibit the use of federal funds for implementing REMS\nfor Mifepristone and to nullify the January 2023 REMS\nmodifications for mifepristone.\n[Page H4911]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":10,"sponsors.0.firstName":"Tracey","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5850/text?format=json","bill.sponsors.0.lastName":"Schneider"}} +{"type":"node","id":"8905","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5834/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DELAURO","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Social Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5834/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5834","bill.cosponsors.countIncludingWithdrawnCosponsors":55,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 193 (Wednesday, November 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRADY:\nH.R. 5834.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution to\n``provide for the common Defence and general Welfare of the\nUnited States.''\n[Page H6179]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5834/cosponsors?format=json","sponsors.0.bioguideId":"D000216","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5834/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-06","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","bill.sponsors.0.bioguideId":"B000755","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Social Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brady, Kevin [R-TX-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5834/text?format=json","bill.updateDate":"2025-01-03T07:34:02Z","updateDate":"2024-06-11T15:41:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5834/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","request.billNumber":"5834","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5834/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5834/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:34:02Z","title":"Johanna’s Law Reauthorization Act","bill.title":"Equal Treatment of Public Servants Act of 2021","bill.number":"5834","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5834/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5834/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5834/summaries?format=json","bill.cosponsors.count":55,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000755?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-09-29","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"KEVIN","sponsors.0.state":"CT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5834/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5834/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5834?format=json","bill.introducedDate":"2021-11-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 159 (Friday, September 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 5834.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the U.S. Constitution\nThe single subject of this legislation is:\nto reauthorize Johanna's Law, which raises awareness of\novarian cancer and other gynecologic cancers.\n[Page H4911]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":8,"sponsors.0.firstName":"ROSA","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:41:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5834/text?format=json","bill.sponsors.0.lastName":"BRADY"}} +{"type":"node","id":"8906","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4252/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Luetkemeyer","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 126.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4252/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":2,"sponsors.0.party":"R","number":"4252","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committeeReports.0.citation":"H. Rept. 117-172","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 114 (Wednesday, June 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVID SCOTT of Georgia:\nH.R. 4252.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. I, Sec. 8, cl. 1 and cl. 18\n[Page H3580]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4252/cosponsors?format=json","sponsors.0.bioguideId":"L000569","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4252/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","bill.sponsors.0.bioguideId":"S001157","bill.originChamber":"House","bill.actions.count":10,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 126.","request.contentType":"application/json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/172?format=json","committeeReports.0.citation":"H. Rept. 117-172","bill.sponsors.0.fullName":"Rep. Scott, David [D-GA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4252/text?format=json","bill.updateDate":"2025-01-03T05:10:33Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4252/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","request.billNumber":"4252","committees.url":"https://api.congress.gov/v3/bill/118/hr/4252/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4252/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:10:33Z","title":"Protecting Education Privacy Act","bill.title":"To provide additional funding for scholarships for students at 1890 institutions.","bill.number":"4252","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4252/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/172?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4252/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4252/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001157?format=json","introducedDate":"2023-06-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"MO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4252/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4252/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4252?format=json","bill.introducedDate":"2021-06-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 108 (Wednesday, June 21, 2023)]\n[House]\n[Pages H3072-H3073]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUETKEMEYER:\nH.R. 4252.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H3073]]\nCongress has the power to enact this legislation pursuant\nto the following: Article 1, Section 8 of the Constitution of\nthe United States\nThe single subject of this legislation is:\nThis legislation clarifies the requirements of authorized\nrepresentatives under the Family Educational Rights and\nPrivacy Act of 1974.\n","sponsors.0.district":3,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Blaine","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4252/text?format=json","bill.sponsors.0.lastName":"Scott"}} +{"type":"node","id":"8907","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5724/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","policyArea.name":"Labor and Employment","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5724/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"P.","number":"5724","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 188 (Tuesday, October 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 5724.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5724/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5724/actions?format=json","latestAction.actionDate":"2023-09-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5724/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5724/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5724/text?format=json","bill.updateDate":"2025-01-23T18:51:26Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5724/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"5724","committees.url":"https://api.congress.gov/v3/bill/118/hr/5724/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5724/subjects?format=json","bill.updateDateIncludingText":"2025-01-23T18:51:26Z","title":"Civic Corps Act of 2023","bill.title":"White House Conference on Food, Nutrition, Hunger, and Health Act","bill.number":"5724","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5724/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5724/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5724/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","introducedDate":"2023-09-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5724/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5724/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5724?format=json","bill.introducedDate":"2021-10-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 156 (Tuesday, September 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 5724.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo establish a pilot program that would establish a\nnational Civic Corps.\n[Page H4501]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5724/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}} +{"type":"node","id":"8908","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5680/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kim","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on General Farm Commodities and Risk Management.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5680/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5680","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 186 (Friday, October 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 5680.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\n[Page H5833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5680/cosponsors?format=json","sponsors.0.bioguideId":"K000394","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5680/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-22","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","bill.sponsors.0.bioguideId":"P000605","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on General Farm Commodities and Risk Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5680/text?format=json","bill.updateDate":"2025-01-03T07:32:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5680/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","request.billNumber":"5680","committees.url":"https://api.congress.gov/v3/bill/118/hr/5680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5680/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:32:37Z","title":"American Volunteering Corporation Act","bill.title":"SWEETER Act","bill.number":"5680","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5680/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5680/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5680/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-09-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5680/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5680/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5680?format=json","bill.introducedDate":"2021-10-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 154 (Friday, September 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 5680.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nService\n[Page H4463]\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5680/text?format=json","bill.sponsors.0.lastName":"Perry"}} +{"type":"node","id":"8909","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5631/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Finstad","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5631/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5631","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 183 (Tuesday, October 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 5681.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n=========================== NOTE ===========================\nOctober 19, 2021, on page H5674, top of the first column, the\nfollowing appeared: By Mr NEGUSE: H.R. 5681. Congress has the\npower to enact this legislation pursuant to the following: Article\n1, Section 8\nThe online version has been corrected to read: By Mr NEGUSE:\nH.R. 5631.\n========================= END NOTE =========================\n[Page H5674]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5631/cosponsors?format=json","sponsors.0.bioguideId":"F000475","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5631/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5631/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5631/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-05T08:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5631/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","request.billNumber":"5631","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5631/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5631/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Producer and Agricultural Credit Enhancement Act of 2023","bill.title":"Tim’s Act","bill.number":"5631","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5631/committees?format=json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5631/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5631/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2023-09-21","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":3,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5631/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5631/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5631?format=json","bill.introducedDate":"2021-10-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 153 (Thursday, September 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 5631.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nmodify limitations on amounts of farm ownership loans and\noperating loans.\n[Page H4457]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5631/text?format=json","bill.sponsors.0.lastName":"Neguse"}} +{"type":"node","id":"8910","labels":["Bill"],"properties":{"congress":118,"bill.cboCostEstimates.0.title":"H.R. 3616, Bear River National Heritage Area Study Act","sponsors.0.lastName":"Trone","cboCostEstimates.0.pubDate":"2021-11-30T21:15:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3616/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"D.","number":"3616","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"sponsors.0.bioguideId":"T000483","bill.subjects.count":8,"latestAction.actionDate":"2023-05-24","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-11-30T21:15:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-165","updateDate":"2024-07-03T08:05:42Z","committees.count":1,"request.billNumber":"3616","committees.url":"https://api.congress.gov/v3/bill/118/hr/3616/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:11:28Z","bill.number":"3616","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on November 2, 2021\n","committeeReports":[],"sponsors.0.middleName":"J.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3616/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3616/summaries?format=json","cboCostEstimates.0.title":"H.R. 3616, Bear River National Heritage Area Study Act","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","introducedDate":"2023-05-23","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Blake","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3616/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/3616?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 87 (Tuesday, May 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 3616.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nThis bill is about requiring the FAA to include medications\nand medical equipment for the emergency treatment of known or\nsuspected opioid overdose in aircraft emergency medical kits.\n[Page H2547]\n","bill.sponsors.0.district":1,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3616/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-11-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-165","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 94 (Friday, May 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 3616.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H2679]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3616/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3616/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"M001213","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on November 2, 2021\n","bill.actions.count":20,"titles.count":2,"cosponsors.count":20,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/165?format=json","bill.sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3616/text?format=json","bill.updateDate":"2025-01-14T17:11:28Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3616/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3616/subjects?format=json","title":"To direct the Administrator of the Federal Aviation Administration to include medications and medical equipment for the emergency treatment of known or suspected opioid overdose in aircraft emergency medical kits, and for other purposes.","bill.title":"Bear River National Heritage Area Study Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57648","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3616/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/165?format=json","request.billType":"hr","bill.cosponsors.count":1,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"MD","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3616/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-05-28","sponsors.0.district":6,"bill.sponsors.0.state":"UT","sponsors.0.firstName":"David","updateDateIncludingText":"2024-07-03T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3616/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57648","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"8911","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pressley","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5810/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Appropriations, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5810","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 192 (Tuesday, November 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nMs. VAN DUYNE:\nH.R. 5810\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nMr. MOOLENAAR\nH.R. 5811\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 9, clause 7: No Money shall be drawn\nfrom the Treasury, but in Consequence of Appropriations made\nby Law; and a regular Statement and Account of the Receipts\nand Expenditures of all public Money shall be published from\ntime to time.\nMr. ROY\nH.R. 5812\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution--to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof.\nMr. BIGGS\nH.R. 5813\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII.\nMr. DONALDS\nH.R. 5814\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nMs. ESHOO\nH.R. 5815\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 2, Clause 3 and Article I, Section 8,\nClauses 3 and 18\nMr. GOHMERT\nH.R. 5816\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nMr. KUSTOFF\nH.R. 5817\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof.\nMr. LARSON of Connecticut\nH.R. 5818\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution\n[Page H6125]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5810/cosponsors?format=json","sponsors.0.bioguideId":"P000617","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5810/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5810/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","bill.sponsors.0.bioguideId":"V000134","bill.actions.count":8,"bill.originChamber":"House","titles.count":3,"cosponsors.count":94,"bill.latestAction.text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5810/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5810/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","request.billNumber":"5810","committees.url":"https://api.congress.gov/v3/bill/118/hr/5810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5810/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Fair Pay for Federal Contractors Act of 2023","bill.title":"To authorize the transfer to Arizona, New Mexico, and Texas of certain materials for the construction of the border wall, and for other purposes.","bill.number":"5810","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":94,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5810/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5810/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5810/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Beth","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5810/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5810/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5810?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PRESSLEY:\nH.R. 5810.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nThe bill will ensure federal contract workers receive back\npay in the event of a government shutdown.\n[Page H4856]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":24,"sponsors.0.firstName":"Ayanna","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5810/text?format=json","bill.sponsors.0.lastName":"Van Duyne"}} +{"type":"node","id":"8912","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4515, Small Business Development Center Cyber Training Act of 2021","sponsors.0.lastName":"Carter","cboCostEstimates.0.pubDate":"2022-02-23T21:44:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4515/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"R.","number":"4515","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"sponsors.0.bioguideId":"C001125","bill.subjects.count":5,"latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4515/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Carter, Troy [D-LA-2]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-02-23T21:44:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4515/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-143","updateDate":"2025-02-04T16:28:27Z","committees.count":1,"request.billNumber":"4515","committees.url":"https://api.congress.gov/v3/bill/118/hr/4515/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:16:56Z","bill.number":"4515","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on November 2, 2021\n","committeeReports":[],"sponsors.0.middleName":"R.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4515/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4515/summaries?format=json","cboCostEstimates.0.title":"H.R. 4515, Small Business Development Center Cyber Training Act of 2021","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","introducedDate":"2023-07-10","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Andrew","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4515/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4515?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 117 (Monday, July 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 4515.\nCongress has the power to enact this legislation pursuant\nto the following:\nSpending Clause, Article 1, Section 8, Cl. 1.\nThe single subject of this legislation is:\nSports grant funding in higher education.\n[Page H3177]\n","bill.sponsors.0.district":2,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4515/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-11-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-143","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 126 (Monday, July 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.R. 4515.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 1 of\nSection 8 of Article I of the United States Constitution,\nwhich provides Congress with the ability to enact legislation\nto provide for the general welfare of the United States.\n[Page H3669]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4515/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4515/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"G000597","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on November 2, 2021\n","bill.actions.count":17,"titles.count":4,"cosponsors.count":18,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/143?format=json","bill.sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4515/text?format=json","bill.updateDate":"2025-01-14T17:16:56Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4515/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4515/subjects?format=json","title":"PRIME Act","bill.title":"Small Business Development Center Cyber Training Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57869","cosponsors.countIncludingWithdrawnCosponsors":18,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4515/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/143?format=json","request.billType":"hr","bill.cosponsors.count":8,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4515/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-19","sponsors.0.district":2,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"Troy","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4515/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57869","bill.sponsors.0.lastName":"Garbarino"}} +{"type":"node","id":"8913","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 3469, Veteran Entrepreneurship Training Act of 2021","sponsors.0.lastName":"Bean","cboCostEstimates.0.pubDate":"2022-03-07T17:24:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3469/summaries?format=json","bill.relatedBills.count":2,"type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"Scott","number":"3469","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"B001314","bill.subjects.count":9,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3469/relatedbills?format=json","latestAction.actionDate":"2023-05-18","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Bean, Aaron [R-FL-4]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-03-07T17:24:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3469/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-139","updateDate":"2025-02-04T16:54:13Z","committees.count":1,"request.billNumber":"3469","committees.url":"https://api.congress.gov/v3/bill/118/hr/3469/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:16:56Z","bill.number":"3469","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on November 2, 2021\n","committeeReports":[],"sponsors.0.middleName":"Scott","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3469/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3469/summaries?format=json","cboCostEstimates.0.title":"H.R. 3469, Veteran Entrepreneurship Training Act of 2021","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001190?format=json","introducedDate":"2023-05-18","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Bradley","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3469/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/3469?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEAN of Florida:\nH.R. 3469.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 18: To make all laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers vested by the Constitution in the Government\nof the United States or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 100 Mathe Avenue in Interlachen, Florida\nas the ``Pamela Jane Rock Post Office Building''.\n[Page H2457]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3469/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-11-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-139","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 89 (Friday, May 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHNEIDER:\nH.R. 3469.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2660]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3469/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3469/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"S001190","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on November 2, 2021\n","bill.actions.count":17,"titles.count":2,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/139?format=json","bill.sponsors.0.fullName":"Rep. Schneider, Bradley Scott [D-IL-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3469/text?format=json","bill.updateDate":"2025-01-14T17:16:56Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3469/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001314?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3469/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 100 Mathe Avenue in Interlachen, Florida, as the \"Pamela Jane Rock Post Office Building\".","bill.title":"Veteran Entrepreneurship Training Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57904","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3469/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/139?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3469/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-05-21","sponsors.0.district":4,"bill.sponsors.0.state":"IL","sponsors.0.firstName":"Aaron","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3469/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57904","bill.sponsors.0.lastName":"Schneider"}} +{"type":"node","id":"8914","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2137/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2137/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2137","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 54 (Tuesday, March 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CUELLAR:\nH.R. 2137.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H1621]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2137/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2137/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2137/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001063","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2137/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cuellar, Henry [D-TX-28]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2137/text?format=json","bill.updateDate":"2025-01-03T04:54:13Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2137/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2137","committees.url":"https://api.congress.gov/v3/bill/118/hr/2137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2137/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:54:13Z","title":"To provide for a limitation on availability of funds for Independent Agencies, Office of Special Counsel, Salaries and Expenses for fiscal year 2024.","bill.title":"Jaime Zapata and Victor Avila Federal Law Enforcement Protection Act","bill.number":"2137","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2137/committees?format=json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2137/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2137/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001063?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Henry","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2137/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2137/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2137?format=json","bill.introducedDate":"2021-03-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2137.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":28,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2137/text?format=json","bill.sponsors.0.lastName":"Cuellar"}} +{"type":"node","id":"8915","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2117/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2117/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2117","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 2117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1613]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":26,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2117/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"W000795","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2117/text?format=json","bill.updateDate":"2025-01-03T04:53:48Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2117/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2117","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2117/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2117/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:48Z","title":"To provide for a limitation on availability of funds for Independent Agencies, General Services Administration, Operating Expenses for fiscal year 2024.","bill.title":"Iran Human Rights and Accountability Act of 2021","bill.number":"2117","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2117/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2117/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2117/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2117/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2117/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2117?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":2,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2117/text?format=json","bill.sponsors.0.lastName":"Wilson"}} +{"type":"node","id":"8916","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2113/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2113/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Gregory","number":"2113","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 2113.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes;\nTo establish an uniform Rule of Naturalization, and uniform\nLaws on the subject of Bankruptcies throughout the United\nStates;\nTo coin Money, regulate the Value thereof, and of foreign\nCoin, and fix the Standard of Weights and Measures;\nTo provide for the Punishment of counterfeiting the\nSecurities and current Coin of.the United States;\nTo establish Post Offices and Post Roads;\nTo promote the Progress of Science and useful Arts, by\nsecuring for limited Times to Authors and Inventors the\nexclusive Right to their respective Writings and Discoveries;\nTo constitute Tribunals inferior to the supreme Court;\nTo define and punish Piracies and Felonies ccimmitted on\nthe high Seas, and Offenses against the Law of Nations;\nTo declare War, grant Letters of Marque and Reprisal, and\nmake Rules concerning Captures on Land and Water;\nTo raise and support Armies, but no Appropriation of Money\nto that Use shall be for a longer Term than two Years; To\nprovide and maintain a Navy;\nTo make Rules for the Government and Regulation of the land\nand naval Forces;\nTo provide for calling forth the Militia to execute the\nLaws of the Union, suppress Insurrections and repel\nInvasions;\nTo provide for organizing; arming, and disciplining, the\nMilitia, and for governing such Part of them as may be\nemployed in the Service of the United States, reserving to\nthe States respectively, the Appointment of the Officers, and\nthe Authority of training the Militia according to the\ndiscipline prescribed by Congress;\nTo exercise exclusive Legislation In all Cases whatsoever,\nover such District (not exceeding ten Miles square) as may,\nby Cession of particular States, and the acceptance of\nCongress, become the Seat of the Government of the United\nStates, and to exercise like Authority over all Places\npurchased .by the Consent of the Legislature of the State in\nwhich the Same shall be, for the Erection of Forts,\nMagazines, Arsenals, dock-Yards, and other needful Buildings;\nAnd\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\n[Page H1613]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2113/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"S001214","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2113/text?format=json","bill.updateDate":"2025-01-03T04:53:48Z","updateDate":"2024-07-24T15:22:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2113/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2113","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2113/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:48Z","title":"To provide for a limitation on availability of funds for Independent Agencies, Federal Permitting Improvement Steering Council, Environmental Review Improvement Fund for fiscal year 2024.","bill.title":"Sanctioning Iranian-Backed Militia Terrorists Act","bill.number":"2113","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2113/committees?format=json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2113/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2113/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"W.","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2113/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2113/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2113?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2113.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":17,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2113/text?format=json","bill.sponsors.0.lastName":"Steube"}} +{"type":"node","id":"8917","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2096/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2096/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"B.","number":"2096","bill.cosponsors.countIncludingWithdrawnCosponsors":63,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAROLYN B. MALONEY of New York:\nH.R. 2096.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution of the\nUnited States (the Necessary and Proper Clause) grants\nCongress the power to enact this law.\n[Page H1613]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2096/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2096/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2096/relatedbills?format=json","latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"M000087","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2096/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Maloney, Carolyn B. [D-NY-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2096/text?format=json","bill.updateDate":"2025-01-03T04:53:53Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2096/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2096","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2096/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2096/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:53Z","title":"To provide for a limitation on availability of funds for District of Columbia, Federal Payment for Defender Services in DC Courts for fiscal year 2024.","bill.title":"SACKLER Act","bill.number":"2096","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2096/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2096/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2096/summaries?format=json","bill.cosponsors.count":63,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000087?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"CAROLYN","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2096/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2096/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2096?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2096.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":12,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2096/text?format=json","bill.sponsors.0.lastName":"MALONEY"}} +{"type":"node","id":"8918","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2092/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2092/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2092","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HORSFORD:\nH.R. 2092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution of the\nUnited States\n[Page H1613]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2092/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2092/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"H001066","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Horsford, Steven [D-NV-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2092/text?format=json","bill.updateDate":"2025-01-03T04:53:44Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2092/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2092","committees.url":"https://api.congress.gov/v3/bill/118/hr/2092/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2092/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:44Z","title":"To provide for a limitation on availability of funds for District of Columbia, Federal Payment for the DC Courts, DC Court of Appeals for fiscal year 2024.","bill.title":"Contraband Elimination and Safety Act of 2021","bill.number":"2092","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2092/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2092/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2092/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001066?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Steven","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2092/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2092/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2092?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1650]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":4,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2092/text?format=json","bill.sponsors.0.lastName":"Horsford"}} +{"type":"node","id":"8919","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2086/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2086/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A. \"Rick\"","number":"2086","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRAWFORD:\nH.R. 2086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\n[Page H1612]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2086/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":24,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2086/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001087","bill.originChamber":"House","bill.actions.count":7,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2086/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2086/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2086","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2086/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2086/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To provide for a limitation on availability of funds for The Judiciary, Court of Appeals, District Courts, and other Judiciary Activities, Court Security for fiscal year 2024.","bill.title":"AGRI Act of 2021","bill.number":"2086","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2086/committees?format=json","request.format":"json","sponsors.0.middleName":"A. \"Rick\"","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2086/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2086/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Eric","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2086/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2086/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2086?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2086/text?format=json","bill.sponsors.0.lastName":"Crawford"}} +{"type":"node","id":"8920","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2085/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2085/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2085","bill.cosponsors.countIncludingWithdrawnCosponsors":64,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 2085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 ``The Congress shall have Power To lay and\ncollect Taxes, Duties, Imposts and Excises, to pay the Debts\nand provide for the common Defence and general Welfare of the\nUnited States.''\n[Page H1612]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2085/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2085/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001080","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Chu, Judy [D-CA-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2085/text?format=json","bill.updateDate":"2025-01-03T04:53:44Z","updateDate":"2024-07-24T15:22:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2085/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2085","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2085/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2085/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:44Z","title":"To provide for a limitation on availability of funds for The Judiciary, Court of Appeals, District Courts, and Other Judiciary Activities, Fees of Jurors and Commissions for fiscal year 2024.","bill.title":"HEART Act of 2021","bill.number":"2085","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2085/committees?format=json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2085/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2085/summaries?format=json","bill.cosponsors.count":64,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Judy","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2085/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2085/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2085?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":27,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2085/text?format=json","bill.sponsors.0.lastName":"Chu"}} +{"type":"node","id":"8921","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2084/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2084/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2084","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAWTHORN:\nH.R. 2084.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8\n[Page H1612]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2084/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2084/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001104","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cawthorn, Madison [R-NC-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2084/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2084/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2084","committees.url":"https://api.congress.gov/v3/bill/118/hr/2084/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2084/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"To provide for a limitation on availability of funds for The Judiciary, Court of Appeals, District Courts, and Other Judiciary Services, Defender Services for fiscal year 2024.","bill.title":"Common-Sense Census Act of 2021","bill.number":"2084","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2084/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2084/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2084/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001104?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Madison","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2084/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2084/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2084?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2084\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":11,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2084/text?format=json","bill.sponsors.0.lastName":"Cawthorn"}} +{"type":"node","id":"8922","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2076/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2076/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"2076","bill.cosponsors.countIncludingWithdrawnCosponsors":57,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 52 (Friday, March 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.R. 2076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1612]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2076/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2076/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001116","bill.originChamber":"House","bill.actions.count":8,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2076/text?format=json","bill.updateDate":"2025-01-03T04:53:52Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2076/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2076","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2076/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:52Z","title":"To provide for a limitation on availability of funds for Executive Office of the President, Special Assistance to the President, Salaries and Expenses for fiscal year 2024.","bill.title":"COVID–19 Border Protection (CBP) Act","bill.number":"2076","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2076/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2076/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2076/summaries?format=json","bill.cosponsors.count":57,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Andrew","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2076/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2076/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2076?format=json","bill.introducedDate":"2021-03-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2076/text?format=json","bill.sponsors.0.lastName":"Clyde"}} +{"type":"node","id":"8923","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2067/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2067/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committees on Foreign Affairs, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2067","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. TRAHAN:\nH.R. 2067.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle. I, Section 8, Clause 18\n[Page H1584]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2067/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2067/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"T000482","bill.actions.count":6,"bill.originChamber":"House","titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Trahan, Lori [D-MA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2067/text?format=json","bill.updateDate":"2025-01-03T04:53:29Z","updateDate":"2024-07-24T15:22:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2067/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2067","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2067/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2067/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:29Z","title":"To provide for a limitation on availability of funds for Executive Office of the President, National Security Council and Homeland Security Council for fiscal year 2024.","bill.title":"MATE Act of 2021","bill.number":"2067","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2067/committees?format=json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2067/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2067/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000482?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lori","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2067/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2067/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2067?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2067.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2067/text?format=json","bill.sponsors.0.lastName":"Trahan"}} +{"type":"node","id":"8924","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2066/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2066/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"2066","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. TORRES of California:\nH.R. 2066.\nCongress has the power to enact this legislation pursuant\nto the following:\nAccording to Article 1: Section 8: Clause 18: of the United\nStates Constitution, seen below, this bill falls within the\nConstitutional Authority of the United States Congress.\nArticle 1: Section 8: Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H1584]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2066/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2066/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2066/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"T000474","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2066/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Norma J. [D-CA-35]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2066/text?format=json","bill.updateDate":"2025-01-03T04:53:36Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2066/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2066","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2066/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2066/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:36Z","title":"To provide for a limitation on availability of funds for Executive Office of the President, Council of Economic Advisors, Salaries and Expenses for fiscal year 2024.","bill.title":"Protect DREAMer Confidentiality Act of 2021","bill.number":"2066","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2066/committees?format=json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2066/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2066/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000474?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Norma","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2066/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2066/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2066?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2066.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":35,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2066/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"8925","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2064/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"H.","number":"2064","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 2064.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause l of the US Constitution\n[Page H1584]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2064/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2064/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"S000522","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","cosponsors.count":4,"request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2064/text?format=json","bill.updateDate":"2025-01-03T04:53:39Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2064/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2064","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2064/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2064/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:39Z","title":"To provide for a limitation on availability of funds for Executive Office of the President, Executive Residence at the White House, Operating Expenses for fiscal year 2024.","bill.title":"TPS and DED Protection Act of 2021","bill.number":"2064","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2064/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2064/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2064/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"CHRISTOPHER","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2064/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2064/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2064?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2064.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nIhe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2064/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"8926","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ross","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2905/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"2905","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2905/cosponsors?format=json","sponsors.0.bioguideId":"R000305","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2905/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","bill.policyArea.name":"Private Legislation","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","bill.sponsors.0.bioguideId":"G000586","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2905/text?format=json","bill.updateDate":"2025-01-03T05:00:08Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2905/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","request.billNumber":"2905","committees.url":"https://api.congress.gov/v3/bill/118/hr/2905/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2905/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:08Z","title":"End Prison Gerrymandering Act","bill.title":"For the relief of Francisca Burciaga-Amaro.","bill.number":"2905","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2905/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2905/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2905/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jesus","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2905/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2905/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2905?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Deborah","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2905/text?format=json","bill.sponsors.0.lastName":"Garcia"}} +{"type":"node","id":"8927","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pressley","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2904/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"2904","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2904/cosponsors?format=json","sponsors.0.bioguideId":"P000617","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2904/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2904/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","bill.policyArea.name":"Private Legislation","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","bill.sponsors.0.bioguideId":"G000586","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":52,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2904/text?format=json","bill.updateDate":"2025-01-03T05:00:08Z","updateDate":"2024-06-11T16:02:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2904/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","request.billNumber":"2904","committees.url":"https://api.congress.gov/v3/bill/118/hr/2904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2904/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:08Z","title":"Anti-Racism in Public Health Act of 2023","bill.title":"For the relief of Jose Garcia Alarcon.","bill.number":"2904","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":52,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2904/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2904/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2904/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":29,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jesus","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2904/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2904/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2904?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Ayanna","bill.type":"HR","updateDateIncludingText":"2024-06-11T16:02:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2904/text?format=json","bill.sponsors.0.lastName":"Garcia"}} +{"type":"node","id":"8928","labels":["Bill"],"properties":{"relatedBills.count":7,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2055/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2055/summaries?format=json","bill.relatedBills.count":7,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2055","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. QUIGLEY:\nH.R. 2055.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\n[Page H1584]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2055/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":52,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2055/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2055/relatedbills?format=json","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"Q000023","bill.originChamber":"House","bill.actions.count":10,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2055/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Quigley, Mike [D-IL-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2055/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2055/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2055","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2055/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2055/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"To provide for a limitation on availability of funds for Department of Treasury, Financial Crimes Enforcement Network, Salaries and Expenses for fiscal year 2024.","bill.title":"Transparency in Government Act of 2021","bill.number":"2055","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2055/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2055/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2055/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":7,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/Q000023?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":7,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2055/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2055/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2055?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2055\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1648]\n","sponsors.0.district":5,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":5,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2055/text?format=json","bill.sponsors.0.lastName":"Quigley"}} +{"type":"node","id":"8929","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2902/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Perry","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2902/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2902","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TAYLOR:\nH.R. 2902.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution:\n``To make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof''\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2902/cosponsors?format=json","sponsors.0.bioguideId":"P000605","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2902/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","bill.sponsors.0.bioguideId":"T000479","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Taylor, Van [R-TX-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2902/text?format=json","bill.updateDate":"2025-01-03T04:59:56Z","updateDate":"2024-07-24T15:22:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2902/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","request.billNumber":"2902","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2902/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2902/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:56Z","title":"Restoring Fuel Market Freedom Act of 2023","bill.title":"Elected Official Lobbying Prohibition Act of 2021","bill.number":"2902","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2902/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2902/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2902/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000479?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Van","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2902/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2902/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2902?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TAYLOR:\nH.R. 2902.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution:\n``To make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof''\n[Page H2128]\n","sponsors.0.district":10,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":3,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2024-09-18T16:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2902/text?format=json","bill.sponsors.0.lastName":"Taylor"}} +{"type":"node","id":"8930","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2901/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"PALLONE","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2901/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2901","bill.cosponsors.countIncludingWithdrawnCosponsors":29,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 2901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2901/cosponsors?format=json","sponsors.0.bioguideId":"P000034","bill.subjects.count":32,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2901/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2901/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Pallone, Frank, Jr. [D-NJ-6]","bill.sponsors.0.bioguideId":"S001211","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2901/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2901/text?format=json","bill.updateDate":"2025-01-03T04:59:56Z","updateDate":"2024-07-24T15:22:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2901/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000034?format=json","request.billNumber":"2901","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2901/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2901/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:56Z","title":"Food Labeling Modernization Act of 2023","bill.title":"EB–5 Reform and Integrity Act of 2021","bill.number":"2901","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2901/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2901/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2901/summaries?format=json","bill.cosponsors.count":29,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Greg","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2901/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2901/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2901?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 2901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H2128]\n","sponsors.0.district":6,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":9,"sponsors.0.firstName":"FRANK","bill.type":"HR","updateDateIncludingText":"2024-11-24T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2901/text?format=json","bill.sponsors.0.lastName":"Stanton"}} +{"type":"node","id":"8931","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2046/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Labor and Employment","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2046/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"2046","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of West Virginia:\nH.R. 2046.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\n[Page H1584]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2046/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":31,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2046/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2046/relatedbills?format=json","latestAction.actionDate":"2023-03-30","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"M001205","bill.originChamber":"House","bill.actions.count":10,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2046/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2046/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2046/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2046","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2046/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2046/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"To provide for a limitation on availability of funds for Related Agencies, Railroad Retirement Board, Dual Benefits Payments Account for fiscal year 2024.","bill.title":"Energy Security Cooperation with Allied Partners in Europe Act of 2021","bill.number":"2046","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2046/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2046/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2046/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":6,"bill.sponsors.0.firstName":"Carol","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2046/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2046/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2046?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2046.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1648]\n","sponsors.0.district":5,"bill.sponsors.0.state":"WV","bill.sponsors.0.district":3,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2046/text?format=json","bill.sponsors.0.lastName":"Miller"}} +{"type":"node","id":"8932","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2893/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lee","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2893/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2893","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2893.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2893/cosponsors?format=json","sponsors.0.bioguideId":"L000590","bill.subjects.count":19,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2893/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Lee, Susie [D-NV-3]","bill.sponsors.0.bioguideId":"O000173","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2893/text?format=json","bill.updateDate":"2025-01-03T05:00:02Z","updateDate":"2024-12-20T09:06:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2893/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/L000590?format=json","request.billNumber":"2893","committees.url":"https://api.congress.gov/v3/bill/118/hr/2893/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2893/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:02Z","title":"Seniors Securing Access to Vital and Essential Prescription Drugs Act","bill.title":"National Police Misuse of Force Investigation Board Act of 2021","bill.number":"2893","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2893/committees?format=json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2893/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2893/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ilhan","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2893/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2893/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2893?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2893.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":5,"sponsors.0.firstName":"Susie","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2893/text?format=json","bill.sponsors.0.lastName":"Omar"}} +{"type":"node","id":"8933","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2892/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Langworthy","bill.latestAction.actionDate":"2021-10-19","cboCostEstimates.0.pubDate":"2024-11-21T22:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2892/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2892","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2892.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2892/cosponsors?format=json","sponsors.0.bioguideId":"L000600","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2892/actions?format=json","latestAction.actionDate":"2024-12-10","textVersions.count":4,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","bill.sponsors.0.bioguideId":"O000173","bill.originChamber":"House","bill.actions.count":4,"titles.count":11,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-814","bill.sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2892/text?format=json","bill.updateDate":"2025-01-03T04:59:57Z","updateDate":"2025-03-13T22:41:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2892/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","request.billNumber":"2892","committees.url":"https://api.congress.gov/v3/bill/118/hr/2892/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2892/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:57Z","title":"WARN Act","bill.title":"Protecting Our Protesters Act of 2021","bill.number":"2892","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":23,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61021","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2892/committees?format=json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-10-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/814?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/2892/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2892/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"H.R. 2892, WARN Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ilhan","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2892/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2892/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2892?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2892.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":23,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":5,"sponsors.0.firstName":"Nicholas","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2892/text?format=json","bill.sponsors.0.lastName":"Omar"}} +{"type":"node","id":"8934","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5410/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lynch","bill.latestAction.actionDate":"2021-09-30","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5410/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"P.","number":"5410","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 170 (Wednesday, September 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 5410.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, Clause 11, Clause\n14, and Clause 18.\n[Page H5552]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5410/cosponsors?format=json","sponsors.0.bioguideId":"L000562","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5410/actions?format=json","latestAction.actionDate":"2023-09-12","textVersions.count":1,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5410/text?format=json","bill.updateDate":"2025-01-03T07:30:19Z","updateDate":"2024-07-24T15:20:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5410/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","request.billNumber":"5410","committees.url":"https://api.congress.gov/v3/bill/118/hr/5410/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5410/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:30:19Z","title":"ECASH Act","bill.title":"National Security Reforms and Accountability Act","bill.number":"5410","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5410/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5410/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5410/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5410/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5410/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5410?format=json","bill.introducedDate":"2021-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 5410.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nTo direct the Secretary of the Treasury to develop and\npilot digital dollar technologies that replicate the privacy\nrespecting features of physical cash.\n[Page H4265]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Stephen","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5410/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}} +{"type":"node","id":"8935","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 2748, Israel Relations Normalization Act of 2021","sponsors.0.lastName":"Burgess","cboCostEstimates.0.pubDate":"2022-01-19T16:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Commerce","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2748/summaries?format=json","type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"Scott","number":"2748","bill.cosponsors.countIncludingWithdrawnCosponsors":333,"sponsors":[],"sponsors.0.bioguideId":"B001248","bill.subjects.count":29,"latestAction.actionDate":"2023-04-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2748/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-01-19T16:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2748/relatedbills?format=json","bill.congress":117,"updateDate":"2024-10-23T08:05:24Z","committees.count":1,"request.billNumber":"2748","committees.url":"https://api.congress.gov/v3/bill/118/hr/2748/committees?format=json","bill.updateDateIncludingText":"2025-01-23T13:23:54Z","bill.number":"2748","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2748/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2748/summaries?format=json","cboCostEstimates.0.title":"H.R. 2748, Israel Relations Normalization Act of 2021","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001190?format=json","introducedDate":"2023-04-20","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bradley","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2748/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/2748?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 2748.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nContact lens prescription verification.\n[Page H1910]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2748/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-30","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHNEIDER:\nH.R. 2748.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2748/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2748/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"S001190","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","bill.actions.count":6,"titles.count":3,"cosponsors.count":47,"bill.sponsors.0.fullName":"Rep. Schneider, Bradley Scott [D-IL-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2748/text?format=json","bill.updateDate":"2025-01-23T13:23:54Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2748/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2748/subjects?format=json","title":"Contact Lens Prescription Verification Modernization Act","bill.title":"Israel Relations Normalization Act of 2021","cosponsors.countIncludingWithdrawnCosponsors":47,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57767","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2748/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":332,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2748/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-21","sponsors.0.district":26,"bill.sponsors.0.state":"IL","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-10-23T08:05:24Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2748/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57767","bill.sponsors.0.lastName":"Schneider"}} +{"type":"node","id":"8936","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5102/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 5102, Flights for Freedom Act","bill.textVersions.count":1,"sponsors.0.lastName":"Dingell","bill.latestAction.actionDate":"2021-09-30","cboCostEstimates.0.pubDate":"2021-11-29T16:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5102/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5102","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 150 (Tuesday, August 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5102.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority upon which this bill rests is\nthe power of Congress to make appropriations that place a\ncondition on an expenditure, as enumerated in Article I,\nSection 8, Clause 18 of the United States Constitution.\n[Page H4489]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5102/cosponsors?format=json","sponsors.0.bioguideId":"D000624","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5102/actions?format=json","latestAction.actionDate":"2023-08-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5102/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","bill.sponsors.0.bioguideId":"T000478","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-11-29T16:03:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5102/text?format=json","bill.updateDate":"2025-01-03T07:27:18Z","updateDate":"2024-07-24T15:20:41Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5102/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","request.billNumber":"5102","committees.url":"https://api.congress.gov/v3/bill/118/hr/5102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5102/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:18Z","title":"ABLE MATCH (Making Able a Tool to Combat Hardship) Act","bill.title":"Flights for Freedom Act","bill.number":"5102","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57639","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5102/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5102/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5102/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 5102, Flights for Freedom Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","introducedDate":"2023-08-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Claudia","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5102/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5102/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5102?format=json","bill.introducedDate":"2021-08-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 132 (Tuesday, August 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 5102.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo make it easier for individuals living with disabilities\nwith lower incomes to save.\n[Page H4158]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":22,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5102/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57639","bill.sponsors.0.lastName":"Tenney"}} +{"type":"node","id":"8937","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1311, Energy Diplomacy Act","sponsors.0.lastName":"McClain","cboCostEstimates.0.pubDate":"2022-01-18T16:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1311/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"1311","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"M001136","bill.subjects.count":11,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1311/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-01-18T16:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1311/relatedbills?format=json","bill.congress":117,"updateDate":"2025-02-04T16:28:27Z","committees.count":1,"request.billNumber":"1311","committees.url":"https://api.congress.gov/v3/bill/118/hr/1311/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:48:12Z","bill.number":"1311","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1311/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1311/summaries?format=json","cboCostEstimates.0.title":"H.R. 1311, Energy Diplomacy Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2023-03-01","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"August","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1311/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1311?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to direct the\nSecretary of Education to publish requirements for financial\naid offers to be provided by institutions of higher education\nto enrolled and prospective students.\n[Page H1052]\n","bill.sponsors.0.district":11,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1311/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-30","latestAction_text":"Ordered to be Reported by Voice Vote.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H618]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1311/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1311/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"P000048","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1311/text?format=json","bill.updateDate":"2025-01-03T04:48:12Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1311/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1311/subjects?format=json","title":"College Cost Transparency and Student Protection Act","bill.title":"Energy Diplomacy Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57738","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1311/committees?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1311/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-24","sponsors.0.district":9,"bill.sponsors.0.state":"TX","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1311/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57738","bill.sponsors.0.lastName":"Pfluger"}} +{"type":"node","id":"8938","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5384/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pappas","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5384/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"HOLMES","number":"5384","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 168 (Monday, September 27, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 5384.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H5463]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5384/cosponsors?format=json","sponsors.0.bioguideId":"P000614","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5384/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","bill.sponsors.0.bioguideId":"N000147","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5384/text?format=json","bill.updateDate":"2025-01-03T07:29:49Z","updateDate":"2024-12-19T09:07:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5384/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","request.billNumber":"5384","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5384/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5384/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:29:49Z","title":"Advancing Enrollment and Reducing Drug Costs Act of 2023","bill.title":"Rock Creek National Park Act of 2021","bill.number":"5384","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5384/committees?format=json","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5384/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5384/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"NH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5384/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5384/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5384?format=json","bill.introducedDate":"2021-09-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 5384.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution states that ``Congress shall have the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States or in any Department of Office thereof.''\nThe single subject of this legislation is:\nTo automatically qualify certain Medicaid enrollees for\nlow-income subsidies under the Medicare prescription drug\nbenefit.\n[Page H4264]\n","bill.sponsors.0.state":"DC","sponsors.0.district":1,"sponsors.0.firstName":"Chris","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:07:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5384/text?format=json","bill.sponsors.0.lastName":"NORTON"}} +{"type":"node","id":"8939","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 978, Chai Suthammanont Remembrance Act of 2021","sponsors.0.lastName":"Davidson","cboCostEstimates.0.pubDate":"2021-06-14T20:10:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/978/summaries?format=json","bill.relatedBills.count":3,"type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"E.","number":"978","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"sponsors.0.bioguideId":"D000626","bill.subjects.count":14,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/978/relatedbills?format=json","latestAction.actionDate":"2023-02-10","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.originChamber":"House","bill.latestAction.text":"UNANIMOUS CONSENT REQUEST - Mr. DeSaulnier asked unanimous consent that the ordering of the yeas and nays on the motion that the House suspend the rules and pass the bill H.R. 978 be vacated, to the end that the motion be considered as withdrawn. Agreed to without objection.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-06-14T20:10:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/978/relatedbills?format=json","bill.congress":117,"updateDate":"2025-02-04T16:54:13Z","committees.count":1,"request.billNumber":"978","committees.url":"https://api.congress.gov/v3/bill/118/hr/978/committees?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:13Z","bill.number":"978","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 13, 2021\n","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/978/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/978/summaries?format=json","cboCostEstimates.0.title":"H.R. 978, Chai Suthammanont Remembrance Act of 2021","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","introducedDate":"2023-02-10","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gerald","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/978/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/978?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 28 (Friday, February 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 978.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 17 and 18\nThe single subject of this legislation is:\nGovernment Oversight\n[Page H833]\n","bill.sponsors.0.district":11,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/978/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"UNANIMOUS CONSENT REQUEST - Mr. DeSaulnier asked unanimous consent that the ordering of the yeas and nays on the motion that the House suspend the rules and pass the bill H.R. 978 be vacated, to the end that the motion be considered as withdrawn. Agreed to without objection.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 26 (Thursday, February 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 978.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H502]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/978/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/978/actions?format=json","textVersions.count":1,"bill.latestAction.actionTime":"17:55:12","bill.sponsors.0.bioguideId":"C001078","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 13, 2021\n","bill.actions.count":6,"titles.count":3,"cosponsors.count":11,"latestAction_actionTime":"17:55:12","bill.sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/978/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/978/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/978/subjects?format=json","title":"Drain the Swamp Act of 2023","bill.title":"Chai Suthammanont Remembrance Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57295","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/978/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":11,"latestAction.actionTime":"17:55:12","bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/978/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-11","sponsors.0.district":8,"bill.sponsors.0.state":"VA","sponsors.0.firstName":"Warren","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/978/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57295","bill.sponsors.0.lastName":"Connolly"}} +{"type":"node","id":"8940","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2873, the Affordable Prescriptions for Patients Through Promoting Competition Act of 2021","sponsors.0.lastName":"Luttrell","cboCostEstimates.0.pubDate":"2022-07-22T17:25:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2873/summaries?format=json","bill.relatedBills.count":3,"type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"N.","number":"2873","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"sponsors.0.bioguideId":"L000603","bill.subjects.count":13,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2873/relatedbills?format=json","latestAction.actionDate":"2023-05-22","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 27 - 16.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-07-22T17:25:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2873/relatedbills?format=json","bill.congress":117,"updateDate":"2024-07-24T15:22:28Z","committees.count":1,"request.billNumber":"2873","committees.url":"https://api.congress.gov/v3/bill/118/hr/2873/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:06Z","bill.number":"2873","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2873/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2873/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2873, the Affordable Prescriptions for Patients Through Promoting Competition Act of 2021","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001084?format=json","introducedDate":"2023-04-26","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2873/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/2873?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CICILLINE:\nH.R. 2873.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8\n[Page H2128]\n","bill.sponsors.0.district":1,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2873/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 27 - 16.","latestAction.text":"Referred to the Subcommittee on Indian and Insular Affairs .","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CICILLINE:\nH.R. 2873.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2873/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2873/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001084","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":34,"bill.sponsors.0.fullName":"Rep. Cicilline, David N. [D-RI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2873/text?format=json","bill.updateDate":"2025-01-03T05:00:06Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2873/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2873/subjects?format=json","title":"Tribal Gaming Regulatory Compliance Act","bill.title":"Affordable Prescriptions for Patients Through Promoting Competition Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58327","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2873/committees?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2873/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-28","sponsors.0.district":8,"bill.sponsors.0.state":"RI","sponsors.0.firstName":"Morgan","updateDateIncludingText":"2024-07-24T15:22:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2873/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58327","bill.sponsors.0.lastName":"Cicilline"}} +{"type":"node","id":"8941","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2891, the Preserve Access to Affordable Generics and Biosimilars Act","sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-08-11T22:10:00Z","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2891/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"2891","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"sponsors.0.bioguideId":"J000295","bill.subjects.count":12,"latestAction.actionDate":"2023-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2891/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 28 - 13.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-08-11T22:10:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2891/relatedbills?format=json","bill.congress":117,"updateDate":"2024-10-02T08:06:07Z","committees.count":3,"request.billNumber":"2891","committees.url":"https://api.congress.gov/v3/bill/118/hr/2891/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:05Z","bill.number":"2891","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","latestAction_actionDate":"2021-09-29","sponsors.0.middleName":"P.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2891/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2891/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2891, the Preserve Access to Affordable Generics and Biosimilars Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000002?format=json","introducedDate":"2023-04-26","subjects.count":33,"bill.committees.count":2,"bill.sponsors.0.firstName":"JERROLD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2891/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/2891?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NADLER:\nH.R. 2891.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2128]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2891/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 28 - 13.","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NADLER:\nH.R. 2891.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2891/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2891/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"N000002","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":7,"titles.count":4,"cosponsors.count":130,"bill.sponsors.0.fullName":"Rep. Nadler, Jerrold [D-NY-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2891/text?format=json","bill.updateDate":"2025-01-03T05:00:05Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2891/subjects?format=json","request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2891/subjects?format=json","title":"SAFE Banking Act of 2023","bill.title":"Preserve Access to Affordable Generics and Biosimilars Act","cosponsors.countIncludingWithdrawnCosponsors":130,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58385","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2891/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":7,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2891/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-28","sponsors.0.district":14,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"David","updateDateIncludingText":"2024-10-02T08:06:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2891/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58385","bill.sponsors.0.lastName":"NADLER"}} +{"type":"node","id":"8942","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2883, the Stop Stalling Access to Affordable Medications Act","sponsors.0.lastName":"CLYBURN","cboCostEstimates.0.pubDate":"2022-07-22T17:23:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2883/summaries?format=json","bill.relatedBills.count":1,"type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"S.","number":"2883","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"sponsors.0.bioguideId":"C000537","bill.subjects.count":11,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2883/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Clyburn, James E. [D-SC-6]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 31 - 9.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-07-22T17:23:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2883/relatedbills?format=json","bill.congress":117,"updateDate":"2024-12-20T09:05:49Z","committees.count":1,"request.billNumber":"2883","committees.url":"https://api.congress.gov/v3/bill/118/hr/2883/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:06Z","bill.number":"2883","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2883/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2883/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2883, the Stop Stalling Access to Affordable Medications Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000294?format=json","introducedDate":"2023-04-26","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Hakeem","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2883/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/2883?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JEFFRIES:\nH.R. 2883.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18, to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H2128]\n","bill.sponsors.0.district":8,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2883/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 31 - 9.","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JEFFRIES:\nH.R. 2883.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18, to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2883/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2883/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"J000294","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":8,"bill.sponsors.0.fullName":"Rep. Jeffries, Hakeem S. [D-NY-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2883/text?format=json","bill.updateDate":"2025-01-03T05:00:06Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2883/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C000537?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2883/subjects?format=json","title":"Domestic Reinvestment Act of 2023","bill.title":"Stop Stalling Access to Affordable Medications","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58328","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2883/committees?format=json","request.billType":"hr","bill.cosponsors.count":8,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2883/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-28","sponsors.0.district":6,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-12-20T09:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2883/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58328","bill.sponsors.0.lastName":"Jeffries"}} +{"type":"node","id":"8943","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 5374, SHOP SAFE Act of 2021","sponsors.0.lastName":"MEEKS","cboCostEstimates.0.pubDate":"2022-05-03T15:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5374/summaries?format=json","bill.relatedBills.count":2,"type":"HR","bill.summaries.count":1,"number":"5374","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"M001137","bill.subjects.count":11,"latestAction.actionDate":"2023-09-08","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5374/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Meeks, Gregory W. [D-NY-5]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 30 - 8.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-05-03T15:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5374/relatedbills?format=json","bill.congress":117,"updateDate":"2024-07-24T15:20:32Z","committees.count":1,"request.billNumber":"5374","committees.url":"https://api.congress.gov/v3/bill/118/hr/5374/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:29:45Z","bill.number":"5374","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5374/summaries?format=json","cboCostEstimates.0.title":"H.R. 5374, SHOP SAFE Act of 2021","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000002?format=json","introducedDate":"2023-09-08","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"JERROLD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5374/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/5374?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 145 (Friday, September 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEEKS:\nH.R. 5374.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nTo provide for export approvals for high-performance\ncomputers to India.\n[Page H4231]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5374/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 30 - 8.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 167 (Sunday, September 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NADLER:\nH.R. 5374.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1; Section 8, Clause 3 of the U.S. Constitution,\nwhich gives Congress the power ``[t]o regulate commerce with\nforeign nations, and among the several states, and with the\nIndian tribes.''\n[Page H5178]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5374/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5374/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"N000002","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.sponsors.0.fullName":"Rep. Nadler, Jerrold [D-NY-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5374/text?format=json","bill.updateDate":"2025-01-03T07:29:45Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5374/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001137?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5374/subjects?format=json","title":"Technology Exports to India Act","bill.title":"SHOP SAFE Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58070","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5374/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5374/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-09-26","sponsors.0.district":5,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"GREGORY","updateDateIncludingText":"2024-07-24T15:20:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5374/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58070","bill.sponsors.0.lastName":"NADLER"}} +{"type":"node","id":"8944","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5401/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"D'Esposito","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5401/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5401","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 5401.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress under Article I, Section 8, Clause 3 of the United\nStates Constitution.\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5401/cosponsors?format=json","sponsors.0.bioguideId":"D000632","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5401/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5401/relatedbills?format=json","latestAction.actionDate":"2024-12-18","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. D'Esposito, Anthony [R-NY-4]","bill.sponsors.0.bioguideId":"L000593","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":41,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5401/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-841","bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5401/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2025-01-31T01:41:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5401/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/D000632?format=json","request.billNumber":"5401","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5401/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5401/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"9/11 Memorial and Museum Act","bill.title":"Nuclear Waste Task Force Act of 2021","bill.number":"5401","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5401/committees?format=json","latestAction_actionDate":"2021-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/841?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/5401/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5401/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":15,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5401/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5401/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5401?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. D'ESPOSITO:\nH.R. 5401.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nThe single legislative subject of this bill is ``Monuments\nand Memorials.''\n[Page H4264]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Anthony","bill.type":"HR","updateDateIncludingText":"2025-01-31T01:41:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5401/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"8945","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4686/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"bill.cboCostEstimates.0.title":"H.R. 4686, Cambodia Democracy Act of 2021","sponsors.0.lastName":"Luna","bill.latestAction.actionDate":"2021-09-29","cboCostEstimates.0.pubDate":"2021-09-22T12:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4686/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":2,"sponsors.0.party":"R","number":"4686","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 130 (Monday, July 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CHABOT:\nH.R. 4686.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3908]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4686/cosponsors?format=json","sponsors.0.bioguideId":"L000596","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4686/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4686/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","bill.sponsors.0.bioguideId":"C000266","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on\nJuly 29, 2021\n","bill.originChamber":"House","bill.actions.count":16,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-09-22T12:55:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4686/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Chabot, Steve [R-OH-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4686/text?format=json","bill.updateDate":"2025-01-14T19:00:46Z","updateDate":"2024-07-24T15:21:01Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4686/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","request.billNumber":"4686","committees.url":"https://api.congress.gov/v3/bill/118/hr/4686/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4686/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T19:00:46Z","title":"Flood Insurance Affordability Act","bill.title":"Cambodia Democracy Act of 2021","bill.number":"4686","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on\nJuly 29, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57489","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4686/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-29","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4686/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4686/summaries?format=json","bill.cosponsors.count":7,"cboCostEstimates.0.title":"H.R. 4686, Cambodia Democracy Act of 2021","bill.titles.count":5,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C000266?format=json","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"STEVE","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4686/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4686/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4686?format=json","bill.introducedDate":"2021-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 4686.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8, cl. 1 in conjunction with cl. 18.\nThe single subject of this legislation is:\nRequire FEMA to offer a monthly payment option to National\nFlood Insurance Premium holders.\n[Page H3641]\n","sponsors.0.district":13,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":1,"sponsors.0.firstName":"Anna Paulina","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4686/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57489","bill.sponsors.0.lastName":"CHABOT"}} +{"type":"node","id":"8946","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1693/cosponsors?format=json","congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"Aguilar","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1693/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on the National Intelligence Enterprise.","bill.summaries.count":3,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"1693","bill.cosponsors.countIncludingWithdrawnCosponsors":56,"bill.committeeReports.0.citation":"H. Rept. 117-128","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JEFFRIES:\nH.R. 1693.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 clause 18 of the United\nStates Constitution.\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1693/cosponsors?format=json","sponsors.0.bioguideId":"A000371","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1693/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1693/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Aguilar, Pete [D-CA-33]","bill.sponsors.0.bioguideId":"J000294","bill.originChamber":"House","bill.actions.count":23,"titles.count":4,"cosponsors.count":56,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1693/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/128?format=json","committeeReports.0.citation":"H. Rept. 117-128","bill.sponsors.0.fullName":"Rep. Jeffries, Hakeem S. [D-NY-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1693/text?format=json","bill.updateDate":"2025-01-03T04:50:58Z","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1693/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/A000371?format=json","request.billNumber":"1693","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1693/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1693/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:58Z","title":"REPORT Act of 2023","bill.title":"EQUAL Act of 2021","bill.number":"1693","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":56,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1693/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/128?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1693/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1693/summaries?format=json","bill.cosponsors.count":56,"bill.titles.count":10,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000294?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":3,"bill.sponsors.0.firstName":"Hakeem","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1693/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1693/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1693?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AGUILAR:\nH.R. 1693.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the Executive Branch to report to Congress on\nacts of terrorism.\n[Page H1327]\n","sponsors.0.district":33,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":8,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-03-03T20:01:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1693/text?format=json","bill.sponsors.0.lastName":"Jeffries"}} +{"type":"node","id":"8947","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1228, Libya Stabilization Act","sponsors.0.lastName":"Bishop","cboCostEstimates.0.pubDate":"2021-05-18T15:19:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1228/summaries?format=json","bill.relatedBills.count":1,"type":"HR","bill.summaries.count":2,"bill.sponsors.0.middleName":"E.","number":"1228","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"sponsors.0.bioguideId":"B001311","bill.subjects.count":62,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1228/relatedbills?format=json","latestAction.actionDate":"2023-02-28","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Bishop, Dan [R-NC-8]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-05-18T15:19:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1228/relatedbills?format=json","bill.congress":117,"updateDate":"2024-07-24T15:22:51Z","committees.count":1,"request.billNumber":"1228","committees.url":"https://api.congress.gov/v3/bill/118/hr/1228/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:00:46Z","bill.number":"1228","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on April 21, 2021\n","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1228/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1228/summaries?format=json","cboCostEstimates.0.title":"H.R. 1228, Libya Stabilization Act","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000610?format=json","introducedDate":"2023-02-28","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Theodore","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1228/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1228?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 38 (Tuesday, February 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BISHOP of North Carolina:\nH.R. 1228.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I Section 8\nThe single subject of this legislation is:\nCritical Race Theory\n[Page H971]\n","bill.sponsors.0.district":22,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1228/cosponsors?format=json","bill.textVersions.count":3,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 34 (Tuesday, February 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DEUTCH:\nH.R. 1228.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the U.S. Constitution.\n[Page H588]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1228/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1228/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"D000610","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on April 21, 2021\n","bill.actions.count":17,"titles.count":3,"cosponsors.count":63,"bill.sponsors.0.fullName":"Rep. Deutch, Theodore E. [D-FL-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1228/text?format=json","bill.updateDate":"2025-01-14T19:00:46Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1228/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001311?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1228/subjects?format=json","title":"Combating Racist Training in the Military Act of 2023","bill.title":"Libya Stabilization Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57226","cosponsors.countIncludingWithdrawnCosponsors":63,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1228/committees?format=json","request.format":"json","request.billType":"hr","bill.cosponsors.count":12,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1228/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-23","sponsors.0.district":8,"bill.sponsors.0.state":"FL","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-07-24T15:22:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1228/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57226","bill.sponsors.0.lastName":"Deutch"}} +{"type":"node","id":"8948","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Edwards","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 140.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5323/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":2,"sponsors.0.party":"R","number":"5323","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 164 (Wednesday, September 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 5323.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .''\nIn addition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides:\n``The Congress shall have the Power . . . to pay the Debts\nand provide for the common Defence and general Welfare of the\nUnited States . . .''\nTogether, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\n[Page H5091]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5323/cosponsors?format=json","sponsors.0.bioguideId":"E000246","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5323/actions?format=json","latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5323/relatedbills?format=json","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Edwards, Chuck [R-NC-11]","bill.sponsors.0.bioguideId":"D000216","bill.originChamber":"House","bill.actions.count":13,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 140.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5323/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5323/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2024-08-05T19:33:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5323/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/E000246?format=json","request.billNumber":"5323","committees.url":"https://api.congress.gov/v3/bill/118/hr/5323/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5323/subjects?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"Stop Pot Act of 2023","bill.title":"Iron Dome Supplemental Appropriations Act, 2022","bill.number":"5323","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5323/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5323/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5323/summaries?format=json","bill.titles.count":5,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","introducedDate":"2023-09-01","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"ROSA","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5323/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5323/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5323?format=json","bill.introducedDate":"2021-09-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 141 (Friday, September 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EDWARDS:\nH.R. 5323.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution,\nwhich gives Congress the power ``to regulate commerce with\nforeign nations, among states, and with the Indian tribes.''\nThe single subject of this legislation is:\nThe purpose of this bill is to withhold federal highway\nfunding from States and Tribes that have legalized use and\npossession of marijuana for recreational purposes.\n[Page H4218]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":3,"sponsors.0.firstName":"Chuck","bill.type":"HR","updateDateIncludingText":"2024-08-05T19:33:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5323/text?format=json","bill.sponsors.0.lastName":"DELAURO"}} +{"type":"node","id":"8949","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5394/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Balderson","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5394/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5394","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 5394.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 3\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5394/cosponsors?format=json","sponsors.0.bioguideId":"B001306","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5394/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Balderson, Troy [R-OH-12]","bill.sponsors.0.bioguideId":"B001275","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5394/text?format=json","bill.updateDate":"2025-01-03T07:30:03Z","updateDate":"2024-12-19T09:06:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5394/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/B001306?format=json","request.billNumber":"5394","committees.url":"https://api.congress.gov/v3/bill/118/hr/5394/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5394/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:30:03Z","title":"Expanding Remote Monitoring Access Act","bill.title":"Meaningful Access to Federal Health Plan Claims Data Act of 2021","bill.number":"5394","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5394/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5394/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5394/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Larry","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5394/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5394/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5394?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BALDERSON:\nH.R. 5394.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nSupporting innovation in Medicare.\n[Page H4264]\n","sponsors.0.district":12,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":8,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5394/text?format=json","bill.sponsors.0.lastName":"Bucshon"}} +{"type":"node","id":"8950","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Griffith","bill.latestAction.actionDate":"2021-09-29","cboCostEstimates.0.pubDate":"2024-03-13T21:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5393/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"5393","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAYNE:\nH.R. 5393.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 3--Congress has the ability to\nregulate Commerce with foreign Nations, and among the several\nStates, and with the Indian Tribes.\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5393/cosponsors?format=json","sponsors.0.bioguideId":"G000568","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5393/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","bill.sponsors.0.bioguideId":"P000604","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Payne, Donald M., Jr. [D-NJ-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5393/text?format=json","bill.updateDate":"2025-01-03T07:30:05Z","updateDate":"2025-01-23T08:06:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5393/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","request.billNumber":"5393","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5393/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5393/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:30:05Z","title":"To amend title XVIII of the Social Security Act to ensure fair assessment of pharmacy performance and quality under Medicare part D, and for other purposes.","bill.title":"Eliminating Local News Deserts Act of 2021","bill.number":"5393","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on December 6, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60103","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5393/committees?format=json","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5393/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5393/summaries?format=json","cboCostEstimates.0.title":"H.R. 5393, a bill to amend title XVIII of the Social Security Act to ensure fair assessment of pharmacy performance and quality under Medicare Part D, and for other purposes","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000604?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5393/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5393/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5393?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 5393.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to ensure\nfair assessment of pharmacy performance and quality under\nMedicare part D\n[Page H4264]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":10,"sponsors.0.firstName":"H.","bill.type":"HR","updateDateIncludingText":"2025-01-23T08:06:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5393/text?format=json","bill.sponsors.0.lastName":"Payne"}} +{"type":"node","id":"8951","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5390/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-09-29","cboCostEstimates.0.pubDate":"2024-03-01T18:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5390/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"5390","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 5390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1 provides Congress with the\npower to ``lay and collect Taxes, Duties, Imposts and\nExcises'' in order to ``provide for the . . . general Welfare\nof the United States.''\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5390/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5390/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":4,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"M001214","bill.originChamber":"House","bill.actions.count":7,"titles.count":6,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-499","bill.sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5390/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5390/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":19,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"5390","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5390/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5390/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Critical Infrastructure Manufacturing Feasibility Act","bill.title":"COBRA Subsidy Extension for Workers and Families Act","bill.number":"5390","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on December 6, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60048","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5390/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/499?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5390/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5390/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 5390, Critical Infrastructure Manufacturing Feasibility Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Frank","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5390/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5390/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5390?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 5390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nDirects the Secretary of Commerce to conduct a study on the\nfeasibility of manufacturing more goods in the United States\nthat are key to our critical infrastructure sector.\n[Page H4264]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5390/text?format=json","bill.sponsors.0.lastName":"Mrvan"}} +{"type":"node","id":"8952","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5423/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Harshbarger","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Private Legislation","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5423/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"5423","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 170 (Wednesday, September 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILDEE:\nH.R. 5423.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H5553]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5423/cosponsors?format=json","sponsors.0.bioguideId":"H001086","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5423/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5423/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-12","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","bill.sponsors.0.bioguideId":"K000380","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":16,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5423/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kildee, Daniel T. [D-MI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5423/text?format=json","bill.updateDate":"2025-01-03T07:30:17Z","updateDate":"2024-07-24T15:20:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5423/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","request.billNumber":"5423","committees.url":"https://api.congress.gov/v3/bill/118/hr/5423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5423/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:30:17Z","title":"For the relief of Uwe Romeike, Hannelore Romeike, Daniel Romeike, Lydia Romeike, Josua Romeike, Christian Romeike, and Damaris Romeike.","bill.title":"Solar Energy Manufacturing for America Act","bill.number":"5423","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5423/committees?format=json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5423/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5423/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000380?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5423/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5423/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5423?format=json","bill.introducedDate":"2021-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARSHBARGER:\nH.R. 5423.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nImmigration\n[Page H4265]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Diana","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5423/text?format=json","bill.sponsors.0.lastName":"Kildee"}} +{"type":"node","id":"8953","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Walberg","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5419/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"5419","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 170 (Wednesday, September 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 5419.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H5553]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5419/cosponsors?format=json","sponsors.0.bioguideId":"W000798","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5419/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5419/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-12","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","bill.sponsors.0.bioguideId":"G000586","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5419/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5419/text?format=json","bill.updateDate":"2025-01-03T07:30:21Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5419/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","request.billNumber":"5419","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5419/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5419/committees?format=json","bill.updateDateIncludingText":"2025-01-11T17:27:14Z","title":"Direct Seller and Real Estate Agent Harmonization Act","bill.title":"Bank Merger Review Modernization Act of 2021","bill.number":"5419","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5419/committees?format=json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5419/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5419/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jesus","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5419/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5419/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5419?format=json","bill.introducedDate":"2021-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 5419.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo amend the Fair Labor Standards Act of 1938 to clarify\nthe definition of employee as it relates to direct sellers\nand real estate agents\n[Page H4265]\n","sponsors.0.district":5,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Tim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5419/text?format=json","bill.sponsors.0.lastName":"Garcia"}} +{"type":"node","id":"8954","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Salinas","bill.latestAction.actionDate":"2021-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5157/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5157","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 5157.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, [The Congress shall have Power . . .]\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nArtl.S8.C3 To regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes;\nArtI.S8.C3.1.2 Commerce Among the Several States\nArtI.S8.C18 To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5157/cosponsors?format=json","sponsors.0.bioguideId":"S001226","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5157/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5157/relatedbills?format=json","latestAction.actionDate":"2023-09-25","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","bill.sponsors.0.bioguideId":"C001120","bill.actions.count":7,"bill.originChamber":"House","titles.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","cosponsors.count":1,"request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5157/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5157/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5157/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","request.billNumber":"5157","committees.url":"https://api.congress.gov/v3/bill/118/hr/5157/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5157/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend the Cooperative Forestry Assistance Act of 1978 to reauthorize and expand State-wide assessment and strategies for forest resources.","bill.title":"Direct Primary Care for America Act","bill.number":"5157","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5157/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5157/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5157/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":3,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5157/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5157/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5157?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 5157.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article I, Section 8, clause 3\nThe single subject of this legislation is:\nForest Management Resources\n[Page H4166]\n","sponsors.0.district":6,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":2,"sponsors.0.firstName":"Andrea","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5157/text?format=json","bill.sponsors.0.lastName":"Crenshaw"}} +{"type":"node","id":"8955","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ocasio-Cortez","bill.latestAction.actionDate":"2021-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5154/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5154","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURCHETT:\nH.R. 5154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5154/cosponsors?format=json","sponsors.0.bioguideId":"O000172","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5154/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5154/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-11","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Ocasio-Cortez, Alexandria [D-NY-14]","bill.sponsors.0.bioguideId":"B001309","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":28,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5154/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5154/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/O000172?format=json","request.billNumber":"5154","committees.url":"https://api.congress.gov/v3/bill/118/hr/5154/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5154/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"CHARGE Act of 2023","bill.title":"American Genetic Privacy Act of 2021","bill.number":"5154","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5154/committees?format=json","latestAction_actionDate":"2021-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5154/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5154/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tim","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5154/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5154/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5154?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OCASIO-CORTEZ:\nH.R. 5154.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution\nThe single subject of this legislation is:\nTo require the Federal Energy Regulatory Commission to\npromulgate regulations with respect to regional and\ninterregional transmission planning, and for other purposes.\n[Page H4166]\n","sponsors.0.district":14,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Alexandria","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5154/text?format=json","bill.sponsors.0.lastName":"Burchett"}} +{"type":"node","id":"8956","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5149/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5149/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5149","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 5149.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5149/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5149/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5149/relatedbills?format=json","latestAction.actionDate":"2023-08-04","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"B001287","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5149/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bera, Ami [D-CA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5149/text?format=json","bill.updateDate":"2025-01-03T07:27:41Z","updateDate":"2024-07-24T15:20:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5149/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"5149","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5149/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5149/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:41Z","title":"To direct the Secretary of Defense to carry out a pilot program to provide stipends to certain members separating from the Armed Forces.","bill.title":"Ensuring Access to General Surgery Act of 2021","bill.number":"5149","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5149/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5149/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5149/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ami","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5149/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5149/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5149?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 5149.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to carTy out a pilot\nprogram to provide stipends to certain members separating\nfrom the Armed Forces.\n[Page H4166]\n","sponsors.0.district":2,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5149/text?format=json","bill.sponsors.0.lastName":"Bera"}} +{"type":"node","id":"8957","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5167/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5167/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"5167","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\n[Pages H4506-H4507]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGEVIN:\nH.R. 5167.\n[[Page H4507]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5167/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5167/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"L000559","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Langevin, James R. [D-RI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5167/text?format=json","bill.updateDate":"2025-01-03T07:27:39Z","updateDate":"2024-07-24T15:20:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5167/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"5167","committees.url":"https://api.congress.gov/v3/bill/118/hr/5167/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5167/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:39Z","title":"Protecting Girls with Turner Syndrome Act of 2023","bill.title":"To provide additional emergency support for older foster youth under the John H. Chafee Foster Care Program for Successful Transition to Adulthood, and extend through fiscal year 2022 certain flexibilities provided for the program by division X of the Consolidated Appropriations Act, 2021, and for other purposes.","bill.number":"5167","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5167/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5167/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5167/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000559?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5167/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5167/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5167?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 5167.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo prohibit discrimination by abortion against an unborn\nchild on the basis of Turner syndrome\n[Page H4172]\n","sponsors.0.district":4,"bill.sponsors.0.state":"RI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5167/text?format=json","bill.sponsors.0.lastName":"LANGEVIN"}} +{"type":"node","id":"8958","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5155/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Peters","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5155/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5155","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 5155.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5155/cosponsors?format=json","sponsors.0.bioguideId":"P000608","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5155/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5155/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Peters, Scott H. [D-CA-50]","bill.sponsors.0.bioguideId":"C001080","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":24,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Chu, Judy [D-CA-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5155/text?format=json","bill.updateDate":"2025-01-03T07:27:45Z","updateDate":"2024-11-09T09:05:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5155/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000608?format=json","request.billNumber":"5155","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5155/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5155/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:45Z","title":"Temporary Family Visitation Act","bill.title":"Taxpayer Penalty Protection Act of 2021","bill.number":"5155","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":24,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5155/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","sponsors.0.middleName":"H.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5155/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5155/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Judy","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5155/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5155/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5155?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PETERS:\nH.R. 5155.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nVisitor visas\n[Page H4166]\n","sponsors.0.district":50,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":27,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2024-11-09T09:05:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5155/text?format=json","bill.sponsors.0.lastName":"Chu"}} +{"type":"node","id":"8959","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5159/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sewell","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5159/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5159","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 5159.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5159/cosponsors?format=json","sponsors.0.bioguideId":"S001185","bill.subjects.count":22,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5159/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5159/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":57,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5159/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5159/text?format=json","bill.updateDate":"2025-01-03T07:27:38Z","updateDate":"2024-12-20T09:06:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5159/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","request.billNumber":"5159","committees.url":"https://api.congress.gov/v3/bill/118/hr/5159/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5159/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:38Z","title":"Preserving Access to Home Health Act of 2023","bill.title":"Afghanistan Transparency Act","bill.number":"5159","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":57,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5159/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5159/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5159/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"AL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5159/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5159/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5159?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 5159.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have the power to make all laws which shall\nbe necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof Article I, Section 8, Clause\n18\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to ensure\nstability in payments to home health agencies under the\nMedicare program.\n[Page H4166]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"Terri","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5159/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"8960","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5158/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"International Affairs","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5158/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5158","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 5158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5158/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5158/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5158/relatedbills?format=json","latestAction.actionDate":"2023-08-04","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"C001121","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5158/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5158/text?format=json","bill.updateDate":"2025-01-03T07:27:38Z","updateDate":"2024-08-30T15:16:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5158/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5158","committees.url":"https://api.congress.gov/v3/bill/118/hr/5158/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5158/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:38Z","title":"Accountability for Endless Wars Act of 2023","bill.title":"Accurate Data for Defense (ADD) Resiliency Act","bill.number":"5158","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5158/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5158/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5158/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5158/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5158/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5158?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nForeign policy\n[Page H4166]\n","sponsors.0.district":28,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-30T15:16:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5158/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"8961","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5175/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Emergency Management","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5175/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"5175","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 5175\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5175/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5175/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5175/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-09","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"S001201","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":34,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5175/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5175/text?format=json","bill.updateDate":"2025-01-03T07:27:40Z","updateDate":"2024-08-14T08:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5175/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5175","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5175/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5175/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:40Z","title":"PETSAFE Act of 2023","bill.title":"Incentivizing Solar Deployment Act of 2021","bill.number":"5175","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5175/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5175/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5175/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5175/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5175/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5175?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5175.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEmergency Preparedness\n[Page H4172]\n","sponsors.0.district":28,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-14T08:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5175/text?format=json","bill.sponsors.0.lastName":"Suozzi"}} +{"type":"node","id":"8962","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5160/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sorensen","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5160/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5160","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DAVIDS of Kansas:\nH.R. 5160.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article I, Section 8, Clause 1: ``The\nCongress shall have Power to . . . provide for the . . .\ngeneral welfare of the United States; . . .''\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5160/cosponsors?format=json","sponsors.0.bioguideId":"S001225","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5160/actions?format=json","latestAction.actionDate":"2023-09-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5160/relatedbills?format=json","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Sorensen, Eric [D-IL-17]","bill.sponsors.0.bioguideId":"D000629","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5160/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Davids, Sharice [D-KS-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5160/text?format=json","bill.updateDate":"2025-01-03T07:27:43Z","updateDate":"2024-08-05T18:08:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5160/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001225?format=json","request.billNumber":"5160","committees.url":"https://api.congress.gov/v3/bill/118/hr/5160/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5160/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:43Z","title":"Advancing Research on Agricultural Climate Impacts Act of 2023","bill.title":"Native American Entrepreneurial Opportunity Act","bill.number":"5160","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5160/committees?format=json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5160/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5160/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000629?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Sharice","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5160/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5160/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5160?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SORENSEN:\nH.R. 5160.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nAgriculture\n[Page H4166]\n","sponsors.0.district":17,"bill.sponsors.0.state":"KS","bill.sponsors.0.district":3,"sponsors.0.firstName":"Eric","bill.type":"HR","updateDateIncludingText":"2024-08-05T18:08:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5160/text?format=json","bill.sponsors.0.lastName":"Davids"}} +{"type":"node","id":"8963","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5153/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"5153","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BROWN:\nH.R. 5153.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5153/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5153/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"B001304","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5153/text?format=json","bill.updateDate":"2025-01-03T07:27:45Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5153/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"5153","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5153/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5153/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:45Z","title":"To direct the Secretary of Veterans Affairs to carry out a pilot program to employ veterans in certain wildland firefighting activities.","bill.title":"Defense Software Acquisition Cadre Act of 2021","bill.number":"5153","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5153/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5153/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5153/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5153/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5153/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5153?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 5153.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Veterans Affairs to carry out a\npilot program to employ veterans in certain wildland\nfirefighting activities.\n[Page H4166]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5153/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"8964","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5162/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5162/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5162","bill.cosponsors.countIncludingWithdrawnCosponsors":57,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 5162.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5162/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5162/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5162/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5162/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5162/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5162/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"5162","committees.url":"https://api.congress.gov/v3/bill/118/hr/5162/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5162/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Parity for Alaska Native and Native Hawaiian Students in Agriculture Act","bill.title":"CRT Transparency Act","bill.number":"5162","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5162/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5162/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5162/summaries?format=json","bill.cosponsors.count":57,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5162/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5162/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5162?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 5162.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nAmending the National Agricultural Research, Extension, and\nTeaching Policy Act of 1977 to extend education grant\nprograms for Alaska Native serving institutions and Native\nHawaiian serving institutions.\n[Page H4166]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5162/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}} +{"type":"node","id":"8965","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5166/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Espaillat","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5166/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5166","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAMB:\nH.R. 5166.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5166/cosponsors?format=json","sponsors.0.bioguideId":"E000297","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5166/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","bill.sponsors.0.bioguideId":"L000588","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lamb, Conor [D-PA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5166/text?format=json","bill.updateDate":"2025-01-03T07:27:42Z","updateDate":"2024-07-24T15:20:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5166/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","request.billNumber":"5166","committees.url":"https://api.congress.gov/v3/bill/118/hr/5166/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5166/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:42Z","title":"Protecting Sensitive Locations Act","bill.title":"TREAT Water Act","bill.number":"5166","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5166/committees?format=json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5166/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5166/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000588?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Conor","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5166/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5166/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5166?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 5166.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 4 of section 8 of article 1 of the Constitution; and\nClause 18 of section 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nImmigration\n[Page H4172]\n","sponsors.0.district":13,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Adriano","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5166/text?format=json","bill.sponsors.0.lastName":"Lamb"}} +{"type":"node","id":"8966","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5176/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5176","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 5176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5176/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5176/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"T000460","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5176/text?format=json","bill.updateDate":"2025-01-03T07:27:46Z","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5176/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5176","committees.url":"https://api.congress.gov/v3/bill/118/hr/5176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5176/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:46Z","title":"Affordable and Homeless Housing Incentives Act of 2023","bill.title":"Local Food Production Enhancement Act of 2021","bill.number":"5176","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5176/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5176/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5176/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"MIKE","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5176/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5176/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5176?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H4172]\n","sponsors.0.district":28,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":5,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5176/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"8967","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5177/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5177/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5177","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILD:\nH.R. 5177.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII--Necessary and Proper Clause\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5177/cosponsors?format=json","sponsors.0.bioguideId":"S000510","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5177/actions?format=json","latestAction.actionDate":"2023-08-08","textVersions.count":1,"bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","bill.sponsors.0.bioguideId":"W000826","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wild, Susan [D-PA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5177/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5177/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","request.billNumber":"5177","committees.url":"https://api.congress.gov/v3/bill/118/hr/5177/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5177/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Expanding Service Coordinators Act","bill.title":"SPARK Act","bill.number":"5177","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5177/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5177/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5177/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000826?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Susan","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5177/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5177/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5177?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 5177.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nHousing.\n[Page H4172]\n","sponsors.0.district":9,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":7,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5177/text?format=json","bill.sponsors.0.lastName":"Wild"}} +{"type":"node","id":"8968","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5164/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5164/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"5164","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 5164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8. To make all laws which shall be\nnecessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5164/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5164/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-04","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"G000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5164/text?format=json","bill.updateDate":"2025-01-03T07:27:42Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5164/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"5164","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5164/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:42Z","title":"PAINTER Act","bill.title":"Prohibiting Assistance to the Taliban Act","bill.number":"5164","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5164/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5164/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5164/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Carlos","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5164/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5164/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5164?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 5164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Ethics\n[Page H4166]\n","sponsors.0.district":6,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":26,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5164/text?format=json","bill.sponsors.0.lastName":"Gimenez"}} +{"type":"node","id":"8969","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5172/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5172/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5172","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5172/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5172/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5172/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"R000610","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5172/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5172/text?format=json","bill.updateDate":"2025-01-03T07:27:44Z","updateDate":"2024-12-18T09:05:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5172/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"5172","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5172/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5172/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:44Z","title":"To amend the Consolidated Farm and Rural Development Act to reduce the eligibility requirement for direct farm real estate loans, and for other purposes.","bill.title":"Honoring Purple Heart Recipients Act","bill.number":"5172","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5172/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5172/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5172/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Guy","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5172/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5172/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5172?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nreduce the eligibility requirement for direct farm real\nestate loans, and for other purposes.\n[Page H4172]\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5172/text?format=json","bill.sponsors.0.lastName":"Reschenthaler"}} +{"type":"node","id":"8970","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5174/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ross","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5174/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"5174","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 5174.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5174/cosponsors?format=json","sponsors.0.bioguideId":"R000305","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5174/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","bill.sponsors.0.bioguideId":"S001196","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5174/text?format=json","bill.updateDate":"2025-01-03T07:27:42Z","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5174/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","request.billNumber":"5174","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5174/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5174/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:42Z","title":"United States-Moldova Defense Partnership Act","bill.title":"National Commission on United States Involvement in Afghanistan Act of 2021","bill.number":"5174","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5174/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5174/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5174/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elise","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5174/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5174/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5174?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 5174.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 12 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo support and modernize Moldova's defense needs with the\nsupport of the United States of America.\n[Page H4172]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":21,"sponsors.0.firstName":"Deborah","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5174/text?format=json","bill.sponsors.0.lastName":"Stefanik"}} +{"type":"node","id":"8971","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5152/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"F.","number":"5152","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRENDAN F. BOYLE of Pennsylvania:\nH.R. 5152.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution under the\nGeneral Welfare Clause.\n[Page H4506]\n","sponsors.0.bioguideId":"N000191","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5152/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"B001296","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Boyle, Brendan F. [D-PA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5152/text?format=json","bill.updateDate":"2025-01-03T07:27:46Z","updateDate":"2024-07-24T15:20:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5152/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"5152","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5152/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5152/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:46Z","title":"To direct the Secretary of Defense to establish a program to ensure, under certain conditions, that members of the Armed Forces are automatically enrolled in benefits and services under the laws administered by the Secretary of Veterans Affairs for which such members are eligible.","bill.title":"Higher Education Endowment Tax Reform Act","bill.number":"5152","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5152/committees?format=json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5152/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5152/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001296?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brendan","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5152/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5152/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5152?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 5152.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to establish a program\nto ensure, under certain conditions, that members of the\nArmed Forces are automatically enrolled in benefits and\nservices under the laws administered by the Secretary of\nVeterans Affairs for which such members are eligible.\n[Page H4166]\n","sponsors.0.district":2,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5152/text?format=json","bill.sponsors.0.lastName":"Boyle"}} +{"type":"node","id":"8972","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5161/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5161/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Drew","number":"5161","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 5161.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of article I of the Constitution, to\n``provide for the common defense and general welfare of the\nUnited States.''\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5161/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5161/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5161/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"F000465","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5161/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5161/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"5161","committees.url":"https://api.congress.gov/v3/bill/118/hr/5161/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5161/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Protecting Hunting and Archery in Schools Act of 2023","bill.title":"Expanding Small Employer Pooling Options for Paid Family Leave Act of 2021","bill.number":"5161","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5161/committees?format=json","request.format":"json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5161/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5161/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"A.","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5161/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5161/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5161?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5161.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo protect hunting, archery, and shooting sports in schools\n[Page H4166]\n","sponsors.0.district":24,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5161/text?format=json","bill.sponsors.0.lastName":"Ferguson"}} +{"type":"node","id":"8973","labels":["Bill"],"properties":{"relatedBills.count":33,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4792/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kamlager-Dove","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy and Mineral Resources.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":33,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4792/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4792","bill.cosponsors.countIncludingWithdrawnCosponsors":55,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 133 (Thursday, July 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 4792.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H4293]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4792/cosponsors?format=json","sponsors.0.bioguideId":"K000400","bill.subjects.count":67,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4792/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4792/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":21,"titles.count":5,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4792/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4792/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-20T09:06:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4792/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","request.billNumber":"4792","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4792/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4792/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Childhood Offenders Rehabilitation and Safety Act of 2023","bill.title":"Countering Communist China Act","bill.number":"4792","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4792/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4792/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4792/summaries?format=json","bill.cosponsors.count":55,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-07-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":14,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4792/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4792/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4792?format=json","bill.introducedDate":"2021-07-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 4792.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill.\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare\nThe single subject of this legislation is:\nThis bill will reform the federal juvenile justice system\nto better address the needs of juvenile offenders and provide\nholistic pathways for rehabilitation.\n[Page H3890]\n","sponsors.0.district":37,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Sydney","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4792/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"8974","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lamborn","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4717/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"R","number":"4717","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 131 (Tuesday, July 27, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 4717.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8\n[Page H4090]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4717/cosponsors?format=json","sponsors.0.bioguideId":"L000564","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4717/actions?format=json","latestAction.actionDate":"2023-11-14","textVersions.count":1,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Lamborn, Doug [R-CO-5]","bill.sponsors.0.bioguideId":"O000173","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4717/text?format=json","bill.updateDate":"2025-01-23T13:18:47Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4717/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/L000564?format=json","request.billNumber":"4717","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4717/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4717/committees?format=json","bill.updateDateIncludingText":"2025-01-23T13:18:47Z","title":"Locally Led Restoration Act of 2023","bill.title":"Global Migration Agreement Act","bill.number":"4717","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4717/committees?format=json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4717/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4717/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-18","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ilhan","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4717/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4717/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4717?format=json","bill.introducedDate":"2021-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAMBORN:\nH.R. 4717.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII of the United States Constitution\nThe single subject of this legislation is:\nWildfire mitigation\n[Page H3701]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":5,"sponsors.0.firstName":"Doug","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4717/text?format=json","bill.sponsors.0.lastName":"Omar"}} +{"type":"node","id":"8975","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4632/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pappas","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4632/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"4632","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 4632.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe ``necessary and proper'' clause of Article 1, Section 8\nof the United States Constitution.\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4632/cosponsors?format=json","sponsors.0.bioguideId":"P000614","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4632/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4632/relatedbills?format=json","latestAction.actionDate":"2023-07-13","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","bill.sponsors.0.bioguideId":"C001078","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4632/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4632/text?format=json","bill.updateDate":"2025-01-23T13:18:47Z","updateDate":"2024-11-13T16:18:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4632/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","request.billNumber":"4632","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4632/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4632/committees?format=json","bill.updateDateIncludingText":"2025-01-23T13:18:47Z","title":"National ACERT Grant Program Authorization Act","bill.title":"Passport Backlog Elimination Act","bill.number":"4632","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4632/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4632/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4632/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gerald","sponsors.0.state":"NH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4632/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4632/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4632?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 4632.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution states that ``Congress shall have the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\nThe single subject of this legislation is:\nTo establish a grant program to address adverse childhood\nexperiences associated with exposure to trauma.\n[Page H3577]\n","sponsors.0.district":1,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Chris","bill.type":"HR","updateDateIncludingText":"2024-11-13T16:18:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4632/text?format=json","bill.sponsors.0.lastName":"Connolly"}} +{"type":"node","id":"8976","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4613/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Garamendi","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4613/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"4613","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 128 (Wednesday, July 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. YOUNG:\nH.R. 4613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3; Clause 2\n[Page H3803]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4613/cosponsors?format=json","sponsors.0.bioguideId":"G000559","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4613/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4613/relatedbills?format=json","latestAction.actionDate":"2023-07-13","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","bill.sponsors.0.bioguideId":"Y000033","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4613/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Young, Don [R-AK-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4613/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4613/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","request.billNumber":"4613","committees.url":"https://api.congress.gov/v3/bill/118/hr/4613/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4613/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"American Food for American Schools Act of 2023","bill.title":"American Grown Act","bill.number":"4613","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4613/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4613/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4613/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/Y000033?format=json","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"DON","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4613/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4613/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4613?format=json","bill.introducedDate":"2021-07-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 4613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nAgriculture and Food\n[Page H3576]\n","bill.sponsors.0.state":"AK","sponsors.0.district":8,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4613/text?format=json","bill.sponsors.0.lastName":"YOUNG"}} +{"type":"node","id":"8977","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4561/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Quigley","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4561/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"A.","number":"4561","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 127 (Tuesday, July 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 4561.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H3755]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4561/cosponsors?format=json","sponsors.0.bioguideId":"Q000023","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4561/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4561/relatedbills?format=json","latestAction.actionDate":"2023-07-11","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Quigley, Mike [D-IL-5]","bill.sponsors.0.bioguideId":"G000593","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":59,"bill.latestAction.text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4561/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4561/text?format=json","bill.updateDate":"2025-01-23T13:18:47Z","updateDate":"2024-07-26T08:05:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4561/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/Q000023?format=json","request.billNumber":"4561","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4561/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4561/committees?format=json","bill.updateDateIncludingText":"2025-01-23T13:18:47Z","title":"Reducing Waste in National Parks Act","bill.title":"Entity List Verification Act","bill.number":"4561","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":59,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4561/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4561/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4561/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","introducedDate":"2023-07-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Carlos","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4561/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4561/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4561?format=json","bill.introducedDate":"2021-07-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 118 (Tuesday, July 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. QUIGLEY:\nH.R. 4561.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the US Constitution\nThe single subject of this legislation is:\nTo encourage reduction of disposable plastic products in\nunits of the National Park System, and for other purposes.\n[Page H3208]\n","sponsors.0.district":5,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":26,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-07-26T08:05:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4561/text?format=json","bill.sponsors.0.lastName":"Gimenez"}} +{"type":"node","id":"8978","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4931/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Morelle","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4931/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4931","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4931.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress, under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4931/cosponsors?format=json","sponsors.0.bioguideId":"M001206","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4931/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Morelle, Joseph D. [D-NY-25]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4931/text?format=json","bill.updateDate":"2025-01-03T07:25:36Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4931/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001206?format=json","request.billNumber":"4931","committees.url":"https://api.congress.gov/v3/bill/118/hr/4931/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4931/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:36Z","title":"Pell Grant Flexibility Act","bill.title":"SNORE Act of 2021","bill.number":"4931","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4931/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4931/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4931/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4931/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4931/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4931?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.R. 4931.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8, Clause 1 of the United\nStates Constitution.\nThe single subject of this legislation is:\nThe single subject of this bill is disability.\n[Page H4032]\n","sponsors.0.district":25,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Joseph","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4931/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8979","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4930/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moore","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4930/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4930","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4930.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4930/cosponsors?format=json","sponsors.0.bioguideId":"M001160","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4930/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4930/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4930/text?format=json","bill.updateDate":"2025-01-03T07:25:36Z","updateDate":"2024-12-20T09:05:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4930/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","request.billNumber":"4930","committees.url":"https://api.congress.gov/v3/bill/118/hr/4930/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4930/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:36Z","title":"Opportunities to Support Mothers and Deliver Children Act","bill.title":"SHHH Act","bill.number":"4930","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4930/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4930/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4930/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4930/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4930/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4930?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 4930.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThis bill provides funding for, and requires the Department\nof Health and Human Services to award, grants for\ndemonstration projects to train tow-income individuals to\nwork in the field of pregnancy or childbirth. Grantees must\nbe located in a state that recognizes doulas or midwives as\nhealth care providers and that allows payment for their\nservices in the Medicaid program.\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Gwen","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:05:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4930/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8980","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4929/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4929/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4929","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4929.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4929/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4929/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4929/text?format=json","bill.updateDate":"2025-01-03T07:25:40Z","updateDate":"2024-06-27T08:05:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4929/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"4929","committees.url":"https://api.congress.gov/v3/bill/118/hr/4929/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4929/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:40Z","title":"Strategic Lebanon Security Reporting Act","bill.title":"REST Act of 2021","bill.number":"4929","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4929/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4929/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4929/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4929/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4929/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4929?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 4929.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nLebanon\n[Page H4032]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2024-06-27T08:05:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4929/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8981","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4928/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"MCGOVERN","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4928/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4928","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4928.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4928/cosponsors?format=json","sponsors.0.bioguideId":"M000312","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4928/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4928/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4928/text?format=json","bill.updateDate":"2025-01-03T07:25:39Z","updateDate":"2024-07-24T15:20:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4928/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","request.billNumber":"4928","committees.url":"https://api.congress.gov/v3/bill/118/hr/4928/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4928/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:39Z","title":"National Security Reforms and Accountability Act","bill.title":"RESPECT Act","bill.number":"4928","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4928/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4928/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4928/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":14,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4928/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4928/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4928?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 4928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, Clause 11, Clause\n14, and Clause 18\nThe single subject of this legislation is:\nReforms war powers, the National Emergencies Reform Act,\nand arms exports.\n[Page H4032]\n","sponsors.0.district":2,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"JAMES","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4928/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8982","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4927/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClain","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4927/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4927","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4927.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4927/cosponsors?format=json","sponsors.0.bioguideId":"M001136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4927/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4927/text?format=json","bill.updateDate":"2025-01-03T07:25:36Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4927/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","request.billNumber":"4927","committees.url":"https://api.congress.gov/v3/bill/118/hr/4927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4927/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:36Z","title":"ACES Act of 2023","bill.title":"NOTIFIED Act","bill.number":"4927","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4927/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4927/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4927/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4927/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4927/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4927?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 4927.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nCFIUS overseeing the sale of ByteDance's TikTok and the\ndestruction of ByteDance's American data.\n[Page H4032]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4927/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8983","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Massie","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4926","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","sponsors.0.bioguideId":"M001184","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4926/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4926/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4926/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4926/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","request.billNumber":"4926","committees.url":"https://api.congress.gov/v3/bill/118/hr/4926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4926/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"Members of Congress Pension Opt Out Clarification Act","bill.title":"LEAVE Act","bill.number":"4926","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4926/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4926/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4926/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4926/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4926?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFiscal Reform\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4926/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8984","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4925/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Massie","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4925/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4925","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4925.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4925/cosponsors?format=json","sponsors.0.bioguideId":"M001184","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4925/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4925/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4925/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4925/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","request.billNumber":"4925","committees.url":"https://api.congress.gov/v3/bill/118/hr/4925/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4925/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"EPIC Act","bill.title":"F-AIR Act","bill.number":"4925","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4925/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4925/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4925/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4925/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4925/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4925?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 4925.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFiscal Reform\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4925/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8985","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4924/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Manning","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4924/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4924","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4924.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article l, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4924/cosponsors?format=json","sponsors.0.bioguideId":"M001135","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4924/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4924/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Manning, Kathy E. [D-NC-6]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4924/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4924/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/M001135?format=json","request.billNumber":"4924","committees.url":"https://api.congress.gov/v3/bill/118/hr/4924/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4924/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"Auto Reenroll Act of 2023","bill.title":"APPRISE Act","bill.number":"4924","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4924/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4924/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4924/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4924/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4924/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4924?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MANNING:\nH.R. 4924.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of article I of the Constitution.\nThe single subject of this legislation is:\npermitting employers to re-enroll employees in retirement\nplans.\n[Page H4032]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Kathy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4924/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"8986","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4473/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Arrington","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Health","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4473/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"4473","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 125 (Friday, July 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 4473.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H3633]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4473/cosponsors?format=json","sponsors.0.bioguideId":"A000375","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4473/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4473/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4473/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4473/text?format=json","bill.updateDate":"2025-01-03T07:22:11Z","updateDate":"2024-12-20T09:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4473/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","request.billNumber":"4473","committees.url":"https://api.congress.gov/v3/bill/118/hr/4473/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4473/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:22:11Z","title":"Medicare Patient Access to Cancer Treatment Act","bill.title":"John H. Chafee Blackstone River Valley National Heritage Corridor Reauthorization Act of 2021","bill.number":"4473","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4473/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4473/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4473/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","introducedDate":"2023-07-06","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4473/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4473/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4473?format=json","bill.introducedDate":"2021-07-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 116 (Thursday, July 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 4473.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 8 of the US Constitution\nThe single subject of this legislation is:\nInstitutes site-neutral payments for cancer services within\nthe Medicare Program\n[Page H3172]\n","sponsors.0.district":19,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jodey","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4473/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}} +{"type":"node","id":"8987","labels":["Bill"],"properties":{"relatedBills.count":23,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4502, the Labor, Health and Human Services, Education, Agriculture, Rural Development, Energy and Water Development, Financial Services and General Government, Interior, Environment, Military Construction, Veterans Affairs, Transportation, Housing, a","sponsors.0.lastName":"Mace","cboCostEstimates.0.pubDate":"2023-08-03T19:32:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":23,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4502/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.amendments.count":9,"number":"4502","sponsors":[],"amendments.count":9,"sponsors.0.bioguideId":"M000194","bill.subjects.count":110,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4502/relatedbills?format=json","latestAction.actionDate":"2023-10-03","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-07-23T21:14:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4502/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-96","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57382","updateDate":"2025-02-04T16:54:13Z","committees.count":2,"cboCostEstimates.1.pubDate":"2021-07-23T21:14:00Z","request.billNumber":"4502","committees.url":"https://api.congress.gov/v3/bill/118/hr/4502/committees?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","cboCostEstimates.1.description":"As posted on the House Committee on Rules Website\n","bill.number":"4502","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","committeeReports":[],"latestAction_actionDate":"2021-08-03","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4502/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4502/summaries?format=json","cboCostEstimates.0.title":"H.R. 4502, Modernizing the Acquisition of Cybersecurity Experts Act of 2023","bill.titles.count":28,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","bill.cboCostEstimates.1.url":"https://www.cbo.gov/publication/57382","introducedDate":"2023-07-10","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"ROSA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4502/actions?format=json","bill.cboCostEstimates.1.title":"H.R. 4502, the Labor, Health and Human Services, Education, Agriculture, Rural Development, Energy and Water Development, Financial Services and General Government, Interior, Environment, Military Construction, Veterans Affairs, Transportation, Housing,","url":"https://api.congress.gov/v3/bill/117/hr/4502?format=json","cboCostEstimates.1.title":"H.R. 4502, the Labor, Health and Human Services, Education, Agriculture, Rural Development, Energy and Water Development, Financial Services and General Government, Interior, Environment, Military Construction, Veterans Affairs, Transportation, Housing,","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 117 (Monday, July 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MACE:\nH.R. 4502.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 and Article I, Section 8,\nclause 18\nThe single subject of this legislation is:\nReforming Federal Cyber Workforce Hiring Requirements\n[Page H3177]\n","bill.sponsors.0.district":3,"bill.type":"HR","bill.textVersions.count":3,"bill.latestAction.actionDate":"2021-08-03","latestAction_text":"Received in the Senate.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-96","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4502/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/4502/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4502/actions?format=json","textVersions.count":3,"bill.sponsors.0.bioguideId":"D000216","bill.cboCostEstimates.1.description":"As posted on the House Committee on Rules Website\n","amendments.url":"https://api.congress.gov/v3/bill/117/hr/4502/amendments?format=json","bill.cboCostEstimates.0.description":"As posted on the House Committee on Rules Website\n","bill.actions.count":45,"titles.count":6,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/96?format=json","bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4502/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4502/subjects?format=json","request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4502/subjects?format=json","title":"Modernizing the Acquisition of Cybersecurity Experts Act of 2023","bill.title":"Labor, Health and Human Services, Education, Agriculture, Rural Development, Energy and Water Development, Financial Services and General Government, Interior, Environment, Military Construction, Veterans Affairs, Transportation, and Housing and Urban Development Appropriations Act, 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59420","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4502/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/96?format=json","request.billType":"hr","bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4502/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-19","sponsors.0.district":1,"bill.sponsors.0.state":"CT","sponsors.0.firstName":"Nancy","updateDateIncludingText":"2025-02-04T17:04:03Z","bill.cboCostEstimates.1.pubDate":"2021-07-23T21:14:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4502/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57382","bill.sponsors.0.lastName":"DELAURO"}} +{"type":"node","id":"8988","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4904/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4904/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"4904","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ADAMS:\nH.R. 4904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the Constitution of the United\nStates\n[Page H4312]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4904/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4904/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"A000370","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":24,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Adams, Alma S. [D-NC-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4904/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4904/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"4904","committees.url":"https://api.congress.gov/v3/bill/118/hr/4904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4904/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Build the Wall and Fight Fentanyl Act of 2023","bill.title":"Emergency Child and Adult Nutrition Assistance Act of 2021","bill.number":"4904","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":24,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4904/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4904/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4904/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000370?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alma","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4904/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4904/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4904?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 4904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEstablishes certain funds to construct and maintain\nphysical barriers along the southern international border of\nthe United States and award grants to certain organizations\naddressing the fentanyl crisis.\n[Page H4031]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":12,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4904/text?format=json","bill.sponsors.0.lastName":"Adams"}} +{"type":"node","id":"8989","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4935/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4935/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"4935","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 4935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4935/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4935/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4935/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"W000804","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4935/text?format=json","bill.updateDate":"2025-01-03T07:25:34Z","updateDate":"2024-07-24T15:20:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4935/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"4935","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4935/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4935/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:34Z","title":"To amend the Commodity Exchange Act to adjust the period during which amounts transferred by the Commodity Futures Trading Commission to the account for customer education initiatives and non-awards expenses shall remain available, and for other purposes.","bill.title":"SWOLE Act","bill.number":"4935","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4935/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4935/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4935/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4935/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4935/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4935?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 4935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Commodity Exchange Act to adjust the period\nduring which amounts transferred by the Commodity Futures\nTrading Commission to the account for customer education\ninitiatives and non-awards expenses\n[Page H4032]\n","sponsors.0.district":3,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4935/text?format=json","bill.sponsors.0.lastName":"Wittman"}} +{"type":"node","id":"8990","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4922/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luna","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4922/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4922","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SHERRILL:\nH.R. 4922.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 or Article 1 of the Constitution of\nthe United States of America.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4922/cosponsors?format=json","sponsors.0.bioguideId":"L000596","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4922/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4922/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","bill.sponsors.0.bioguideId":"S001207","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4922/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sherrill, Mikie [D-NJ-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4922/text?format=json","bill.updateDate":"2025-01-03T07:25:38Z","updateDate":"2024-09-17T08:05:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4922/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","request.billNumber":"4922","committees.url":"https://api.congress.gov/v3/bill/118/hr/4922/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4922/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:38Z","title":"Lacey Act Amendments of 2023","bill.title":"RAISE the Roof Act","bill.number":"4922","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4922/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4922/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4922/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001207?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mikie","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4922/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4922/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4922?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 4922.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nAddress loopholes in the Lacey Act that need to be\naddressed including a 2017 D.C. Circuit Court of Appeals\ndecision and granting U.S. Fish and Wildlife Service with\nemergency designation authority of potentially injurious\nspecies.\n[Page H4032]\n","sponsors.0.district":13,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":11,"sponsors.0.firstName":"Anna Paulina","bill.type":"HR","updateDateIncludingText":"2024-09-17T08:05:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4922/text?format=json","bill.sponsors.0.lastName":"Sherrill"}} +{"type":"node","id":"8991","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4934/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4934/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4934","bill.cosponsors.countIncludingWithdrawnCosponsors":73,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 4934.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4934/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4934/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4934/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"W000788","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":73,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4934/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4934/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:20:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4934/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"4934","committees.url":"https://api.congress.gov/v3/bill/118/hr/4934/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4934/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"To direct the Secretary of Defense to establish a standardized training curriculum for military vehicle operations.","bill.title":"Equal Pay for Equal Work Act","bill.number":"4934","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":73,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4934/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4934/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4934/summaries?format=json","bill.cosponsors.count":73,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Nikema","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4934/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4934/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4934?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 4934.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to establish a\nstandardized training curriculum for military vehicle\noperations.\n[Page H4032]\n","sponsors.0.district":2,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4934/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"8992","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4923/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Malliotakis","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4923/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4923","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Missouri:\nH.R. 4923.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4923/cosponsors?format=json","sponsors.0.bioguideId":"M000317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4923/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4923/relatedbills?format=json","latestAction.actionDate":"2023-07-27","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","bill.sponsors.0.bioguideId":"S001195","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4923/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Jason [R-MO-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4923/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-10-15T11:04:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4923/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","request.billNumber":"4923","committees.url":"https://api.congress.gov/v3/bill/118/hr/4923/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4923/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"HOV Lanes for Heroes Act","bill.title":"Love America Act of 2021","bill.number":"4923","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4923/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4923/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4923/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001195?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4923/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4923/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4923?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 4923.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo allow certain veterans to use high occupancy vehicle\nlanes, including toll lanes.\n[Page H4032]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":8,"sponsors.0.firstName":"Nicole","bill.type":"HR","updateDateIncludingText":"2024-10-15T11:04:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4923/text?format=json","bill.sponsors.0.lastName":"Smith"}} +{"type":"node","id":"8993","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4933/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"NAPOLITANO","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4933/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4933","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VELA:\nH.R. 4933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution, Congress has the\npower ``to make all Laws which shall be necessary and proper\nfor carrying into Execution the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or any Department or Officer thereof.''\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4933/cosponsors?format=json","sponsors.0.bioguideId":"N000179","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4933/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Napolitano, Grace F. [D-CA-31]","bill.sponsors.0.bioguideId":"V000132","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":47,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4933/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Vela, Filemon [D-TX-34]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4933/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-19T09:05:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4933/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000179?format=json","request.billNumber":"4933","committees.url":"https://api.congress.gov/v3/bill/118/hr/4933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4933/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Mental Health Professionals Workforce Shortage Loan Repayment Act of 2023","bill.title":"HOME Meals Act","bill.number":"4933","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4933/committees?format=json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4933/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4933/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000132?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Filemon","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4933/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4933/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4933?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. NAPOLITANO:\nH.R. 4933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nMental Health\n[Page H4032]\n","sponsors.0.district":31,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":34,"sponsors.0.firstName":"GRACE","bill.type":"HR","updateDateIncludingText":"2024-11-19T09:05:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4933/text?format=json","bill.sponsors.0.lastName":"Vela"}} +{"type":"node","id":"8994","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4668/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Molinaro","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-09-28T23:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4668/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4668","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 4668.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4668/cosponsors?format=json","sponsors.0.bioguideId":"M001221","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4668/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2023-11-29","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4668/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","bill.sponsors.0.bioguideId":"R000614","bill.originChamber":"House","bill.actions.count":3,"titles.count":10,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4668/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-185","bill.sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4668/text?format=json","bill.updateDate":"2025-01-03T07:23:25Z","updateDate":"2025-01-14T17:16:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4668/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","request.billNumber":"4668","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4668/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4668/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:25Z","title":"POST IT Act of 2023","bill.title":"Restoring Military Focus Act","bill.number":"4668","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Small Business on\nSeptember 1, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59623","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4668/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-07-22","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/185?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4668/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4668/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 4668, POST IT Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chip","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4668/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4668/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4668?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 4668.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 ``The Congress shall have\nPower to . . . provide for the . . . general Welfare of the\nUnited States; . . .''\nThe single subject of this legislation is:\nRequiring SBA to post guidance\n[Page H3641]\n","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":21,"sponsors.0.firstName":"Marcus","bill.type":"HR","updateDateIncludingText":"2025-01-14T17:16:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4668/text?format=json","bill.sponsors.0.lastName":"Roy"}} +{"type":"node","id":"8995","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4621/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4621/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4621","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BALDERSON:\nH.R. 4621.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4621/cosponsors?format=json","sponsors.0.bioguideId":"J000301","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4621/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4621/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","bill.sponsors.0.bioguideId":"B001306","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Balderson, Troy [R-OH-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4621/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-02T23:09:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4621/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","request.billNumber":"4621","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4621/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4621/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Interactive Federal Review Act","bill.title":"To designate the facility of the United States Postal Service located at 102 West Main Street in New Albany, Ohio, as the \"Congressman Samuel L. Devine Post Office\".","bill.number":"4621","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4621/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4621/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4621/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001306?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Troy","sponsors.0.state":"SD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4621/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4621/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4621?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 4621.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo improve the environmental review process for highway\nprojects through the use of interactive, digital, cloudbased\nplatforms.\n[Page H3576]\n","sponsors.0.district":12,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":12,"sponsors.0.firstName":"Dusty","bill.type":"HR","updateDateIncludingText":"2024-10-02T23:09:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4621/text?format=json","bill.sponsors.0.lastName":"Balderson"}} +{"type":"node","id":"8996","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4631/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4631/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4631","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 4631.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 ``The Congress shall have Power To lay and\ncollect Taxes, Duties, Imposts and Excises, to pay the Debts\nand provide for the common Defence and general Welfare of the\nUnited States.''\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4631/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4631/actions?format=json","latestAction.actionDate":"2023-07-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4631/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"C001080","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4631/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Chu, Judy [D-CA-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4631/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4631/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"4631","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4631/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4631/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"MilTax Awareness Act of 2023","bill.title":"POST GRAD Act","bill.number":"4631","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4631/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4631/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4631/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Judy","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4631/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4631/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4631?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 4631.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\nThe single subject of this legislation is:\nMilitary Servicemember Tax Filing\n[Page H3577]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":27,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4631/text?format=json","bill.sponsors.0.lastName":"Chu"}} +{"type":"node","id":"8997","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4675/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4675/summaries?format=json","bill.relatedBills.count":4,"type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4675","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 4675.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4675/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4675/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4675/relatedbills?format=json","latestAction.actionDate":"2023-07-21","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"T000460","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4675/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4675/text?format=json","bill.updateDate":"2025-01-03T07:23:34Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4675/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"4675","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4675/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4675/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:34Z","title":"Advisory Committee on Reactor Safeguards Reform Act","bill.title":"Disaster Mitigation and Tax Parity Act of 2021","bill.number":"4675","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4675/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4675/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4675/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"MIKE","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4675/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4675/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4675?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 4675.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nNuclear Energy\n[Page H3641]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4675/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"8998","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4649/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Loudermilk","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4649/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4649","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 4649.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the Constitution.\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4649/cosponsors?format=json","sponsors.0.bioguideId":"L000583","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4649/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4649/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","bill.sponsors.0.bioguideId":"J000301","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4649/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4649/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-09T04:56:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4649/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","request.billNumber":"4649","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4649/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4649/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Ensuring U.S. Authority over U.S. Banking Regulations Act","bill.title":"To amend title VI of the Social Security Act to allow for the use of the Coronavirus State fiscal recovery fund to support mental and behavioral health programs, and for other purposes.","bill.number":"4649","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4649/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4649/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4649/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dusty","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4649/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4649/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4649?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 4649.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo require disclosures from certain federal financial\nregulators when major rulemakings implement the policies of,\nor conform with, certain non-governmental organization.\n[Page H3613]\n","sponsors.0.district":11,"bill.sponsors.0.state":"SD","sponsors.0.firstName":"Barry","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4649/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"8999","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4646/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Joyce","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2024-07-02T20:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4646/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 443.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4646","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 4646.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4646/cosponsors?format=json","sponsors.0.bioguideId":"J000295","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4646/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4646/relatedbills?format=json","latestAction.actionDate":"2024-05-31","textVersions.count":2,"bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":3,"titles.count":6,"cosponsors.count":22,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4646/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-532","bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4646/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-12T19:22:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4646/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","request.billNumber":"4646","committees.url":"https://api.congress.gov/v3/bill/118/hr/4646/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4646/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"SIREN Reauthorization Act","bill.title":"Time for Completion Act","bill.number":"4646","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":22,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60487","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4646/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-07-22","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/532?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4646/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4646/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"H.R. 4646, SIREN Reauthorization Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4646/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4646/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4646?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 4646.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo reauthorize the Supporting and Improving Rural EMS Needs\ngrant program.\n[Page H3613]\n","sponsors.0.district":14,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2024-11-12T19:22:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4646/text?format=json","bill.sponsors.0.lastName":"Hayes"}} +{"type":"node","id":"9000","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4672/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ADERHOLT","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4672/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"4672","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 4672.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I. Section 8 of the United States Constitution\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4672/cosponsors?format=json","sponsors.0.bioguideId":"A000055","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4672/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4672/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":19,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4672/text?format=json","bill.updateDate":"2025-01-03T07:23:35Z","updateDate":"2024-07-24T15:21:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4672/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","request.billNumber":"4672","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4672/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4672/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:35Z","title":"To amend title 40, United States Code, to prohibit the Administrator of General Services from constructing or acquiring public buildings or entering into leases based on the legality or availability of abortion, and for other purposes.","bill.title":"ABLE Employment Flexibility Act","bill.number":"4672","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4672/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4672/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4672/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4672/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4672/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4672?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ADERHOLT:\nH.R. 4672.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 of the U.S. Constitution.\nThe Congress shall have Power to dispose of and make all\nneedful Rules and Regulations respecting the Territory or\nother Property belonging to the United States; and nothing in\nthis Constituition shall be so construed as to Prejudice any\nClaims of the United States, or any particular State.\nThe single subject of this legislation is:\nAcquisition of Buildings and Sites\n[Page H3641]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"ROBERT","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4672/text?format=json","bill.sponsors.0.lastName":"Suozzi"}} +{"type":"node","id":"9001","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4635/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ross","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4635/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4635","bill.cosponsors.countIncludingWithdrawnCosponsors":45,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COURTNEY:\nH.R. 4635.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4635/cosponsors?format=json","sponsors.0.bioguideId":"R000305","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4635/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4635/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","bill.sponsors.0.bioguideId":"C001069","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4635/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4635/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4635/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","request.billNumber":"4635","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4635/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4635/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Clean Slate through Repayment Act of 2023","bill.title":"School Milk Nutrition Act of 2021","bill.number":"4635","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4635/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4635/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4635/summaries?format=json","bill.cosponsors.count":45,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4635/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4635/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4635?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 4635.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to remove the\nrecord of default on a loan made, insured, or guaranteed\nunder title IV from a borrower's credit history upon\nrepayment of the full amount due on such loan.\n[Page H3577]\n","sponsors.0.district":2,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":2,"sponsors.0.firstName":"Deborah","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4635/text?format=json","bill.sponsors.0.lastName":"Courtney"}} +{"type":"node","id":"9002","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-11-14T16:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4639/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"K.","number":"4639","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DelBENE:\nH.R. 4639.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4639/cosponsors?format=json","amendments.count":3,"sponsors.0.bioguideId":"D000626","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4639/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4639/relatedbills?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":4,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"D000617","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4639/amendments?format=json","bill.actions.count":3,"bill.originChamber":"House","titles.count":5,"cosponsors.count":7,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-459","bill.sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4639/text?format=json","bill.updateDate":"2025-01-03T07:23:39Z","updateDate":"2025-01-28T17:04:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4639/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":34,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"4639","committees.url":"https://api.congress.gov/v3/bill/118/hr/4639/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4639/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:39Z","title":"Fourth Amendment Is Not For Sale Act","bill.title":"Tax Credit Restoration Act of 2021","bill.number":"4639","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nJuly 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59756","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4639/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-07-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/459?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4639/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4639/summaries?format=json","cboCostEstimates.0.title":"H.R. 4639, Fourth Amendment Is Not For Sale Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Suzan","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4639/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4639/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4639?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4639.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n``To make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\nThe single subject of this legislation is:\nThe single subject is federal governmnet surveillance.\n[Page H3612]\n","sponsors.0.district":8,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2025-01-28T17:04:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4639/text?format=json","bill.sponsors.0.lastName":"DelBene"}} +{"type":"node","id":"9003","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4667/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Salazar","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-09-28T23:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4667/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"4667","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss RICE of New York:\nH.R. 4667.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4667/cosponsors?format=json","sponsors.0.bioguideId":"S000168","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4667/actions?format=json","latestAction.actionDate":"2023-12-04","textVersions.count":4,"bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","bill.sponsors.0.bioguideId":"R000602","bill.originChamber":"House","bill.actions.count":3,"titles.count":10,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-184","bill.sponsors.0.fullName":"Rep. Rice, Kathleen M. [D-NY-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4667/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-14T17:16:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4667/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","request.billNumber":"4667","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4667/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4667/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"RECLAIM Taxpayer Funds Act","bill.title":"Public School Emergency Relief Act","bill.number":"4667","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Small Business on\nSeptember 1, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59632","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4667/committees?format=json","request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2021-07-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/184?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4667/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4667/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 4667, RECLAIM Taxpayer Funds Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000602?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kathleen","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4667/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4667/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4667?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 4667.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nReturing PPP Funds.\n[Page H3641]\n","sponsors.0.district":27,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":4,"sponsors.0.firstName":"Maria","bill.type":"HR","updateDateIncludingText":"2025-01-14T17:16:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4667/text?format=json","bill.sponsors.0.lastName":"Rice"}} +{"type":"node","id":"9004","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4674/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4674/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4674","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 4674.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4674/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4674/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4674/relatedbills?format=json","latestAction.actionDate":"2023-07-21","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"T000460","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4674/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4674/text?format=json","bill.updateDate":"2025-01-03T07:23:36Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4674/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"4674","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4674/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4674/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:36Z","title":"Advanced Nuclear Feasibility Act","bill.title":"Motorsports Fairness and Permanency Act of 2021","bill.number":"4674","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4674/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4674/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4674/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"MIKE","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4674/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4674/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4674?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 4674.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nNuclear Energy\n[Page H3641]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4674/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"9005","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4615/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gosar","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4615/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"H.","number":"4615","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 4615.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the U.S. Constitution.\n[Page H3844]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4615/cosponsors?format=json","sponsors.0.bioguideId":"G000565","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4615/actions?format=json","latestAction.actionDate":"2023-07-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4615/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","bill.sponsors.0.bioguideId":"S000522","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4615/text?format=json","bill.updateDate":"2025-01-03T07:23:31Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4615/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","request.billNumber":"4615","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4615/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4615/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:31Z","title":"National Emergency Expenditure Reporting Transparency Act","bill.title":"Passport Emergency Extension Act of 2021","bill.number":"4615","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4615/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4615/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4615/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"CHRISTOPHER","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4615/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4615/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4615?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 4615.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 9, Clause 7\nThe single subject of this legislation is:\nOversight of expenditures related to national emergencies\n[Page H3576]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4615/text?format=json","bill.sponsors.0.lastName":"SMITH"}} +{"type":"node","id":"9006","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4652/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LUCAS","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4652/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4652","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\n[Pages H3845-H3846]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIND:\nH.R. 4652.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[[Page H3846]]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4652/cosponsors?format=json","sponsors.0.bioguideId":"L000491","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4652/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4652/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-14","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","bill.sponsors.0.bioguideId":"K000188","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kind, Ron [D-WI-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4652/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-09T04:56:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4652/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","request.billNumber":"4652","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4652/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4652/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Public Company Advisory Committee Act of 2023","bill.title":"Training for Realtime Writers Act of 2021","bill.number":"4652","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4652/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4652/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4652/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000188?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"RON","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4652/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4652/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4652?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 4652.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof\nThe single subject of this legislation is:\nThis bill would create a Public Company Advisory Committee\nat the SEC.\n[Page H3613]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":3,"sponsors.0.firstName":"FRANK","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4652/text?format=json","bill.sponsors.0.lastName":"KIND"}} +{"type":"node","id":"9007","labels":["Bill"],"properties":{"relatedBills.count":6,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4665/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Diaz-Balart","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4665/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 222.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4665","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 4665.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Sections 7 & 8 of\nArticle I of the United States Constitution and Amendment XVI\nof the United States Constitution.\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4665/cosponsors?format=json","amendments.count":50,"sponsors.0.bioguideId":"D000600","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4665/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-10-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4665/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Diaz-Balart, Mario [R-FL-26]","bill.sponsors.0.bioguideId":"M001160","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4665/amendments?format=json","bill.actions.count":3,"bill.originChamber":"House","titles.count":5,"cosponsors.count":15,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-146","bill.sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4665/text?format=json","bill.updateDate":"2025-01-03T07:23:35Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4665/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":123,"sponsors.0.url":"https://api.congress.gov/v3/member/D000600?format=json","request.billNumber":"4665","committees.url":"https://api.congress.gov/v3/bill/118/hr/4665/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4665/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:35Z","title":"Department of State, Foreign Operations, and Related Programs Appropriations Act, 2024","bill.title":"WRCR Act of 2021","bill.number":"4665","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4665/committees?format=json","latestAction_actionDate":"2021-07-22","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/146?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4665/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4665/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":149,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gwen","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4665/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4665/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4665?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DIAZ-BALART:\nH.R. 4665.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nthe Department of State, foreign operations, and related\nprograms for fiscal year 2024.\n[Page H3640]\n","sponsors.0.district":26,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":4,"sponsors.0.firstName":"Mario","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4665/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"9008","labels":["Bill"],"properties":{"relatedBills.count":5,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4647/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Krishnamoorthi","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4647/summaries?format=json","bill.relatedBills.count":5,"type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4647","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 4647.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1, Section 8 of Article 1 of the United States\nConstitution, which reads: ``The Congress shall have Power to\nlay and collect Taxes, Duties, Imposts, and Excises, to pay\nthe Debts, and provide for the common Defense and General\nWelfare of the United States; but all Duties and Imposts and\nExcises shall be uniform throughout the United States.''\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4647/cosponsors?format=json","sponsors.0.bioguideId":"K000391","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4647/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4647/relatedbills?format=json","latestAction.actionDate":"2023-07-14","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","bill.sponsors.0.bioguideId":"H001068","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4647/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4647/text?format=json","bill.updateDate":"2025-01-03T07:23:34Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4647/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","request.billNumber":"4647","committees.url":"https://api.congress.gov/v3/bill/118/hr/4647/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4647/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:34Z","title":"High-skilled Immigration Reform for Employment Act","bill.title":"Water Conservation Rebate Tax Parity Act","bill.number":"4647","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4647/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4647/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4647/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jared","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4647/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4647/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4647?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 4647.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nTo amend the Immigration and Nationality Act to expand\navailability of H-1B nonimmigrant visas, and for other\npurposes.\n[Page H3613]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Raja","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4647/text?format=json","bill.sponsors.0.lastName":"Huffman"}} +{"type":"node","id":"9009","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4655/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norman","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-10-20T19:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4655/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 265.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4655","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LARSEN of Washington:\nH.R. 4655.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1--All legislative power herein granted\nshall be vested in a Congress of the United States, which\nshall consist of a Senate and House of Representatives.\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4655/cosponsors?format=json","sponsors.0.bioguideId":"N000190","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4655/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-19","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","bill.sponsors.0.bioguideId":"L000560","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-326","bill.sponsors.0.fullName":"Rep. Larsen, Rick [D-WA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4655/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-09T04:56:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4655/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","request.billNumber":"4655","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4655/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4655/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Businesses Over Activists Act","bill.title":"American Workforce Investment in Next Generation of Students Act","bill.number":"4655","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59678","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4655/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/326?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4655/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4655/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 4655, Businesses Over Activists Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000560?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"RICK","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4655/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4655/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4655?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 4655.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nWould amend the Securities Exchange Act of 1934 to prohibit\nthe Securities and Exchange Commission from compelling the\ninclusion or discussion of shareholder proposals or proxy or\nconsent solicitation materials, and for other purposes.\n[Page H3613]\n","sponsors.0.district":5,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ralph","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4655/text?format=json","bill.sponsors.0.lastName":"LARSEN"}} +{"type":"node","id":"9010","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4666/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bean","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-09-28T23:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4666/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4666","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 4666.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4666/cosponsors?format=json","sponsors.0.bioguideId":"B001314","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4666/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2023-12-04","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Bean, Aaron [R-FL-4]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-182","bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4666/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-14T17:16:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4666/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/B001314?format=json","request.billNumber":"4666","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4666/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4666/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To require the Inspector General of the Small Business Administration to submit a quarterly report on fraud relating to certain COVID-19 loans.","bill.title":"Public Service Loan Forgiveness Modernization Act","bill.number":"4666","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Small Business on\nSeptember 1, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59631","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4666/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/182?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4666/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4666/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"H.R. 4666, a bill to require the Inspector General of the Small Business Administration to submit a quarterly report on fraud relating to certain COVID–19 loans","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4666/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4666/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4666?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\n[Pages H3640-H3641]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEAN of Florida:\nH.R. 4666.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: The Congress shall have\nPower . . . To make all Laws which shall be necessary and\nproper for\n[[Page H3641]]\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Inspector General of the Small Business\nAdministration to submit a quarterly report on fraud relating\nto certain COVID-19 loans.\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Aaron","bill.type":"HR","updateDateIncludingText":"2025-01-14T17:16:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4666/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"9011","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4435/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 4435, Fight Notario Fraud Act of 2021","bill.textVersions.count":1,"sponsors.0.lastName":"Rodgers","bill.latestAction.actionDate":"2021-07-21","cboCostEstimates.0.pubDate":"2023-07-19T14:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4435/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 23 - 20.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4435","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 125 (Friday, July 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESCOBAR:\nH.R. 4435.\nCongress has the power to enact this legislation pursuant\nto the following:\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power . . . To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H3632]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4435/cosponsors?format=json","sponsors.0.bioguideId":"M001159","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4435/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4435/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","bill.sponsors.0.bioguideId":"E000299","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nJuly 21, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Ordered to be Reported.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-09-24T16:03:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4435/text?format=json","bill.updateDate":"2025-01-03T07:22:09Z","updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4435/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","request.billNumber":"4435","committees.url":"https://api.congress.gov/v3/bill/118/hr/4435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4435/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:22:09Z","title":"Unauthorized Spending Accountability Act","bill.title":"Fight Notario Fraud Act of 2021","bill.number":"4435","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59388","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4435/committees?format=json","request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2021-07-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4435/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4435/summaries?format=json","bill.cosponsors.count":4,"cboCostEstimates.0.title":"H.R. 4435, Unauthorized Spending Accountability Act of 2023","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-30","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Veronica","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4435/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4435/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4435?format=json","bill.introducedDate":"2021-07-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 4435.\nCongress has the power to enact this legislation pursuant\nfollowing:\nSection 8 Clause 1\nThe single subject of this legislation is:\nThis bill creates a sunset for federal spending on federal\nprograms that are not currently authorized by an Act of\nCongress.\n[Page H3162]\n","sponsors.0.district":5,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":16,"sponsors.0.firstName":"Cathy","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4435/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57496","bill.sponsors.0.lastName":"Escobar"}} +{"type":"node","id":"9012","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bera","bill.latestAction.actionDate":"2021-07-21","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4570/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"4570","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 127 (Tuesday, July 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 4570.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nArticle IV, Section 3, Clause 2:\nThe Congress shall have the Power to dispose of and make\nall needful Rules and Regulations respecting the Territory\nand other Property belonging to the United States.\n[Page H3755]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4570/cosponsors?format=json","sponsors.0.bioguideId":"B001287","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4570/actions?format=json","latestAction.actionDate":"2023-07-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4570/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","bill.sponsors.0.bioguideId":"M001211","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":20,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4570/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4570/text?format=json","bill.updateDate":"2025-01-03T07:22:51Z","updateDate":"2024-07-24T15:20:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4570/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","request.billNumber":"4570","committees.url":"https://api.congress.gov/v3/bill/118/hr/4570/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4570/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:22:51Z","title":"Legacies of War Recognition and Unexploded Ordnance Removal Act","bill.title":"Define WOTUS Act of 2021","bill.number":"4570","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4570/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-07-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4570/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4570/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","introducedDate":"2023-07-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mary","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4570/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4570/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4570?format=json","bill.introducedDate":"2021-07-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 119 (Wednesday, July 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 4570.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nForeign Affairs\n[Page H3477]\n","sponsors.0.district":6,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":15,"sponsors.0.firstName":"Ami","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4570/text?format=json","bill.sponsors.0.lastName":"Miller"}} +{"type":"node","id":"9013","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4406/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Correa","bill.latestAction.actionDate":"2021-07-21","cboCostEstimates.0.pubDate":"2024-11-19T19:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4406/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 784.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4406","bill.cosponsors.countIncludingWithdrawnCosponsors":34,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 122 (Tuesday, July 13, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 4406.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the U.S. Constitution\n[Page H3624]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4406/cosponsors?format=json","sponsors.0.bioguideId":"C001110","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4406/actions?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":2,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Correa, J. Luis [D-CA-46]","bill.sponsors.0.bioguideId":"S001200","bill.originChamber":"House","bill.actions.count":8,"titles.count":4,"cosponsors.count":34,"bill.latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-821","bill.sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4406/text?format=json","bill.updateDate":"2025-01-03T07:21:42Z","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4406/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":16,"sponsors.0.url":"https://api.congress.gov/v3/member/C001110?format=json","request.billNumber":"4406","committees.url":"https://api.congress.gov/v3/bill/118/hr/4406/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4406/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:42Z","title":"DHS Basic Training Accreditation Improvement Act of 2023","bill.title":"Supporting Medicaid in the U.S. Territories Act of 2021","bill.number":"4406","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":34,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61003","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4406/committees?format=json","request.format":"json","sponsors.0.middleName":"Luis","latestAction_actionDate":"2021-07-21","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/821?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4406/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4406/summaries?format=json","bill.cosponsors.count":34,"cboCostEstimates.0.title":"H.R. 4406, DHS Basic Training Accreditation Improvement Act of 2023","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-30","bill.originChamberCode":"H","subjects.count":14,"bill.committees.count":1,"bill.sponsors.0.firstName":"Darren","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4406/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4406/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4406?format=json","bill.introducedDate":"2021-07-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CORREA:\nH.R. 4406.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo require reporting regarding accreditation of basic\ntraining programs of the Department of Homeland Security\n[Page H3160]\n","sponsors.0.district":46,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":9,"sponsors.0.firstName":"J.","bill.type":"HR","updateDateIncludingText":"2025-03-03T20:01:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4406/text?format=json","bill.sponsors.0.lastName":"Soto"}} +{"type":"node","id":"9014","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4402/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Burgess","bill.latestAction.actionDate":"2021-07-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4402/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"4402","bill.cosponsors.countIncludingWithdrawnCosponsors":212,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 120 (Friday, July 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 4402.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3618]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4402/cosponsors?format=json","sponsors.0.bioguideId":"B001248","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4402/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4402/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","bill.sponsors.0.bioguideId":"S001156","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4402/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4402/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-20T09:06:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4402/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","request.billNumber":"4402","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4402/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4402/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend title XI of the Social Security Act to clarify manufacturer transparency reporting requirements for certain transfers used for educational purposes.","bill.title":"Safe Schools Improvement Act of 2021","bill.number":"4402","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4402/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-07-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4402/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4402/summaries?format=json","bill.cosponsors.count":212,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","introducedDate":"2023-06-30","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Linda","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4402/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4402/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4402?format=json","bill.introducedDate":"2021-07-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 4402.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nThis legislation would exempt peer-reviewed medical journal\nreprints and independent continuing medical education from\nSunshine Act reporting\n[Page H3160]\n","sponsors.0.district":26,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":38,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4402/text?format=json","bill.sponsors.0.lastName":"Sánchez"}} +{"type":"node","id":"9015","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-07-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4384/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"A.","number":"4384","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 120 (Friday, July 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 4384.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H3617]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4384/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4384/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4384/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"G000565","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4384/text?format=json","bill.updateDate":"2025-01-03T07:21:26Z","updateDate":"2024-09-25T19:32:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4384/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"4384","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4384/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4384/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:26Z","title":"Project Safe Neighborhoods Reauthorization Act of 2023","bill.title":"Securing America’s Elections Act of 2021","bill.number":"4384","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4384/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-07-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4384/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4384/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","introducedDate":"2023-06-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4384/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4384/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4384?format=json","bill.introducedDate":"2021-07-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 4384.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo reauthorize the Project Safe Neighborhoods Grant Program\nAuthorization Act of 2018, and for other purposes.\n[Page H3152]\n","sponsors.0.district":2,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-09-25T19:32:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4384/text?format=json","bill.sponsors.0.lastName":"Gosar"}} +{"type":"node","id":"9016","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Carter","cboCostEstimates.0.pubDate":"2023-11-21T17:45:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4403/summaries?format=json","type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"C. \"Bobby\"","number":"4403","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"sponsors.0.bioguideId":"C001125","bill.subjects.count":1,"latestAction.actionDate":"2024-12-02","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Carter, Troy [D-LA-2]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-320","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60787","updateDate":"2025-01-14T19:03:55Z","committees.count":2,"cboCostEstimates.1.pubDate":"2024-09-27T18:28:00Z","request.billNumber":"4403","committees.url":"https://api.congress.gov/v3/bill/118/hr/4403/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","cboCostEstimates.1.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 18, 2024\n","bill.number":"4403","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","sponsors.0.middleName":"C. \"Bobby\"","latestAction_actionDate":"2021-07-09","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4403/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4403/summaries?format=json","cboCostEstimates.0.title":"H.R. 4403, Securing the Cities Improvement Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000185?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/SRPT/256?format=json","introducedDate":"2023-06-30","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4403/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4403?format=json","cboCostEstimates.1.title":"H.R. 4403, Securing the Cities Improvement Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 4403.\nCongress has the power to enact this legislation pursuant\nto the following:\nthe Spending Clause, Article 1, Section 8, Cl. 1 and the\nNecessary and Proper Clause, Article I, Section 8, Cl. 18.\nThe single subject of this legislation is:\nTo amend the Homeland Security Act of 2002 to make\nimprovments to the Securing the Cities program.\n[Page H3160]\n","bill.sponsors.0.district":3,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4403/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-07-09","latestAction_text":"Referred to the House Committee on Education and Labor.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 657.","sponsors.0.party":"D","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 120 (Friday, July 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT of Virginia:\nH.R. 4403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H3618]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4403/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4403/actions?format=json","textVersions.count":5,"bill.sponsors.0.bioguideId":"S000185","bill.actions.count":3,"titles.count":7,"cosponsors.count":2,"bill.sponsors.0.fullName":"Rep. Scott, Robert C. \"Bobby\" [D-VA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4403/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4403/subjects?format=json","request.congress":"118","actions.count":21,"committeeReports.1.citation":"S. Rept. 118-256","sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4403/subjects?format=json","title":"Securing the Cities Improvement Act","bill.title":"Opening Doors for Youth Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59783","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4403/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/320?format=json","request.billType":"hr","bill.cosponsors.count":18,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4403/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-09","sponsors.0.district":2,"bill.sponsors.0.state":"VA","sponsors.0.firstName":"Troy","updateDateIncludingText":"2025-01-14T19:03:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4403/text?format=json","bill.sponsors.0.lastName":"Scott"}} +{"type":"node","id":"9017","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4357/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4357/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4357","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Mississippi:\nH.R. 4357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H3610]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4357/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4357/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4357/relatedbills?format=json","latestAction.actionDate":"2023-06-23","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"T000193","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4357/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Bennie G. [D-MS-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4357/text?format=json","bill.updateDate":"2025-01-03T07:21:17Z","updateDate":"2024-07-24T15:21:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4357/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"4357","committees.url":"https://api.congress.gov/v3/bill/118/hr/4357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4357/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:17Z","title":"Permanent CFC Look-Through Act of 2023","bill.title":"DHS Reform Act of 2021","bill.number":"4357","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4357/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4357/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4357/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000193?format=json","introducedDate":"2023-06-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"BENNIE","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4357/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4357/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4357?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 4357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIt would make the controlled foreign corporation look-\nthrough rule permanent.\n[Page H3144]\n","sponsors.0.district":24,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":2,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4357/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"9018","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3782/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3782/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Patrick","number":"3782","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SEAN PATRICK MALONEY of New York:\nH.R. 3782.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3782/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3782/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3782/relatedbills?format=json","latestAction.actionDate":"2023-06-02","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"M001185","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3782/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Maloney, Sean Patrick [D-NY-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3782/text?format=json","bill.updateDate":"2025-01-03T05:06:52Z","updateDate":"2024-07-24T15:21:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3782/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"3782","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3782/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3782/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:52Z","title":"Short Line Railroad Relief Act","bill.title":"Relief for America's Small Farmers Act","bill.number":"3782","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3782/committees?format=json","request.format":"json","sponsors.0.middleName":"Patrick","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3782/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3782/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001185?format=json","introducedDate":"2023-06-01","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Sean","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3782/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3782/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3782?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 3782.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nDisaster Relief\n[Page H2713]\n","sponsors.0.district":19,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":18,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3782/text?format=json","bill.sponsors.0.lastName":"Maloney"}} +{"type":"node","id":"9019","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3766/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallagher","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3766/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3766","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARTZLER:\nH.R. 3766.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 (Commerce Clause)\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3766/cosponsors?format=json","sponsors.0.bioguideId":"G000579","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3766/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3766/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","bill.sponsors.0.bioguideId":"H001053","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3766/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hartzler, Vicky [R-MO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3766/text?format=json","bill.updateDate":"2025-01-03T05:06:47Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3766/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","request.billNumber":"3766","committees.url":"https://api.congress.gov/v3/bill/118/hr/3766/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3766/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:47Z","title":"TRACKS Act","bill.title":"Optimizing the Cattle Market Act of 2021","bill.number":"3766","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3766/committees?format=json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3766/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3766/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001053?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicky","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3766/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3766/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3766?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 3766.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nExecutive Branch transparency\n[Page H2709]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":4,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3766/text?format=json","bill.sponsors.0.lastName":"Hartzler"}} +{"type":"node","id":"9020","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3570/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"JACKSON LEE","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3570/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3570","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 94 (Friday, May 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASE:\nH.R. 3570.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H2678]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3570/cosponsors?format=json","sponsors.0.bioguideId":"J000032","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3570/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3570/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","bill.sponsors.0.bioguideId":"C001055","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3570/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Case, Ed [D-HI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3570/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:21:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3570/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","request.billNumber":"3570","committees.url":"https://api.congress.gov/v3/bill/118/hr/3570/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3570/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Comprehensive Response to Fentanyl-Related Substances and Fentanyl-Laced Substances Act","bill.title":"Compact Impact Fairness Act of 2021","bill.number":"3570","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3570/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3570/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3570/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001055?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-22","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":3,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3570/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3570/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3570?format=json","bill.introducedDate":"2021-05-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 86 (Monday, May 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 3570.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States To\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nCombatting the use of fentanyl and providing public\nawareness and outreach regarding the dangers of Fentanyl.\n[Page H2501]\n","sponsors.0.district":18,"bill.sponsors.0.state":"HI","bill.sponsors.0.district":1,"sponsors.0.firstName":"SHEILA","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3570/text?format=json","bill.sponsors.0.lastName":"Case"}} +{"type":"node","id":"9021","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3534/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Law","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3534/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3534","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 3534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3534/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":37,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3534/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3534/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"P000613","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3534/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3534/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-03T08:06:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3534/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"3534","committees.url":"https://api.congress.gov/v3/bill/118/hr/3534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3534/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Justice is BLIND Act of 2023","bill.title":"Wildfire Emergency Act of 2021","bill.number":"3534","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3534/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3534/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3534/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3534/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3534/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3534?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 3534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nJudiciary\n[Page H2459]\n","sponsors.0.district":28,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-03T08:06:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3534/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"9022","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3532/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Roy","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3532/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3532","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. O'HALLERAN:\nH.R. 3532.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3532/cosponsors?format=json","sponsors.0.bioguideId":"R000614","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3532/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3532/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","bill.sponsors.0.bioguideId":"O000171","bill.actions.count":6,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. O'Halleran, Tom [D-AZ-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3532/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-07-24T15:21:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3532/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","request.billNumber":"3532","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3532/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3532/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Reciprocity Ensures Streamlined Use of Lifesaving Treatments Act of 2023","bill.title":"To require the Secretary of Agriculture to carry out a periodic wildfire assessment, and for other purposes.","bill.number":"3532","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3532/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3532/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3532/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000171?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":2,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3532/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3532/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3532?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 3532.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHealthcare\n[Page H2459]\n","sponsors.0.district":21,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":1,"sponsors.0.firstName":"Chip","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3532/text?format=json","bill.sponsors.0.lastName":"O'Halleran"}} +{"type":"node","id":"9023","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3527/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ogles","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3527/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"3527","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 3527.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, clause 2\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3527/cosponsors?format=json","sponsors.0.bioguideId":"O000175","bill.subjects.count":31,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3527/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3527/relatedbills?format=json","latestAction.actionDate":"2023-05-18","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","bill.sponsors.0.bioguideId":"M001213","bill.originChamber":"House","bill.actions.count":11,"titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3527/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3527/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-07-24T15:22:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3527/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","request.billNumber":"3527","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3527/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"MATCH Act","bill.title":"Recreation Not Red Tape Act","bill.number":"3527","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3527/committees?format=json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3527/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3527/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Blake","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3527/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3527/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3527?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 3527.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nA hiring freeze on the Consumer Financial Protection Bureau\n[Page H2459]\n","sponsors.0.district":5,"bill.sponsors.0.state":"UT","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3527/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"9024","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3435/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moore","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3435/summaries?format=json","bill.relatedBills.count":20,"type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"McMorris","number":"3435","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 88 (Thursday, May 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 3435.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H2654]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3435/cosponsors?format=json","sponsors.0.bioguideId":"M001213","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3435/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3435/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","bill.sponsors.0.bioguideId":"M001159","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":64,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3435/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3435/text?format=json","bill.updateDate":"2025-01-03T05:04:04Z","updateDate":"2024-07-24T08:05:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3435/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","request.billNumber":"3435","committees.url":"https://api.congress.gov/v3/bill/118/hr/3435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3435/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:04Z","title":"Charitable Act","bill.title":"American Broadband Act","bill.number":"3435","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":64,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3435/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3435/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3435/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Cathy","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3435/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3435/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3435?format=json","bill.introducedDate":"2021-05-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 3435.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nTo modify and extend the deduction for charitable\ncontributions for individuals not itemizing deductions.\n[Page H2428]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Blake","bill.type":"HR","updateDateIncludingText":"2024-07-24T08:05:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3435/text?format=json","bill.sponsors.0.lastName":"Rodgers"}} +{"type":"node","id":"9025","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foster","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3412/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3412","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 88 (Thursday, May 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 3412.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\n[Page H2653]\n","sponsors.0.bioguideId":"F000454","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3412/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3412/relatedbills?format=json","latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","bill.sponsors.0.bioguideId":"L000583","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3412/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3412/text?format=json","bill.updateDate":"2025-01-03T05:04:22Z","updateDate":"2024-07-24T15:22:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3412/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","request.billNumber":"3412","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3412/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3412/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:22Z","title":"Expanding Opportunities for Recovery Act of 2023","bill.title":"Alleviating Stress Test Burdens To Help Investors Act","bill.number":"3412","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3412/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3412/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3412/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","introducedDate":"2023-05-17","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":2,"bill.sponsors.0.firstName":"Barry","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3412/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3412/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3412?format=json","bill.introducedDate":"2021-05-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 3412.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nhealth care.\n[Page H2428]\n","sponsors.0.district":11,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3412/text?format=json","bill.sponsors.0.lastName":"Loudermilk"}} +{"type":"node","id":"9026","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3369/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Harder","bill.latestAction.actionDate":"2021-07-07","cboCostEstimates.0.pubDate":"2024-04-05T17:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3369/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 195.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3369","bill.cosponsors.countIncludingWithdrawnCosponsors":50,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 88 (Thursday, May 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 3369.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\n[Page H2652]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3369/cosponsors?format=json","sponsors.0.bioguideId":"H001090","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3369/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Harder, Josh [D-CA-9]","bill.sponsors.0.bioguideId":"T000467","bill.originChamber":"House","bill.actions.count":6,"titles.count":5,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-244","bill.sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3369/text?format=json","bill.updateDate":"2025-01-03T05:04:09Z","updateDate":"2024-11-09T04:52:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3369/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","request.billNumber":"3369","committees.url":"https://api.congress.gov/v3/bill/118/hr/3369/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3369/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:09Z","title":"Artificial Intelligence Accountability Act","bill.title":"Broadband for Rural America Act","bill.number":"3369","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on October 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60199","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3369/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/244?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/3369/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3369/summaries?format=json","bill.cosponsors.count":50,"cboCostEstimates.0.title":"H.R. 3369, AI Accountability Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","introducedDate":"2023-05-16","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Glenn","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3369/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3369/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3369?format=json","bill.introducedDate":"2021-05-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 82 (Tuesday, May 16, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 3369.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 1, Article 8 of the Constitution\nThe single subject of this legislation is:\nTo require NTIA to gather stakeholder feedback on AI\naccountability measures and issue a report to Congress on how\nto protect consumers.\n[Page H2378]\n","sponsors.0.district":9,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":15,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:52:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3369/text?format=json","bill.sponsors.0.lastName":"Thompson"}} +{"type":"node","id":"9027","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4371/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4371/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4371","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 4371.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H3611]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4371/cosponsors?format=json","sponsors.0.bioguideId":"C001125","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4371/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-30","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Carter, Troy [D-LA-2]","bill.sponsors.0.bioguideId":"U000040","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4371/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4371/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","request.billNumber":"4371","committees.url":"https://api.congress.gov/v3/bill/118/hr/4371/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4371/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"School Sports Safety Study Act","bill.title":"Chronic Condition Copay Elimination Act","bill.number":"4371","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4371/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4371/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4371/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","introducedDate":"2023-06-27","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":3,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4371/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4371/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4371?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 4371.\nCongress has the power to enact this legislation pursuant\nto the following:\nthe Spending Clause, Article 1, Section 8, Cl. 1 and the\nNecessary and Proper Clause, Article I, Section 8, Cl. 18.\nThe single subject of this legislation is:\nSchool sports safety.\n[Page H3152]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":14,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4371/text?format=json","bill.sponsors.0.lastName":"Underwood"}} +{"type":"node","id":"9028","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ciscomani","bill.latestAction.actionDate":"2021-07-06","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 58.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":6,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4372/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":2,"sponsors.0.party":"R","number":"4372","bill.committeeReports.0.citation":"H. Rept. 117-83","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4372/cosponsors?format=json","sponsors.0.bioguideId":"C001133","bill.subjects.count":81,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4372/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4372/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Ciscomani, Juan [R-AZ-6]","bill.sponsors.0.bioguideId":"P000597","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 58.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4372/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/83?format=json","committeeReports.0.citation":"H. Rept. 117-83","bill.sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4372/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4372/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001133?format=json","request.billNumber":"4372","committees.url":"https://api.congress.gov/v3/bill/118/hr/4372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4372/subjects?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"To designate the facility of the United States Postal Service located at 100 North Taylor Lane in Patagonia, Arizona, as the \"Jim Kolbe Memorial Post Office\".","bill.title":"Department of the Interior, Environment, and Related Agencies Appropriations Act, 2022","bill.number":"4372","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4372/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-06","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/83?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4372/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4372/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","introducedDate":"2023-06-27","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chellie","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4372/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4372/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4372?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CISCOMANI:\nH.R. 4372.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRename a post office.\n[Page H3152]\n","bill.introducedDate":"2021-07-06","sponsors.0.district":6,"bill.sponsors.0.state":"ME","bill.sponsors.0.district":1,"sponsors.0.firstName":"Juan","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4372/text?format=json","bill.sponsors.0.lastName":"Pingree"}} +{"type":"node","id":"9029","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4359/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"THOMPSON","bill.latestAction.actionDate":"2021-07-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4359/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4359","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\n[Pages H3610-H3611]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 4359.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H3611]]\nArticle I, Section 4: ``The times, places and manner of\nholding elections for Senators and Representatives, shall be\nprescribed in each state by the legislature thereof; but the\nCongress may at any time by law make or alter such\nregulations, except as to the places of choosing Senators.''\nArticle I, Section 8, Clause 3: relating to the power of\nCongress ``to regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes.''\nAmendment XVI: The Congress shall have power to lay and\ncollect taxes on incomes, from whatever source derived,\nwithout apportionment among the several States, and without\nregard to any census or enumeration.\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4359/cosponsors?format=json","sponsors.0.bioguideId":"T000460","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4359/actions?format=json","latestAction.actionDate":"2023-08-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4359/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","bill.sponsors.0.bioguideId":"C001090","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4359/text?format=json","bill.updateDate":"2025-01-03T07:21:14Z","updateDate":"2024-07-24T15:21:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4359/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","request.billNumber":"4359","committees.url":"https://api.congress.gov/v3/bill/118/hr/4359/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4359/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:14Z","title":"Smoke Exposure Research Act of 2023","bill.title":"OPEN Act","bill.number":"4359","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4359/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4359/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4359/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2023-06-23","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":2,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4359/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4359/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4359?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 4359.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 18\nThe single subject of this legislation is:\nAgriculture Research (Agriculture)\n[Page H3144]\n","sponsors.0.district":4,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"MIKE","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4359/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"9030","labels":["Bill"],"properties":{"relatedBills.count":9,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4367/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Joyce","bill.latestAction.actionDate":"2021-07-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4367/summaries?format=json","type":"HR","latestAction.text":"The Clerk was authorized to correct section numbers, punctuation, and cross references, and to make other necessary technical and conforming corrections in the engrossment of H.R. 4367.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4367","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MFUME:\nH.R. 4367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nwhich gives Congress the power to make all Laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H3611]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4367/cosponsors?format=json","amendments.count":48,"sponsors.0.bioguideId":"J000295","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4367/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4367/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","bill.sponsors.0.bioguideId":"M000687","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4367/amendments?format=json","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-123","bill.sponsors.0.fullName":"Rep. Mfume, Kweisi [D-MD-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4367/text?format=json","bill.updateDate":"2025-01-03T07:21:14Z","updateDate":"2025-02-14T02:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4367/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":105,"sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","request.billNumber":"4367","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4367/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:14Z","title":"Department of Homeland Security Appropriations Act, 2024","bill.title":"BOOST Act of 2021","bill.number":"4367","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4367/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-07-06","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/123?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4367/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4367/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":4,"latestAction.actionTime":"23:30:18","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000687?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-27","bill.originChamberCode":"H","subjects.count":36,"bill.committees.count":1,"bill.sponsors.0.firstName":"KWEISI","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4367/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4367/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4367?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MFUME:\nH.R. 4367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nwhich gives Congress the power to make all Laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H3611]\n","sponsors.0.district":14,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":7,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-02-14T02:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4367/text?format=json","bill.sponsors.0.lastName":"MFUME"}} +{"type":"node","id":"9031","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4360/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tiffany","bill.latestAction.actionDate":"2021-07-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4360/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"4360","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CLARKE of New York:\nH.R. 4360.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1; Section 8\n[Page H3611]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4360/cosponsors?format=json","sponsors.0.bioguideId":"T000165","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4360/actions?format=json","latestAction.actionDate":"2023-06-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4360/relatedbills?format=json","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","bill.sponsors.0.bioguideId":"C001067","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Clarke, Yvette D. [D-NY-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4360/text?format=json","bill.updateDate":"2025-01-03T07:21:13Z","updateDate":"2024-07-24T15:21:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4360/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","request.billNumber":"4360","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4360/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4360/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:13Z","title":"ACCESS Rural America Act","bill.title":"No Biometric Barriers to Housing Act of 2021","bill.number":"4360","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4360/committees?format=json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-07-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4360/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4360/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001067?format=json","introducedDate":"2023-06-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Yvette","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4360/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4360/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4360?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 4360.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThis bill increases the shareholder registration threshold\nfor issuers receiving support through federal universal\nservice support mechanisms.\n[Page H3144]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":9,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4360/text?format=json","bill.sponsors.0.lastName":"Clarke"}} +{"type":"node","id":"9032","labels":["Bill"],"properties":{"relatedBills.count":34,"congress":118,"sponsors.0.lastName":"Carter","cboCostEstimates.0.pubDate":"2023-10-16T19:12:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Economics and Public Finance","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4366/summaries?format=json","type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"B.","number":"4366","bill.cosponsors.countIncludingWithdrawnCosponsors":30,"sponsors":[],"amendments.count":295,"sponsors.0.bioguideId":"C001051","laws.0.number":"118-42","bill.subjects.count":10,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4366/relatedbills?format=json","latestAction.actionDate":"2024-03-09","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Carter, John R. [R-TX-31]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4366/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-122","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60058","updateDate":"2025-02-14T02:41:12Z","committees.count":1,"cboCostEstimates.1.pubDate":"2024-03-05T17:30:00Z","request.billNumber":"4366","committees.url":"https://api.congress.gov/v3/bill/118/hr/4366/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:16Z","cboCostEstimates.1.description":"As posted on the Document Repository of the House of Representatives on March 3, 2024 https://tinyurl.com/32a6eva4\n","bill.number":"4366","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"Senate Amendment 1092 to H.R. 4366 would provide appropriations and authorities for 2024 for the agencies covered by 3 of the 12 annual appropriation acts\n","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-07-06","summaries.count":7,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4366/summaries?format=json","cboCostEstimates.0.title":"Senate Amendment 1092 to H.R. 4366, the Military Construction, Veterans Affairs, and Related Agencies Appropriations Act, 2024","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000087?format=json","introducedDate":"2023-06-27","subjects.count":376,"bill.committees.count":1,"bill.sponsors.0.firstName":"CAROLYN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4366/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4366?format=json","cboCostEstimates.1.title":"Consolidated Appropriations Act, 2024","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Texas:\nH.R. 4366.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe principal constitutional authority for this legislation\nis clause 7 of section 9 of article I of the Constitution of\nthe United States (the appropriation power), which states:\n``No Money shall be drawn from the Treasury, but in\nConsequence of Appropriations made by Law . . . .'' In\naddition, clause 1 of section 8 of article I of the\nConstitution (the spending power) provides: ``The Congress\nshall have the Power . . . to pay the Debts and provide for\nthe common Defence and general Welfare of the United States .\n. . .'' Together, these specific constitutional provisions\nestablish the congressional power of the purse, granting\nCongress the authority to appropriate funds, to determine\ntheir purpose, amount, and period of availability, and to set\nforth terms and conditions governing their use.\nThe single subject of this legislation is:\nThe subject of the bill is the making of appropriations for\nmilitary construction, veterans affairs, and related agencies\nfor fiscal year 2024.\n[Page H3151]\n","bill.sponsors.0.district":12,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4366/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-07-06","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","latestAction.text":"Became Public Law No: 118-42.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAROLYN B. MALONEY of New York:\nH.R. 4366.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution\n[Page H3611]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4366/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4366/actions?format=json","textVersions.count":7,"bill.sponsors.0.bioguideId":"M000087","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4366/amendments?format=json","bill.actions.count":4,"titles.count":56,"cosponsors.count":30,"bill.sponsors.0.fullName":"Rep. Maloney, Carolyn B. [D-NY-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4366/text?format=json","bill.updateDate":"2025-01-03T07:21:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4366/subjects?format=json","request.congress":"118","actions.count":104,"sponsors.0.url":"https://api.congress.gov/v3/member/C001051?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4366/subjects?format=json","title":"Consolidated Appropriations Act, 2024","bill.title":"Women and Minorities in STEM Booster Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59664","cosponsors.countIncludingWithdrawnCosponsors":30,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4366/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/122?format=json","request.billType":"hr","bill.cosponsors.count":30,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4366/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-06","sponsors.0.district":31,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-14T02:41:12Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4366/text?format=json","bill.sponsors.0.lastName":"MALONEY"}} +{"type":"node","id":"9033","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3780/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-07-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3780/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3780","bill.cosponsors.countIncludingWithdrawnCosponsors":94,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOWENTHAL:\nH.R. 3780.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3780/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3780/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3780/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"L000579","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3780/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lowenthal, Alan S. [D-CA-47]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3780/text?format=json","bill.updateDate":"2025-01-03T05:06:44Z","updateDate":"2024-09-28T08:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3780/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"3780","committees.url":"https://api.congress.gov/v3/bill/118/hr/3780/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3780/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:44Z","title":"ACPAC Modernization Act","bill.title":"America’s Red Rock Wilderness Act","bill.number":"3780","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3780/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-07-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3780/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3780/summaries?format=json","bill.cosponsors.count":94,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000579?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alan","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3780/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3780/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3780?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3780.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAviation\n[Page H2709]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":47,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2024-09-28T08:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3780/text?format=json","bill.sponsors.0.lastName":"Lowenthal"}} +{"type":"node","id":"9034","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crockett","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4106/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"4106","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEVENS:\nH.R. 4106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\n[Page H3083]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4106/cosponsors?format=json","sponsors.0.bioguideId":"C001130","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4106/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4106/relatedbills?format=json","latestAction.actionDate":"2023-06-16","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","bill.sponsors.0.bioguideId":"S001215","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4106/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4106/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:21:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4106/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","request.billNumber":"4106","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4106/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4106/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Test Strip Access Act of 2023","bill.title":"Stop Student Debt Relief Scams Technical Corrections Act","bill.number":"4106","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4106/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4106/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4106/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Haley","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4106/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4106/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4106?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CROCKETT:\nH.R. 4106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo amend the 21st Century Cures Act to expressly authorize\nthe use of certain grants to implement substance use disorder\nand overdose prevention activities with respect to fentanyl\nand xylazine test strips.\n[Page H2933]\n","sponsors.0.district":30,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":11,"sponsors.0.firstName":"Jasmine","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4106/text?format=json","bill.sponsors.0.lastName":"Stevens"}} +{"type":"node","id":"9035","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Phillips","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4078/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4078","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 4078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H3082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4078/cosponsors?format=json","sponsors.0.bioguideId":"P000616","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4078/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4078/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Phillips, Dean [D-MN-3]","bill.sponsors.0.bioguideId":"B001281","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4078/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4078/text?format=json","bill.updateDate":"2025-01-03T05:09:23Z","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4078/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000616?format=json","request.billNumber":"4078","committees.url":"https://api.congress.gov/v3/bill/118/hr/4078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4078/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:23Z","title":"Syria Detainee and Displaced Persons Act","bill.title":"Free Credit Scores for Consumers Act of 2021","bill.number":"4078","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4078/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4078/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4078/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","introducedDate":"2023-06-13","bill.originChamberCode":"H","subjects.count":15,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joyce","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4078/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4078/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4078?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PHILLIPS:\nH.R. 4078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nLegislation to extend the position of the ISIS Detainee\nCoordinator within the Department of State until January 31,\n2028 and direct the development of an interagency strategy on\nhow to address the IDP camps, with an emphasis on efforts to\naddress acute humanitarian and security concerns;\nrepatriation efforts; and a framework to measure progress.\n[Page H2886]\n","sponsors.0.district":3,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dean","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4078/text?format=json","bill.sponsors.0.lastName":"Beatty"}} +{"type":"node","id":"9036","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4090/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kean","bill.latestAction.actionDate":"2021-06-23","cboCostEstimates.0.pubDate":"2023-07-25T21:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4090/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 141.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4090","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HARDER of California:\nH.R. 4090.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H3082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4090/cosponsors?format=json","sponsors.0.bioguideId":"K000398","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4090/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4090/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-09-01","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Kean, Thomas H. [R-NJ-7]","bill.sponsors.0.bioguideId":"H001090","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":14,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-177","bill.sponsors.0.fullName":"Rep. Harder, Josh [D-CA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4090/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-13T09:05:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4090/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/K000398?format=json","request.billNumber":"4090","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4090/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4090/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Fire Grants and Safety Act of 2023","bill.title":"Making Education Affordable and Accessible Act","bill.number":"4090","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on June 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":14,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59426","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4090/committees?format=json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-06-23","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/177?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4090/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4090/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 4090, Fire Grants and Safety Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001090?format=json","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Josh","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4090/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4090/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4090?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEAN of New Jersey:\nH.R. 4090.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\n``The Congress shall have Power . . . To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\nThe single subject of this legislation is:\nAuthorize appropriations for the United States Fire\nAdministration and firefighter assistance grant programs.\n[Page H2932]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2024-12-13T09:05:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4090/text?format=json","bill.sponsors.0.lastName":"Harder"}} +{"type":"node","id":"9037","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4107/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4107/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4107","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 4107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H3083]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4107/cosponsors?format=json","sponsors.0.bioguideId":"D000626","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4107/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4107/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"T000460","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4107/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4107/text?format=json","bill.updateDate":"2025-01-03T05:09:19Z","updateDate":"2024-11-09T04:56:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4107/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"4107","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4107/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4107/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:19Z","title":"Civil Liberties Protection Act of 2023","bill.title":"IRS Whistleblower Program Improvement Act of 2021","bill.number":"4107","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4107/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4107/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4107/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"MIKE","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4107/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4107/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4107?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThe Financial Crimes Enforcement Network\n[Page H2933]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4107/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}} +{"type":"node","id":"9038","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4100/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Chavez-DeRemer","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4100/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"4100","bill.cosponsors.countIncludingWithdrawnCosponsors":43,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PRICE of North Carolina:\nH.R. 4100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1, which states: ``The\nCongress shall have Power To . . . provide for the common\nDefence and general Welfare of the United States . . . ''\n[Page H3083]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4100/cosponsors?format=json","sponsors.0.bioguideId":"C001135","bill.subjects.count":19,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4100/actions?format=json","latestAction.actionDate":"2023-06-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4100/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Chavez-DeRemer, Lori [R-OR-5]","bill.sponsors.0.bioguideId":"P000523","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4100/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Price, David E. [D-NC-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4100/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:19:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4100/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001135?format=json","request.billNumber":"4100","committees.url":"https://api.congress.gov/v3/bill/118/hr/4100/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4100/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"______ Act of 2023","bill.title":"CORPS Act","bill.number":"4100","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4100/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4100/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4100/summaries?format=json","bill.cosponsors.count":43,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000523?format=json","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"DAVID","sponsors.0.state":"OR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4100/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4100/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4100?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CHAVEZ-DeREMER:\nH.R. 4100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to reauthorize a\nmonitoring and education program regarding infections\nassociated with illicit drug use and other risk factors.\n[Page H2933]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":4,"sponsors.0.firstName":"Lori","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4100/text?format=json","bill.sponsors.0.lastName":"PRICE"}} +{"type":"node","id":"9039","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4097/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sykes","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4097/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"O.","number":"4097","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 4097.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the U.S. Constitution\n[Page H3082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4097/cosponsors?format=json","sponsors.0.bioguideId":"S001223","bill.subjects.count":19,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4097/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4097/relatedbills?format=json","bill.policyArea.name":"Civil Rights and Liberties, Minority Issues","sponsors.0.fullName":"Rep. Sykes, Emilia Strong [D-OH-13]","bill.sponsors.0.bioguideId":"M001163","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4097/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4097/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:21:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4097/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001223?format=json","request.billNumber":"4097","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4097/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4097/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Mental Health Improvement Act","bill.title":"Patsy T. Mink and Louise M. Slaughter Gender Equity in Education Act of 2021","bill.number":"4097","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4097/committees?format=json","request.format":"json","sponsors.0.middleName":"Strong","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4097/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4097/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Doris","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4097/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4097/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4097?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. SYKES:\nH.R. 4097.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VII of the United States Constitution\nThe single subject of this legislation is:\nThis bill extends the authorization of Mental and\nBehavioral Health Educaiton and Training Grants.\n[Page H2933]\n","sponsors.0.district":13,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Emilia","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4097/text?format=json","bill.sponsors.0.lastName":"Matsui"}} +{"type":"node","id":"9040","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4029/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hern","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4029/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4029","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Ohio:\nH.R. 4029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4029/cosponsors?format=json","sponsors.0.bioguideId":"H001082","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4029/actions?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4029/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.sponsors.0.bioguideId":"J000292","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Bill [R-OH-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4029/text?format=json","bill.updateDate":"2025-01-03T05:09:08Z","updateDate":"2024-07-24T15:21:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4029/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","request.billNumber":"4029","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4029/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:08Z","title":"Supply Chain Security Act","bill.title":"TEAM TELECOM Act","bill.number":"4029","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4029/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4029/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4029/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000292?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4029/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4029/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4029?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 4029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo encourage economic growth\n[Page H2810]\n","sponsors.0.district":1,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":6,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4029/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"9041","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4108/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4108/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"4108","bill.cosponsors.countIncludingWithdrawnCosponsors":39,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 4108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\n[Page H3083]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4108/cosponsors?format=json","sponsors.0.bioguideId":"D000626","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4108/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4108/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"V000081","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4108/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:21:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4108/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"4108","committees.url":"https://api.congress.gov/v3/bill/118/hr/4108/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4108/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Protecting Americans' Data From Foreign Surveillance Act of 2023","bill.title":"Healthy Future Students and Earth Pilot Program Act of 2021","bill.number":"4108","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4108/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4108/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4108/summaries?format=json","bill.cosponsors.count":39,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"NYDIA","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4108/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4108/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4108?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution, including Clause\n18 of that Section.\nThe single subject of this legislation is:\nTo amend the Export Control Reform Act of 2018\n[Page H2933]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":7,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2025-01-06T17:27:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4108/text?format=json","bill.sponsors.0.lastName":"VELAZQUEZ"}} +{"type":"node","id":"9042","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Valadao","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4091/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4091","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of Louisiana:\nH.R. 4091.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S.C. Article I Section 8\n[Page H3082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4091/cosponsors?format=json","sponsors.0.bioguideId":"V000129","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4091/actions?format=json","latestAction.actionDate":"2023-06-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4091/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Valadao, David G. [R-CA-22]","bill.sponsors.0.bioguideId":"H001077","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4091/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Higgins, Clay [R-LA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4091/text?format=json","bill.updateDate":"2025-01-03T05:09:22Z","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4091/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/V000129?format=json","request.billNumber":"4091","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4091/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4091/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:22Z","title":"To amend the SUPPORT for Patients and Communities Act to expand required reports on T-MSIS substance use disorder data to include mental health condition data.","bill.title":"National Flood Insurance Program Consultant Accountability Act of 2021","bill.number":"4091","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4091/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4091/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4091/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001077?format=json","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Clay","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4091/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4091/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4091?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VALADAO:\nH.R. 4091.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nTo amend the SUPPORT for Patients and Communities Act to\nexpand required reports on T-MSIS substance use disorder data\nto include mental health condition data.\n[Page H2932]\n","sponsors.0.district":22,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":3,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4091/text?format=json","bill.sponsors.0.lastName":"Higgins"}} +{"type":"node","id":"9043","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Barr","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4102/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F. Q.","number":"4102","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SAN NICOLAS:\nH.R. 4102.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 of the Constitution,\nCongress's authority to make all rules and regulations\nrespecting the Territories and possessions\nArticle I, Section 8, Clause 18, Congress's authority to\nmake laws which shall be necessary and proper\n[Page H3083]\n","sponsors.0.bioguideId":"B001282","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4102/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4102/relatedbills?format=json","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","bill.sponsors.0.bioguideId":"S001204","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4102/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Del. San Nicolas, Michael F. Q. [D-GU-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4102/text?format=json","bill.updateDate":"2025-01-03T05:09:22Z","updateDate":"2024-07-24T15:21:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4102/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","request.billNumber":"4102","committees.url":"https://api.congress.gov/v3/bill/118/hr/4102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4102/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:22Z","title":"Recovery Housing Stability and Support Act of 2023","bill.title":"Native CHamoru Equity Act","bill.number":"4102","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4102/committees?format=json","request.format":"json","sponsors.0.middleName":"F. Q.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4102/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4102/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001204?format=json","introducedDate":"2023-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"KY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4102/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4102/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4102?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 4102.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo provide individuals battling addiction with the\nstability and assistance needed to rebuild their lives.\n[Page H2933]\n","bill.sponsors.0.state":"GU","sponsors.0.district":6,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4102/text?format=json","bill.sponsors.0.lastName":"San Nicolas"}} +{"type":"node","id":"9044","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4086/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wasserman Schultz","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4086/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4086","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 109 (Wednesday, June 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EVANS:\nH.R. 4086.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 1 of section 8 of article I of the Constitution, to\n``provide for the common Defence and general Welfare of the\nUnited States.''\n[Page H3082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4086/cosponsors?format=json","sponsors.0.bioguideId":"W000797","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4086/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Wasserman Schultz, Debbie [D-FL-25]","bill.sponsors.0.bioguideId":"E000296","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":16,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4086/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Evans, Dwight [D-PA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4086/text?format=json","bill.updateDate":"2025-01-03T05:09:23Z","updateDate":"2024-11-09T01:28:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4086/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000797?format=json","request.billNumber":"4086","committees.url":"https://api.congress.gov/v3/bill/118/hr/4086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4086/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:23Z","title":"AFFECT Human Rights in Venezuela Act","bill.title":"Rehabilitation of Historic Schools Act of 2021","bill.number":"4086","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4086/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4086/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4086/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000296?format=json","introducedDate":"2023-06-13","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dwight","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4086/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4086/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4086?format=json","bill.introducedDate":"2021-06-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WASSERMAN SCHULTZ:\nH.R. 4086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nExtending the mandate of the Independent International\nFact-Finding Mission on Venezuela until there is a resolution\nto the political and humanitarian crisis in the country.\n[Page H2886]\n","sponsors.0.district":25,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:28:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4086/text?format=json","bill.sponsors.0.lastName":"Evans"}} +{"type":"node","id":"9045","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4069/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kean","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4069/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"4069","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 4069.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3007]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4069/cosponsors?format=json","sponsors.0.bioguideId":"K000398","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4069/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4069/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Kean, Thomas H. [R-NJ-7]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4069/text?format=json","bill.updateDate":"2025-01-03T05:09:03Z","updateDate":"2024-11-09T04:56:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4069/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/K000398?format=json","request.billNumber":"4069","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4069/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4069/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:03Z","title":"Protecting Coasts and Cities from Severe Weather Act","bill.title":"Septic Upgrade Grant Act","bill.number":"4069","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4069/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4069/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4069/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4069/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4069/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4069?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEAN of New Jersey:\nH.R. 4069.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 8 clause 3 of the U.S. Constituion.\nThe single subject of this legislation is:\nTo increase observations, understanding, and forecasting of\ncoastal flooding and storm surge.\n[Page H2885]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4069/text?format=json","bill.sponsors.0.lastName":"Suozzi"}} +{"type":"node","id":"9046","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Dingell","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4063/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"L.","number":"4063","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUSH:\nH.R. 4063.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H3007]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4063/cosponsors?format=json","sponsors.0.bioguideId":"D000624","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4063/actions?format=json","latestAction.actionDate":"2023-06-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4063/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","bill.sponsors.0.bioguideId":"R000515","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rush, Bobby L. [D-IL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4063/text?format=json","bill.updateDate":"2025-01-03T05:09:07Z","updateDate":"2024-07-24T15:21:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4063/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","request.billNumber":"4063","committees.url":"https://api.congress.gov/v3/bill/118/hr/4063/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4063/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:07Z","title":"FIND Fentanyl Act of 2023","bill.title":"Barack Obama Highway Act","bill.number":"4063","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4063/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4063/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4063/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000515?format=json","introducedDate":"2023-06-13","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"BOBBY","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4063/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4063/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4063?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 4063.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo reauthorize a pilot program for public health\nlaboratories to detect fentanyl and other synthetic opioids.\n[Page H2885]\n","sponsors.0.district":6,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4063/text?format=json","bill.sponsors.0.lastName":"RUSH"}} +{"type":"node","id":"9047","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4025/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzales","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4025/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"4025","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 107 (Monday, June 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss RICE of New York:\nH.R. 4025.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H2934]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4025/cosponsors?format=json","sponsors.0.bioguideId":"G000594","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4025/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4025/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","bill.sponsors.0.bioguideId":"R000602","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4025/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rice, Kathleen M. [D-NY-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4025/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:21:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4025/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","request.billNumber":"4025","committees.url":"https://api.congress.gov/v3/bill/118/hr/4025/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4025/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Emi-Coke Accountability Act of 2023","bill.title":"Modernizing Seat Back Safety Act","bill.number":"4025","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4025/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4025/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4025/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000602?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kathleen","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4025/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4025/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4025?format=json","bill.introducedDate":"2021-06-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 4025.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8\nThe single subject of this legislation is:\nTo encourage, enhance, and integrate Emi-Coke Alert plans\nthroughout the United States.\n[Page H2810]\n","sponsors.0.district":23,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":4,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4025/text?format=json","bill.sponsors.0.lastName":"Rice"}} +{"type":"node","id":"9048","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1915/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 48.","policyArea.name":"Arts, Culture, Religion","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1915/summaries?format=json","bill.relatedBills.count":4,"type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"1915","bill.cosponsors.countIncludingWithdrawnCosponsors":67,"bill.committeeReports.0.citation":"H. Rept. 117-69","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 49 (Tuesday, March 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeFAZIO:\nH.R. 1915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe Constitution.\n[Page H1413]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1915/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1915/actions?format=json","latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1915/relatedbills?format=json","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"D000191","bill.originChamber":"House","bill.actions.count":11,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 48.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1915/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/69?format=json","committeeReports.0.citation":"H. Rept. 117-69","bill.sponsors.0.fullName":"Rep. DeFazio, Peter A. [D-OR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1915/text?format=json","bill.updateDate":"2025-01-03T04:52:40Z","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1915/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"1915","committees.url":"https://api.congress.gov/v3/bill/118/hr/1915/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1915/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:52:40Z","title":"To provide for a limitation on availability of funds for Library of Congress, Books for the Blind and Physically Handicapped, Salaries and Expenses for fiscal year 2024.","bill.title":"Water Quality Protection and Job Creation Act of 2021","bill.number":"1915","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1915/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-06-22","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/69?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1915/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1915/summaries?format=json","bill.cosponsors.count":67,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000191?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"PETER","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1915/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1915/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1915?format=json","bill.introducedDate":"2021-03-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1915/text?format=json","bill.sponsors.0.lastName":"DEFAZIO"}} +{"type":"node","id":"9049","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"MCGOVERN","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4034/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"4034","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 4034.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4034/cosponsors?format=json","sponsors.0.bioguideId":"M000312","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4034/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4034/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":32,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4034/text?format=json","bill.updateDate":"2025-01-03T05:09:08Z","updateDate":"2024-12-20T09:06:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4034/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","request.billNumber":"4034","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4034/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4034/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:08Z","title":"To amend title XVIII of the Social Security Act to provide coverage for wigs as durable medical equipment under the Medicare program, and for other purposes.","bill.title":"Pre-apprenticeship Promotion Act","bill.number":"4034","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":32,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4034/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4034/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4034/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4034/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4034/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4034?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 4034.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1.\nThe single subject of this legislation is:\nThe single subject of this legislation is: to amend title\nXVIII of the Social Security Act to provide coverage for wigs\nas durable medical equipment under the Medicare program.\n[Page H2810]\n","sponsors.0.district":2,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"JAMES","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4034/text?format=json","bill.sponsors.0.lastName":"Beyer"}} +{"type":"node","id":"9050","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wittman","bill.latestAction.actionDate":"2021-06-22","cboCostEstimates.0.pubDate":"2023-11-20T19:28:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Animals","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4051/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4051","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HIGGINS of New York:\nH.R. 4051.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3007]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4051/cosponsors?format=json","sponsors.0.bioguideId":"W000804","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4051/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-02-06","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","bill.sponsors.0.bioguideId":"H001038","bill.originChamber":"House","bill.actions.count":4,"titles.count":7,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-368","bill.sponsors.0.fullName":"Rep. Higgins, Brian [D-NY-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4051/text?format=json","bill.updateDate":"2025-01-03T05:09:07Z","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4051/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","request.billNumber":"4051","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4051/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4051/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:07Z","title":"Supporting the Health of Aquatic systems through Research Knowledge and Enhanced Dialogue Act","bill.title":"Opioid Treatment Providers Act","bill.number":"4051","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on September 20, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59777","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4051/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-06-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/368?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4051/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4051/summaries?format=json","cboCostEstimates.0.title":"H.R. 4051, SHARKED Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001038?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4051/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4051/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4051?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 4051.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProtection of Recreational Fishing from Shark encounters.\n[Page H2811]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":26,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:51:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4051/text?format=json","bill.sponsors.0.lastName":"Higgins"}} +{"type":"node","id":"9051","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4037/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Menendez","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4037/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4037","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRADY:\nH.R. 4037.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1 Section 8\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4037/cosponsors?format=json","sponsors.0.bioguideId":"M001226","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4037/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4037/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","bill.sponsors.0.bioguideId":"B000755","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4037/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brady, Kevin [R-TX-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4037/text?format=json","bill.updateDate":"2025-01-03T05:08:58Z","updateDate":"2024-07-24T15:21:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4037/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","request.billNumber":"4037","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4037/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4037/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:08:58Z","title":"Airline Employee Assault Prevention Act","bill.title":"Trade Preferences and American Manufacturing Competitiveness Act of 2021","bill.number":"4037","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4037/committees?format=json","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4037/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4037/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000755?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"KEVIN","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4037/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4037/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4037?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\n[Pages H2810-H2811]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MENENDEZ:\nH.R. 4037.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H2811]]\nArticle 1, Section 8\nThe single subject of this legislation is:\ncorrects a jurisdictoinal issue to prevent airline employee\nassault.\n","sponsors.0.district":8,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":8,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4037/text?format=json","bill.sponsors.0.lastName":"BRADY"}} +{"type":"node","id":"9052","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4072/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lieu","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Social Security.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4072/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"4072","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WENSTRUP:\nH.R. 4072.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3007]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4072/cosponsors?format=json","sponsors.0.bioguideId":"L000582","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4072/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4072/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","bill.sponsors.0.bioguideId":"W000815","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Social Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wenstrup, Brad R. [R-OH-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4072/text?format=json","bill.updateDate":"2025-01-03T05:09:03Z","updateDate":"2024-07-24T15:21:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4072/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","request.billNumber":"4072","committees.url":"https://api.congress.gov/v3/bill/118/hr/4072/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4072/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:03Z","title":"Methane Emissions Research Act","bill.title":"Social Security Child Protection Act of 2021","bill.number":"4072","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4072/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4072/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4072/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000815?format=json","introducedDate":"2023-06-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brad","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4072/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4072/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4072?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 4072.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the single subject of this legislation.\nCreates a pilot study on methane emissions.\n[Page H2885]\n","sponsors.0.district":36,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ted","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4072/text?format=json","bill.sponsors.0.lastName":"Wenstrup"}} +{"type":"node","id":"9053","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4036/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McHenry","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4036/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"4036","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 4036.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article I, Section 8,\nClause 18 of the Constitution of the United States of\nAmerica.\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4036/cosponsors?format=json","sponsors.0.bioguideId":"M001156","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4036/actions?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4036/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","bill.sponsors.0.bioguideId":"B001257","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4036/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4036/text?format=json","bill.updateDate":"2025-01-03T05:09:04Z","updateDate":"2024-07-24T15:21:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4036/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","request.billNumber":"4036","committees.url":"https://api.congress.gov/v3/bill/118/hr/4036/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4036/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:04Z","title":"Accountability through Confirmation Act","bill.title":"EASE Behavioral Health Services Act","bill.number":"4036","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4036/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4036/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4036/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Gus","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4036/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4036/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4036?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McHENRY:\nH.R. 4036.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof\nThe single subject of this legislation is:\nThe bill would make the FinCEN director a senate confirmed\nposition.\n[Page H2810]\n","sponsors.0.district":10,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Patrick","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4036/text?format=json","bill.sponsors.0.lastName":"Bilirakis"}} +{"type":"node","id":"9054","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3855/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzales","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3855/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"3855","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEVENS:\nH.R. 3855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H2711]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3855/cosponsors?format=json","sponsors.0.bioguideId":"G000594","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3855/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3855/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","bill.sponsors.0.bioguideId":"S001215","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3855/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3855/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3855/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","request.billNumber":"3855","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3855/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3855/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"National Digital Reserve Corps Act","bill.title":"Accounting STEM Pursuit Act of 2021","bill.number":"3855","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3855/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3855/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3855/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","introducedDate":"2023-06-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Haley","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3855/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3855/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3855?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 98 (Tuesday, June 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 3855\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish a National Digital Reserve Corps to help\naddress the digital and cybersecurlty need of Executive\nagencies.\n[Page H2764]\n","sponsors.0.district":23,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":11,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3855/text?format=json","bill.sponsors.0.lastName":"Stevens"}} +{"type":"node","id":"9055","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3833/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Walberg","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3833/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3833","bill.cosponsors.countIncludingWithdrawnCosponsors":58,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of Michigan:\nH.R. 3833.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3833/cosponsors?format=json","sponsors.0.bioguideId":"W000798","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3833/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3833/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","bill.sponsors.0.bioguideId":"L000592","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":58,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3833/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Andy [D-MI-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3833/text?format=json","bill.updateDate":"2025-01-03T05:07:23Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3833/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","request.billNumber":"3833","committees.url":"https://api.congress.gov/v3/bill/118/hr/3833/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3833/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:23Z","title":"National Labor Relations Board Reform Act","bill.title":"Equal Dignity for Married Taxpayers Act of 2021","bill.number":"3833","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":58,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3833/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3833/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3833/summaries?format=json","bill.cosponsors.count":58,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000592?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3833/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3833/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3833?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 3833.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, clause 3 of the Constitution of the\nUnited States\nThe single subject of this legislation is:\nTo amend the National Labor Relations Act to reform the\nNational Labor Relations Board, the Office of the General\nCounsel, and the process for appellate review, and for other\npurposes.\n[Page H2743]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":9,"sponsors.0.firstName":"Tim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3833/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"9056","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3845/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3845/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Coleman","number":"3845","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RADEWAGEN:\nH.R. 3845.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 1 of\nSection 8 of Article I of the United States Constitution,\nwhich provides Congress with the ability to enact legislation\nnecessary and proper to effectuate its purposes in taxing and\nspending.\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3845/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3845/actions?format=json","latestAction.actionDate":"2023-06-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3845/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"R000600","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Radewagen, Aumua Amata Coleman [R-AS-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3845/text?format=json","bill.updateDate":"2025-01-03T05:07:21Z","updateDate":"2024-11-07T19:02:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3845/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"3845","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3845/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3845/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:21Z","title":"Disability Access to Transportation Act","bill.title":"Parity for HUBZone Appeals Act of 2021","bill.number":"3845","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3845/committees?format=json","request.format":"json","sponsors.0.middleName":"Coleman","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3845/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3845/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000600?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-06-06","bill.originChamberCode":"H","subjects.count":19,"bill.committees.count":1,"bill.sponsors.0.firstName":"Aumua Amata","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3845/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3845/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3845?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 98 (Tuesday, June 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTransportation\n[Page H2764]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AS","sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2024-11-07T19:02:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3845/text?format=json","bill.sponsors.0.lastName":"Radewagen"}} +{"type":"node","id":"9057","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3810/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ESHOO","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3810/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3810","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCK:\nH.R. 3810.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H2709]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3810/cosponsors?format=json","sponsors.0.bioguideId":"E000215","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3810/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3810/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-16]","bill.sponsors.0.bioguideId":"B001297","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3810/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3810/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:21:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3810/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","request.billNumber":"3810","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3810/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3810/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Drug Origin Transparency Act of 2023","bill.title":"Saving American History Act of 2021","bill.number":"3810","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3810/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3810/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3810/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ken","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3810/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3810/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3810?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 3810.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo increase transparency in where drugs and active\npharmaceutical ingredients are manufactured.\n[Page H2742]\n","sponsors.0.district":16,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":4,"sponsors.0.firstName":"ANNA","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3810/text?format=json","bill.sponsors.0.lastName":"Buck"}} +{"type":"node","id":"9058","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"NORTON","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Civil Rights and Liberties, Minority Issues","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3819/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"3819","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DEUTCH:\nH.R. 3819.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the U.S. Constttation\n[Page H2709]\n","sponsors.0.bioguideId":"N000147","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3819/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-05","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","bill.sponsors.0.bioguideId":"D000610","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Deutch, Theodore E. [D-FL-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3819/text?format=json","bill.updateDate":"2025-01-03T05:07:28Z","updateDate":"2024-07-24T15:21:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3819/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","request.billNumber":"3819","committees.url":"https://api.congress.gov/v3/bill/118/hr/3819/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3819/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:28Z","title":"District of Columbia Non-Discrimination Home Rule Act of 2023","bill.title":"Special Needs Tax Credit Act","bill.number":"3819","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3819/committees?format=json","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3819/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3819/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000610?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Theodore","sponsors.0.state":"DC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3819/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3819/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3819?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 3819.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 17 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would end the applicability of the Religious\nFreedom Restoration Act of 1993 to the District of Columbia.\n[Page H2742]\n","sponsors.0.district":22,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":22,"sponsors.0.firstName":"ELEANOR","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3819/text?format=json","bill.sponsors.0.lastName":"Deutch"}} +{"type":"node","id":"9059","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3837/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3837/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"3837","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 3837.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 and Clause 18\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3837/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3837/actions?format=json","latestAction.actionDate":"2023-06-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3837/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3837/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3837/text?format=json","bill.updateDate":"2025-01-03T05:07:20Z","updateDate":"2024-08-26T20:29:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3837/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"3837","committees.url":"https://api.congress.gov/v3/bill/118/hr/3837/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3837/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:20Z","title":"Improving Public Health Preparedness Act","bill.title":"HALT Act of 2021","bill.number":"3837","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3837/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3837/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3837/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","introducedDate":"2023-06-06","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3837/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3837/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3837?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 98 (Tuesday, June 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 3837.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nThis legislation codifies the Strategic National Stockpile\nunder the Assistant Secretary for Preparedness and Response.\n[Page H2763]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-08-26T20:29:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3837/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}} +{"type":"node","id":"9060","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3805/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3805/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3805","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2709]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3805/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3805/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3805/relatedbills?format=json","latestAction.actionDate":"2023-06-09","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3805/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3805/text?format=json","bill.updateDate":"2025-01-03T05:07:24Z","updateDate":"2024-07-31T08:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3805/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"3805","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3805/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3805/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:24Z","title":"KIDS Health Act of 2023","bill.title":"Millionaires Surtax Act","bill.number":"3805","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3805/committees?format=json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3805/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3805/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3805/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3805/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3805?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 3805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nChildren's Health\n[Page H2742]\n","sponsors.0.district":8,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-31T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3805/text?format=json","bill.sponsors.0.lastName":"Beyer"}} +{"type":"node","id":"9061","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3830/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3830/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"3830","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGEVIN:\nH.R. 3830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3830/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3830/actions?format=json","latestAction.actionDate":"2023-06-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3830/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"L000559","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Langevin, James R. [D-RI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3830/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:21:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3830/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"3830","committees.url":"https://api.congress.gov/v3/bill/118/hr/3830/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3830/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To require the Administrator of the Small Business Administration to expand eligibility for certain contracts, and for other purposes.","bill.title":"SPELL Act","bill.number":"3830","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3830/committees?format=json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3830/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3830/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000559?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"HI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3830/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3830/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3830?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nRequiring the Administrator of the Small Business\nAdministration to expand eligibility for certain contracts,\nand for other purposes.\n[Page H2743]\n","sponsors.0.district":2,"bill.sponsors.0.state":"RI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3830/text?format=json","bill.sponsors.0.lastName":"LANGEVIN"}} +{"type":"node","id":"9062","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3078/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"bill.cboCostEstimates.0.title":"H.R. 3078, Pipeline and LNG Facility Cybersecurity Preparedness Act","sponsors.0.lastName":"Williams","bill.latestAction.actionDate":"2021-06-10","cboCostEstimates.0.pubDate":"2022-11-17T19:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported by Voice Vote.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3078/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3078","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 81 (Tuesday, May 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. UPTON:\nH.R. 3078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3: Congress shall have power\nto regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes.\n[Page H2195]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3078/cosponsors?format=json","sponsors.0.bioguideId":"W000788","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3078/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3078/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","bill.sponsors.0.bioguideId":"U000031","bill.cboCostEstimates.0.description":"As ordered reported on June 10, 2021\n","bill.actions.count":7,"bill.originChamber":"House","titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Ordered to be Reported by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-11-17T19:27:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Upton, Fred [R-MI-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3078/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-06-12T18:23:22Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3078/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","request.billNumber":"3078","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3078/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3078/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:53:14Z","title":"Sunlight in Workplace Harassment Act","bill.title":"Pipeline and LNG Facility Cybersecurity Preparedness Act","bill.number":"3078","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported on June 10, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58789","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3078/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3078/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3078/summaries?format=json","bill.cosponsors.count":23,"cboCostEstimates.0.title":"H.R. 3078, Pipeline and LNG Facility Cybersecurity Preparedness Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000031?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"FRED","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3078/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3078/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3078?format=json","bill.introducedDate":"2021-05-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 74 (Tuesday, May 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 3078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo require disclosure of payments for settlements of\ndisputes regarding sexual abuse and certain types of\nharassment and discrimination.\n[Page H2128]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":6,"sponsors.0.firstName":"Nikema","bill.type":"HR","updateDateIncludingText":"2024-06-12T18:23:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3078/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58789","bill.sponsors.0.lastName":"UPTON"}} +{"type":"node","id":"9063","labels":["Bill"],"properties":{"relatedBills.count":7,"congress":118,"sponsors.0.lastName":"Hern","cboCostEstimates.0.pubDate":"2023-06-20T16:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3799/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"3799","sponsors":[],"amendments.count":3,"sponsors.0.bioguideId":"H001082","bill.subjects.count":7,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3799/relatedbills?format=json","latestAction.actionDate":"2023-06-21","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.originChamber":"House","bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","cboCostEstimates.2.url":"https://www.cbo.gov/publication/59315","cboCostEstimates.2.description":"As ordered reported by the House Committee on Ways and Means on\nJune 7, 2023\n","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-107","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59315","updateDate":"2025-01-17T03:11:15Z","committees.count":1,"cboCostEstimates.1.pubDate":"2023-06-26T18:17:00Z","request.billNumber":"3799","committees.url":"https://api.congress.gov/v3/bill/118/hr/3799/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:58Z","cboCostEstimates.1.description":"As ordered reported by the House Committee on Ways and Means on\nJune 7, 2023\n","bill.number":"3799","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nJune 13, 2023\nhttps://rules.house.gov/bill/118/hr-3799\n","latestAction_actionDate":"2021-06-09","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3799/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3799/summaries?format=json","cboCostEstimates.0.title":"Estimated Direct Spending and Revenue Effects of Rules Committee Print 118-9 (H.R. 3799, CHOICE Arrangement Act), as amended by Amendment 8 (Smith","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-06-05","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3799/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/3799?format=json","cboCostEstimates.1.title":"H.R. 3799, the Custom Health Option and Individual Care Expense Arrangement Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 3799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nhealth\n[Page H2742]\n","bill.sponsors.0.district":1,"bill.type":"HR","cboCostEstimates.2.pubDate":"2023-06-26T18:17:00Z","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-06-09","latestAction_text":"Referred to the Subcommittee on Health.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","cboCostEstimates.2.title":"H.R. 3799, the Custom Health Option and Individual Care Expense Arrangement Act ","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nspecifically Clause 1.\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3799/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3799/actions?format=json","textVersions.count":3,"bill.sponsors.0.bioguideId":"T000468","amendments.url":"https://api.congress.gov/v3/bill/118/hr/3799/amendments?format=json","bill.actions.count":5,"titles.count":8,"cosponsors.count":1,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3799/text?format=json","bill.updateDate":"2025-01-03T05:06:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3799/subjects?format=json","request.congress":"118","actions.count":34,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3799/subjects?format=json","title":"CHOICE Arrangement Act","bill.title":"Take Your Shot Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59277","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3799/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/107?format=json","request.billType":"hr","latestAction.actionTime":"18:39:50","bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3799/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-06-08","sponsors.0.district":1,"bill.sponsors.0.state":"NV","sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-01-17T03:11:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3799/text?format=json","bill.sponsors.0.lastName":"Titus"}} +{"type":"node","id":"9064","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3792/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wilson","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3792/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3792","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PRESSLEY:\nH.R. 3792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3792/cosponsors?format=json","sponsors.0.bioguideId":"W000795","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3792/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3792/relatedbills?format=json","latestAction.actionDate":"2023-06-01","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","bill.sponsors.0.bioguideId":"P000617","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":163,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3792/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3792/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2024-11-12T17:39:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3792/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","request.billNumber":"3792","committees.url":"https://api.congress.gov/v3/bill/118/hr/3792/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3792/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"U.S.-Israel Partnership and Abraham Accords Enhancement Act of 2023","bill.title":"STRONG Support for Children Act of 2021","bill.number":"3792","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":163,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3792/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3792/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3792/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ayanna","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3792/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3792/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3792?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 3792.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo modify authorities relating to cooperation between the\nUnited States and Israel, expand and strengthen the Abraham\nAccords, and for other purposes.\n[Page H2713]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-11-12T17:39:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3792/text?format=json","bill.sponsors.0.lastName":"Pressley"}} +{"type":"node","id":"9065","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3783/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Espaillat","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3783/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"P.","number":"3783","bill.cosponsors.countIncludingWithdrawnCosponsors":105,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 3783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3783/cosponsors?format=json","sponsors.0.bioguideId":"E000297","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3783/actions?format=json","latestAction.actionDate":"2023-07-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3783/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":8,"titles.count":4,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3783/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3783/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:21:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3783/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","request.billNumber":"3783","committees.url":"https://api.congress.gov/v3/bill/118/hr/3783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3783/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Mink VIRUS Act","bill.title":"Medical Nutrition Equity Act of 2021","bill.number":"3783","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3783/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3783/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3783/summaries?format=json","bill.cosponsors.count":105,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","introducedDate":"2023-06-01","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":4,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3783/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3783/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3783?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 3783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\nThe single subject of this legislation is:\nThis bill would close all Mink farms and pay farmers the\nfair market price of their farms.\n[Page H2713]\n","sponsors.0.district":13,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Adriano","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3783/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}} +{"type":"node","id":"9066","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3778/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smith","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Foreign Trade and International Finance","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3778/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3778","bill.cosponsors.countIncludingWithdrawnCosponsors":43,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 3778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section l of the U.S. Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3778/cosponsors?format=json","sponsors.0.bioguideId":"S001172","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3778/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3778/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Smith, Adrian [R-NE-3]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3778/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3778/text?format=json","bill.updateDate":"2025-01-03T05:06:50Z","updateDate":"2024-12-20T09:06:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3778/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001172?format=json","request.billNumber":"3778","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3778/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3778/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:50Z","title":"Formula 3.0 Act","bill.title":"NOVID Act","bill.number":"3778","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3778/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3778/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3778/summaries?format=json","bill.cosponsors.count":43,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"NE","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3778/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3778/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3778?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Nebraska:\nH.R. 3778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nThis bill permanently repeals tariffs on infant formula and\ninfant formula base powder, eliminates the quota for infant\nformula, and clarifies necessary HTS codes.\n[Page H2709]\n","sponsors.0.district":3,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Adrian","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3778/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}} +{"type":"node","id":"9067","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3775/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moore","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3775/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3775","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KHANNA:\nH.R. 3775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3775/cosponsors?format=json","sponsors.0.bioguideId":"M001160","bill.subjects.count":22,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3775/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3775/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","bill.sponsors.0.bioguideId":"K000389","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3775/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:21:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3775/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","request.billNumber":"3775","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3775/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3775/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Corey Adams Searchlight Act","bill.title":"State-Based Universal Health Care Act of 2021","bill.number":"3775","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3775/committees?format=json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3775/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3775/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Ro","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3775/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3775/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3775?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 3775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nVeterans Affairs\n[Page H2709]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Gwen","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3775/text?format=json","bill.sponsors.0.lastName":"Khanna"}} +{"type":"node","id":"9068","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3774/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 240.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3774","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3774/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3774/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-11-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3774/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":8,"cosponsors.count":241,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3774/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:18:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3774/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":16,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3774","committees.url":"https://api.congress.gov/v3/bill/118/hr/3774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3774/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SHIP Act","bill.title":"Advancing Gig Economy Act","bill.number":"3774","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":241,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3774/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3774/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3774/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3774/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3774/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3774?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo impose additional sanctions with respect to the\nimportation or facilitation of the importation of petroleum\nproducts from Iran, and for other purposes.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-08-09T16:27:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3774/text?format=json","bill.sponsors.0.lastName":"Joyce"}} +{"type":"node","id":"9069","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3773","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8 Clause 3--Commerce clause\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3773/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3773/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3773/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3773/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Stop Anti-Semitism on College Campuses Act","bill.title":"PACT Act of 2021","bill.number":"3773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3773/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3773/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3773?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to prohibit\ninstitutions of higher education that authorize Anti-Semitic\nevents on campus from participating in the student loan and\ngrant programs under title IV of such Act.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3773/text?format=json","bill.sponsors.0.lastName":"Joyce"}} +{"type":"node","id":"9070","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cohen","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3762/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3762","sponsors":[],"sponsors.0.bioguideId":"C001068","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3762/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3762/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Cohen, Steve [D-TN-9]","bill.sponsors.0.bioguideId":"G000579","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3762/text?format=json","bill.updateDate":"2025-01-03T05:06:57Z","updateDate":"2024-07-24T15:21:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3762/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001068?format=json","request.billNumber":"3762","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3762/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3762/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:57Z","title":"Emergency Vacating of Aircraft Cabin Act","bill.title":"No Vax Pass Act of 2021","bill.number":"3762","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3762/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3762/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3762/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3762/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3762/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3762?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COHEN:\nH.R. 3762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAviation\n[Page H2708]\n","sponsors.0.district":9,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Steve","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3762/text?format=json","bill.sponsors.0.lastName":"Gallagher"}} +{"type":"node","id":"9071","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3761/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castor","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3761/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3761","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 3761.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Interstate Commerce Clause: Clause 3 of Section 8 of\nArticle I.\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3761/cosponsors?format=json","sponsors.0.bioguideId":"C001066","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3761/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3761/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Castor, Kathy [D-FL-14]","bill.sponsors.0.bioguideId":"G000579","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3761/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3761/text?format=json","bill.updateDate":"2025-01-03T05:06:49Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3761/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001066?format=json","request.billNumber":"3761","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3761/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3761/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:49Z","title":"ASSIST Act","bill.title":"Promising Pathway Act","bill.number":"3761","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3761/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3761/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3761/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3761/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3761/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3761?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CASTOR of Florida:\nH.R. 3761.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution provides\nCongress with the authority to ``provide for the common\nDefense and general Welfare'' of Americans.\nThe single subject of this legislation is:\nStudent Mental Health\n[Page H2708]\n","sponsors.0.district":14,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Kathy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3761/text?format=json","bill.sponsors.0.lastName":"Gallagher"}} +{"type":"node","id":"9072","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3759/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Beyer","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3759/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3759","bill.cosponsors.countIncludingWithdrawnCosponsors":67,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeGETTE:\nH.R. 3759.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3759/cosponsors?format=json","sponsors.0.bioguideId":"B001292","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3759/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3759/relatedbills?format=json","latestAction.actionDate":"2023-06-01","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","bill.sponsors.0.bioguideId":"D000197","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":28,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3759/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeGette, Diana [D-CO-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3759/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2024-11-19T09:05:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3759/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","request.billNumber":"3759","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3759/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3759/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Barriers to Suicide Act of 2023","bill.title":"Physical Therapist Workforce and Patient Access Act of 2021","bill.number":"3759","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":28,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3759/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3759/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3759/summaries?format=json","bill.cosponsors.count":67,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000197?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"DIANA","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3759/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3759/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3759?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3759.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nLegislating\n[Page H2708]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":1,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-11-19T09:05:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3759/text?format=json","bill.sponsors.0.lastName":"DEGETTE"}} +{"type":"node","id":"9073","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3753/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"NORTON","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3753/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3753","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 3753.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the U.S. Constitution\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3753/cosponsors?format=json","sponsors.0.bioguideId":"N000147","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3753/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3753/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-30","bill.policyArea.name":"Health","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","bill.sponsors.0.bioguideId":"C001097","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":25,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3753/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3753/text?format=json","bill.updateDate":"2025-01-03T05:06:45Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3753/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","request.billNumber":"3753","committees.url":"https://api.congress.gov/v3/bill/118/hr/3753/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3753/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:45Z","title":"District of Columbia Clemency Home Rule Act","bill.title":"Parity Implementation Assistance Act","bill.number":"3753","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3753/committees?format=json","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3753/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3753/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2023-05-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"DC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3753/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3753/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3753?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 92 (Tuesday, May 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 3753.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 17 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThis bill would give the District of Columbia exclusive\nauthority to grant clemency for D.C. crimes.\n[Page H2665]\n","sponsors.0.district":29,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"sponsors.0.firstName":"ELEANOR","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3753/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}} +{"type":"node","id":"9074","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3549/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wenstrup","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3549/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"3549","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 3549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3549/cosponsors?format=json","sponsors.0.bioguideId":"W000815","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3549/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3549/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Wenstrup, Brad R. [R-OH-2]","bill.sponsors.0.bioguideId":"T000483","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3549/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3549/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-20T09:06:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3549/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/W000815?format=json","request.billNumber":"3549","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3549/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3549/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"PACE Part D Choice Act of 2023","bill.title":"Comprehensive Mental Health in Schools Pilot Program Act of 2021","bill.number":"3549","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3549/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3549/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3549/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3549/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3549/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3549?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WENSTRUP:\nH.R. 3549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHealth\n[Page H2460]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":6,"sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3549/text?format=json","bill.sponsors.0.lastName":"Trone"}} +{"type":"node","id":"9075","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3492/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gosar","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3492/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3492","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 3492.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3492/cosponsors?format=json","sponsors.0.bioguideId":"G000565","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3492/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3492/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","bill.sponsors.0.bioguideId":"E000297","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":53,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3492/text?format=json","bill.updateDate":"2025-01-03T05:04:46Z","updateDate":"2024-07-24T15:21:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3492/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","request.billNumber":"3492","committees.url":"https://api.congress.gov/v3/bill/118/hr/3492/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3492/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:46Z","title":"Gun Owner Registration Information Protection Act","bill.title":"Gold Star Families Benefits Protection Act","bill.number":"3492","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":53,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3492/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3492/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3492/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Adriano","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3492/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3492/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3492?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 3492.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof'' and the Second Amendment\nof the U.S. Constitution, which states that the ``A well\nregulated militia being necessary to the security of a free\nstate the right of the people to\nThe single subject of this legislation is:\nThe purpose of this bill is to prohibit funding of state\nand local registries of gun owners by federal agencies.\n[Page H2458]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":13,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3492/text?format=json","bill.sponsors.0.lastName":"Espaillat"}} +{"type":"node","id":"9076","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3477/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carson","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3477/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"3477","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BROWN:\nH.R. 3477.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Art. 1, Sec. 8, Cl. 18)\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3477/cosponsors?format=json","sponsors.0.bioguideId":"C001072","bill.subjects.count":2,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3477/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3477/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Carson, Andre [D-IN-7]","bill.sponsors.0.bioguideId":"B001304","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":21,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3477/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3477/text?format=json","bill.updateDate":"2025-01-03T05:04:45Z","updateDate":"2024-07-24T15:22:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3477/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","request.billNumber":"3477","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3477/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3477/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:45Z","title":"To require a report on the death of Shireen Abu Akleh.","bill.title":"To authorize the posthumous honorary promotion to general of Lieutenant General Frank Maxwell Andrews, United States Army.","bill.number":"3477","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":21,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3477/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3477/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3477/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3477/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3477/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3477?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARSON:\nH.R. 3477.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe Justice for Shireen Act is bill to seek justice for the\ndeath of an American journalist killed abroad.\n[Page H2457]\n","sponsors.0.district":7,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"André","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3477/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"9077","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3507/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kilmer","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2024-07-16T20:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3507/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 542.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3507","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON:\nH.R. 3507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3507/cosponsors?format=json","sponsors.0.bioguideId":"K000381","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3507/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3507/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-08-30","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","bill.sponsors.0.bioguideId":"J000304","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":45,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-645","bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3507/text?format=json","bill.updateDate":"2025-01-03T05:04:45Z","updateDate":"2025-01-16T07:06:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3507/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","request.billNumber":"3507","committees.url":"https://api.congress.gov/v3/bill/118/hr/3507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3507/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:45Z","title":"Yes In My Backyard Act","bill.title":"Stop Cancel Culture from Degrading Honor Act","bill.number":"3507","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on May 16, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":45,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60529","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3507/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/645?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3507/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3507/summaries?format=json","bill.cosponsors.count":11,"cboCostEstimates.0.title":"H.R. 3507, Yes in My Backyard Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3507/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3507/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3507?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 3507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\nThe single subject of this legislation is:\nHousing is the single subject of this bill.\n[Page H2458]\n","sponsors.0.district":6,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Derek","bill.type":"HR","updateDateIncludingText":"2025-01-16T07:06:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3507/text?format=json","bill.sponsors.0.lastName":"Jackson"}} +{"type":"node","id":"9078","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ISSA","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2024-12-05T19:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3499/summaries?format=json","type":"HR","latestAction.text":"Reported (Amended) by the Committee on Natural Resources. H. Rept. 118-714, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"3499","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 3499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3499/cosponsors?format=json","sponsors.0.bioguideId":"I000056","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3499/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3499/relatedbills?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","bill.sponsors.0.bioguideId":"G000565","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-714","bill.sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3499/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3499/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":13,"sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","request.billNumber":"3499","committees.url":"https://api.congress.gov/v3/bill/118/hr/3499/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3499/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Direct Hire To Fight Fires","bill.title":"MERIT Act","bill.number":"3499","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Natural Resources\non October 22, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61057","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3499/committees?format=json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-05-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/714?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3499/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3499/summaries?format=json","cboCostEstimates.0.title":"H.R. 3499, Direct Hire To Fight Fires","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":2,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3499/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3499/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3499?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 3499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo amend title 5, United States Code, to provide direct\nhire authority to appoint individuals to Federal wildland\nfirefighting and firefighting support positions in the Forest\nService or the Department of the Interior, and for other\npurposes.\n[Page H2458]\n","sponsors.0.district":48,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":4,"sponsors.0.firstName":"DARRELL","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3499/text?format=json","bill.sponsors.0.lastName":"Gosar"}} +{"type":"node","id":"9079","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3526/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"X.","number":"3526","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOONEY:\nH.R. 3526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3526/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3526/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"M001195","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Mooney, Alexander X. [R-WV-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3526/text?format=json","bill.updateDate":"2025-01-03T05:05:03Z","updateDate":"2024-08-16T15:00:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3526/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"3526","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3526/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:03Z","title":"Extraordinary Measures Transparency Act","bill.title":"Gold Reserve Transparency Act of 2021","bill.number":"3526","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3526/committees?format=json","request.format":"json","sponsors.0.middleName":"X.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3526/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3526/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001195?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alexander","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3526/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3526/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3526?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 3526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to issue reports\nwith respect to extraordinary measures, and for other\npurposes.\n[Page H2459]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WV","bill.sponsors.0.district":2,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-08-16T15:00:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3526/text?format=json","bill.sponsors.0.lastName":"Mooney"}} +{"type":"node","id":"9080","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3478/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3478/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3478","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCK:\nH.R. 3478.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3478/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3478/actions?format=json","latestAction.actionDate":"2023-06-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3478/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001297","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":11,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3478/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-06-11T15:39:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3478/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"3478","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3478/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3478/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"COVER Act of 2023","bill.title":"Castle Pines Community Act","bill.number":"3478","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3478/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3478/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3478/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ken","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3478/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3478/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3478?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 3478.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nSoil health\n[Page H2457]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":4,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:39:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3478/text?format=json","bill.sponsors.0.lastName":"Buck"}} +{"type":"node","id":"9081","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3484/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3484/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"L. \"Buddy\"","number":"3484","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 3484.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 4 of section 8 of article I of the Constitution\nprovides Congress with the power ``to establish an uniform\nRule of Naturalization . . .''\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3484/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3484/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3484/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"C001103","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3484/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3484/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"3484","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3484/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3484/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"ARC Act","bill.title":"To prohibit States that implement programs to assist illegal immigrants from receiving Federal funds, and for other purposes.","bill.number":"3484","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3484/committees?format=json","request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3484/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3484/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Earl","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3484/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3484/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3484?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\n[Pages H2457-H2458]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 3484.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H2458]]\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEnergy\n","sponsors.0.district":19,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3484/text?format=json","bill.sponsors.0.lastName":"Carter"}} +{"type":"node","id":"9082","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3476/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Burchett","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3476/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3476","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 3476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 15\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3476/cosponsors?format=json","sponsors.0.bioguideId":"B001309","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3476/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","bill.sponsors.0.bioguideId":"B001295","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3476/text?format=json","bill.updateDate":"2025-01-03T05:04:46Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3476/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","request.billNumber":"3476","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3476/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3476/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:46Z","title":"Easy Access to Mail Act","bill.title":"Air National Guard Air Refueling Wing Center of Excellence Act","bill.number":"3476","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3476/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3476/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3476/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3476/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3476/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3476?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURCHETT:\nH.R. 3476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish rules and procedures for the United States\nPostal Service regarding the use of centralized delivery of\nmail to residential housing units.\n[Page H2457]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Tim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3476/text?format=json","bill.sponsors.0.lastName":"Bost"}} +{"type":"node","id":"9083","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bice","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3471/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3471","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. AXNE:\nH.R. 3471.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\n[Page H2666]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3471/cosponsors?format=json","sponsors.0.bioguideId":"B000740","bill.subjects.count":26,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3471/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3471/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","bill.sponsors.0.bioguideId":"A000378","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3471/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Axne, Cynthia [D-IA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3471/text?format=json","bill.updateDate":"2025-01-03T05:05:03Z","updateDate":"2024-07-24T15:22:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3471/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","request.billNumber":"3471","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3471/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3471/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:03Z","title":"Access to Safe Contraception Act of 2023","bill.title":"Workforce Investment Disclosure Act of 2021","bill.number":"3471","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3471/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3471/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3471/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000378?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Cynthia","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3471/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3471/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3471?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE:\nH.R. 3471.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nthe bill allows access to safe methods of contraception\n[Page H2457]\n","sponsors.0.district":5,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Stephanie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3471/text?format=json","bill.sponsors.0.lastName":"Axne"}} +{"type":"node","id":"9084","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grijalva","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3495/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3495","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 3495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3495/cosponsors?format=json","sponsors.0.bioguideId":"G000551","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3495/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3495/relatedbills?format=json","latestAction.actionDate":"2023-05-18","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","bill.sponsors.0.bioguideId":"G000579","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3495/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3495/text?format=json","bill.updateDate":"2025-01-03T05:05:06Z","updateDate":"2024-06-11T15:55:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3495/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","request.billNumber":"3495","committees.url":"https://api.congress.gov/v3/bill/118/hr/3495/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3495/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:06Z","title":"Clean Energy Minerals Reform Act of 2023","bill.title":"National Signing Bonus Act of 2021","bill.number":"3495","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3495/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3495/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3495/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3495/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3495/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3495?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 3495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nReforms to the Mining Law of 1872.\n[Page H2458]\n","sponsors.0.district":7,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Raúl","bill.type":"HR","updateDateIncludingText":"2024-09-18T16:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3495/text?format=json","bill.sponsors.0.lastName":"Gallagher"}} +{"type":"node","id":"9085","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3506/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kiley","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2023-06-27T18:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3506/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"French","number":"3506","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 3506.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3506/cosponsors?format=json","sponsors.0.bioguideId":"K000401","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3506/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3506/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2023-11-14","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Kiley, Kevin [R-CA-3]","bill.sponsors.0.bioguideId":"H001072","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3506/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-234","bill.sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3506/text?format=json","bill.updateDate":"2025-01-03T05:04:50Z","updateDate":"2024-11-09T04:52:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3506/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/K000401?format=json","request.billNumber":"3506","committees.url":"https://api.congress.gov/v3/bill/118/hr/3506/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3506/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:50Z","title":"To make technical amendments to update statutory references to certain provisions classified to title 7, title 20, and title 43, United States Code, and to correct related technical errors.","bill.title":"21st Century Dollar Act","bill.number":"3506","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nMay 24, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59323","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3506/committees?format=json","request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2021-05-25","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/234?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/3506/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3506/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 3506, a bill to make technical amendments to update statutory references to certain provisions classified to title 7, title 20, and title 43, United States Code, and to correct related technical errors","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":2,"bill.committees.count":1,"bill.sponsors.0.firstName":"J.","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3506/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3506/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3506?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILEY:\nH.R. 3506.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo make technical amendments to update statutory references\nto certain provisions classified to title 7, title 20, and\ntitle 43, United States Code, and to correct related\ntechnical errors.\n[Page H2458]\n","sponsors.0.district":3,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":2,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:52:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3506/text?format=json","bill.sponsors.0.lastName":"Hill"}} +{"type":"node","id":"9086","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3501/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3501","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 3501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3501/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3501/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3501/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"G000558","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3501/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3501/text?format=json","bill.updateDate":"2025-01-03T05:05:06Z","updateDate":"2024-07-23T08:06:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3501/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"3501","committees.url":"https://api.congress.gov/v3/bill/118/hr/3501/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3501/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:06Z","title":"Law Enforcement Training for Mental Health Crisis Response Act of 2023","bill.title":"To amend the Harmonized Tariff Schedule of the United States to provide for permanent duty-free treatment on imports of basketballs.","bill.number":"3501","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3501/committees?format=json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3501/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3501/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brett","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3501/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3501/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3501?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 3501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, to provide for the common defense\nThe single subject of this legislation is:\nDefense\n[Page H2458]\n","sponsors.0.district":9,"bill.sponsors.0.state":"KY","bill.sponsors.0.district":2,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2024-07-23T08:06:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3501/text?format=json","bill.sponsors.0.lastName":"Guthrie"}} +{"type":"node","id":"9087","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3519/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3519/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3519","bill.cosponsors.countIncludingWithdrawnCosponsors":95,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3519/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3519/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3519/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"L000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":121,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3519/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3519/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3519/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"3519","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3519/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3519/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Hot Foods Act of 2023","bill.title":"Stop Child Hunger Act of 2021","bill.number":"3519","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":121,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3519/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3519/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3519/summaries?format=json","bill.cosponsors.count":95,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3519/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3519/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3519?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nSNAP\n[Page H2459]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3519/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"9088","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3474/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bonamici","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3474/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3474","bill.cosponsors.countIncludingWithdrawnCosponsors":116,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3474.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\n[[Page H2667]]\n[Page H2666]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3474/cosponsors?format=json","sponsors.0.bioguideId":"B001278","bill.subjects.count":30,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3474/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3474/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":46,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3474/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3474/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3474/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","request.billNumber":"3474","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3474/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3474/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Senior Hunger Prevention Act of 2023","bill.title":"Keeping All Students Safe Act","bill.number":"3474","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":46,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3474/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3474/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3474/summaries?format=json","bill.cosponsors.count":116,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":2,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3474/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3474/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3474?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 3474.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHunger\n[Page H2457]\n","sponsors.0.district":1,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Suzanne","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3474/text?format=json","bill.sponsors.0.lastName":"Beyer"}} +{"type":"node","id":"9089","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3367/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 3367, Gold Star Children Act","bill.textVersions.count":1,"sponsors.0.lastName":"Gaetz","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2021-06-10T20:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3367/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3367","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 88 (Thursday, May 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TAYLOR:\nH.R. 3367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArtlcle I, Section 8, Clause 18 of the United States\n[Page H2652]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3367/cosponsors?format=json","sponsors.0.bioguideId":"G000578","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3367/actions?format=json","latestAction.actionDate":"2023-06-02","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","bill.sponsors.0.bioguideId":"T000479","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-06-10T20:05:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Taylor, Van [R-TX-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3367/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3367/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","request.billNumber":"3367","committees.url":"https://api.congress.gov/v3/bill/118/hr/3367/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3367/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"To amend title 38, United States Code, to provide for the continuing operation of national cemeteries during periods of certain funding restrictions, and for other purposes.","bill.title":"Gold Star Children Act","bill.number":"3367","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57277","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3367/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3367/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3367/summaries?format=json","bill.cosponsors.count":26,"cboCostEstimates.0.title":"H.R. 3367, Gold Star Children Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000479?format=json","introducedDate":"2023-05-16","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Van","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3367/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3367/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3367?format=json","bill.introducedDate":"2021-05-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 82 (Tuesday, May 16, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 3367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, clauses 1 & 18\nThe single subject of this legislation is:\nEnsures that national cemeteries remain open to the public\nif the debt ceiling is breached or there is a lapse in\ndiscretionary appropriations\n[Page H2377]\n","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":3,"sponsors.0.firstName":"Matt","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3367/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57277","bill.sponsors.0.lastName":"Taylor"}} +{"type":"node","id":"9090","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1297/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 1297, Air America Act of 2021","bill.textVersions.count":1,"sponsors.0.lastName":"Jackson","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2021-09-24T20:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1297/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1297","bill.cosponsors.countIncludingWithdrawnCosponsors":235,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1297.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H617]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1297/cosponsors?format=json","sponsors.0.bioguideId":"J000304","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1297/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1297/relatedbills?format=json","latestAction.actionDate":"2023-03-01","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","bill.sponsors.0.bioguideId":"G000576","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":80,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-09-24T20:18:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1297/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1297/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-09T04:42:21Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1297/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","request.billNumber":"1297","committees.url":"https://api.congress.gov/v3/bill/118/hr/1297/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1297/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"To amend title 10, United States Code, to prohibit the Secretary of Defense from paying or reimbursing expenses relating to abortion services, and for other purposes.","bill.title":"Air America Act of 2021","bill.number":"1297","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":80,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57501","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1297/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1297/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1297/summaries?format=json","bill.cosponsors.count":230,"cboCostEstimates.0.title":"H.R. 1297, Air America Act of 2021","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","introducedDate":"2023-03-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Glenn","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1297/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1297/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1297?format=json","bill.introducedDate":"2021-02-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 1297.\n=========================== NOTE ===========================\nOn page H1051, March 1, 2023, the following appeared: By Mr.\nJACKSON: H.R. 1297.\nThe online version has been corrected to read: By Mr. JACKSON of\nTexas: H.R. 1297.\n========================= END NOTE =========================\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nProhibiting the Department of Defense from paying for\nexpenses relating to abortion services.\n[Page H1051]\n","sponsors.0.district":13,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":6,"sponsors.0.firstName":"Ronny","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:42:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1297/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57501","bill.sponsors.0.lastName":"Grothman"}} +{"type":"node","id":"9091","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3327/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 3327, No Congressionally Obligated Recurring Revenue Used as Pensions To Incarcerated Officials Now Act","bill.textVersions.count":1,"sponsors.0.lastName":"Kustoff","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2021-07-09T20:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Energy","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3327/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3327","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 87 (Wednesday, May 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 3327.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H2613]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3327/cosponsors?format=json","sponsors.0.bioguideId":"K000392","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3327/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3327/relatedbills?format=json","latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","bill.sponsors.0.bioguideId":"N000190","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":20,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-07-09T20:27:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3327/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3327/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-01-15T18:51:50Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3327/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","request.billNumber":"3327","committees.url":"https://api.congress.gov/v3/bill/118/hr/3327/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3327/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"Manufactured Housing Affordability and Energy Efficiency Act of 2023","bill.title":"No Congressionally Obligated Recurring Revenue Used as Pensions To Incarcerated Officials Now Act","bill.number":"3327","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57353","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3327/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3327/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3327/summaries?format=json","bill.cosponsors.count":7,"cboCostEstimates.0.title":"H.R. 3327, No Congressionally Obligated Recurring Revenue Used as Pensions To Incarcerated Officials Now Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ralph","sponsors.0.state":"TN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3327/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3327/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3327?format=json","bill.introducedDate":"2021-05-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KUSTOFF:\nH.R. 3327.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof.\nThe single subject of this legislation is:\nThis legislation reinforces HUD's regulatory authority over\nenergy efficiency standards for manufactured housing.\n[Page H2349]\n","sponsors.0.district":8,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":5,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3327/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57353","bill.sponsors.0.lastName":"Norman"}} +{"type":"node","id":"9092","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Neguse","cboCostEstimates.0.pubDate":"2023-09-21T20:40:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1318/summaries?format=json","type":"HR","bill.summaries.count":4,"bill.amendments.count":1,"bill.sponsors.0.middleName":"E.","number":"1318","sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"N000191","laws.0.number":"118-226","bill.subjects.count":12,"latestAction.actionDate":"2025-01-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1318/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-14.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1318/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-268","updateDate":"2025-01-21T17:07:12Z","committees.count":1,"request.billNumber":"1318","committees.url":"https://api.congress.gov/v3/bill/118/hr/1318/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:48:16Z","bill.number":"1318","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on July 26, 2023\n","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-05-24","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1318/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1318/summaries?format=json","cboCostEstimates.0.title":"H.R. 1318, Women’s Suffrage National Monument Location Act","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/Y000033?format=json","introducedDate":"2023-03-01","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"DON","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1318/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1318?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 1318.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAuthorize a monument to women's suffrage to be placed on\nthe National Mall.\n[Page H1052]\n","bill.type":"HR","bill.textVersions.count":5,"bill.latestAction.actionDate":"2021-05-24","latestAction_text":"Became Public Law No: 117-14.","latestAction.text":"Became Public Law No: 118-226.","sponsors.0.party":"D","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. YOUNG:\nH.R. 1318.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution (clauses 3 and 18), which grants Congress\nthe power to regulate Commerce with foreign Nations, and\namong the several states, and with the Indian Tribes; and to\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing powers.\n[Page H618]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1318/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1318/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1318/actions?format=json","textVersions.count":6,"bill.sponsors.0.bioguideId":"Y000033","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1318/amendments?format=json","bill.actions.count":20,"titles.count":6,"cosponsors.count":37,"bill.laws.0.type":"Public Law","bill.sponsors.0.fullName":"Rep. Young, Don [R-AK-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1318/text?format=json","bill.updateDate":"2025-01-03T04:48:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1318/subjects?format=json","bill.laws.0.number":"117-14","request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1318/subjects?format=json","title":"Women’s Suffrage National Monument Location Act","bill.title":"Alaska Tourism Restoration Act","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59593","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1318/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/268?format=json","request.billType":"hr","bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1318/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-24","sponsors.0.district":2,"bill.sponsors.0.state":"AK","sponsors.0.firstName":"Joe","updateDateIncludingText":"2025-01-21T17:07:12Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1318/text?format=json","bill.sponsors.0.lastName":"YOUNG"}} +{"type":"node","id":"9093","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3459/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Yakym","bill.latestAction.actionDate":"2021-05-24","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3459/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3459","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 89 (Friday, May 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BABIN:\nH.R. 3459.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of article I of the Costitution:\n``To make all laws which shall be necessary and proper for\ncarrying into execution the foregoing powers, and all other\npowers vested by this Constitution in the government of the\nUnited States, or in any department or officer thereof.''\n[Page H2659]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3459/cosponsors?format=json","sponsors.0.bioguideId":"Y000067","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3459/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3459/relatedbills?format=json","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Yakym, Rudy [R-IN-2]","bill.sponsors.0.bioguideId":"B001291","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Babin, Brian [R-TX-36]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3459/text?format=json","bill.updateDate":"2025-01-03T05:04:29Z","updateDate":"2024-11-26T15:36:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3459/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/Y000067?format=json","request.billNumber":"3459","committees.url":"https://api.congress.gov/v3/bill/118/hr/3459/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3459/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:29Z","title":"Increasing Competitiveness for American Drones Act of 2023","bill.title":"RIDER Act","bill.number":"3459","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3459/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-24","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3459/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3459/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001291?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3459/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3459/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3459?format=json","bill.introducedDate":"2021-05-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. YAKYM:\nH.R. 3459.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation would streamline the approvals process for\nbeyond visual line of sight unmanned aerial systems flights\nand the regulatory framework for aircraft certification and\ncreate a new position with the FAA to coordinate these\npolicies.\n[Page H2457]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":36,"sponsors.0.firstName":"Rudy","bill.type":"HR","updateDateIncludingText":"2024-11-26T15:36:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3459/text?format=json","bill.sponsors.0.lastName":"Babin"}} +{"type":"node","id":"9094","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3321/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fitzpatrick","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3321/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"3321","bill.cosponsors.countIncludingWithdrawnCosponsors":74,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 3321.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2542]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3321/cosponsors?format=json","sponsors.0.bioguideId":"F000466","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3321/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3321/relatedbills?format=json","latestAction.actionDate":"2023-05-16","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Fitzpatrick, Brian K. [R-PA-1]","bill.sponsors.0.bioguideId":"S001156","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3321/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3321/text?format=json","bill.updateDate":"2025-01-03T05:03:17Z","updateDate":"2025-02-12T16:49:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3321/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000466?format=json","request.billNumber":"3321","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3321/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3321/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:17Z","title":"Defund Cities that Defund the Police Act of 2023","bill.title":"Credit for Caring Act of 2021","bill.number":"3321","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3321/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3321/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3321/summaries?format=json","bill.cosponsors.count":74,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Linda","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3321/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3321/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3321?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZPATRICK:\nH.R. 3321.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, Clause 18\nThe single subject of this legislation is:\nLaw Enforcement\n[Page H2349]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":38,"sponsors.0.firstName":"Brian","bill.type":"HR","updateDateIncludingText":"2025-02-12T16:49:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3321/text?format=json","bill.sponsors.0.lastName":"Sánchez"}} +{"type":"node","id":"9095","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hudson","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Ways and Means, and Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3323/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3323","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 3323.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8.\n[Page H2542]\n","sponsors.0.bioguideId":"H001067","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3323/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3323/relatedbills?format=json","latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-9]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on Ways and Means, and Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3323/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3323/text?format=json","bill.updateDate":"2025-01-03T05:03:19Z","updateDate":"2024-07-24T15:22:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3323/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","request.billNumber":"3323","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3323/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3323/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:19Z","title":"RAPID Act","bill.title":"Federal Home Loan Banks’ Mission Implementation Act","bill.number":"3323","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3323/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3323/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3323/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":3,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3323/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3323/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3323?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 3323.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo expedite broadband deployment by streamlining permitting\nreviews\n[Page H2349]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Richard","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3323/text?format=json","bill.sponsors.0.lastName":"Torres"}} +{"type":"node","id":"9096","labels":["Bill"],"properties":{"relatedBills.count":27,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3305/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3305/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3305","bill.cosponsors.countIncludingWithdrawnCosponsors":55,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 3305.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1 and 18 of the\nUnited States Constitution.\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3305/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":2,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3305/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3305/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"F000454","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":194,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3305/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3305/text?format=json","bill.updateDate":"2025-01-03T05:03:19Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3305/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"3305","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3305/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3305/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:19Z","title":"Black Maternal Health Momnibus Act","bill.title":"End the Threat of Default Act","bill.number":"3305","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":194,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3305/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3305/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3305/summaries?format=json","bill.cosponsors.count":55,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":51,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3305/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3305/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3305?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 3305.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nHealth care\n[Page H2348]\n","sponsors.0.district":14,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":11,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3305/text?format=json","bill.sponsors.0.lastName":"Foster"}} +{"type":"node","id":"9097","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3295/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Griffith","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3295/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3295","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 3295.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3295/cosponsors?format=json","sponsors.0.bioguideId":"G000568","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3295/actions?format=json","latestAction.actionDate":"2023-05-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3295/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3295/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3295/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3295/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","request.billNumber":"3295","committees.url":"https://api.congress.gov/v3/bill/118/hr/3295/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3295/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"BROADBAND Leadership Act","bill.title":"Prohibiting TSP Investment in China Act","bill.number":"3295","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3295/committees?format=json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3295/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3295/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3295/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3295/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3295?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 3295\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo expedite broadband deployment by streamlining permitting\nreviews\n[Page H2348]\n","sponsors.0.district":9,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"H.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:08Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3295/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"9098","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crawford","bill.latestAction.actionDate":"2021-05-18","cboCostEstimates.0.pubDate":"2023-07-20T20:43:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3316/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 760.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3316","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 3316.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section 8, United States Constitution\n[Page H2542]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3316/cosponsors?format=json","sponsors.0.bioguideId":"C001087","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3316/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3316/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","bill.sponsors.0.bioguideId":"N000189","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3316/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3316/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2025-02-05T13:26:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3316/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","request.billNumber":"3316","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3316/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3316/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"To amend titles 46 and 49, United States Code, to streamline the environmental review process for major projects, and for other purposes.","bill.title":"National Signing Bonus Act of 2021","bill.number":"3316","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59395","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3316/committees?format=json","request.format":"json","sponsors.0.middleName":"A. \"Rick\"","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3316/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3316/summaries?format=json","cboCostEstimates.0.title":"H.R. 3316, a bill to amend titles 46 and 49, United States Code, to streamline the environmental review process for major projects, and for other purposes","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"AR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3316/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3316/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3316?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRAWFORD:\nH.R. 3316.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nStreamlines the environmental review process for major\ninfrastructure projects.\n[Page H2348]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Eric","bill.type":"HR","updateDateIncludingText":"2025-02-05T13:26:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3316/text?format=json","bill.sponsors.0.lastName":"Newhouse"}} +{"type":"node","id":"9099","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3303/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3303/summaries?format=json","type":"HR","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3303","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESTES:\nH.R. 3303.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution:\n``The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States''\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3303/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3303/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3303/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"E000298","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":107,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Estes, Ron [R-KS-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3303/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2024-10-26T08:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3303/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"3303","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3303/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3303/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"Maternal Health for Veterans Act","bill.title":"Close the Double Subsidy Loophole for Electric Vehicles Act","bill.number":"3303","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":107,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3303/committees?format=json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3303/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3303/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000298?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ron","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3303/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3303/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3303?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 3303.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nVeterans\n[Page H2348]\n","sponsors.0.district":14,"bill.sponsors.0.state":"KS","bill.sponsors.0.district":4,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2024-10-26T08:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3303/text?format=json","bill.sponsors.0.lastName":"Estes"}} +{"type":"node","id":"9100","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3302/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3302/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3302","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESTES:\nH.R. 3302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution:\n``The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States''\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3302/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3302/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3302/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"E000298","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":101,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Estes, Ron [R-KS-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3302/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2024-10-05T08:05:17Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3302/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"3302","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3302/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3302/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"Protecting Moms and Babies Against Climate Change Act","bill.title":"No Subsidies for Government Purchases of Electric Vehicles Act","bill.number":"3302","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":101,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3302/committees?format=json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3302/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3302/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000298?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":33,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ron","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3302/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3302/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3302?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 3302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nHealth care\n[Page H2348]\n","sponsors.0.district":14,"bill.sponsors.0.state":"KS","bill.sponsors.0.district":4,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3302/text?format=json","bill.sponsors.0.lastName":"Estes"}} +{"type":"node","id":"9101","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Huffman","bill.latestAction.actionDate":"2021-05-18","cboCostEstimates.0.pubDate":"2023-08-15T21:50:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3324/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-166.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3324","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILLIAMS of Texas:\nH.R. 3324.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution of the United\nStates.\n[Page H2542]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3324/cosponsors?format=json","sponsors.0.bioguideId":"H001068","laws.0.number":"118-166","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3324/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3324/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","bill.sponsors.0.bioguideId":"W000816","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3324/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-188","bill.sponsors.0.fullName":"Rep. Williams, Roger [R-TX-25]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3324/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2025-01-14T17:11:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3324/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","request.billNumber":"3324","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3324/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3324/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"To extend the authority to collect Shasta-Trinity Marina fees through fiscal year 2029.","bill.title":"Incentivize Residential Energy Efficiency Act of 2021","bill.number":"3324","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on June 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59497","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3324/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/188?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3324/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3324/summaries?format=json","cboCostEstimates.0.title":"H.R. 3324, a bill to extend the authority to collect Shasta-Trinity Marina fees through fiscal year 2029","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000816?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Roger","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3324/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3324/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3324?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 3324.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, clause 2\nThe single subject of this legislation is:\nExtends authority to collect marina fees at the Shasta-\nTrinity Marina\n[Page H2349]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":25,"sponsors.0.firstName":"Jared","bill.type":"HR","updateDateIncludingText":"2025-01-14T17:11:28Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3324/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"9102","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wilson","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3308/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3308","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 3308.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3308/cosponsors?format=json","sponsors.0.bioguideId":"W000795","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3308/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3308/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","bill.sponsors.0.bioguideId":"J000298","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":15,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3308/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3308/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3308/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","request.billNumber":"3308","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3308/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3308/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Farm Operations Support Act","bill.title":"EMPOWERS Act","bill.number":"3308","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3308/committees?format=json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3308/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3308/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Pramila","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3308/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3308/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3308?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 3308.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\nThe single subject of this legislation is:\nRevert the Adverse Effect Wage Rate to the December 2022\nrate for the remainder of 2023\n[Page H2348]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:08Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3308/text?format=json","bill.sponsors.0.lastName":"Jayapal"}} +{"type":"node","id":"9103","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3313/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bucshon","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3313/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3313","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 3313.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\n[Page H2542]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3313/cosponsors?format=json","sponsors.0.bioguideId":"B001275","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3313/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3313/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","bill.sponsors.0.bioguideId":"L000582","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3313/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-33]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3313/text?format=json","bill.updateDate":"2025-01-03T05:03:13Z","updateDate":"2024-07-24T15:22:10Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3313/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","request.billNumber":"3313","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3313/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3313/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:13Z","title":"Wireless Resiliency and Flexible Investment Act of 2023","bill.title":"Hack Your State Department Act","bill.number":"3313","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3313/committees?format=json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3313/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3313/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3313/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3313/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3313?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 3313.\nCongress has the power to enact this legislation pursuant\nthe following:\nArticle I, Section 8, Clause 3\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo expedite broadband deployment by streamlining permitting\nreviews.\n[Page H2427]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":33,"sponsors.0.firstName":"Larry","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3313/text?format=json","bill.sponsors.0.lastName":"Lieu"}} +{"type":"node","id":"9104","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1954/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1954/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1954","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 50 (Wednesday, March 17, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 1954.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H1500]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1954/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1954/actions?format=json","latestAction.actionDate":"2023-04-07","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"D000032","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1954/text?format=json","bill.updateDate":"2025-01-03T04:53:01Z","updateDate":"2024-07-24T15:22:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1954/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"1954","committees.url":"https://api.congress.gov/v3/bill/118/hr/1954/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1954/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:01Z","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Health Resources and Services Administration Health Workforce, Construction and Capital Improvement Costs for fiscal year 2024.","bill.title":"Harmful Algal Bloom Essential Forecasting Act","bill.number":"1954","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1954/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1954/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1954/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Byron","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1954/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1954/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1954?format=json","bill.introducedDate":"2021-03-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1954.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1645]\n","sponsors.0.district":5,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":19,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1954/text?format=json","bill.sponsors.0.lastName":"Donalds"}} +{"type":"node","id":"9105","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1971/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1971/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1971","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 50 (Wednesday, March 17, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRAVES of Louisiana:\nH.R. 1971.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, clause 2 provides Congress with the\npower to ``dispose of and make all needful rules and\nRegulations respecting the Territory and other Property\nbelonging to the United States.''\n[Page H1500]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1971/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1971/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"G000577","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Graves, Garret [R-LA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1971/text?format=json","bill.updateDate":"2025-01-03T04:52:58Z","updateDate":"2024-07-24T15:22:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1971/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"1971","committees.url":"https://api.congress.gov/v3/bill/118/hr/1971/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1971/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:52:58Z","title":"To provide for a limitation on availability of funds for Department of Health and Human Services, Centers for Disease Control and Prevention Global Health for fiscal year 2024.","bill.title":"To extend the authority of the Secretary of the Interior to provide assistance to the local coordinating entity for the Atchafalaya National Heritage Area under subtitle B of Public Law 109-338.","bill.number":"1971","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1971/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1971/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1971/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000577?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Garret","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1971/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1971/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1971?format=json","bill.introducedDate":"2021-03-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1971.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1646]\n","sponsors.0.district":5,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1971/text?format=json","bill.sponsors.0.lastName":"Graves"}} +{"type":"node","id":"9106","labels":["Bill"],"properties":{"relatedBills.count":13,"congress":118,"bill.cboCostEstimates.0.title":"CBO’s Estimate of Effects on Revenues and Direct Spending of H.R. 2547, the Comprehensive Debt Collection Improvement Act","sponsors.0.lastName":"Cole","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2021-05-11T20:07:00Z","policyArea.name":"Native Americans","bill.relatedBills.count":13,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2547/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.amendments.count":4,"number":"2547","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"amendments.count":4,"sponsors.0.bioguideId":"C001053","bill.subjects.count":31,"latestAction.actionDate":"2023-04-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2547/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Cole, Tom [R-OK-4]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-05-11T20:07:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2547/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-23","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57208","updateDate":"2024-11-09T01:57:56Z","committees.count":1,"cboCostEstimates.1.pubDate":"2021-05-11T20:07:00Z","request.billNumber":"2547","committees.url":"https://api.congress.gov/v3/bill/118/hr/2547/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","cboCostEstimates.1.description":"As reported by the House Committee on Financial Services on\nApril 30, 2021, Including a Manager’s Amendment (Waters 9) as posted on the website of the House Committee on Rules on May 11, 2021\n","bill.number":"2547","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Financial Services on\nApril 30, 2021, Including a Manager’s Amendment (Waters 9) as posted on the website of the House Committee on Rules on May 11, 2021\n","committeeReports":[],"latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2547/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2547/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of Effects on Revenues and Direct Spending of H.R. 2547, the Comprehensive Debt Collection Improvement Act","bill.titles.count":45,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","bill.cboCostEstimates.1.url":"https://www.cbo.gov/publication/57208","introducedDate":"2023-04-10","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"MAXINE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2547/actions?format=json","bill.cboCostEstimates.1.title":"Effects on Revenues and Direct Spending of H.R. 2547, the Comprehensive Debt Collection Improvement Act","url":"https://api.congress.gov/v3/bill/117/hr/2547?format=json","cboCostEstimates.1.title":"Effects on Revenues and Direct Spending of H.R. 2547, the Comprehensive Debt Collection Improvement Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 61 (Monday, April 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COLE:\nH.R. 2547.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nThis bill reauthorizes and provides funding for the Special\nDiabetes Program of Indians for each of fiscal years 2024\nthrough 2028.\n[Page H1718]\n","bill.sponsors.0.district":43,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2547/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-05-17","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-23","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 65 (Thursday, April 15, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 2547.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 cl. 3, To regulate Commerce with\nForeign Nations, Among the Several States, and with the\nIndian Tribes\n[Page H1843]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2547/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/2547/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2547/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"W000187","bill.cboCostEstimates.1.description":"As reported by the House Committee on Financial Services on\nApril 30, 2021, Including a Manager’s Amendment (Waters 9) as posted on the website of the House Committee on Rules on May 11, 2021\n","amendments.url":"https://api.congress.gov/v3/bill/117/hr/2547/amendments?format=json","bill.cboCostEstimates.0.description":"As reported by the House Committee on Financial Services on\nApril 30, 2021, Including a Manager’s Amendment (Waters 9) as posted on the website of the House Committee on Rules on May 11, 2021\n","bill.actions.count":27,"titles.count":3,"cosponsors.count":17,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/23?format=json","bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2547/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2547/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001053?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2547/subjects?format=json","title":"Special Diabetes Program for Indians Reauthorization Act of 2023","bill.title":"Comprehensive Debt Collection Improvement Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57208","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2547/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/23?format=json","request.billType":"hr","bill.cosponsors.count":7,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2547/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-15","sponsors.0.district":4,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-11-09T01:57:56Z","bill.cboCostEstimates.1.pubDate":"2021-05-11T20:07:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2547/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57208","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"9107","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2877/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Buchanan","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2877/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Drew","number":"2877","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 2877.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2877/cosponsors?format=json","sponsors.0.bioguideId":"B001260","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2877/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2877/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","bill.sponsors.0.bioguideId":"F000465","bill.actions.count":13,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2877/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2877/text?format=json","bill.updateDate":"2025-01-14T19:02:28Z","updateDate":"2024-07-24T15:22:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2877/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","request.billNumber":"2877","committees.url":"https://api.congress.gov/v3/bill/118/hr/2877/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2877/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T19:02:28Z","title":"CREEPER Act 2.0","bill.title":"Behavioral Intervention Guidelines Act of 2021","bill.number":"2877","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2877/committees?format=json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2877/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2877/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":5,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"A.","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2877/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2877/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2877?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 2877.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2128]\n","sponsors.0.district":16,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Vern","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2877/text?format=json","bill.sponsors.0.lastName":"Ferguson"}} +{"type":"node","id":"9108","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1065, Pregnant Workers Fairness Act","sponsors.0.lastName":"Barragan","cboCostEstimates.0.pubDate":"2021-04-06T15:01:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":5,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1065/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.amendments.count":1,"number":"1065","bill.cosponsors.countIncludingWithdrawnCosponsors":228,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"B001300","bill.subjects.count":17,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1065/relatedbills?format=json","latestAction.actionDate":"2023-03-22","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Barragan, Nanette Diaz [D-CA-44]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-04-06T15:01:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1065/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-27","updateDate":"2024-12-05T09:05:29Z","committees.count":1,"request.billNumber":"1065","committees.url":"https://api.congress.gov/v3/bill/118/hr/1065/committees?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:12Z","bill.number":"1065","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and Labor on March 24, 2021\n","committeeReports":[],"sponsors.0.middleName":"Diaz","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1065/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1065/summaries?format=json","cboCostEstimates.0.title":"H.R. 1065, Pregnant Workers Fairness Act","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000002?format=json","introducedDate":"2023-02-17","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"JERROLD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1065/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1065?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BARRAGAN:\nH.R. 1065.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis bill codifies the existing Outdoor Recreation Legacy\nPartnership Program of the National Park Service.\n[Page H855]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1065/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-05-17","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-27","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 29 (Monday, February 15, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NADLER:\nH.R. 1065.\nCongress has the power to enact this legislation pursuant\nto the following:\nClauses 3 & 18 of Section 8 of Article I of the\nConstitution and Section 5 of Amendment XIV to the\nConstitution.\n[Page H515]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1065/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1065/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1065/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"N000002","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1065/amendments?format=json","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and Labor on March 24, 2021\n","bill.actions.count":28,"titles.count":3,"cosponsors.count":81,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/27?format=json","bill.sponsors.0.fullName":"Rep. Nadler, Jerrold [D-NY-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1065/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1065/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001300?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1065/subjects?format=json","title":"Outdoors for All Act","bill.title":"Pregnant Workers Fairness Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57115","cosponsors.countIncludingWithdrawnCosponsors":81,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1065/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/27?format=json","request.billType":"hr","bill.cosponsors.count":228,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1065/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-15","sponsors.0.district":44,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"Nanette","updateDateIncludingText":"2024-12-05T09:05:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1065/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57115","bill.sponsors.0.lastName":"NADLER"}} +{"type":"node","id":"9109","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1939/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee for Indigenous Peoples of the United States.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1939/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1939","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 49 (Tuesday, March 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. O'HALLERAN:\nH.R. 1939.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H1414]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1939/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1939/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1939/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"O000171","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee for Indigenous Peoples of the United States.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1939/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. O'Halleran, Tom [D-AZ-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1939/text?format=json","bill.updateDate":"2025-01-03T04:52:39Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1939/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"1939","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1939/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1939/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:52:39Z","title":"To provide for a limitation on availability of funds for Department of Labor, Office of Workers' Compensation Benefits, Cost of Administration for fiscal year 2024.","bill.title":"To require the Secretary of Health and Human Services to award additional funding through the Sanitation Facilities Construction Program of the Indian Health Service, and for other purposes.","bill.number":"1939","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1939/committees?format=json","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1939/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1939/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000171?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1939/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1939/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1939?format=json","bill.introducedDate":"2021-03-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\n[Pages H1644-H1645]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1939.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[[Page H1645]]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1939/text?format=json","bill.sponsors.0.lastName":"O'Halleran"}} +{"type":"node","id":"9110","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3262/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHAKOWSKY","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3262/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3262","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 84 (Friday, May 14, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. UPTON:\nH.R. 3262.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3: To regulate commerce with\nforeign nations, and among the several states\n[Page H2357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3262/cosponsors?format=json","sponsors.0.bioguideId":"S001145","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3262/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3262/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Schakowsky, Janice D. [D-IL-9]","bill.sponsors.0.bioguideId":"U000031","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Upton, Fred [R-MI-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3262/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-12-20T09:06:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3262/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001145?format=json","request.billNumber":"3262","committees.url":"https://api.congress.gov/v3/bill/118/hr/3262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3262/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"To amend title XI of the Social Security Act to increase transparency of certain health-related ownership information.","bill.title":"GUARD Act","bill.number":"3262","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3262/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3262/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3262/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000031?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-11","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"FRED","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3262/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3262/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3262?format=json","bill.introducedDate":"2021-05-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHAKOWSKY:\nH.R. 3262.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTo promote price transparency among hospitals and insurers\non behalf of patients and employers\n[Page H2313]\n","sponsors.0.district":9,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":6,"sponsors.0.firstName":"JANICE","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3262/text?format=json","bill.sponsors.0.lastName":"UPTON"}} +{"type":"node","id":"9111","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3259/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Quigley","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3259/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"A.","number":"3259","bill.cosponsors.countIncludingWithdrawnCosponsors":125,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 84 (Friday, May 14, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 3259.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H2357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3259/cosponsors?format=json","sponsors.0.bioguideId":"Q000023","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3259/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3259/relatedbills?format=json","latestAction.actionDate":"2023-05-11","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Quigley, Mike [D-IL-5]","bill.sponsors.0.bioguideId":"S001185","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3259/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3259/text?format=json","bill.updateDate":"2025-01-03T05:02:46Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3259/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/Q000023?format=json","request.billNumber":"3259","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3259/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3259/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:02:46Z","title":"RIDE for Ukraine Act","bill.title":"NOPAIN Act","bill.number":"3259","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3259/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3259/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3259/summaries?format=json","bill.cosponsors.count":125,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","introducedDate":"2023-05-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Terri","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3259/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3259/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3259?format=json","bill.introducedDate":"2021-05-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. QUIGLEY:\nH.R. 3259.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clause 18 of the United\nStates Constitution.\nThe single subject of this legislation is:\nREAL ID\n[Page H2313]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AL","bill.sponsors.0.district":7,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3259/text?format=json","bill.sponsors.0.lastName":"Sewell"}} +{"type":"node","id":"9112","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3258/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pressley","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3258/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"A.","number":"3258","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 84 (Friday, May 14, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SEWELL:\nH.R. 3258.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H2357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3258/cosponsors?format=json","sponsors.0.bioguideId":"P000617","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3258/actions?format=json","latestAction.actionDate":"2023-05-12","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","bill.sponsors.0.bioguideId":"S001185","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":44,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sewell, Terri A. [D-AL-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3258/text?format=json","bill.updateDate":"2025-01-03T05:02:44Z","updateDate":"2024-10-26T08:05:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3258/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","request.billNumber":"3258","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3258/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3258/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:02:44Z","title":"TREAT Long COVID Act","bill.title":"TACT Act of 2021","bill.number":"3258","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":44,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3258/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3258/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3258/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001185?format=json","introducedDate":"2023-05-11","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Terri","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3258/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3258/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3258?format=json","bill.introducedDate":"2021-05-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PRESSLEY:\nH.R. 3258.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nThis bill supports the development of multi-disciplinary\nLong COVID clinics.\n[Page H2313]\n","sponsors.0.district":7,"bill.sponsors.0.state":"AL","bill.sponsors.0.district":7,"sponsors.0.firstName":"Ayanna","bill.type":"HR","updateDateIncludingText":"2024-10-26T08:05:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3258/text?format=json","bill.sponsors.0.lastName":"Sewell"}} +{"type":"node","id":"9113","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Taxation","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3238/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3238","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 84 (Friday, May 14, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESCOBAR:\nH.R. 3238.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power . . . To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H2357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3238/cosponsors?format=json","sponsors.0.bioguideId":"L000585","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3238/actions?format=json","latestAction.actionDate":"2023-05-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3238/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"E000299","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":273,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3238/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3238/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-19T09:06:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3238/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"3238","committees.url":"https://api.congress.gov/v3/bill/118/hr/3238/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3238/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Affordable Housing Credit Improvement Act of 2023","bill.title":"Colonia Infrastructure Improvement Act of 2021","bill.number":"3238","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":273,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3238/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3238/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3238/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","introducedDate":"2023-05-11","bill.originChamberCode":"H","subjects.count":28,"bill.committees.count":2,"bill.sponsors.0.firstName":"Veronica","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3238/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3238/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3238?format=json","bill.introducedDate":"2021-05-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 3238.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 1: ``The\nCongress shall have Power to lay and collect Taxes . . .''\nThe single subject of this legislation is:\nThe bill expands and makes reforms to the low-income\nhousing tax credit.\n[Page H2312]\n","sponsors.0.district":16,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":16,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2024-12-27T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3238/text?format=json","bill.sponsors.0.lastName":"Escobar"}} +{"type":"node","id":"9114","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2968/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norman","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2968/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"2968","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 2968.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws, which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2968/cosponsors?format=json","sponsors.0.bioguideId":"N000190","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2968/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2968/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","bill.sponsors.0.bioguideId":"C001078","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2968/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2968/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","request.billNumber":"2968","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2968/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2968/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"COST Act of 2023","bill.title":"Military and Veteran Caregiver Student Loan Relief Act of 2021","bill.number":"2968","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2968/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2968/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2968/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gerald","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2968/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2968/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2968?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 2968.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation will require public disclosure of the\ntotal cost to taxpayers for every project supported with\nfederal funds.\n[Page H2087]\n","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Ralph","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2968/text?format=json","bill.sponsors.0.lastName":"Connolly"}} +{"type":"node","id":"9115","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2982/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2982/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"D","number":"2982","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 2982.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2982/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2982/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2982/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"K000394","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2982/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2982/text?format=json","bill.updateDate":"2025-01-03T05:00:49Z","updateDate":"2024-12-17T09:05:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2982/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"2982","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2982/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2982/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:49Z","title":"New York-New Jersey Watershed Protection Act","bill.title":"National Guard Cybersecurity Support Act","bill.number":"2982","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2982/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2982/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2982/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":24,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2982/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2982/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2982?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2982.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nThis legislation establishes the New York-New Jersey\nWatershed Restoration Program to coordinate and fund\nrestoration activities throughout the Watershed.\n[Page H2088]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2982/text?format=json","bill.sponsors.0.lastName":"Kim"}} +{"type":"node","id":"9116","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bonamici","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2990/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"D","number":"2990","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McHENRY:\nH.R. 2990.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 To regulate commerce with\nforeign Nations, and among the several States, and with the\nIndian\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2990/cosponsors?format=json","sponsors.0.bioguideId":"B001278","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2990/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2990/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","bill.sponsors.0.bioguideId":"M001156","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2990/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-09-04T13:52:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2990/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","request.billNumber":"2990","committees.url":"https://api.congress.gov/v3/bill/118/hr/2990/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2990/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"National Oceanic and Atmospheric Administration Sexual Harassment and Assault Prevention Improvements Act of 2023","bill.title":"Gig Worker Equity Compensation Act","bill.number":"2990","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2990/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2990/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2990/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","introducedDate":"2023-04-28","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":2,"bill.sponsors.0.firstName":"Patrick","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2990/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2990/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2990?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 72 (Friday, April 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 2990.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nSexual Harassment and Assault\n[Page H2119]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":10,"sponsors.0.firstName":"Suzanne","bill.type":"HR","updateDateIncludingText":"2024-09-04T13:52:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2990/text?format=json","bill.sponsors.0.lastName":"McHenry"}} +{"type":"node","id":"9117","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2983/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Trone","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2983/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2983","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KINZINGER:\nH.R. 2983.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 (Necessary and Proper\nClause).\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2983/cosponsors?format=json","sponsors.0.bioguideId":"T000483","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2983/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","bill.sponsors.0.bioguideId":"K000378","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":21,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kinzinger, Adam [R-IL-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2983/text?format=json","bill.updateDate":"2025-01-03T05:00:53Z","updateDate":"2024-10-02T08:06:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2983/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","request.billNumber":"2983","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2983/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2983/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:53Z","title":"Fresh Start Act of 2023","bill.title":"REDUCE Act of 2021","bill.number":"2983","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":21,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2983/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2983/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2983/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000378?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Adam","sponsors.0.state":"MD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2983/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2983/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2983?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 2983.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nTo provide assistance to states to help implement their\nautomatic record-clearing systems.\n[Page H2088]\n","sponsors.0.district":6,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":16,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2024-10-02T08:06:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2983/text?format=json","bill.sponsors.0.lastName":"Kinzinger"}} +{"type":"node","id":"9118","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2984/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"VELAZQUEZ","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2984/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2984","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 2984.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe Congress shall have the power to . . . provide for the\n. . . general welfare of the United States, . . .\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2984/cosponsors?format=json","sponsors.0.bioguideId":"V000081","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2984/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2984/relatedbills?format=json","latestAction.actionDate":"2023-04-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2984/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2984/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2984/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","request.billNumber":"2984","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2984/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2984/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"CLAIM Act","bill.title":"Investing in American Workers Act","bill.number":"2984","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2984/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2984/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2984/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2984/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2984/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2984?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 2984.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power . . . To regulate Commerce\nwith foreign Nations, and among the several States, and with\nthe Indian Tribes.\nThe single subject of this legislation is:\nThis bill creates a safe harbor for insurers who engage in\nthe business of insurance in connection wiht a cannabis\nrelated legitimate business.\n[Page H2088]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"NYDIA","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2984/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}} +{"type":"node","id":"9119","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2963/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Loudermilk","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2963/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2963","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2963.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment XVI of the U.S. Constitution\n[Page H2141]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2963/cosponsors?format=json","sponsors.0.bioguideId":"L000583","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2963/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2963/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2963/text?format=json","bill.updateDate":"2025-01-03T05:01:02Z","updateDate":"2024-11-09T04:56:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2963/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","request.billNumber":"2963","committees.url":"https://api.congress.gov/v3/bill/118/hr/2963/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2963/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:01:02Z","title":"FinCEN Accountability Act of 2023","bill.title":"VOW to Hire Heroes Extension Act of 2021","bill.number":"2963","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2963/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2963/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2963/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2963/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2963/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2963?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 2963.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, SectIon 8, Clause 18\nThe single subject of this legislation is:\nTo ensure that Congress has the information necessary to\ncarry out oversight of the Financial Crimes Enforcement\nNetwork.\n[Page H2087]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Barry","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2963/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9120","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2976/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Scott","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2976/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2976","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 2976.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2976/cosponsors?format=json","sponsors.0.bioguideId":"S000185","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2976/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2976/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Scott, Robert C. \"Bobby\" [D-VA-3]","bill.sponsors.0.bioguideId":"D000399","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":101,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2976/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-35]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2976/text?format=json","bill.updateDate":"2025-01-03T05:00:53Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2976/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000185?format=json","request.billNumber":"2976","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2976/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2976/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:53Z","title":"Child Care for Working Families Act","bill.title":"Stop Corporate Inversions Act of 2021","bill.number":"2976","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":101,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2976/committees?format=json","request.format":"json","sponsors.0.middleName":"C. \"Bobby\"","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2976/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/2976/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":33,"bill.committees.count":1,"bill.sponsors.0.firstName":"LLOYD","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2976/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2976/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2976?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT of Virginia:\nH.R. 2976.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nchild care.\n[Page H2088]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":35,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2976/text?format=json","bill.sponsors.0.lastName":"DOGGETT"}} +{"type":"node","id":"9121","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2953/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Law","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2953/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2953","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 2953.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2141]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2953/cosponsors?format=json","sponsors.0.bioguideId":"J000288","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2953/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2953/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","bill.sponsors.0.bioguideId":"M001208","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":102,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2953/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2953/text?format=json","bill.updateDate":"2025-01-03T05:00:54Z","updateDate":"2024-09-19T08:05:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2953/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","request.billNumber":"2953","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2953/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2953/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:54Z","title":"FAIR Act of 2023","bill.title":"SAFER Act","bill.number":"2953","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":102,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2953/committees?format=json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2953/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2953/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lucy","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2953/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2953/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2953?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Georgia:\nH.R. 2953.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 1.\nThe single subject of this legislation is:\nThis bill amends title 9 of the United States Code with\nrespect to arbitration, in order to prohibit predispute\narbitration agreements that force arbitration of future\nemployment, consumer, antitrust, or civil rights disputes,\nand to prohibit agreements and practices that interfere with\nthe rights of individuals, workers, and small businesses to\nparticipate in a joint, class, or collective action related\nto an employment, consumer, antitrust, or civil rights\ndispute.\n[Page H2087]\n","sponsors.0.district":4,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Henry","bill.type":"HR","updateDateIncludingText":"2024-09-19T08:05:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2953/text?format=json","bill.sponsors.0.lastName":"McBath"}} +{"type":"node","id":"9122","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2995/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bice","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2995/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"2995","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss RICE of New York:\nH.R. 2995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2995/cosponsors?format=json","sponsors.0.bioguideId":"B000740","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2995/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2995/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","bill.sponsors.0.bioguideId":"R000602","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rice, Kathleen M. [D-NY-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2995/text?format=json","bill.updateDate":"2025-01-03T05:00:50Z","updateDate":"2024-11-09T04:56:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2995/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","request.billNumber":"2995","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2995/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2995/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:50Z","title":"National Mesonet Authorization Act","bill.title":"NFIP RISC Act of 2021","bill.number":"2995","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2995/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2995/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2995/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000602?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kathleen","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2995/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2995/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2995?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 72 (Friday, April 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE:\nH.R. 2995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nAuthorizes the National Weather Service National Mesonet\nProgram\n[Page H2119]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":4,"sponsors.0.firstName":"Stephanie","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2995/text?format=json","bill.sponsors.0.lastName":"Rice"}} +{"type":"node","id":"9123","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2978/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Spanberger","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2978/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2978","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 2978.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2978/cosponsors?format=json","sponsors.0.bioguideId":"S001209","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2978/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2978/text?format=json","bill.updateDate":"2025-01-03T05:01:00Z","updateDate":"2024-07-24T15:22:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2978/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","request.billNumber":"2978","committees.url":"https://api.congress.gov/v3/bill/118/hr/2978/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2978/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:01:00Z","title":"Cutting Paperwork for Taxpayers Act","bill.title":"BRIDGE Act","bill.number":"2978","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2978/committees?format=json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2978/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2978/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2978/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2978/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2978?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 2978.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe bill would make the interest received on a delayed tax\nrefund non-taxable income for individual filers and small\nbusinesses.\n[Page H2088]\n","sponsors.0.district":7,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Abigail","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2978/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}} +{"type":"node","id":"9124","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2977/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Drew","number":"2977","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 2977.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2977/cosponsors?format=json","sponsors.0.bioguideId":"S000510","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2977/actions?format=json","latestAction.actionDate":"2023-05-05","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","bill.sponsors.0.bioguideId":"F000465","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2977/text?format=json","bill.updateDate":"2025-01-03T05:01:02Z","updateDate":"2024-07-24T15:22:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2977/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","request.billNumber":"2977","committees.url":"https://api.congress.gov/v3/bill/118/hr/2977/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2977/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:01:02Z","title":"Behavioral Health Crisis Care Centers Act of 2023","bill.title":"CAN Act","bill.number":"2977","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2977/committees?format=json","request.format":"json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2977/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2977/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"A.","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2977/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2977/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2977?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 2977.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nmental health and substance use crisis stabilization\nservices.\n[Page H2088]\n","sponsors.0.district":9,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":3,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2977/text?format=json","bill.sponsors.0.lastName":"Ferguson"}} +{"type":"node","id":"9125","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Williams","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2987/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"2987","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LURIA:\nH.R. 2987.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 5 of Section 8 of Article 1 of the Constitution.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2987/cosponsors?format=json","sponsors.0.bioguideId":"W000788","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2987/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2987/relatedbills?format=json","latestAction.actionDate":"2023-04-27","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","bill.sponsors.0.bioguideId":"L000591","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":81,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2987/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Luria, Elaine G. [D-VA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2987/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2987/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","request.billNumber":"2987","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2987/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2987/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Election Mail Act","bill.title":"Teacher Loan Forgiveness Improvement Act of 2021","bill.number":"2987","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":81,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2987/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2987/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2987/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000591?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elaine","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2987/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2987/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2987?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 2987.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nto improve the handling of election mail\n[Page H2088]\n","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Nikema","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2987/text?format=json","bill.sponsors.0.lastName":"Luria"}} +{"type":"node","id":"9126","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2948/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gooden","bill.latestAction.actionDate":"2021-05-03","cboCostEstimates.0.pubDate":"2023-07-20T20:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2948/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 789.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2948","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2948.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\n[Page H2136]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2948/cosponsors?format=json","sponsors.0.bioguideId":"G000589","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2948/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2948/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Gooden, Lance [R-TX-5]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2948/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2948/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2025-02-05T13:26:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2948/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/G000589?format=json","request.billNumber":"2948","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2948/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2948/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"CARS Act","bill.title":"Electric Vehicle Infrastructure Rebate Act of 2021","bill.number":"2948","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59400","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2948/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2948/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2948/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 2948, the CARS Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2948/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2948/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2948?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\n[Pages H2086-H2087]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOODEN of Texas:\nH.R. 2948.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill rests is\nthe power of Congress to lay and collect taxes, duties,\nimposts, and excises to pay the debts and provide for the\ncommon Defense and general welfare of the United States, as\nenumerated in Article I, Section 8, Clause 1. Thus, Congress\nhas the authority not only to increase taxes, but also, to\nreduce taxes to promote the general welfare of the United\nStates of America and her citizens. Additionally, Congress\nhas the Constitutional authority to regulate commerce among\nthe States and with Indian Tribes, as enumerated in Article\nI, Section 8, Clause 3.\nThe single subject of this legislation is:\nThis bill would increase gross vehicle weight limits for\nstinger-steered automobile\n[[Page H2087]]\ntransporters by 10%, which is 8,000 pounds, while capping\nsingle and tandem axle groups at a 10% increase. The bill\nwould therefore allow automobile carriers to regain lost load\ncapacity and reduce annual truck traffic by an estimated 16\nmillion miles, eliminate the consumption of 3.2 million\ngallons of diesel fuel and prevent 32 metric tons of diesel\nemissions\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Lance","bill.type":"HR","updateDateIncludingText":"2025-02-05T13:26:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2948/text?format=json","bill.sponsors.0.lastName":"Tonko"}} +{"type":"node","id":"9127","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2934/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cole","bill.latestAction.actionDate":"2021-05-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2934/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2934","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. O'HALLERAN:\nH.R. 2934.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18, section 8 of article 1 of the Constitution\n[Page H2135]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2934/cosponsors?format=json","sponsors.0.bioguideId":"C001053","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2934/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2934/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Cole, Tom [R-OK-4]","bill.sponsors.0.bioguideId":"O000171","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. O'Halleran, Tom [D-AZ-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2934/text?format=json","bill.updateDate":"2025-01-03T05:00:40Z","updateDate":"2024-07-24T15:22:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2934/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001053?format=json","request.billNumber":"2934","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2934/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2934/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:40Z","title":"Protect American Election Administration Act of 2023","bill.title":"RAISE Act","bill.number":"2934","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2934/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2934/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2934/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000171?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Tom","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2934/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2934/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2934?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COLE:\nH.R. 2934.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 4, Clause 1\nThe single subject of this legislation is:\nTo prohibit states from accepting or using funds from\nprivate entities to manipulate administration of and to\ninfluence the outcome of federal elections.\n[Page H2086]\n","sponsors.0.district":4,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":1,"sponsors.0.firstName":"Tom","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2934/text?format=json","bill.sponsors.0.lastName":"O'Halleran"}} +{"type":"node","id":"9128","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2929/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bilirakis","bill.latestAction.actionDate":"2021-05-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2929/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2929","bill.cosponsors.countIncludingWithdrawnCosponsors":20,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LEE of Nevada:\nH.R. 2929.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1 provides Congress with the\npower to ``lay and collect Taxes, Duties, Imposts, and\nExcises'' in order to ``provide for the . . . general Welfare\nof the United States.''\n[Page H2135]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2929/cosponsors?format=json","sponsors.0.bioguideId":"B001257","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2929/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2929/relatedbills?format=json","latestAction.actionDate":"2023-04-27","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","bill.sponsors.0.bioguideId":"L000590","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2929/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lee, Susie [D-NV-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2929/text?format=json","bill.updateDate":"2025-01-03T05:00:44Z","updateDate":"2024-07-24T15:22:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2929/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","request.billNumber":"2929","committees.url":"https://api.congress.gov/v3/bill/118/hr/2929/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2929/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:44Z","title":"Fleet Reserve Association 100th Anniversary Act","bill.title":"Virtual Peer Support Act of 2021","bill.number":"2929","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2929/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2929/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2929/summaries?format=json","bill.cosponsors.count":20,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000590?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Susie","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2929/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2929/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2929?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 2929.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to mint\ncommemorative coins in recognition of the 100th anniversary\nof the Fleet Reserve Association.\n[Page H2086]\n","sponsors.0.district":12,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":3,"sponsors.0.firstName":"Gus","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2929/text?format=json","bill.sponsors.0.lastName":"Lee"}} +{"type":"node","id":"9129","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2919/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Watson Coleman","bill.latestAction.actionDate":"2021-05-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2919/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2919","bill.cosponsors.countIncludingWithdrawnCosponsors":66,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 2919.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution.\n[Page H2135]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2919/cosponsors?format=json","sponsors.0.bioguideId":"W000822","bill.subjects.count":59,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2919/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2919/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Watson Coleman, Bonnie [D-NJ-12]","bill.sponsors.0.bioguideId":"D000624","bill.originChamber":"House","bill.actions.count":11,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2919/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2919/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-04T09:05:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2919/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000822?format=json","request.billNumber":"2919","committees.url":"https://api.congress.gov/v3/bill/118/hr/2919/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2919/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"New Pathways Act","bill.title":"THRIVE Act","bill.number":"2919","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2919/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2919/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2919/summaries?format=json","bill.cosponsors.count":66,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":6,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2919/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2919/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2919?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 2919.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution.\n[Page H2135]\n","sponsors.0.district":12,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":12,"sponsors.0.firstName":"Bonnie","bill.type":"HR","updateDateIncludingText":"2024-12-04T09:05:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2919/text?format=json","bill.sponsors.0.lastName":"Dingell"}} +{"type":"node","id":"9130","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2907/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schrier","bill.latestAction.actionDate":"2021-05-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2907/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2907","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PENCE:\nH.R. 2907.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 3 of the U.S. Constitution\n[Page H2134]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2907/cosponsors?format=json","sponsors.0.bioguideId":"S001216","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2907/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2907/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","bill.sponsors.0.bioguideId":"P000615","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pence, Greg [R-IN-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2907/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-11-09T04:42:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2907/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","request.billNumber":"2907","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2907/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2907/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Let Doctors Provide Reproductive Health Care Act","bill.title":"Global Investment in American Jobs Act of 2021","bill.number":"2907","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2907/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2907/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2907/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000615?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"Greg","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2907/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2907/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2907?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PENCE:\nH.R. 2907.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 3 of the U.S. Constitution\n[Page H2134]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":6,"sponsors.0.firstName":"Kim","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:42:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2907/text?format=json","bill.sponsors.0.lastName":"Pence"}} +{"type":"node","id":"9131","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2952/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-05-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2952/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2952","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILLIAMS of Georgia:\nH.R. 2952.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H2136]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2952/cosponsors?format=json","sponsors.0.bioguideId":"J000288","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2952/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","bill.sponsors.0.bioguideId":"W000788","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":34,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2952/text?format=json","bill.updateDate":"2025-01-03T05:00:48Z","updateDate":"2024-11-23T09:05:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2952/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","request.billNumber":"2952","committees.url":"https://api.congress.gov/v3/bill/118/hr/2952/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2952/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:48Z","title":"RAP Act of 2023","bill.title":"WISE Act","bill.number":"2952","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2952/committees?format=json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2952/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2952/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Nikema","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2952/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2952/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2952?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Georgia:\nH.R. 2952.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article 1, Section 8\nThe single subject of this legislation is:\nJudiciary\n[Page H2087]\n","sponsors.0.district":4,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Henry","bill.type":"HR","updateDateIncludingText":"2024-11-23T09:05:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2952/text?format=json","bill.sponsors.0.lastName":"Williams"}} +{"type":"node","id":"9132","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2924/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Clarke","bill.latestAction.actionDate":"2021-05-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Environmental Protection","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2924/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Emergency Management and Technology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2924","bill.cosponsors.countIncludingWithdrawnCosponsors":52,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOMEZ:\nH.R. 2924.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H2135]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2924/cosponsors?format=json","sponsors.0.bioguideId":"C001067","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2924/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2924/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Clarke, Yvette D. [D-NY-9]","bill.sponsors.0.bioguideId":"G000585","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2924/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gomez, Jimmy [D-CA-34]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2924/text?format=json","bill.updateDate":"2025-01-03T05:00:46Z","updateDate":"2024-07-24T15:22:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2924/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001067?format=json","request.billNumber":"2924","committees.url":"https://api.congress.gov/v3/bill/118/hr/2924/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2924/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:46Z","title":"Department of Homeland Security Climate Change Research Act","bill.title":"Transit to Trails Act of 2021","bill.number":"2924","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2924/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2924/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2924/summaries?format=json","bill.cosponsors.count":52,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000585?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2924/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2924/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2924?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CLARKE of New York:\nH.R. 2924.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nHomeland Security\n[Page H2085]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":34,"sponsors.0.firstName":"Yvette","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2924/text?format=json","bill.sponsors.0.lastName":"Gomez"}} +{"type":"node","id":"9133","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2950/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Huffman","bill.latestAction.actionDate":"2021-04-30","cboCostEstimates.0.pubDate":"2024-05-30T17:04:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2950/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-138.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"K.","number":"2950","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WEBER of Texas:\nH.R. 2950.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2136]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2950/cosponsors?format=json","sponsors.0.bioguideId":"H001068","laws.0.number":"118-138","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2950/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2950/relatedbills?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":6,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","bill.sponsors.0.bioguideId":"W000814","bill.originChamber":"House","bill.actions.count":4,"titles.count":7,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-671","bill.sponsors.0.fullName":"Rep. Weber, Randy K., Sr. [R-TX-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2950/text?format=json","bill.updateDate":"2025-01-03T05:00:45Z","updateDate":"2025-01-17T03:11:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2950/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","request.billNumber":"2950","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2950/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2950/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:45Z","title":"Coastal Habitat Conservation Act of 2023","bill.title":"CAMS Act","bill.number":"2950","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on January 17, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60353","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2950/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-04-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/671?format=json","summaries.count":4,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2950/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2950/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 2950, Coastal Habitat Conservation Act of 2023","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000814?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Randy","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2950/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2950/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2950?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 2950.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo authorize the Secretary of the Interior, through the\nCoastal Program of the United States Fish and Wildlife\nService, to work with willing partners and provide support to\nefforts to assess, protect, restore, and enhance important\ncoastal landscapes that provide fish and wildlife habitat on\nwhich certain Federal trust species depend, and for other\npurposes.\n[Page H2087]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":14,"sponsors.0.firstName":"Jared","bill.type":"HR","updateDateIncludingText":"2025-01-17T03:11:15Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2950/text?format=json","bill.sponsors.0.lastName":"Weber"}} +{"type":"node","id":"9134","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2824/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castro","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2824/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2824","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 2824.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Article 1,\nSection 8, Clause 3 of the United States Constitution.\n[Page H2109]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2824/cosponsors?format=json","sponsors.0.bioguideId":"C001091","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2824/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","bill.sponsors.0.bioguideId":"T000468","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2824/text?format=json","bill.updateDate":"2025-01-03T04:59:14Z","updateDate":"2024-07-24T15:22:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2824/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","request.billNumber":"2824","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2824/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2824/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:14Z","title":"FIGDA Act of 2023","bill.title":"Mongolia Third Neighbor Trade Act","bill.number":"2824","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2824/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2824/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2824/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-04-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2824/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2824/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2824?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 2824.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the Constitution of the\nUnited States\nThe single subject of this legislation is:\nThe purpose of the bill is on the issue of international\naffairs and international development.\n[Page H1948]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Joaquin","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2824/text?format=json","bill.sponsors.0.lastName":"Titus"}} +{"type":"node","id":"9135","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2731/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2731/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2731","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KHANNA:\nH.R. 2731.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution gives Congress the\npower to make laws that are necessary and proper to carry out\nits enumerated powers.\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2731/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":115,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2731/actions?format=json","latestAction.actionDate":"2023-04-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2731/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"K000389","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2731/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2731/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:22:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2731/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"2731","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2731/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2731/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"POWER Our Reservoirs Act","bill.title":"Endless Frontier Act","bill.number":"2731","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2731/committees?format=json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2731/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2731/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":5,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ro","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2731/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2731/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2731?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2731.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nThis legislation advances the deployment of floating solar\npanels on federal reservoirs.\n[Page H1888]\n","sponsors.0.district":20,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2731/text?format=json","bill.sponsors.0.lastName":"Khanna"}} +{"type":"node","id":"9136","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2728/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thompson","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2728/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2728","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 3\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2728/cosponsors?format=json","sponsors.0.bioguideId":"T000467","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2728/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","bill.sponsors.0.bioguideId":"G000594","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2728/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2728/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","request.billNumber":"2728","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2728/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2728/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Young Farmer Success Act","bill.title":"Protecting Military Installations from Foreign Espionage Act","bill.number":"2728","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2728/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2728/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2728/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2728/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2728/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2728?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto add farmers and ranchers to the Public Service Loan\nForgiveness program.\n[Page H1888]\n","sponsors.0.district":15,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":23,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2728/text?format=json","bill.sponsors.0.lastName":"Gonzales"}} +{"type":"node","id":"9137","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2721/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ogles","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"International Affairs","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2721/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2721","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 2721.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representative.\n[Page H2055]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2721/cosponsors?format=json","sponsors.0.bioguideId":"O000175","bill.subjects.count":23,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2721/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2721/relatedbills?format=json","latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","bill.sponsors.0.bioguideId":"C001097","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2721/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2721/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:22:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2721/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","request.billNumber":"2721","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2721/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2721/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"Ukraine Lend-Lease Accountability Act","bill.title":"Clean Commute for Kids Act of 2021","bill.number":"2721","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2721/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2721/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2721/summaries?format=json","bill.cosponsors.count":38,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"TN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2721/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2721/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2721?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 2721.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLimit Presidential Authority granted by the Ukraine Lend-\nLease Democracy Defense Act.\n[Page H1887]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2721/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}} +{"type":"node","id":"9138","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1573, Access to Counsel Act of 2021","sponsors.0.lastName":"Connolly","cboCostEstimates.0.pubDate":"2021-04-15T20:04:53Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1573/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.amendments.count":1,"number":"1573","bill.cosponsors.countIncludingWithdrawnCosponsors":49,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"C001078","bill.subjects.count":11,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1573/relatedbills?format=json","latestAction.actionDate":"2023-03-14","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-04-15T20:04:53Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1573/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-21","updateDate":"2025-02-04T16:28:27Z","committees.count":1,"request.billNumber":"1573","committees.url":"https://api.congress.gov/v3/bill/118/hr/1573/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:10Z","bill.number":"1573","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nApril 14, 2021\n","committeeReports":[],"sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1573/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1573/summaries?format=json","cboCostEstimates.0.title":"H.R. 1573, Access to Counsel Act of 2021","bill.titles.count":7,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","introducedDate":"2023-03-14","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Pramila","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1573/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1573?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 47 (Tuesday, March 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 1573.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nImprove Veteram elibility review for the Public Service\nLoan Forgiveness Program\n[Page H1286]\n","bill.sponsors.0.district":7,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1573/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-04-22","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-21","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 1573.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\n[Page H1081]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1573/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1573/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1573/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"J000298","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1573/amendments?format=json","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nApril 14, 2021\n","bill.actions.count":22,"titles.count":2,"cosponsors.count":49,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/21?format=json","bill.sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1573/text?format=json","bill.updateDate":"2025-01-03T04:50:10Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1573/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1573/subjects?format=json","title":"To require the Secretary of Education to accept certain documentation from the Department of Defense as proof of employment for purposes of the public service loan forgiveness program.","bill.title":"Access to Counsel Act of 2021","cosponsors.countIncludingWithdrawnCosponsors":49,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57153","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1573/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/21?format=json","request.billType":"hr","bill.cosponsors.count":49,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1573/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-03","sponsors.0.district":11,"bill.sponsors.0.state":"WA","sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1573/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57153","bill.sponsors.0.lastName":"Jayapal"}} +{"type":"node","id":"9139","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1392/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 1392, Protection of Saudi Dissidents Act of 2021","bill.textVersions.count":3,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-04-22","cboCostEstimates.0.pubDate":"2021-04-15T20:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1392/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"1392","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 37 (Friday, February 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 1392\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I. Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H859]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1392/cosponsors?format=json","sponsors.0.bioguideId":"D000626","bill.subjects.count":24,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1392/actions?format=json","latestAction.actionDate":"2023-03-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1392/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"C001078","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on March 25, 2021\n","bill.actions.count":15,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-04-15T20:09:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1392/text?format=json","bill.updateDate":"2025-01-14T19:00:46Z","updateDate":"2024-07-24T15:23:26Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1392/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"1392","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1392/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1392/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:00:46Z","title":"National Flood Insurance Program Extension Act of 2023","bill.title":"Protection of Saudi Dissidents Act of 2021","bill.number":"1392","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on March 25, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57147","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1392/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1392/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1392/summaries?format=json","bill.cosponsors.count":11,"cboCostEstimates.0.title":"H.R. 1392, Protection of Saudi Dissidents Act of 2021","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Gerald","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1392/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1392/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1392?format=json","bill.introducedDate":"2021-02-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 43 (Tuesday, March 7, 2023)]\n[House]\n[Pages H1150-H1151]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 1392.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H1151]]\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThe National Flood Insurance Program\n","sponsors.0.district":8,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1392/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57147","bill.sponsors.0.lastName":"Connolly"}} +{"type":"node","id":"9140","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1333, National Origin-Based Antidiscrimination for Nonimmigrants Act","sponsors.0.lastName":"Wilson","cboCostEstimates.0.pubDate":"2021-04-19T22:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1333/summaries?format=json","bill.relatedBills.count":4,"type":"HR","bill.summaries.count":3,"bill.amendments.count":1,"number":"1333","bill.cosponsors.countIncludingWithdrawnCosponsors":159,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"W000808","bill.subjects.count":40,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1333/relatedbills?format=json","latestAction.actionDate":"2023-03-01","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Wilson, Frederica S. [D-FL-24]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-04-19T22:05:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1333/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-20","updateDate":"2024-07-24T15:23:31Z","committees.count":1,"request.billNumber":"1333","committees.url":"https://api.congress.gov/v3/bill/118/hr/1333/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:48:42Z","bill.number":"1333","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nApril 14, 2021\n","committeeReports":[],"sponsors.0.middleName":"S.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1333/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1333/summaries?format=json","cboCostEstimates.0.title":"H.R. 1333, National Origin-Based Antidiscrimination for Nonimmigrants Act","bill.titles.count":10,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","introducedDate":"2023-03-01","subjects.count":7,"bill.committees.count":5,"bill.sponsors.0.firstName":"Judy","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1333/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1333?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILSON of Florida:\nH.R. 1333.\n=========================== NOTE ===========================\nOn page H1052, March 1, 2023, the following appeared: By Ms.\nWILSON: H.R. 1333.\nThe online version has been corrected to read: By Ms. WILSON of\nFlorida: H.R. 1333.\n========================= END NOTE =========================\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nFederal housing assistance\n[Page H1052]\n","bill.sponsors.0.district":27,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1333/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2021-04-22","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-20","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 36 (Thursday, February 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CHU:\nH.R. 1333.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section XIII of the Constitution:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\n[Page H730]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1333/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1333/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1333/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001080","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1333/amendments?format=json","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nApril 14, 2021\n","bill.actions.count":33,"titles.count":3,"cosponsors.count":159,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/20?format=json","bill.sponsors.0.fullName":"Rep. Chu, Judy [D-CA-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1333/text?format=json","bill.updateDate":"2025-01-03T04:48:42Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1333/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000808?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1333/subjects?format=json","title":"Safe Temperature Act of 2023","bill.title":"NO BAN Act","cosponsors.countIncludingWithdrawnCosponsors":159,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57156","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1333/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/20?format=json","request.billType":"hr","bill.cosponsors.count":159,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1333/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-25","sponsors.0.district":24,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Frederica","updateDateIncludingText":"2024-07-24T15:23:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1333/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57156","bill.sponsors.0.lastName":"Chu"}} +{"type":"node","id":"9141","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2719/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Newhouse","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2719/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2719","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\n[Page H2055]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2719/cosponsors?format=json","sponsors.0.bioguideId":"N000189","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2719/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","bill.sponsors.0.bioguideId":"B000574","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2719/text?format=json","bill.updateDate":"2025-01-03T04:58:43Z","updateDate":"2024-12-12T09:05:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2719/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","request.billNumber":"2719","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2719/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2719/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:58:43Z","title":"Conservation and Innovative Climate Partnership Act of 2023","bill.title":"Rebuilding America’s Airport Infrastructure Act","bill.number":"2719","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2719/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2719/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2719/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"EARL","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2719/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2719/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2719?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Food, Agriculture, Conservation, and Trade Act\nof 1990 to establish a competitive grant program under which\nthe Secretary of Agriculture provides grants to land-grant\ncolleges and universities to support agricultural producers\nin adopting conservation and innovative climate practices\n[Page H1887]\n","sponsors.0.district":4,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-12-12T09:05:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2719/text?format=json","bill.sponsors.0.lastName":"BLUMENAUER"}} +{"type":"node","id":"9142","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2757/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grijalva","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Agriculture.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2757/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Indian and Insular Affairs .","bill.summaries.count":1,"sponsors.0.party":"D","number":"2757","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2757.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution By Mr.\nBUTTERFIELD:\nH.R. 2758.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3 of the Constitution,\nCongress has the power to collect taxes and expend funds to\nprovide for the general welfare of the United States.\nCongress may also make laws that are necessary and proper for\ncarrying into execution their powers enumerated under Article\nI.\n[Page H2107]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2757/cosponsors?format=json","sponsors.0.bioguideId":"G000551","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2757/actions?format=json","latestAction.actionDate":"2023-05-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2757/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":101,"bill.latestAction.text":"Referred to the House Committee on Agriculture.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2757/text?format=json","bill.updateDate":"2025-01-03T04:59:22Z","updateDate":"2024-11-14T09:05:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2757/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","request.billNumber":"2757","committees.url":"https://api.congress.gov/v3/bill/118/hr/2757/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2757/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:22Z","title":"Puerto Rico Status Act","bill.title":"Climate Agricultural Conservation Practices Act","bill.number":"2757","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":101,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2757/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","sponsors.0.middleName":"M.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2757/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2757/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2757/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2757/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2757?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 2757.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle. IV. Section 3. Clause 2. ``The Congress shall have\nPower to dispose of and make all needful Rules and\nRegulations respecting the Territory or other Property\nbelonging to the United States; and nothing in this\nConstitution shall be so construed as to Prejudice any Claims\nof the United States, or of any particular State.''\nThe single subject of this legislation is:\nTo enable the people of Puerto Rico to choose a permanent,\nnonterritorial, fully self-governing political status for\nPuerto Rico and to provide for a transition to and the\nimplementation of that permanent, nonterritorial, fully self-\ngoverning political status, and for other purposes.\n[Page H1910]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Raúl","bill.type":"HR","updateDateIncludingText":"2024-11-14T09:05:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2757/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9143","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallagher","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Agriculture.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2756/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2756","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2756.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\n[Page H2107]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2756/cosponsors?format=json","sponsors.0.bioguideId":"G000579","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2756/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2756/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-20","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Agriculture.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2756/text?format=json","bill.updateDate":"2025-01-03T04:59:22Z","updateDate":"2024-07-24T15:22:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2756/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","request.billNumber":"2756","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2756/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2756/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:22Z","title":"Taiwan Cybersecurity Resiliency Act of 2023","bill.title":"CALL Act","bill.number":"2756","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2756/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2756/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2756/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2756/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2756/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2756?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 2756.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nDefense\n[Page H1910]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2756/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9144","labels":["Bill"],"properties":{"relatedBills.count":29,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McHenry","bill.latestAction.actionDate":"2021-04-22","cboCostEstimates.0.pubDate":"2023-07-17T15:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2799/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2799","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 2799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2109]\n","amendments.count":9,"sponsors.0.bioguideId":"M001156","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2799/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2799/relatedbills?format=json","latestAction.actionDate":"2024-03-11","textVersions.count":4,"bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","bill.sponsors.0.bioguideId":"P000605","amendments.url":"https://api.congress.gov/v3/bill/118/hr/2799/amendments?format=json","bill.originChamber":"House","bill.actions.count":3,"titles.count":69,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-143","bill.sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2799/text?format=json","bill.updateDate":"2025-01-03T04:59:23Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2799/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":55,"sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","request.billNumber":"2799","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2799/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2799/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:23Z","title":"Expanding Access to Capital Act of 2023","bill.title":"No Duplicate PPP Loans Act of 2021","bill.number":"2799","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on April 26, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59374","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2799/committees?format=json","latestAction_actionDate":"2021-04-22","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/143?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/2799/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2799/summaries?format=json","cboCostEstimates.0.title":"H.R. 2799, Expanding Access to Capital Act of 2023","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-04-24","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2799/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2799/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2799?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McHENRY:\nH.R. 2799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: To regulate commerce with\nstates, other nations, and Native American tribes.\nArticle 1, Section 8, Clause 18:\nAuthority to create laws that are necessary and proper to\ncarry out the laws of the land\nThe single subject of this legislation is:\nTo make reforms to the capital markets of the United States\n[Page H1915]\n","sponsors.0.district":10,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Patrick","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:38:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2799/text?format=json","bill.sponsors.0.lastName":"Perry"}} +{"type":"node","id":"9145","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2808/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Reschenthaler","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2808/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"2808","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 2808.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2109]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2808/cosponsors?format=json","sponsors.0.bioguideId":"R000610","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2808/actions?format=json","latestAction.actionDate":"2023-04-24","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","bill.sponsors.0.bioguideId":"R000103","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":46,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2808/text?format=json","bill.updateDate":"2025-01-03T04:59:13Z","updateDate":"2024-11-13T09:05:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2808/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","request.billNumber":"2808","committees.url":"https://api.congress.gov/v3/bill/118/hr/2808/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2808/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:13Z","title":"Arnold Daniel Palmer Commemorative Coin Act","bill.title":"Health Freedom and Flexibility Act","bill.number":"2808","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2808/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2808/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2808/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","introducedDate":"2023-04-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matthew","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2808/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2808/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2808?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 2808.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One Section Eight\nThe single subject of this legislation is:\nRequiring the Secretary of the Treasury to min\ncommemorative coins in recognition of Arnold Daniel Palmer.\n[Page H1915]\n","bill.sponsors.0.state":"MT","sponsors.0.district":14,"sponsors.0.firstName":"Guy","bill.type":"HR","updateDateIncludingText":"2024-11-13T09:05:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2808/text?format=json","bill.sponsors.0.lastName":"Rosendale"}} +{"type":"node","id":"9146","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mast","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2772/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2772","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 2772.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8; U.S. Constitution\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2772/cosponsors?format=json","sponsors.0.bioguideId":"M001199","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2772/actions?format=json","latestAction.actionDate":"2023-04-20","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-21]","bill.sponsors.0.bioguideId":"D000216","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2772/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2772/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","request.billNumber":"2772","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2772/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2772/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"GRAM Act","bill.title":"SWEET Act","bill.number":"2772","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2772/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2772/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2772/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"ROSA","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2772/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2772/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2772?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 2772.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nThis bill allows persons in states and tribal commmmunities\nthat have legal cannabis programs to buy and transport guns\nunder federal law.\n[Page H1911]\n","sponsors.0.district":21,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":3,"sponsors.0.firstName":"Brian","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2772/text?format=json","bill.sponsors.0.lastName":"DELAURO"}} +{"type":"node","id":"9147","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2786/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2786/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2786","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 2786.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2786/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2786/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2786/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2786/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2786/text?format=json","bill.updateDate":"2025-01-03T04:59:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2786/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"2786","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2786/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2786/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:13Z","title":"Climate Change Relief for Urban Areas Act of 2023","bill.title":"Tobacco Tax Equity Act of 2021","bill.number":"2786","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2786/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2786/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2786/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2786/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2786/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2786?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 2786.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nEnvironmental Programs\n[Page H1912]\n","sponsors.0.district":28,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2786/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}} +{"type":"node","id":"9148","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2783/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sablan","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2783/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"B.","number":"2783","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HICE of Georgia:\nH.R. 2783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the Constitution states\n``To regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes.''\nArticle I, Section 8, Clause 18 of the Constitution states\n``To make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States or in any Department or Officer thereof.''\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2783/cosponsors?format=json","sponsors.0.bioguideId":"S001177","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2783/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2783/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","bill.sponsors.0.bioguideId":"H001071","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hice, Jody B. [R-GA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2783/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-06-11T15:47:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2783/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","request.billNumber":"2783","committees.url":"https://api.congress.gov/v3/bill/118/hr/2783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2783/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"AANAPISI Opportunity Act","bill.title":"Official Time Reporting Act","bill.number":"2783","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2783/committees?format=json","request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2783/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2783/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001071?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jody","sponsors.0.state":"MP","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2783/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2783/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2783?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 2783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I; Section 8 of the United States Constitution\nThe single subject of this legislation is:\nMSI grant programs in USDA\n[Page H1911]\n","sponsors.0.district":10,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Gregorio","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:47:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2783/text?format=json","bill.sponsors.0.lastName":"Hice"}} +{"type":"node","id":"9149","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2777/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Omar","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2777/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2777","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GONZALEZ of Ohio:\nH.R. 2777.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the Constitution stating\nthat Congress has the authority to ``make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution.''\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2777/cosponsors?format=json","sponsors.0.bioguideId":"O000173","bill.subjects.count":23,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2777/actions?format=json","latestAction.actionDate":"2023-04-20","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","bill.sponsors.0.bioguideId":"G000588","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":45,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Anthony [R-OH-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2777/text?format=json","bill.updateDate":"2025-01-03T04:59:10Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2777/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","request.billNumber":"2777","committees.url":"https://api.congress.gov/v3/bill/118/hr/2777/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2777/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:10Z","title":"School Meals during School Closures Act","bill.title":"Advanced Recycling Research and Development Act of 2021","bill.number":"2777","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":45,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2777/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2777/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2777/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000588?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2777/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2777/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2777?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2777.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1\nThe single subject of this legislation is:\nThe School Meals During School Closures Act will ensure\nthat schools have the necessary federal flexibilities to\ncontinue serving meals to students during unanticipated\nclosures.\n[Page H1911]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":16,"sponsors.0.firstName":"Ilhan","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2777/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}} +{"type":"node","id":"9150","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2790/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Timmons","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2790/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2790","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of Michigan:\nH.R. 2790.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2790/cosponsors?format=json","sponsors.0.bioguideId":"T000480","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2790/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2790/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","bill.sponsors.0.bioguideId":"L000592","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2790/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Andy [D-MI-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2790/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2790/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","request.billNumber":"2790","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2790/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2790/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Improving Capital Allocation for Newcomers Act of 2021","bill.title":"Long-Term Unemployment Elimination Act of 2021","bill.number":"2790","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2790/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2790/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2790/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000592?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2790/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2790/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2790?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 2790.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority on which this bill rests is\nthe power of Congress to make rules for the regulation of\ncommerce, as enumerated in Article I, Section 8, Clause 3 of\nthe United States Constitution.\nThe single subject of this legislation is:\nThis bill revises qualification requirements for venture\ncapital funds. Currently, an investment firm qualifies as a\nventure capital fund if, among other requirements (1) the\nfund's securities are owned by 250 persons or less, and (2)\nthe fund has $10 million or less in aggregate capital\ncontributions and uncalled committed capital. The bill\nincreases these amounts to 2,000 persons and $150 million,\nrespectively.\n[Page H1912]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":9,"sponsors.0.firstName":"William","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2790/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"9151","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2762/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kamlager-Dove","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2762/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2762","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 2762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3. To regulate commerce with\nforeign nations, and among the several states, and with the\nIndian tribes.\n[Page H2107]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2762/cosponsors?format=json","sponsors.0.bioguideId":"K000400","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2762/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","bill.sponsors.0.bioguideId":"C001090","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2762/text?format=json","bill.updateDate":"2025-01-03T04:59:08Z","updateDate":"2024-12-21T09:05:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2762/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","request.billNumber":"2762","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2762/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2762/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:08Z","title":"Tribal Family Fairness Act","bill.title":"Climate-Resilient International Development Optimization Act","bill.number":"2762","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2762/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2762/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2762/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2762/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2762/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2762?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 2762.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare Clause (Art. 1 Sec. 8 Cl.\n1 ), the Commerce Clause (Art. 1 Sec. 8 Cl. 3), and the\nNecessary and Proper Clause (Art. 1 Sec. 8 Cl. 18).\nFurther, this statement of constitutional authority is made\nfor the sole purpose of compliance with clause 7 of Rule XII\nof the Rules of the House of Representatives and shall have\nno bearing on judicial review of the accompanying bill.\nThe single subject of this legislation is:\nThis bill addresses the disproportional representation of\nAmerican Indian and Alaska Native children in foster care by\ninvesting in tribal child welfare systems and providing\nculturally appropriate services to preserve tribal families.\n[Page H1911]\n","sponsors.0.district":37,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Sydney","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:43Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2762/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"9152","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Jayapal","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Immigration","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2760/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2760","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 2760.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 (relating to the power of\nCongress to regulate Commerce with foreign Nations, and among\nthe several States, and with the Indian Tribes.)\n[Page H2107]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2760/cosponsors?format=json","sponsors.0.bioguideId":"J000298","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2760/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2760/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","bill.sponsors.0.bioguideId":"C001090","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","cosponsors.count":122,"request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2760/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2760/text?format=json","bill.updateDate":"2025-01-03T04:59:23Z","updateDate":"2024-07-24T15:21:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2760/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","request.billNumber":"2760","committees.url":"https://api.congress.gov/v3/bill/118/hr/2760/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2760/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:23Z","title":"Dignity for Detained Immigrants Act","bill.title":"Built to Last Act of 2021","bill.number":"2760","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":122,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2760/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2760/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2760/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2760/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2760/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2760?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\n[Pages H1910-H1911]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.R. 2760.\n[[Page H1911]]\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nImmigration\n","sponsors.0.district":7,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Pramila","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2760/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"9153","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2784/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sarbanes","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2784/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2784","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HOULAHAN:\nH.R. 2784.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the U.S. Constitution\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2784/cosponsors?format=json","sponsors.0.bioguideId":"S001168","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2784/actions?format=json","latestAction.actionDate":"2023-04-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2784/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Sarbanes, John P. [D-MD-3]","bill.sponsors.0.bioguideId":"H001085","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2784/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Houlahan, Chrissy [D-PA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2784/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2784/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001168?format=json","request.billNumber":"2784","committees.url":"https://api.congress.gov/v3/bill/118/hr/2784/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2784/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"No Child Left Inside Act of 2023","bill.title":"STEM RESTART Act","bill.number":"2784","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2784/committees?format=json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2784/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2784/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001085?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chrissy","sponsors.0.state":"MD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2784/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2784/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2784?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\n[Pages H1911-H1912]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SARBANES:\nH.R. 2784.\n[[Page H1912]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nEnivornmental Education\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":6,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2784/text?format=json","bill.sponsors.0.lastName":"Houlahan"}} +{"type":"node","id":"9154","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2378/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2378/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"I.","number":"2378","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE of Oklahoma:\nH.R. 2378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 14, 15, and 16 of the U.S.\nConstitution.\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2378/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2378/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2378/relatedbills?format=json","latestAction.actionDate":"2023-04-25","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"B000740","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2378/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2378/text?format=json","bill.updateDate":"2025-01-03T04:55:58Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2378/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"2378","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2378/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:58Z","title":"Farmers’ Market and Food Bank Local Revitalization Act of 2023","bill.title":"Protecting Military Families with Disabilities Act","bill.number":"2378","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2378/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2378/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2378/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephanie","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2378/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2378/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2378?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 2378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, To regulate Commerce\nThe single subject of this legislation is:\nCommerce\n[Page H1659]\n","sponsors.0.district":9,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":5,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2378/text?format=json","bill.sponsors.0.lastName":"Bice"}} +{"type":"node","id":"9155","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2421/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Dingell","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2421/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"N.","number":"2421","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MURPHY of Florida:\nH.R. 2421.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3, ``To regulate Commerce with\nforeign Nations, and among the several States, and with the\nIndian Tribes.'' And Article I, Section 8, Clause 18, ``To\nmake all Laws which shall be necessary and proper for\ncarrying into the Execution the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or in any Department of Officer thereof.''\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2421/cosponsors?format=json","sponsors.0.bioguideId":"D000624","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2421/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2421/relatedbills?format=json","latestAction.actionDate":"2023-03-30","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","bill.sponsors.0.bioguideId":"M001202","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2421/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Murphy, Stephanie N. [D-FL-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2421/text?format=json","bill.updateDate":"2025-01-03T04:56:06Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2421/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","request.billNumber":"2421","committees.url":"https://api.congress.gov/v3/bill/118/hr/2421/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2421/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:06Z","title":"Safe Equitable Campus Resources and Education Act of 2023","bill.title":"Collegiate Housing and Infrastructure Act of 2021","bill.number":"2421","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2421/committees?format=json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2421/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2421/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001202?format=json","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephanie","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2421/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2421/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2421?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 2421.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional Authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo improve responses to sexual violence against students\nwith disabilities.\n[Page H1694]\n","sponsors.0.district":6,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":7,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2421/text?format=json","bill.sponsors.0.lastName":"Murphy"}} +{"type":"node","id":"9156","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2439/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2439/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2439","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 2439.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2439/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2439/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2439/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"U000040","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":67,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2439/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2439/text?format=json","bill.updateDate":"2025-01-03T04:56:06Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2439/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"2439","committees.url":"https://api.congress.gov/v3/bill/118/hr/2439/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2439/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:06Z","title":"Ally’s Act","bill.title":"SALT Fairness for Working Families Act","bill.number":"2439","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":67,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2439/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2439/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2439/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2439/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2439/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2439?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 2439.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the coverage of hearing devices and systems in\ncertain private health insurance plans.\n[Page H1695]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":14,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2439/text?format=json","bill.sponsors.0.lastName":"Underwood"}} +{"type":"node","id":"9157","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ESHOO","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2422/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2422","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY of North Carolina:\nH.R. 2422.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2422/cosponsors?format=json","sponsors.0.bioguideId":"E000215","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2422/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2422/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-16]","bill.sponsors.0.bioguideId":"M001210","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2422/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Murphy, Gregory [R-NC-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2422/text?format=json","bill.updateDate":"2025-01-03T04:56:14Z","updateDate":"2024-09-19T08:05:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2422/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","request.billNumber":"2422","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2422/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2422/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:14Z","title":"CALM Modernization Act of 2023","bill.title":"To move the April 15, 2021 estimated tax payment deadline to May 17, 2021 for individuals and corporations.","bill.number":"2422","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2422/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2422/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2422/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gregory","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2422/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2422/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2422?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 2422.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTo regulate the sound of tv advertisements\n[Page H1694]\n","sponsors.0.district":16,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":3,"sponsors.0.firstName":"ANNA","bill.type":"HR","updateDateIncludingText":"2024-09-19T08:05:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2422/text?format=json","bill.sponsors.0.lastName":"Murphy"}} +{"type":"node","id":"9158","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2409/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bera","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2409/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2409","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLER:\nH.R. 2409.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2409/cosponsors?format=json","sponsors.0.bioguideId":"B001287","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2409/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","bill.sponsors.0.bioguideId":"K000395","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keller, Fred [R-PA-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2409/text?format=json","bill.updateDate":"2025-01-03T04:56:14Z","updateDate":"2024-07-24T15:23:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2409/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","request.billNumber":"2409","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2409/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2409/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:14Z","title":"EXCEL Act","bill.title":"U.S.-Israel Cooperation Expansion Act","bill.number":"2409","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2409/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2409/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2409/summaries?format=json","bill.cosponsors.count":18,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000395?format=json","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Fred","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2409/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2409/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2409?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 2409.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nForeign Affairs\n[Page H1694]\n","sponsors.0.district":6,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":12,"sponsors.0.firstName":"Ami","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2409/text?format=json","bill.sponsors.0.lastName":"Keller"}} +{"type":"node","id":"9159","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Finstad","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2423/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"HOLMES","number":"2423","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 2423.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 17 of section 8 of article I of the Constitution.\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2423/cosponsors?format=json","sponsors.0.bioguideId":"F000475","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2423/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2423/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-25","bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.sponsors.0.bioguideId":"N000147","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":31,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2423/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-08-17T08:05:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2423/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","request.billNumber":"2423","committees.url":"https://api.congress.gov/v3/bill/118/hr/2423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2423/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Farm Credit Administration Independent Authority Act","bill.title":"District of Columbia Juror Pay Parity Act","bill.number":"2423","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2423/committees?format=json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2423/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2423/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2423/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2423/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2423?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 2423.\nCongress has the power to enact this legislation pursuant\nto the following:\nLaws which shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nAffirms the Farm Credit Administration as the sole and\nindependent regulator of the Farm Credit System.\n[Page H1694]\n","sponsors.0.district":1,"bill.sponsors.0.state":"DC","sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-11-26T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2423/text?format=json","bill.sponsors.0.lastName":"NORTON"}} +{"type":"node","id":"9160","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Santos","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2404/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"2404","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 2404.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H1720]\n","sponsors.0.bioguideId":"S001222","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2404/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2404/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Santos, George [R-NY-3]","bill.sponsors.0.bioguideId":"G000565","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2404/text?format=json","bill.updateDate":"2025-01-03T04:56:10Z","updateDate":"2024-07-24T15:23:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2404/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001222?format=json","request.billNumber":"2404","committees.url":"https://api.congress.gov/v3/bill/118/hr/2404/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2404/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:10Z","title":"Women’s Rights and Protection Act of 2023","bill.title":"Cesar Chavez Commemorative Coin Act","bill.number":"2404","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2404/committees?format=json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2404/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2404/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2404/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2404/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2404?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SANTOS:\nH.R. 2404.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution, Article 1 Section 8\nThe single subject of this legislation is:\nTo prohibit the availability of funds to provide assistance\nto foreign countries that criminalize or discriminate based\non gender, and for other purposes.\n[Page H1693]\n","sponsors.0.district":3,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":4,"sponsors.0.firstName":"George","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2404/text?format=json","bill.sponsors.0.lastName":"Gosar"}} +{"type":"node","id":"9161","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2411/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2411","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 2411.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2411/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2411/actions?format=json","latestAction.actionDate":"2023-04-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2411/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"K000381","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":43,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2411/text?format=json","bill.updateDate":"2025-01-03T04:56:13Z","updateDate":"2024-08-14T08:05:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2411/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"2411","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2411/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2411/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:13Z","title":"National Nursing Workforce Center Act of 2023","bill.title":"Broadband for All Act of 2021","bill.number":"2411","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2411/committees?format=json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2411/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2411/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Derek","sponsors.0.state":"DE","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2411/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2411/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2411?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 2411.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nNursing\n[Page H1694]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-08-14T08:05:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2411/text?format=json","bill.sponsors.0.lastName":"Kilmer"}} +{"type":"node","id":"9162","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2417/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2417","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUETKEMEYER:\nH.R. 2417.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill rests is\nthe power of Congress to lay and collect taxes, duties,\nimposts, and excises to pay the debts and provide for the\ncommon Defense and general welfare of the United States, as\nenumerated in Article I, Section 8, Clause 1. Thus, Congress\nhas the authority not only to increase taxes, but also, to\nreduce taxes to promote the general welfare of the United\nStates of America and her citizens. Additionally, Congress\nhas the Constitutional authority to regulate commerce among\nthe States and with Indian Tribes, as enumerated in Article\nI, Section 8, Clause 3.\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2417/cosponsors?format=json","sponsors.0.bioguideId":"C001051","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2417/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2417/relatedbills?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Carter, John R. [R-TX-31]","bill.sponsors.0.bioguideId":"L000569","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2417/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2417/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001051?format=json","request.billNumber":"2417","committees.url":"https://api.congress.gov/v3/bill/118/hr/2417/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2417/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Protection of Children Act of 2023","bill.title":"Protecting Every Student Act","bill.number":"2417","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2417/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2417/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2417/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Blaine","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2417/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2417/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2417?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Texas:\nH.R. 2417.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the US Constitution\nThe single subject of this legislation is:\nProviding protections for Unaccompanied Alien Children.\n[Page H1694]\n","sponsors.0.district":31,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":3,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2417/text?format=json","bill.sponsors.0.lastName":"Luetkemeyer"}} +{"type":"node","id":"9163","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2414/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brownley","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committees on Education and Labor, and Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2414/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2414","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\n[Pages H1720-H1721]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 2414.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H1721]]\nArticle I, Section 8, clause 1\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2414/cosponsors?format=json","sponsors.0.bioguideId":"B001285","bill.subjects.count":19,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2414/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2414/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","bill.sponsors.0.bioguideId":"L000578","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":28,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committees on Education and Labor, and Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2414/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-06T09:05:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2414/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","request.billNumber":"2414","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2414/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2414/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"CHAMPVA Children’s Care Protection Act of 2023","bill.title":"Keep Vaccines Voluntary Act","bill.number":"2414","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":28,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2414/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2414/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2414/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Doug","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2414/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2414/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2414?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2414.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans\n[Page H1694]\n","sponsors.0.district":26,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Julia","bill.type":"HR","updateDateIncludingText":"2024-12-06T09:05:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2414/text?format=json","bill.sponsors.0.lastName":"LaMalfa"}} +{"type":"node","id":"9164","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2399/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2399/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2399","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DELGADO:\nH.R. 2399.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2399/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2399/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"D000630","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Delgado, Antonio [D-NY-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2399/text?format=json","bill.updateDate":"2025-01-03T04:56:04Z","updateDate":"2024-07-24T15:23:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2399/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"2399","committees.url":"https://api.congress.gov/v3/bill/118/hr/2399/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2399/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:04Z","title":"To authorize the President to award the Medal of Honor to Thomas H. Griffin for acts of valor as a member of the Army during the Vietnam War.","bill.title":"Community Navigator Reporting Act of 2021","bill.number":"2399","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2399/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2399/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2399/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000630?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Antonio","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2399/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2399/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2399?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 2399.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 14\nThe single subject of this legislation is:\nMedal of Honor upgrade.\n[Page H1660]\n","sponsors.0.district":19,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":19,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2399/text?format=json","bill.sponsors.0.lastName":"Delgado"}} +{"type":"node","id":"9165","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2413/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brownley","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2413/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2413","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KUSTOFF:\nH.R. 2413.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8, the Necessary and Proper\nClause. Congress shall have power to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing powers and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof.\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2413/cosponsors?format=json","sponsors.0.bioguideId":"B001285","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2413/actions?format=json","latestAction.actionDate":"2023-04-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2413/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","bill.sponsors.0.bioguideId":"K000392","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":69,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2413/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kustoff, David [R-TN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2413/text?format=json","bill.updateDate":"2025-01-03T04:56:03Z","updateDate":"2024-11-15T09:05:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2413/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","request.billNumber":"2413","committees.url":"https://api.congress.gov/v3/bill/118/hr/2413/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2413/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:03Z","title":"Dental Care for Veterans Act","bill.title":"Paving the Way for Rural Communities Act of 2021","bill.number":"2413","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":69,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2413/committees?format=json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2413/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2413/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000392?format=json","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2413/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2413/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2413?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2413.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nVeterans\n[Page H1694]\n","sponsors.0.district":26,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":8,"sponsors.0.firstName":"Julia","bill.type":"HR","updateDateIncludingText":"2024-11-15T09:05:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2413/text?format=json","bill.sponsors.0.lastName":"Kustoff"}} +{"type":"node","id":"9166","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1438/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bergman","bill.latestAction.actionDate":"2021-04-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1438/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1438","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 37 (Friday, February 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SHERRILL:\nH.R. 1438.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 or Article 1 of the Constitution of\nthe United States of America.\n[Page H860]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1438/cosponsors?format=json","sponsors.0.bioguideId":"B001301","bill.subjects.count":27,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1438/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1438/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","bill.sponsors.0.bioguideId":"S001207","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1438/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sherrill, Mikie [D-NJ-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1438/text?format=json","bill.updateDate":"2025-01-03T04:48:59Z","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1438/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","request.billNumber":"1438","committees.url":"https://api.congress.gov/v3/bill/118/hr/1438/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1438/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:48:59Z","title":"Think Tank Transparency Act","bill.title":"FLOODS Act","bill.number":"1438","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1438/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1438/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1438/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001207?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Mikie","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1438/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1438/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1438?format=json","bill.introducedDate":"2021-02-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 1438.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 18, necessary and proper\nThe single subject of this legislation is:\nForeign Government Accountability\n[Page H1207]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":11,"sponsors.0.firstName":"Jack","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1438/text?format=json","bill.sponsors.0.lastName":"Sherrill"}} +{"type":"node","id":"9167","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2376/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grijalva","bill.latestAction.actionDate":"2021-04-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2376/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the Subcommittee on Indian and Insular Affairs .","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"J.","number":"2376","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 2376.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H1714]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2376/cosponsors?format=json","sponsors.0.bioguideId":"G000551","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2376/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2376/relatedbills?format=json","latestAction.actionDate":"2023-05-08","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","bill.sponsors.0.bioguideId":"T000483","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2376/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2376/text?format=json","bill.updateDate":"2025-01-03T04:55:56Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2376/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","request.billNumber":"2376","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2376/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2376/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:56Z","title":"To amend the Indian Health Care Improvement Act and title 5 of the United States Code to facilitate participation in Federal benefits programs, and for other purposes.","bill.title":"Excellence in Recovery Housing Act","bill.number":"2376","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2376/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-04-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2376/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2376/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2376/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2376/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2376?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 2376.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article 1 Sections 1 and 8\nThe single subject of this legislation is:\nAmendments to the Indian Health Care Improvement Act\n[Page H1659]\n","sponsors.0.district":7,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":6,"sponsors.0.firstName":"Raúl","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2376/text?format=json","bill.sponsors.0.lastName":"Trone"}} +{"type":"node","id":"9168","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2369/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bucshon","bill.latestAction.actionDate":"2021-04-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2369/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2369","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORCROSS:\nH.R. 2369.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1713]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2369/cosponsors?format=json","sponsors.0.bioguideId":"B001275","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2369/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Bucshon, Larry [R-IN-8]","bill.sponsors.0.bioguideId":"N000188","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Norcross, Donald [D-NJ-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2369/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:23:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2369/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001275?format=json","request.billNumber":"2369","committees.url":"https://api.congress.gov/v3/bill/118/hr/2369/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2369/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"VALID Act of 2023","bill.title":"SMART Electric Act","bill.number":"2369","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2369/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2369/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2369/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000188?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2369/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2369/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2369?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCSHON:\nH.R. 2369.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHealth\n[Page H1659]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":1,"sponsors.0.firstName":"Larry","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2369/text?format=json","bill.sponsors.0.lastName":"Norcross"}} +{"type":"node","id":"9169","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bost","bill.latestAction.actionDate":"2021-04-06","cboCostEstimates.0.pubDate":"2023-06-22T16:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2367/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 788.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2367","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 2367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H1713]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2367/cosponsors?format=json","sponsors.0.bioguideId":"B001295","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2367/actions?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2367/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","bill.sponsors.0.bioguideId":"L000593","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":53,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2367/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-936","bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2367/text?format=json","bill.updateDate":"2025-01-03T04:55:57Z","updateDate":"2025-03-13T22:41:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2367/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","request.billNumber":"2367","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2367/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:57Z","title":"Truck Parking Safety Improvement Act","bill.title":"SOBER Homes Act","bill.number":"2367","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59285","cosponsors.countIncludingWithdrawnCosponsors":53,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2367/committees?format=json","latestAction_actionDate":"2021-04-06","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/936?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/2367/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2367/summaries?format=json","cboCostEstimates.0.title":"H.R. 2367, Truck Parking Safety Improvement Act","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2367/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2367/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2367?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 2367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nCommercial Vehicle Parking\n[Page H1659]\n","sponsors.0.district":12,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2367/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"9170","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2357/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-04-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2357/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2357","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 2357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representative.\n[Page H1713]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2357/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2357/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001097","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2357/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-07-24T15:22:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2357/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2357","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2357/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2357/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"To provide for a limitation on availability of funds for Global Environment Facility for fiscal year 2024.","bill.title":"RECOVER Act","bill.number":"2357","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2357/committees?format=json","latestAction_actionDate":"2021-04-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2357/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2357/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2357/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2357/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2357?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1658]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2357/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}} +{"type":"node","id":"9171","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2356/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-04-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2356/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2356","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUTTERFIELD:\nH.R. 2356.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3 of the Constitution,\nCongress has the power to collect taxes and expend funds to\nprovide for the general welfare of the United States.\nCongress may also make laws that are necessary and proper for\ncarrying into execution their powers enumerated under Article\nI.\n[Page H1713]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2356/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2356/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2356/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"B001251","bill.originChamber":"House","bill.actions.count":7,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2356/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Butterfield, G. K. [D-NC-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2356/text?format=json","bill.updateDate":"2025-01-03T04:55:55Z","updateDate":"2024-07-24T15:22:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2356/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2356","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2356/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2356/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:55Z","title":"To provide for a limitation on availability of funds for International Organizations and Programs for fiscal year 2024.","bill.title":"Better Wound Care at Home Act","bill.number":"2356","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2356/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2356/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2356/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001251?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"G. K.","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2356/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2356/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2356?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2356.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1658]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2356/text?format=json","bill.sponsors.0.lastName":"Butterfield"}} +{"type":"node","id":"9172","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-04-05","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2360/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2360","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DELGADO:\nH.R. 2360.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H1713]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2360/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2360/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2360/relatedbills?format=json","latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"D000630","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2360/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Delgado, Antonio [D-NY-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2360/text?format=json","bill.updateDate":"2025-01-03T04:55:58Z","updateDate":"2024-07-24T15:22:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2360/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2360","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2360/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2360/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:58Z","title":"To provide for a limitation on availability of funds for Contribution to the International Development Association for fiscal year 2024.","bill.title":"Small Business Relief Accessibility Act","bill.number":"2360","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2360/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2360/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2360/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000630?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Antonio","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2360/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2360/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2360?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2360.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1659]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":19,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2360/text?format=json","bill.sponsors.0.lastName":"Delgado"}} +{"type":"node","id":"9173","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2363/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-04-05","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2363/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2363","bill.cosponsors.countIncludingWithdrawnCosponsors":29,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 60 (Monday, April 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARSHBARGER:\nH.R. 2363.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1713]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2363/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2363/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2363/relatedbills?format=json","latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"H001086","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2363/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Harshbarger, Diana [R-TN-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2363/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:22:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2363/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2363","committees.url":"https://api.congress.gov/v3/bill/118/hr/2363/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2363/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To provide for a limitation on availability of funds for Contribution to the International Fund for Agricultural Development for fiscal year 2024.","bill.title":"Voluntary Protection Program Act","bill.number":"2363","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2363/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2363/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2363/summaries?format=json","bill.cosponsors.count":29,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001086?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Diana","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2363/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2363/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2363?format=json","bill.introducedDate":"2021-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2363.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1659]\n","sponsors.0.district":5,"bill.sponsors.0.state":"TN","bill.sponsors.0.district":1,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2363/text?format=json","bill.sponsors.0.lastName":"Harshbarger"}} +{"type":"node","id":"9174","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1147/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thompson","bill.latestAction.actionDate":"2021-03-22","cboCostEstimates.0.pubDate":"2023-06-13T20:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1147/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 293.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"1147","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1147.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1:\nThe Congress shall have the Power . . . to pay the Debts\nand provide for the common Defense and general Welfare of the\nUnited States.\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H537]\n","amendments.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1147/cosponsors?format=json","sponsors.0.bioguideId":"T000467","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1147/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1147/relatedbills?format=json","latestAction.actionDate":"2023-12-18","textVersions.count":4,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","bill.sponsors.0.bioguideId":"L000566","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1147/amendments?format=json","bill.actions.count":4,"bill.originChamber":"House","titles.count":6,"cosponsors.count":134,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-131","bill.sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1147/text?format=json","bill.updateDate":"2025-01-03T04:46:43Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1147/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","request.billNumber":"1147","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1147/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1147/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:43Z","title":"Whole Milk for Healthy Kids Act of 2023","bill.title":"Veterans Right to Expediency Act","bill.number":"1147","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 6, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":134,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59266","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1147/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-03-22","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/131?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1147/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1147/summaries?format=json","bill.cosponsors.count":10,"cboCostEstimates.0.title":"H.R. 1147, Whole Milk for Healthy Kids Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1147/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1147/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1147?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 1147.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nAllowing additional milk varieties into school lunch\n[Page H868]\n","sponsors.0.district":15,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":5,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1147/text?format=json","bill.sponsors.0.lastName":"Latta"}} +{"type":"node","id":"9175","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1125/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1125","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss GONZALEZ-COLON:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1, of the U.S. Constitution\n``All legislative Powers herein granted shall be vested in\na Congress of the United States, which shall consist of a\nSenate and House of Representatives.''\nArticle I, Section 8, Clause 18 of the U.S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1125/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1125/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1125/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"G000582","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Resident Commissioner González-Colón, Jenniffer [R-PR-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1125/text?format=json","bill.updateDate":"2025-01-03T04:47:07Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1125/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"1125","committees.url":"https://api.congress.gov/v3/bill/118/hr/1125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1125/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:07Z","title":"STUDENT Act","bill.title":"To amend the VA MISSION Act of 2018 to expand the veterans healing veterans medical access and scholarship program to include more students and schools.","bill.number":"1125","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1125/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1125/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1125/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jenniffer","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1125/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1125/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1125?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require disclosure of the total amount of interest that\nwould be paid over the life of a loan for certain Federal\nstudent loans.\n[Page H867]\n","sponsors.0.district":4,"bill.sponsors.0.state":"PR","sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1125/text?format=json","bill.sponsors.0.lastName":"Gonzalez-Colon"}} +{"type":"node","id":"9176","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1124/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Espaillat","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1124/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1124","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss GONZALEZ-COLON:\nH.R. 1124.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1 of the U.S. Constitution\n``All legislative Powers herein granted shall be vested in\na Congress of the United States, which shall consist of a\nSenate and House of Representatives.''\nArticle I, Section 8, Clause 18 of the U.S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor any Department of Officer thereof.''\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1124/cosponsors?format=json","sponsors.0.bioguideId":"E000297","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1124/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1124/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","bill.sponsors.0.bioguideId":"G000582","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":28,"bill.latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Resident Commissioner González-Colón, Jenniffer [R-PR-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1124/text?format=json","bill.updateDate":"2025-01-03T04:46:52Z","updateDate":"2024-10-29T20:30:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1124/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","request.billNumber":"1124","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1124/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:52Z","title":"Federal Death Penalty Abolition Act of 2023","bill.title":"Veterans Serving Veterans Act of 2021","bill.number":"1124","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":28,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1124/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1124/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1124/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jenniffer","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1124/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1124/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1124?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESPAILLAT:\nH.R. 1124.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution;\nClause 18 of Section 8 of Article I of the Constitution;\nand\nClause 14 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nAbolishing the federal death penalty\n[Page H867]\n","sponsors.0.district":13,"bill.sponsors.0.state":"PR","sponsors.0.firstName":"Adriano","bill.type":"HR","updateDateIncludingText":"2024-10-29T20:30:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1124/text?format=json","bill.sponsors.0.lastName":"Gonzalez-Colon"}} +{"type":"node","id":"9177","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1123/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ESHOO","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1123/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"1123","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.R. 1123.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1123/cosponsors?format=json","sponsors.0.bioguideId":"E000215","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1123/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":3,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-16]","bill.sponsors.0.bioguideId":"G000597","bill.actions.count":4,"bill.originChamber":"House","titles.count":5,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1123/text?format=json","bill.updateDate":"2025-01-03T04:46:54Z","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1123/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":13,"sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","request.billNumber":"1123","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1123/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1123/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:54Z","title":"Understanding Cybersecurity of Mobile Networks Act","bill.title":"Veteran Suicide Prevention Act","bill.number":"1123","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1123/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-03-22","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1123/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1123/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andrew","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1123/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1123/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1123?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 1123.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nUnderstanding Cybersecurity of Mobile Networks\n[Page H867]\n","sponsors.0.district":16,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":2,"sponsors.0.firstName":"ANNA","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:51:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1123/text?format=json","bill.sponsors.0.lastName":"Garbarino"}} +{"type":"node","id":"9178","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1114/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1114","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRIST:\nH.R. 1114.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1114/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"C001111","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","cosponsors.count":7,"request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crist, Charlie [D-FL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1114/text?format=json","bill.updateDate":"2025-01-03T04:47:06Z","updateDate":"2024-07-24T15:23:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1114/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"1114","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1114/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:06Z","title":"Long COVID RECOVERY NOW Act","bill.title":"Vaccines for Veterans Act","bill.number":"1114","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1114/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1114/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1114/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001111?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Charlie","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1114/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1114/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1114?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 1114.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the U.S. Constitution\nThe single subject of this legislation is:\nLong-COVID\n[Page H867]\n","sponsors.0.district":13,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1114/text?format=json","bill.sponsors.0.lastName":"Crist"}} +{"type":"node","id":"9179","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1022/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Palmer","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1022/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"H.","number":"1022","bill.cosponsors.countIncludingWithdrawnCosponsors":43,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 26 (Thursday, February 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUTHERFORD:\nH.R. 1022.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H503]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1022/cosponsors?format=json","sponsors.0.bioguideId":"P000609","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1022/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Palmer, Gary J. [R-AL-6]","bill.sponsors.0.bioguideId":"R000609","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rutherford, John H. [R-FL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1022/text?format=json","bill.updateDate":"2025-01-03T04:46:04Z","updateDate":"2024-07-24T15:23:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1022/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000609?format=json","request.billNumber":"1022","committees.url":"https://api.congress.gov/v3/bill/118/hr/1022/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1022/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:04Z","title":"761st Tank Battalion Congressional Gold Medal Act","bill.title":"PAWS Act of 2021","bill.number":"1022","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1022/committees?format=json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1022/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1022/summaries?format=json","bill.cosponsors.count":43,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000609?format=json","introducedDate":"2023-02-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1022/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1022/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1022?format=json","bill.introducedDate":"2021-02-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PALMER:\nH.R. 1022.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill would award a Congressional Gold Medal to the\n761st Tank Battalion\n[Page H841]\n","sponsors.0.district":6,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Gary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1022/text?format=json","bill.sponsors.0.lastName":"Rutherford"}} +{"type":"node","id":"9180","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1014/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Khanna","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1014/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1014","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 26 (Thursday, February 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MURPHY of North Carolina:\nH.R. 1014.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H503]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1014/cosponsors?format=json","sponsors.0.bioguideId":"K000389","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1014/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1014/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","bill.sponsors.0.bioguideId":"M001210","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":18,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Murphy, Gregory [R-NC-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1014/text?format=json","bill.updateDate":"2025-01-03T04:46:17Z","updateDate":"2024-07-24T15:23:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1014/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","request.billNumber":"1014","committees.url":"https://api.congress.gov/v3/bill/118/hr/1014/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1014/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:17Z","title":"Big Oil Windfall Profits Tax Act","bill.title":"Veterans National Traumatic Brain Injury Treatment Act","bill.number":"1014","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":18,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1014/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1014/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1014/summaries?format=json","bill.cosponsors.count":18,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001210?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-02-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gregory","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1014/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1014/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1014?format=json","bill.introducedDate":"2021-02-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KHANNA:\nH.R. 1014.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution.\nThe single subject of this legislation is:\nTaxation.\n[Page H841]\n","sponsors.0.district":17,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ro","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1014/text?format=json","bill.sponsors.0.lastName":"Murphy"}} +{"type":"node","id":"9181","labels":["Bill"],"properties":{"relatedBills.count":6,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/647/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/647/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"R","number":"647","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/647/cosponsors?format=json","sponsors.0.bioguideId":"J000292","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/647/actions?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/647/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Johnson, Bill [R-OH-6]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/647/text?format=json","bill.updateDate":"2025-01-03T04:43:43Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/647/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000292?format=json","request.billNumber":"647","committees.url":"https://api.congress.gov/v3/bill/118/hr/647/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/647/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:43Z","title":"Unlocking our Domestic LNG Potential Act of 2023","bill.title":"Closing the Loophole on Interstate Firearm Sales Act","bill.number":"647","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/647/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/647/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/647/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2023-01-31","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"OH","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/647/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/647/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/647?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Ohio:\nH.R. 647.\nCongress has the power to enact this legislation pursuant\nto the following:\nPurusant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution.\nArticle I, Section 8\nThe single subject of this legislation is:\nModify Natural Gas Act to remove LNG export permitting\nprocess\n[Page H577]\n","bill.introducedDate":"2021-02-01","sponsors.0.district":6,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/647/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"9182","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/914/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Franklin","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/914/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"914","bill.cosponsors.countIncludingWithdrawnCosponsors":52,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 23 (Monday, February 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 914.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H483]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/914/cosponsors?format=json","sponsors.0.bioguideId":"F000472","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/914/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/914/relatedbills?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Franklin, C. Scott [R-FL-18]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":45,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/914/text?format=json","bill.updateDate":"2025-01-03T04:45:49Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/914/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000472?format=json","request.billNumber":"914","committees.url":"https://api.congress.gov/v3/bill/118/hr/914/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/914/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:49Z","title":"Simplifying Grants Act of 2023","bill.title":"Dental Care for Veterans Act","bill.number":"914","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":45,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/914/committees?format=json","request.format":"json","sponsors.0.middleName":"Scott","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/914/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/914/summaries?format=json","bill.cosponsors.count":52,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-02-09","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/914/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/914/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/914?format=json","bill.introducedDate":"2021-02-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. C. SCOTT FRANKLIN of Florida:\nH.R. 914\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the US Constitution\nThe single subject of this legislation is:\nTo simplify the grant process for nonurbanized areas, and\nfor other purposes.\n[Page H827]\n","sponsors.0.district":18,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"C.","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/914/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9183","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/643/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/643/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"643","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/643/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/643/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/643/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001297","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/643/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/643/text?format=json","bill.updateDate":"2025-01-03T04:43:42Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/643/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"643","subjects.url":"https://api.congress.gov/v3/bill/118/hr/643/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/643/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:42Z","title":"Equal Voices Act","bill.title":"Stop Greenlighting Driver Licenses for Illegal Immigrants Act","bill.number":"643","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/643/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/643/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/643/summaries?format=json","bill.cosponsors.count":18,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-01-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ken","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/643/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/643/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/643?format=json","bill.introducedDate":"2021-02-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 643.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Reform\n[Page H577]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":4,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2025-01-09T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/643/text?format=json","bill.sponsors.0.lastName":"Buck"}} +{"type":"node","id":"9184","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/910/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/910/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"910","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 23 (Monday, February 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 910.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H483]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/910/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/910/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/910/text?format=json","bill.updateDate":"2025-01-03T04:45:56Z","updateDate":"2024-07-24T15:23:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/910/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"910","committees.url":"https://api.congress.gov/v3/bill/118/hr/910/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/910/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:56Z","title":"Biofuel Cell Research Act","bill.title":"Veterans Healthcare Improvement Act","bill.number":"910","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/910/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/910/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/910/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-02-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/910/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/910/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/910?format=json","bill.introducedDate":"2021-02-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 910.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the Constitution\nThe single subject of this legislation is:\nTo direct the Secretary of Energy to establish a research,\ndevelopment, and demonstration program for a commercially\nviable fuel cell system that uses biofuel as a man fuel\nsource.\n[Page H827]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/910/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9185","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/876/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lesko","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/876/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"876","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 22 (Friday, February 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GONZALEZ of Ohio:\nH.R. 876.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution stating\nthat Congress has the authority to ``make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by\nConstitution.''\n[Page H470]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/876/cosponsors?format=json","sponsors.0.bioguideId":"L000589","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/876/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/876/relatedbills?format=json","latestAction.actionDate":"2023-02-08","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","bill.sponsors.0.bioguideId":"G000588","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/876/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Anthony [R-OH-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/876/text?format=json","bill.updateDate":"2025-01-03T04:45:23Z","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/876/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","request.billNumber":"876","committees.url":"https://api.congress.gov/v3/bill/118/hr/876/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/876/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:23Z","title":"Border Crisis Prevention Act of 2023","bill.title":"Improving Housing Outcomes for Veterans Act of 2021","bill.number":"876","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/876/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/876/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/876/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000588?format=json","introducedDate":"2023-02-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/876/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/876/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/876?format=json","bill.introducedDate":"2021-02-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 876.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nBorder Security\n[Page H781]\n","sponsors.0.district":8,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":16,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/876/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}} +{"type":"node","id":"9186","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/855/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wittman","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/855/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"855","bill.cosponsors.countIncludingWithdrawnCosponsors":34,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 22 (Friday, February 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H469]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/855/cosponsors?format=json","sponsors.0.bioguideId":"W000804","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/855/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/855/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","bill.sponsors.0.bioguideId":"G000565","bill.actions.count":6,"bill.originChamber":"House","titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/855/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/855/text?format=json","bill.updateDate":"2025-01-03T04:45:23Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/855/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","request.billNumber":"855","committees.url":"https://api.congress.gov/v3/bill/118/hr/855/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/855/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:23Z","title":"Independent and Objective Oversight of Ukrainian Assistance Act","bill.title":"VETS Safe Travel Act","bill.number":"855","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/855/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/855/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/855/summaries?format=json","bill.cosponsors.count":34,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","introducedDate":"2023-02-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/855/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/855/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/855?format=json","bill.introducedDate":"2021-02-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: ``To regulate Commerce with\nforeign Nations, and among the several States, and with the\nIndian Tribes.''\nThe single subject of this legislation is:\nOversight\n[Page H711]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/855/text?format=json","bill.sponsors.0.lastName":"Gosar"}} +{"type":"node","id":"9187","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Law","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/642/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"642","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/642/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/642/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/642/relatedbills?format=json","latestAction.actionDate":"2023-01-31","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001304","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/642/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/642/text?format=json","bill.updateDate":"2025-01-03T04:43:51Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/642/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"642","committees.url":"https://api.congress.gov/v3/bill/118/hr/642/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/642/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:51Z","title":"Restoring Judicial Separation of Powers Act","bill.title":"Voter Information Hotline Act of 2021","bill.number":"642","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/642/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/642/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/642/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-01-31","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/642/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/642/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/642?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 642.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nReforms the Supreme Court of the United States\n[Page H577]\n","bill.introducedDate":"2021-02-01","sponsors.0.district":6,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/642/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"9188","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/845/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sánchez","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/845/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"845","bill.cosponsors.countIncludingWithdrawnCosponsors":20,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 21 (Thursday, February 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle II, Section 8.\n[Page H388]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/845/cosponsors?format=json","sponsors.0.bioguideId":"S001156","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/845/actions?format=json","latestAction.actionDate":"2023-02-06","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","bill.sponsors.0.bioguideId":"S001199","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/845/text?format=json","bill.updateDate":"2025-01-03T04:44:51Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/845/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","request.billNumber":"845","committees.url":"https://api.congress.gov/v3/bill/118/hr/845/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/845/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:51Z","title":"Put School Counselors Where They’re Needed Act","bill.title":"VA Billing Accountability Act","bill.number":"845","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/845/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/845/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/845/summaries?format=json","bill.cosponsors.count":20,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","introducedDate":"2023-02-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lloyd","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/845/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/845/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/845?format=json","bill.introducedDate":"2021-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Elementary and Secondary Education Act of 1965\nto create a demonstration project to fund additional\nsecondary school counselors in troubled title I schools to\nreduce the dropout rate.\n[Page H710]\n","sponsors.0.district":38,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Linda","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/845/text?format=json","bill.sponsors.0.lastName":"Smucker"}} +{"type":"node","id":"9189","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/636/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rosendale","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/636/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"636","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/636/cosponsors?format=json","sponsors.0.bioguideId":"R000103","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/636/actions?format=json","latestAction.actionDate":"2023-02-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/636/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","bill.sponsors.0.bioguideId":"B001278","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/636/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/636/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/636/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","request.billNumber":"636","committees.url":"https://api.congress.gov/v3/bill/118/hr/636/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/636/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Forest Litigation Reform Act of 2023","bill.title":"PARTNERS Act","bill.number":"636","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/636/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/636/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/636/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzanne","sponsors.0.state":"MT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/636/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/636/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/636?format=json","bill.introducedDate":"2021-02-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 636.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H511]\n","sponsors.0.district":2,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":1,"sponsors.0.firstName":"Matthew","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/636/text?format=json","bill.sponsors.0.lastName":"Bonamici"}} +{"type":"node","id":"9190","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/628/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gimenez","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/628/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"628","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. YOUNG:\nH.R. 628.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution (clauses 3 and 18), which grants Congress\nthe power to regulate Commerce with foreign Nations, and\namong the several states, and with the Indian Tribes; and to\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing powers.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/628/cosponsors?format=json","sponsors.0.bioguideId":"G000593","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/628/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/628/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-28]","bill.sponsors.0.bioguideId":"Y000033","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/628/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Young, Don [R-AK-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/628/text?format=json","bill.updateDate":"2025-01-03T04:43:30Z","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/628/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","request.billNumber":"628","subjects.url":"https://api.congress.gov/v3/bill/118/hr/628/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/628/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:30Z","title":"South Florida Ecosystem Enhancement Act of 2023","bill.title":"Shellfish Aquaculture Improvement Act of 2021","bill.number":"628","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/628/committees?format=json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/628/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/628/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/Y000033?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"DON","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/628/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/628/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/628?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 628.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo amend the Federal Water Pollution Control Act, to\nauthorize the South Florida Program\n[Page H511]\n","sponsors.0.district":28,"bill.sponsors.0.state":"AK","sponsors.0.firstName":"Carlos","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/628/text?format=json","bill.sponsors.0.lastName":"YOUNG"}} +{"type":"node","id":"9191","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fallon","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/627/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"627","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WRIGHT:\nH.R. 627.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/627/cosponsors?format=json","sponsors.0.bioguideId":"F000246","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/627/actions?format=json","latestAction.actionDate":"2023-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/627/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Fallon, Pat [R-TX-4]","bill.sponsors.0.bioguideId":"W000827","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/627/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wright, Ron [R-TX-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/627/text?format=json","bill.updateDate":"2025-01-03T04:43:32Z","updateDate":"2024-07-24T15:23:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/627/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000246?format=json","request.billNumber":"627","subjects.url":"https://api.congress.gov/v3/bill/118/hr/627/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/627/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:32Z","title":"VOTE Act","bill.title":"Child Custody Protection Act of 2021","bill.number":"627","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/627/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/627/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/627/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000827?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ron","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/627/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/627/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/627?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FALLON:\nH.R. 627.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nAmends the Voter Registration Act of 1993 to prohibit the\nregistration of individuals not providing proof of United\nStates Citizenship and applying criminal penalty for the\nattempt to do so.\n[Page H511]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":6,"sponsors.0.firstName":"Pat","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/627/text?format=json","bill.sponsors.0.lastName":"Wright"}} +{"type":"node","id":"9192","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/626/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DeSaulnier","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Emergency Management","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/626/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"626","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WRIGHT:\nH.R. 626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/626/cosponsors?format=json","sponsors.0.bioguideId":"D000623","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/626/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/626/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","bill.sponsors.0.bioguideId":"W000827","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/626/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wright, Ron [R-TX-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/626/text?format=json","bill.updateDate":"2025-01-03T04:43:11Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/626/subjects?format=json","committees.count":20,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","request.billNumber":"626","committees.url":"https://api.congress.gov/v3/bill/118/hr/626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/626/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:11Z","title":"Breaking the Gridlock Act","bill.title":"Teleabortion Prevention Act of 2021","bill.number":"626","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/626/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/626/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/626/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000827?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ron","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/626/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/626/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/626?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H511]\n","sponsors.0.district":10,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":6,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/626/text?format=json","bill.sponsors.0.lastName":"Wright"}} +{"type":"node","id":"9193","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/619/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-03-22","cboCostEstimates.0.pubDate":"2024-07-23T21:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/619/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 438.","bill.summaries.count":1,"sponsors.0.party":"D","number":"619","bill.cosponsors.countIncludingWithdrawnCosponsors":208,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 619.\nCongress has the power to enact this legislation pursuant\nto the following:\n(1) section 5 of the 14th Amendment, including the power\nto enforce the prohibition on government action denying equal\nprotection of the laws; and (2) section 8 of article I to\nmake all laws necessary and proper for carrying into\nexecution the powers vested by the Constitution of the United\nStates, including the power to regulate commerce under clause\n3 of such section.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/619/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/619/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/619/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"W000812","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":144,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/619/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-526","bill.sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/619/text?format=json","bill.updateDate":"2025-01-03T04:43:30Z","updateDate":"2024-11-12T19:25:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/619/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"619","subjects.url":"https://api.congress.gov/v3/bill/118/hr/619/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/619/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:30Z","title":"NAPA Reauthorization Act","bill.title":"Born-Alive Abortion Survivors Protection Act","bill.number":"619","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 24, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":144,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60575","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/619/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/526?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/619/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/619/summaries?format=json","bill.cosponsors.count":208,"cboCostEstimates.0.title":"H.R. 619, NAPA Reauthorization Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ann","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/619/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/619/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/619?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 619.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H510]\n","sponsors.0.district":20,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-11-12T19:25:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/619/text?format=json","bill.sponsors.0.lastName":"Wagner"}} +{"type":"node","id":"9194","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1854/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Congress","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1854/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1854","bill.cosponsors.countIncludingWithdrawnCosponsors":21,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 46 (Thursday, March 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 1854.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution: ``The Congress\nshall have power to make all laws which shall be necessary\nand proper for carrying into execution the foregoing powers,\nand all other powers vested by this Constitution in the\nGovernment of the United States, or in any department or\nofficer thereof.''\n[Page H1358]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1854/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1854/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1854/relatedbills?format=json","latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"R000577","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1854/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ryan, Tim [D-OH-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1854/text?format=json","bill.updateDate":"2025-01-03T04:51:57Z","updateDate":"2024-07-24T15:22:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1854/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"1854","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1854/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1854/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:57Z","title":"To provide for a limitation on availability of funds for Senate, Policy Committees for fiscal year 2024.","bill.title":"RECRUIT Act of 2021","bill.number":"1854","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1854/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1854/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1854/summaries?format=json","bill.cosponsors.count":21,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000577?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"TIM","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1854/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1854/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1854?format=json","bill.introducedDate":"2021-03-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1854.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1642]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":13,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1854/text?format=json","bill.sponsors.0.lastName":"RYAN"}} +{"type":"node","id":"9195","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1789/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on the Budget, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1789/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"1789","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 46 (Thursday, March 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AMODEI:\nH.R. 1789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 5--To coin Money, regulate the\nValue thereof, and of foreign coin, and fix the standard of\nWeights and Measures;\n[Page H1356]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1789/cosponsors?format=json","sponsors.0.bioguideId":"M001211","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1789/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1789/relatedbills?format=json","latestAction.actionDate":"2023-03-24","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Miller, Mary E. [R-IL-15]","bill.sponsors.0.bioguideId":"A000369","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on the Budget, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1789/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Amodei, Mark E. [R-NV-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1789/text?format=json","bill.updateDate":"2025-01-03T04:52:00Z","updateDate":"2024-11-09T01:57:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1789/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001211?format=json","request.billNumber":"1789","committees.url":"https://api.congress.gov/v3/bill/118/hr/1789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1789/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:52:00Z","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to increase the minimum amount of a civil penalty imposed for violating such Act, and for other purposes.","bill.title":"Coin Metal Modification Authorization and Cost Savings Act of 2021","bill.number":"1789","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1789/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1789/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1789/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000369?format=json","introducedDate":"2023-03-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1789/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1789/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1789?format=json","bill.introducedDate":"2021-03-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER of Illinois:\nH.R. 1789.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\nThe single subject of this legislation is:\nAgriculture\n[Page H1438]\n","sponsors.0.district":15,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mary","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:57:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1789/text?format=json","bill.sponsors.0.lastName":"Amodei"}} +{"type":"node","id":"9196","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1814/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"PASCRELL","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Emergency Management","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1814/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1814","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 46 (Thursday, March 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 1814.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution and Article I, Section 8, Clause I of the United\nStates Constitution.\n[Page H1357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1814/cosponsors?format=json","sponsors.0.bioguideId":"P000096","bill.subjects.count":23,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1814/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1814/relatedbills?format=json","latestAction.actionDate":"2023-03-28","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Pascrell, Bill, Jr. [D-NJ-9]","bill.sponsors.0.bioguideId":"D000216","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":25,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1814/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1814/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:10Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1814/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/P000096?format=json","request.billNumber":"1814","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1814/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1814/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"FIRE STATION Act","bill.title":"Civics Secures Democracy Act of 2021","bill.number":"1814","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1814/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1814/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1814/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","introducedDate":"2023-03-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ROSA","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1814/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1814/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1814?format=json","bill.introducedDate":"2021-03-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 55 (Monday, March 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PASCRELL:\nH.R. 1814.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFire services.\n[Page H1465]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":3,"sponsors.0.firstName":"WILLIAM","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1814/text?format=json","bill.sponsors.0.lastName":"DELAURO"}} +{"type":"node","id":"9197","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1778/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Allen","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1778/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1778","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 1778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H1327]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1778/cosponsors?format=json","sponsors.0.bioguideId":"A000372","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1778/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1778/relatedbills?format=json","latestAction.actionDate":"2023-03-24","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Allen, Rick W. [R-GA-12]","bill.sponsors.0.bioguideId":"S001192","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1778/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1778/text?format=json","bill.updateDate":"2025-01-03T04:51:23Z","updateDate":"2024-07-24T15:23:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1778/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/A000372?format=json","request.billNumber":"1778","committees.url":"https://api.congress.gov/v3/bill/118/hr/1778/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1778/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:23Z","title":"BARN Act","bill.title":"MORE DOT Grants Act","bill.number":"1778","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1778/committees?format=json","request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1778/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1778/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","introducedDate":"2023-03-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chris","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1778/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1778/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1778?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALLEN:\nH.R. 1778.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend the H2A visa program.\n[Page H1438]\n","sponsors.0.district":12,"bill.sponsors.0.state":"UT","bill.sponsors.0.district":2,"sponsors.0.firstName":"Rick","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1778/text?format=json","bill.sponsors.0.lastName":"Stewart"}} +{"type":"node","id":"9198","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1745/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DOGGETT","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Health","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1745/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1745","bill.cosponsors.countIncludingWithdrawnCosponsors":134,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HOLLINGSWORTH:\nH.R. 1745.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H1326]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1745/cosponsors?format=json","sponsors.0.bioguideId":"D000399","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1745/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1745/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-37]","bill.sponsors.0.bioguideId":"H001074","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":134,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1745/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hollingsworth, Trey [R-IN-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1745/text?format=json","bill.updateDate":"2025-01-03T04:51:23Z","updateDate":"2024-12-21T09:05:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1745/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","request.billNumber":"1745","committees.url":"https://api.congress.gov/v3/bill/118/hr/1745/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1745/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:23Z","title":"Medicare Fraud Detection and Deterrence Act of 2023","bill.title":"DRIVE-SAFE Act","bill.number":"1745","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":134,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1745/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1745/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1745/summaries?format=json","bill.cosponsors.count":134,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001074?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Trey","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1745/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1745/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1745?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 1745.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the U.S. Constitution\nThe single subject of this legislation is:\nTo prevent repeat Medicare fraud.\n[Page H1410]\n","sponsors.0.district":37,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":9,"sponsors.0.firstName":"LLOYD","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1745/text?format=json","bill.sponsors.0.lastName":"Hollingsworth"}} +{"type":"node","id":"9199","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Santos","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1736/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1736","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.R. 1736.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H1326]\n","sponsors.0.bioguideId":"S001222","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1736/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1736/relatedbills?format=json","latestAction.actionDate":"2023-03-23","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Santos, George [R-NY-3]","bill.sponsors.0.bioguideId":"D000623","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1736/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1736/text?format=json","bill.updateDate":"2025-01-03T04:51:30Z","updateDate":"2024-07-24T15:23:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1736/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001222?format=json","request.billNumber":"1736","committees.url":"https://api.congress.gov/v3/bill/118/hr/1736/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1736/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:30Z","title":"Equality and Fiscal Accountability Protection Act of 2023","bill.title":"Moving FIRST Act","bill.number":"1736","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1736/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1736/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1736/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1736/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1736/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1736?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SANTOS:\nH.R. 1736.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution, Article 1 Section 8\nThe single subject of this legislation is:\nTo prohibit the availability of funds to provide assistance\nto foreign countries that criminalize or discriminate based\non sexual orientation, and for other purposes.\n[Page H1410]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":11,"sponsors.0.firstName":"George","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1736/text?format=json","bill.sponsors.0.lastName":"DeSaulnier"}} +{"type":"node","id":"9200","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gosar","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1751/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"1751","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILDEE:\nH.R. 1751.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H1326]\n","sponsors.0.bioguideId":"G000565","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1751/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1751/relatedbills?format=json","latestAction.actionDate":"2023-03-23","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-9]","bill.sponsors.0.bioguideId":"K000380","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1751/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kildee, Daniel T. [D-MI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1751/text?format=json","bill.updateDate":"2025-01-03T04:51:31Z","updateDate":"2024-07-24T15:23:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1751/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","request.billNumber":"1751","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1751/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1751/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:31Z","title":"Downwinders Parity Act of 2023","bill.title":"Technical Assistance for Health Grants Act","bill.number":"1751","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1751/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1751/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1751/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000380?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1751/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1751/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1751?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 1751.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo provide compensation for downwinders that were excluded\ndue to error.\n[Page H1410]\n","sponsors.0.district":9,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1751/text?format=json","bill.sponsors.0.lastName":"Kildee"}} +{"type":"node","id":"9201","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1763/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"N.","number":"1763","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MURPHY of Florida:\nH.R. 1763.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1327]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1763/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1763/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1763/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-25","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"M001202","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":53,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Murphy, Stephanie N. [D-FL-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1763/text?format=json","bill.updateDate":"2025-01-03T04:51:30Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1763/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"1763","committees.url":"https://api.congress.gov/v3/bill/118/hr/1763/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1763/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:30Z","title":"Military Family Nutrition Act of 2023","bill.title":"BRIDGE for Workers Act","bill.number":"1763","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":53,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1763/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1763/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1763/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001202?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephanie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1763/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1763/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1763?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 1763.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 Clause 14\nThe single subject of this legislation is:\nThe single subject of this bill is nutrition.\n[Page H1411]\n","sponsors.0.district":19,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":7,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1763/text?format=json","bill.sponsors.0.lastName":"Murphy"}} +{"type":"node","id":"9202","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tlaib","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1773/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Kilili Camacho","number":"1773","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SABLAN:\nH.R. 1773.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution.\n[Page H1327]\n","sponsors.0.bioguideId":"T000481","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1773/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1773/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-12]","bill.sponsors.0.bioguideId":"S001177","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Sablan, Gregorio Kilili Camacho [D-MP-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1773/text?format=json","bill.updateDate":"2025-01-03T04:51:32Z","updateDate":"2025-01-30T13:41:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","request.billNumber":"1773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:32Z","title":"Consumer Protection for Medical Debt Collections Act","bill.title":"Northern Marianas Family Assistance Act","bill.number":"1773","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1773/committees?format=json","request.format":"json","sponsors.0.middleName":"Kilili Camacho","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1773/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001177?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gregorio","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1773/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1773/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1773?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TLAIB:\nH.R. 1773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nConsumer medical debt\n[Page H1411]\n","sponsors.0.district":12,"bill.sponsors.0.state":"MP","sponsors.0.firstName":"Rashida","bill.type":"HR","updateDateIncludingText":"2025-01-30T13:41:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1773/text?format=json","bill.sponsors.0.lastName":"Sablan"}} +{"type":"node","id":"9203","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1750/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Franklin","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1750/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1750","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Pennsylvania:\nH.R. 1750.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H1326]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1750/cosponsors?format=json","sponsors.0.bioguideId":"F000472","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1750/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1750/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Franklin, C. Scott [R-FL-18]","bill.sponsors.0.bioguideId":"K000376","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1750/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kelly, Mike [R-PA-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1750/text?format=json","bill.updateDate":"2025-01-03T04:51:24Z","updateDate":"2024-06-11T15:41:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1750/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000472?format=json","request.billNumber":"1750","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1750/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1750/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:24Z","title":"Defending Domestic Orange Juice Production Act of 2023","bill.title":"Child Welfare Provider Inclusion Act of 2021","bill.number":"1750","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1750/committees?format=json","request.format":"json","sponsors.0.middleName":"Scott","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1750/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1750/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000376?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1750/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1750/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1750?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. C. SCOTT FRANKLIN of Florida:\nH.R. 1750.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress is granted the authority to introduce and enact\nthis legislation pursuant to Article 1, Section 8 of the U.S.\nConstitution.\nThe single subject of this legislation is:\nTo modify the minimum required weight of orange juice\nsoluble solids.\n[Page H1410]\n","sponsors.0.district":18,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":16,"sponsors.0.firstName":"C.","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:41:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1750/text?format=json","bill.sponsors.0.lastName":"Kelly"}} +{"type":"node","id":"9204","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1749/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fitzgerald","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1749/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Small Business, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1749","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLER:\nH.R. 1749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1326]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1749/cosponsors?format=json","sponsors.0.bioguideId":"F000471","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1749/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1749/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","bill.sponsors.0.bioguideId":"K000395","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keller, Fred [R-PA-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1749/text?format=json","bill.updateDate":"2025-01-03T04:51:24Z","updateDate":"2024-11-09T04:56:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1749/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","request.billNumber":"1749","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1749/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1749/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:24Z","title":"Making the CFPB Accountable to Small Businesses Act of 2023","bill.title":"RURAL HELP Act of 2021","bill.number":"1749","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1749/committees?format=json","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1749/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1749/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000395?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Fred","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1749/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1749/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1749?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 1749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nThis bill would require the CFPB to presume that size and\nsophistication-based tailoring of regulations are needed in\nSBREFA panel revIews. If tailoring is not undertaken by the\npanel, they must issue a justification.\n[Page H1410]\n","sponsors.0.district":5,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":12,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1749/text?format=json","bill.sponsors.0.lastName":"Keller"}} +{"type":"node","id":"9205","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1761/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1761/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"B.","number":"1761","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McKINLEY:\nH.R. 1761.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8--Powers of Congress. To make all Laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H1327]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1761/cosponsors?format=json","sponsors.0.bioguideId":"N000026","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1761/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1761/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"M001180","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":73,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McKinley, David B. [R-WV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1761/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:23:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1761/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"1761","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1761/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1761/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"Let Experienced Pilots Fly Act of 2023","bill.title":"CCUS Innovation Act","bill.number":"1761","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":76,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1761/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1761/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1761/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001180?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"David","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1761/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1761/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1761?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 1761.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 49, United States Code, to raise the\nretirement age for pilots engaged in commercial aviation\noperations, and for other purposes.\n[Page H1411]\n","sponsors.0.district":22,"bill.sponsors.0.state":"WV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1761/text?format=json","bill.sponsors.0.lastName":"McKinley"}} +{"type":"node","id":"9206","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1746/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DOGGETT","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1746/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1746","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 1746.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution.\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes;\n[Page H1326]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1746/cosponsors?format=json","sponsors.0.bioguideId":"D000399","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1746/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-37]","bill.sponsors.0.bioguideId":"H001067","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1746/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-12-21T09:05:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1746/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","request.billNumber":"1746","committees.url":"https://api.congress.gov/v3/bill/118/hr/1746/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1746/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"Preventing Medicare Telefraud Act","bill.title":"Advanced Nuclear Deployment Act","bill.number":"1746","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1746/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1746/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1746/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Richard","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1746/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1746/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1746?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 1746\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the U.S. Constitution\nThe single subject of this legislation is:\nTo telehealth-related Medicare fraud.\n[Page H1410]\n","sponsors.0.district":37,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":8,"sponsors.0.firstName":"LLOYD","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1746/text?format=json","bill.sponsors.0.lastName":"Hudson"}} +{"type":"node","id":"9207","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1717/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Commerce","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1717/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1717","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. UPTON:\nH.R. 1717.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution.\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1717/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1717/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1717/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"U000031","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1717/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Upton, Fred [R-MI-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1717/text?format=json","bill.updateDate":"2025-01-03T04:51:01Z","updateDate":"2024-07-24T15:23:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1717/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"1717","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1717/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1717/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:01Z","title":"Interagency Patent Coordination and Improvement Act of 2023","bill.title":"Protecting Married Seniors from Impoverishment Act of 2021","bill.number":"1717","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1717/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1717/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1717/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000031?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"FRED","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1717/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1717/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1717?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 1717.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nEstablish an interagency task force between the U.S. Patent\nand Trademark Office and the Food and Drug Administration for\npurposes of sharing information with respect to patents.\n[Page H1329]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":6,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1717/text?format=json","bill.sponsors.0.lastName":"UPTON"}} +{"type":"node","id":"9208","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1730/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Williams","bill.latestAction.actionDate":"2021-03-10","cboCostEstimates.0.pubDate":"2023-05-30T19:17:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Commerce","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1730/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 78.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"1730","bill.cosponsors.countIncludingWithdrawnCosponsors":40,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 1730.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article 1, Section 8,\nClause 18 of the Constitution of the United States.\n[Page H1326]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1730/cosponsors?format=json","sponsors.0.bioguideId":"W000816","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1730/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1730/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Williams, Roger [R-TX-25]","bill.sponsors.0.bioguideId":"B001257","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1730/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-101","bill.sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1730/text?format=json","bill.updateDate":"2025-01-03T04:51:25Z","updateDate":"2024-11-09T04:42:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1730/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/W000816?format=json","request.billNumber":"1730","committees.url":"https://api.congress.gov/v3/bill/118/hr/1730/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1730/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:25Z","title":"Supporting Small Business and Career and Technical Education Act of 2023","bill.title":"Speeding Therapy Access Today Act of 2021","bill.number":"1730","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on\nMay 23, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59219","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1730/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-10","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/101?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1730/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1730/summaries?format=json","bill.cosponsors.count":40,"cboCostEstimates.0.title":"H.R. 1730, Supporting Small Business and Career and Technical Education Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gus","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1730/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1730/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1730?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILLIAMS of Texas:\nH.R. 1730.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nDirects Small Business Development Centers and Women\nBusiness Centers to assist small businesses in hiring\ngraduates of career and technical education programs.\n[Page H1329]\n","sponsors.0.district":25,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Roger","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:42:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1730/text?format=json","bill.sponsors.0.lastName":"Bilirakis"}} +{"type":"node","id":"9209","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1722/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Salinas","bill.latestAction.actionDate":"2021-03-10","cboCostEstimates.0.pubDate":"2023-09-22T19:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1722/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-32.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"1722","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 1722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\n[Page H1191]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1722/cosponsors?format=json","sponsors.0.bioguideId":"S001226","laws.0.number":"118-32","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1722/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1722/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2023-12-26","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","bill.sponsors.0.bioguideId":"V000081","bill.originChamber":"House","bill.actions.count":4,"titles.count":8,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-265","bill.sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1722/text?format=json","bill.updateDate":"2025-01-03T04:50:51Z","updateDate":"2024-11-09T04:52:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1722/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","request.billNumber":"1722","committees.url":"https://api.congress.gov/v3/bill/118/hr/1722/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1722/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:51Z","title":"Grand Ronde Reservation Act Amendment of 2023","bill.title":"Puerto Rico Health Care Fairness, Accountability, and Beneficiary Access Act of 2021","bill.number":"1722","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on July 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59594","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1722/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-10","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/265?format=json","summaries.count":5,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1722/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1722/summaries?format=json","bill.cosponsors.count":7,"cboCostEstimates.0.title":"H.R. 1722, Grand Ronde Reservation Act Amendment of 2023","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"NYDIA","sponsors.0.state":"OR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1722/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1722/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1722?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 1722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTribal Issues\n[Page H1329]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":7,"sponsors.0.firstName":"Andrea","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:52:00Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1722/text?format=json","bill.sponsors.0.lastName":"VELAZQUEZ"}} +{"type":"node","id":"9210","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1716/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Molinaro","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1716/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1716","bill.cosponsors.countIncludingWithdrawnCosponsors":33,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 1716.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1716/cosponsors?format=json","sponsors.0.bioguideId":"M001221","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1716/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1716/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":57,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1716/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1716/text?format=json","bill.updateDate":"2025-01-03T04:50:58Z","updateDate":"2024-12-19T09:05:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1716/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","request.billNumber":"1716","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1716/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1716/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:58Z","title":"Global Aircraft Maintenance Safety Improvement Act","bill.title":"COVID–19 Mental Health Research Act","bill.number":"1716","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":57,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1716/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1716/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1716/summaries?format=json","bill.cosponsors.count":33,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1716/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1716/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1716?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 1716.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe Constitution\nThe single subject of this legislation is:\nTransportation\n[Page H1329]\n","sponsors.0.district":19,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Marcus","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1716/text?format=json","bill.sponsors.0.lastName":"Tonko"}} +{"type":"node","id":"9211","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1714/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mast","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"International Affairs","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1714/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Davis","number":"1714","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 1714.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1714/cosponsors?format=json","sponsors.0.bioguideId":"M001199","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1714/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1714/relatedbills?format=json","latestAction.actionDate":"2023-03-22","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-21]","bill.sponsors.0.bioguideId":"S001209","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1714/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1714/text?format=json","bill.updateDate":"2025-01-03T04:50:52Z","updateDate":"2024-07-24T15:23:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1714/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","request.billNumber":"1714","committees.url":"https://api.congress.gov/v3/bill/118/hr/1714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1714/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:52Z","title":"China Social Media Reciprocity Act","bill.title":"Speedy Updates Act of 2021","bill.number":"1714","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1714/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1714/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1714/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Abigail","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1714/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1714/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1714?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\n[Pages H1328-H1329]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 1714.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H1329]]\nArticle I, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nProhibits CCP/PRC government officials from using American\nsocial media companies unless PRC reciprocates and removes\nrestrictions on U.S. government officials/citizens on Chinese\nsocial media\n","sponsors.0.district":21,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":7,"sponsors.0.firstName":"Brian","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1714/text?format=json","bill.sponsors.0.lastName":"Spanberger"}} +{"type":"node","id":"9212","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1705/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grijalva","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1705/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1705","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 1705.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1705/cosponsors?format=json","sponsors.0.bioguideId":"G000551","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1705/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1705/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-7]","bill.sponsors.0.bioguideId":"P000605","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":105,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1705/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1705/subjects?format=json","committees.count":6,"request.congress":"118","actions.count":13,"sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","request.billNumber":"1705","committees.url":"https://api.congress.gov/v3/bill/118/hr/1705/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1705/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"A. Donald McEachin Environmental Justice For All Act","bill.title":"Energy Sovereignty Act","bill.number":"1705","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":105,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1705/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1705/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1705/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1705/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1705/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1705?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 1705.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, sec. 3\nArticle I, sec. 8\nEqual Protection Clause, 14th Amendment\nThe single subject of this legislation is:\nTo establish several environmental justice requirements,\nadvisory bodies, and programs to address the disproportionate\nadverse human health or environmental effects of federal laws\nor programs on communities of color, low-income communities,\nor tribal and indigenous communities.\n[Page H1328]\n","sponsors.0.district":7,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Raúl","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1705/text?format=json","bill.sponsors.0.lastName":"Perry"}} +{"type":"node","id":"9213","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1700/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fulcher","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1700/summaries?format=json","bill.relatedBills.count":4,"type":"HR","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1700","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McNERNEY:\nH.R. 1700.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates grants Congress the authority to enact this bill.\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1700/cosponsors?format=json","sponsors.0.bioguideId":"F000469","bill.subjects.count":25,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1700/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1700/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Fulcher, Russ [R-ID-1]","bill.sponsors.0.bioguideId":"M001166","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1700/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McNerney, Jerry [D-CA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1700/text?format=json","bill.updateDate":"2025-01-03T04:51:01Z","updateDate":"2024-06-11T15:45:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1700/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000469?format=json","request.billNumber":"1700","committees.url":"https://api.congress.gov/v3/bill/118/hr/1700/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1700/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:01Z","title":"ATF Transparency Act","bill.title":"Broadband Infrastructure Finance and Innovation Act of 2021","bill.number":"1700","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1700/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1700/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1700/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001166?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jerry","sponsors.0.state":"ID","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1700/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1700/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1700?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FULCHER:\nH.R. 1700.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, providing Congress to ``make all Laws\nwhich shall be necessary and proper for carrying into\nExecution'' the power eneumerated in Article 1 and ``all\nother Powers vested by [the] Constitution in the Government\nof the United States, or in any Department or Office\nthereof.''\nThe single subject of this legislation is:\nProvides for relief process of denied applications for\ntransfer or registration of a firearm that are denied or\ndelayed.\n[Page H1328]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Russ","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:45:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1700/text?format=json","bill.sponsors.0.lastName":"McNerney"}} +{"type":"node","id":"9214","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"LaMalfa","cboCostEstimates.0.pubDate":"2023-06-29T19:10:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1586/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"1586","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"sponsors.0.bioguideId":"L000578","bill.subjects.count":8,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1586/relatedbills?format=json","latestAction.actionDate":"2024-12-16","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. LaMalfa, Doug [R-CA-1]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-721,Part 1","cboCostEstimates.1.url":"https://www.cbo.gov/publication/61019","updateDate":"2025-03-13T22:41:14Z","committees.count":3,"cboCostEstimates.1.pubDate":"2024-11-21T22:39:00Z","request.billNumber":"1586","committees.url":"https://api.congress.gov/v3/bill/118/hr/1586/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","cboCostEstimates.1.description":"As ordered reported by the House Committee on Transportation and Infrastructure on November 15, 2023\n","bill.number":"1586","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on May 17, 2023\n","latestAction_actionDate":"2021-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1586/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1586/summaries?format=json","cboCostEstimates.0.title":"H.R. 1586, Forest Protection and Wildland Firefighter Safety Act of 2023","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/721?format=json","introducedDate":"2023-03-14","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1586/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1586?format=json","cboCostEstimates.1.title":"H.R. 1586, Forest Protection and Wildland Firefighter Safety Act of 2023","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 47 (Tuesday, March 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaMALFA:\nH.R. 1586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the US Constitution\nThe single subject of this legislation is:\nAllows the Secretaries of the Interior and Agriculture, and\nother public entities, to use a fire retardant, chemical, or\nwater for fire suppression, control, or prevention activities\n[Page H1287]\n","bill.sponsors.0.district":10,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1586/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-03-03","latestAction_text":"Referred to the House Committee on Education and Labor.","latestAction.text":"Placed on the Union Calendar, Calendar No. 723.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 1586.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\n[Page H1081]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1586/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1586/actions?format=json","textVersions.count":2,"bill.sponsors.0.bioguideId":"P000605","bill.actions.count":3,"titles.count":4,"cosponsors.count":38,"bill.sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1586/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1586/subjects?format=json","request.congress":"118","actions.count":22,"committeeReports.1.citation":"H. Rept. 118-721,Part 2","sponsors.0.url":"https://api.congress.gov/v3/member/L000578?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1586/subjects?format=json","title":"Forest Protection and Wildland Firefighter Safety Act of 2023","bill.title":"Student Loan Reform Act","cosponsors.countIncludingWithdrawnCosponsors":38,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59339","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1586/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/721?format=json","request.billType":"hr","bill.cosponsors.count":2,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1586/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-03","sponsors.0.district":1,"bill.sponsors.0.state":"PA","sponsors.0.firstName":"Doug","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1586/text?format=json","bill.sponsors.0.lastName":"Perry"}} +{"type":"node","id":"9215","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1552/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaTurner","bill.latestAction.actionDate":"2021-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Native Americans","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1552/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"N.","number":"1552","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CICILLINE:\nH.R. 1552.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 9 of the Constitution of the United\nStates.\n[Page H1080]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1552/cosponsors?format=json","sponsors.0.bioguideId":"L000266","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1552/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1552/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-10","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. LaTurner, Jake [R-KS-2]","bill.sponsors.0.bioguideId":"C001084","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1552/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cicilline, David N. [D-RI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1552/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1552/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000266?format=json","request.billNumber":"1552","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1552/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1552/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Kansas Indian Country Law Enforcement Improvement Act of 2023","bill.title":"To designate the facility of the United States Postal Service located at 42 Main Street in Slatersville, Rhode Island, as the \"Specialist Matthew R. Turcotte Post Office\".","bill.number":"1552","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1552/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1552/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1552/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001084?format=json","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"KS","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1552/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1552/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1552?format=json","bill.introducedDate":"2021-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\n[Pages H1280-H1281]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaTURNER:\nH.R. 1552.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\n[[Page H1281]]\nTo require consent from Indian Tribes before conferring\njurisdiction on the State of Kansas over certain offenses\ncommitted on the reservations of such Indian Tribes.\n","sponsors.0.district":2,"bill.sponsors.0.state":"RI","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jake","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:24Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1552/text?format=json","bill.sponsors.0.lastName":"Cicilline"}} +{"type":"node","id":"9216","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1557/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1557","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRIST:\nH.R. 1557.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1080]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1557/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1557/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1557/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"C001111","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crist, Charlie [D-FL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1557/text?format=json","bill.updateDate":"2025-01-03T04:50:09Z","updateDate":"2024-07-24T15:23:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1557/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"1557","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1557/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1557/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:09Z","title":"BID Act of 2023","bill.title":"Sunshine Forever Act","bill.number":"1557","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1557/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1557/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1557/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001111?format=json","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Charlie","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1557/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1557/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1557?format=json","bill.introducedDate":"2021-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 1557.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nReviewing medical device interoperability standards.\n[Page H1281]\n","sponsors.0.district":1,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1557/text?format=json","bill.sponsors.0.lastName":"Crist"}} +{"type":"node","id":"9217","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1601/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1601/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1601","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WALORSKI:\nH.R. 1601.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of article I of the Constitution, to\n``provide for the common defense and general welfare of the\nUnited States.''\n[Page H1082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1601/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1601/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"W000813","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Walorski, Jackie [R-IN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1601/text?format=json","bill.updateDate":"2025-01-03T04:50:09Z","updateDate":"2024-07-24T15:23:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1601/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"1601","committees.url":"https://api.congress.gov/v3/bill/118/hr/1601/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1601/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:09Z","title":"Ban Members from Becoming Lobbyists Act","bill.title":"Pandemic Relief for Working Seniors Act of 2021","bill.number":"1601","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1601/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1601/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1601/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000813?format=json","introducedDate":"2023-03-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1601/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1601/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1601?format=json","bill.introducedDate":"2021-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 47 (Tuesday, March 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 1601.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution To\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase the length of the post-employment ban on\nlobbying of Members, officers, or employees of Congress by\nformer Members of Congress.\n[Page H1288]\n","sponsors.0.district":3,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1601/text?format=json","bill.sponsors.0.lastName":"Walorski"}} +{"type":"node","id":"9218","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1474/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rogers","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1474/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1474","bill.cosponsors.countIncludingWithdrawnCosponsors":179,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 1474.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution.\n[Page H883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1474/cosponsors?format=json","sponsors.0.bioguideId":"R000575","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1474/actions?format=json","latestAction.actionDate":"2023-03-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1474/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Rogers, Mike D. [R-AL-3]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":179,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1474/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1474/text?format=json","bill.updateDate":"2025-01-03T04:49:14Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1474/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/R000575?format=json","request.billNumber":"1474","committees.url":"https://api.congress.gov/v3/bill/118/hr/1474/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1474/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:14Z","title":"To allow States to elect to observe year-round daylight saving time, and for other purposes.","bill.title":"Alzheimer's Caregiver Support Act","bill.number":"1474","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":179,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1474/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1474/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1474/summaries?format=json","bill.cosponsors.count":179,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"AL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1474/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1474/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1474?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROGERS of Alabama:\nH.R. 1474.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nDaylight Savings Time\n[Page H1208]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1474/text?format=json","bill.sponsors.0.lastName":"WATERS"}} +{"type":"node","id":"9219","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1473/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Peters","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1473/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Gregory","number":"1473","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 1473.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian Tribes;\nTo establish an uniform Rule of Naturalization, and uniform\nLaws on the subject of Bankruptcies throughout the United\nStates;\nTo coin Money, regulate the Value thereof, and of foreign\nCoin, and fix the Standard of\nWeights and Measures;\nTo provide for the Punishment of counterfeiting the\nSecurities and current Coin of the United States;\nTo establish Post Offices and Post Roads;\nTo promote the Progress of Science and useful Arts, by\nsecuring for limited Times to Authors and Inventors the\nexclusive Right to their respective Writings and Discoveries;\nTo constitute Tribunals inferior to the supreme Court;\nTo define and punish Piracies and Felonies committed on the\nhigh Seas, and Offenses against the Law of Nations;\nTo declare War, grant Letters of Marque and Reprisal, and\nmake Rules concerning Captures on Land and Water;\nTo raise and support Armies, but no Appropriation of Money\nto that Use shall be for a longer Term than two Years;\nTo provide and maintain a Navy;\n[Page H883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1473/cosponsors?format=json","sponsors.0.bioguideId":"P000608","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1473/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Peters, Scott H. [D-CA-50]","bill.sponsors.0.bioguideId":"S001214","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1473/text?format=json","bill.updateDate":"2025-01-03T04:49:19Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1473/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/P000608?format=json","request.billNumber":"1473","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1473/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1473/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:19Z","title":"Targeting and Offsetting Existing Illegal Contaminants Act","bill.title":"Vaccine Transparency Act of 2021","bill.number":"1473","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1473/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1473/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1473/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"W.","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1473/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1473/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1473?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PETERS:\nH.R. 1473.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nPublic lands\n[Page H1208]\n","sponsors.0.district":50,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":17,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1473/text?format=json","bill.sponsors.0.lastName":"Steube"}} +{"type":"node","id":"9220","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kim","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1463/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Agriculture, Oversight and Accountability, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"F.","number":"1463","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 1463.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n[Page H883]\n","sponsors.0.bioguideId":"K000394","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1463/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1463/relatedbills?format=json","latestAction.actionDate":"2023-03-08","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","bill.sponsors.0.bioguideId":"L000562","bill.actions.count":8,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1463/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1463/text?format=json","bill.updateDate":"2025-01-03T04:49:20Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1463/subjects?format=json","committees.count":6,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","request.billNumber":"1463","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1463/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:20Z","title":"Restoring Trust in Public Servants Act","bill.title":"Ensuring Health Safety in the Skies Act of 2021","bill.number":"1463","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1463/committees?format=json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1463/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1463/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Stephen","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1463/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1463/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1463?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 1463.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nStock Trading\n[Page H1208]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1463/text?format=json","bill.sponsors.0.lastName":"Lynch"}} +{"type":"node","id":"9221","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1452/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Garamendi","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1452/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1452","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 1452.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nArticle I, Section 8, Clause 18\n[Page H883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1452/cosponsors?format=json","sponsors.0.bioguideId":"G000559","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1452/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1452/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Garamendi, John [D-CA-8]","bill.sponsors.0.bioguideId":"C001120","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1452/text?format=json","bill.updateDate":"2025-01-03T04:49:14Z","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1452/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","request.billNumber":"1452","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1452/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1452/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:14Z","title":"To amend the Frank LoBiondo Coast Guard Authorization Act of 2018 to direct the Commandant of the Coast Guard to provide certain data related to water quality, and for other purposes.","bill.title":"To direct the Secretary of Health and Human Services to publish the formula the Secretary uses to determine the allocation of COVID-19 vaccines, and for other purposes.","bill.number":"1452","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1452/committees?format=json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1452/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1452/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1452/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1452/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1452?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 1452.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1, Section 8, Article I of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Frank LoBiondo Coast Guard Authorization Act\nof 2018 to direct the Commandant of the Coast Guard to\nprovide certain data related to water quality, and for other\npurposes.\n[Page H1207]\n","sponsors.0.district":8,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":2,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1452/text?format=json","bill.sponsors.0.lastName":"Crenshaw"}} +{"type":"node","id":"9222","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crow","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/142/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"142","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 2 (Monday, January 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 142.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1 and 18 of the\nUnited States Constitution.\n[Page H54]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/142/cosponsors?format=json","sponsors.0.bioguideId":"C001121","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/142/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","bill.sponsors.0.bioguideId":"J000032","bill.actions.count":8,"bill.originChamber":"House","titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/142/text?format=json","bill.updateDate":"2025-01-03T03:44:21Z","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/142/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","request.billNumber":"142","subjects.url":"https://api.congress.gov/v3/bill/118/hr/142/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/142/committees?format=json","bill.updateDateIncludingText":"2025-01-03T03:44:21Z","title":"End Dark Money Act","bill.title":"Infant Protection and Baby Switching Prevention Act of 2021","bill.number":"142","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/142/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/142/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/142/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","introducedDate":"2023-01-09","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":3,"bill.sponsors.0.firstName":"SHEILA","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/142/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/142/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/142?format=json","bill.introducedDate":"2021-01-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 142.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\n[Page H110]\n","sponsors.0.district":6,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":18,"sponsors.0.firstName":"Jason","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/142/text?format=json","bill.sponsors.0.lastName":"JACKSON LEE"}} +{"type":"node","id":"9223","labels":["Bill"],"properties":{"relatedBills.count":19,"congress":118,"bill.cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of Rules Committee Print 117-2 for H.R. 803, The Protecting America’s Wilderness and Public Lands Act, with the Manager’s Amendment","sponsors.0.lastName":"LUCAS","cboCostEstimates.0.pubDate":"2023-03-07T17:03:00Z","sponsors.0.isByRequest":"N","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/803/summaries?format=json","bill.relatedBills.count":19,"type":"HR","bill.summaries.count":2,"bill.amendments.count":4,"number":"803","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"amendments.count":4,"sponsors.0.bioguideId":"L000491","bill.subjects.count":68,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/803/relatedbills?format=json","latestAction.actionDate":"2024-01-16","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-02-23T16:13:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/803/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-286","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57013","updateDate":"2025-01-17T03:06:27Z","committees.count":3,"cboCostEstimates.1.pubDate":"2021-02-23T16:13:00Z","request.billNumber":"803","committees.url":"https://api.congress.gov/v3/bill/118/hr/803/committees?format=json","bill.updateDateIncludingText":"2025-01-14T17:11:28Z","cboCostEstimates.1.description":"As Posted on the Website of the House Committee on Rules on\nFebruary 19, 2021\n","bill.number":"803","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-03-02","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/803/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/803/summaries?format=json","cboCostEstimates.0.title":"H.R. 803, Pressure Regulatory Organizations to End Chinese Threats to Taiwan Act","bill.titles.count":38,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000197?format=json","bill.cboCostEstimates.1.url":"https://www.cbo.gov/publication/57013","introducedDate":"2023-02-02","subjects.count":8,"bill.committees.count":3,"bill.sponsors.0.firstName":"DIANA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/803/actions?format=json","bill.cboCostEstimates.1.title":"Statutory Pay-As-You-Go Effects of Rules Committee Print 117-2 for H.R. 803, The Protecting America’s Wilderness and Public Lands Act, with the Manager’s Amendment","url":"https://api.congress.gov/v3/bill/117/hr/803?format=json","cboCostEstimates.1.title":"Statutory Pay-As-You-Go Effects of Rules Committee Print 117-2 for H.R. 803, The Protecting America’s Wilderness and Public Lands Act, with the Manager’s Amendment","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 803.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTaiwan relations\n[Page H682]\n","bill.sponsors.0.district":1,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/803/cosponsors?format=json","bill.textVersions.count":3,"bill.latestAction.actionDate":"2021-03-02","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 21 (Thursday, February 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeGETTE:\nH.R. 803.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H387]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/803/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/803/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/803/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"D000197","bill.cboCostEstimates.1.description":"As Posted on the Website of the House Committee on Rules on\nFebruary 19, 2021\n","amendments.url":"https://api.congress.gov/v3/bill/117/hr/803/amendments?format=json","bill.cboCostEstimates.0.description":"As Posted on the Website of the House Committee on Rules on\nFebruary 19, 2021\n","bill.actions.count":30,"titles.count":9,"cosponsors.count":3,"bill.sponsors.0.fullName":"Rep. DeGette, Diana [D-CO-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/803/text?format=json","bill.updateDate":"2025-01-14T17:11:28Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/803/subjects?format=json","request.congress":"118","actions.count":20,"sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/803/subjects?format=json","title":"PROTECT Taiwan Act","bill.title":"Protecting America’s Wilderness and Public Lands Act","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58973","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/803/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/286?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/803/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-04","sponsors.0.district":3,"bill.sponsors.0.state":"CO","sponsors.0.firstName":"FRANK","updateDateIncludingText":"2025-01-17T03:06:27Z","bill.cboCostEstimates.1.pubDate":"2021-02-23T16:13:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/803/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57013","bill.sponsors.0.lastName":"DEGETTE"}} +{"type":"node","id":"9224","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1472/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1472/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1472","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 1472.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1472/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1472/actions?format=json","latestAction.actionDate":"2023-04-04","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1472/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"S001135","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-48]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1472/text?format=json","bill.updateDate":"2025-01-03T04:49:17Z","updateDate":"2024-06-11T15:11:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1472/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"1472","committees.url":"https://api.congress.gov/v3/bill/118/hr/1472/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1472/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:17Z","title":"Plant Biostimulant Act","bill.title":"Stop the High-Speed Money Pit Act","bill.number":"1472","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1472/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1472/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1472/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michelle","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1472/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1472/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1472?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 1472.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18\nThe single subject of this bill is:\nagriculture.\n[Page H1208]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":48,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:11:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1472/text?format=json","bill.sponsors.0.lastName":"Steel"}} +{"type":"node","id":"9225","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Joyce","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1462/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F.","number":"1462","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 1462.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n[Page H883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1462/cosponsors?format=json","sponsors.0.bioguideId":"J000302","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1462/actions?format=json","latestAction.actionDate":"2023-03-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1462/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","bill.sponsors.0.bioguideId":"L000562","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":48,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1462/text?format=json","bill.updateDate":"2025-01-03T04:49:20Z","updateDate":"2024-10-05T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1462/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","request.billNumber":"1462","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1462/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:20Z","title":"DAIRY PRIDE Act","bill.title":"Civil Aviation Security and Safety Act of 2021","bill.number":"1462","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":48,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1462/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1462/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1462/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephen","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1462/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1462/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1462?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1462.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: The Congress shall have\nPower To . . . make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nTo require enforcement against misbranded milk\nalternatives.\n[Page H1208]\n","sponsors.0.district":13,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":8,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1462/text?format=json","bill.sponsors.0.lastName":"Lynch"}} +{"type":"node","id":"9226","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1479/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ciscomani","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1479/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"R","number":"1479","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BARR:\nH.R. 1479.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\nArticle II, Section 2, Clause 2 of the U.S. Constitution\n[Page H1014]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1479/cosponsors?format=json","sponsors.0.bioguideId":"C001133","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1479/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1479/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Ciscomani, Juan [R-AZ-6]","bill.sponsors.0.bioguideId":"B001282","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1479/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Barr, Andy [R-KY-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1479/text?format=json","bill.updateDate":"2025-01-03T04:49:43Z","updateDate":"2024-09-23T15:11:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1479/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001133?format=json","request.billNumber":"1479","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1479/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1479/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:43Z","title":"Chiricahua National Park Act","bill.title":"Iran Nuclear Deal Advice and Consent Act of 2021","bill.number":"1479","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1479/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1479/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1479/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001282?format=json","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1479/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1479/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1479?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CISCOMANI:\nH.R. 1479.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have the Power to make all Laws which\nshall be necessary and proper for carryin into Execution the\nforegoing Powers, and all Powers vested by this Constitution\nin the Government of the United States, or in any Department\nof Officer thereof\nThe single subject of this legislation is:\nChiriccahua National Monument\n[Page H1249]\n","sponsors.0.district":6,"bill.sponsors.0.state":"KY","bill.sponsors.0.district":6,"sponsors.0.firstName":"Juan","bill.type":"HR","updateDateIncludingText":"2024-09-23T15:11:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1479/text?format=json","bill.sponsors.0.lastName":"Barr"}} +{"type":"node","id":"9227","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luttrell","bill.latestAction.actionDate":"2021-03-02","cboCostEstimates.0.pubDate":"2023-05-16T16:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1529/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1529","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 2, Clause 18. Congress has the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof,\nincluding the regulation of health care for citizens for the\nUnited States\n[Page H1016]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1529/cosponsors?format=json","sponsors.0.bioguideId":"L000603","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1529/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1529/relatedbills?format=json","latestAction.actionDate":"2023-04-28","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.sponsors.0.bioguideId":"W000821","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1529/text?format=json","bill.updateDate":"2025-01-03T04:49:34Z","updateDate":"2024-12-18T09:05:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":9,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","request.billNumber":"1529","committees.url":"https://api.congress.gov/v3/bill/118/hr/1529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1529/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:34Z","title":"Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.title":"VOTER ID Act","bill.number":"1529","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on April 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59150","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1529/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1529/summaries?format=json","bill.cosponsors.count":10,"cboCostEstimates.0.title":"H.R. 1529, Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bruce","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1529?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''.\nThe single subject of this legislation is:\nVeteran Affairs\n[Page H1279]\n","sponsors.0.district":8,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1529/text?format=json","bill.sponsors.0.lastName":"Westerman"}} +{"type":"node","id":"9228","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-11-17T16:52:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1516/summaries?format=json","bill.relatedBills.count":8,"type":"HR","bill.summaries.count":1,"number":"1516","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"amendments.count":6,"sponsors.0.bioguideId":"P000048","bill.subjects.count":3,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1516/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1516/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-319","updateDate":"2025-03-03T20:01:49Z","committees.count":2,"request.billNumber":"1516","committees.url":"https://api.congress.gov/v3/bill/118/hr/1516/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:43Z","bill.number":"1516","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","latestAction_actionDate":"2021-03-02","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1516/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1516/summaries?format=json","cboCostEstimates.0.title":"H.R. 1516, DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","introducedDate":"2023-03-09","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Katie","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1516/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1516?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProhibits DHS funds from being awarded to universities that\nhave ties to the Chinese Communist Party.\n[Page H1251]\n","bill.sponsors.0.district":45,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1516/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-03-02","latestAction_text":"Referred to the House Committee on House Administration.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1015]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1516/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1516/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"P000618","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1516/amendments?format=json","bill.actions.count":3,"titles.count":5,"cosponsors.count":18,"bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1516/text?format=json","bill.updateDate":"2025-01-03T04:49:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1516/subjects?format=json","request.congress":"118","actions.count":42,"committeeReports.1.citation":"H. Rept. 118-319,Part 2","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1516/subjects?format=json","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.title":"Stop Foreign Interference in Ballot Measures Act","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59754","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1516/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","request.billType":"hr","bill.cosponsors.count":26,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1516/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-02","sponsors.0.district":11,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"August","updateDateIncludingText":"2025-03-03T20:01:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1516/text?format=json","bill.sponsors.0.lastName":"Porter"}} +{"type":"node","id":"9229","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1521/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Stefanik","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1521/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1521","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SHERRILL:\nH.R. 1521.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1 of the Constitution of\nthe United States of America\n[Page H1015]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1521/cosponsors?format=json","sponsors.0.bioguideId":"S001196","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1521/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1521/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","bill.sponsors.0.bioguideId":"S001207","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1521/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sherrill, Mikie [D-NJ-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1521/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1521/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","request.billNumber":"1521","committees.url":"https://api.congress.gov/v3/bill/118/hr/1521/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1521/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Servicemember Credit Monitoring Enhancement Act","bill.title":"FINISH Act","bill.number":"1521","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1521/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1521/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1521/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001207?format=json","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mikie","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1521/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1521/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1521?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 1521.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nTo amend the Fair Credit Reporting Act to expand the\ndefinition of an active duty military consumer for purposes\nof certain credit monitoring requirements, and for other\npurposes.\n[Page H1251]\n","sponsors.0.district":21,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":11,"sponsors.0.firstName":"Elise","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1521/text?format=json","bill.sponsors.0.lastName":"Sherrill"}} +{"type":"node","id":"9230","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":5,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1515/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1515","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 1515.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1015]\n","sponsors.0.bioguideId":"N000026","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1515/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1515/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"P000618","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1515/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1515/text?format=json","bill.updateDate":"2025-01-03T04:49:42Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1515/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"1515","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1515/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1515/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:42Z","title":"RED Tape Act of 2023","bill.title":"Help America Run Act","bill.number":"1515","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1515/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1515/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1515/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Katie","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1515/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1515/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1515?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 1515.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill or joint\nresolution. Congress has the power to enact this legislation\npursuant to the following: Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nThe bill requires each agency to repeal or amend 2 or more\nrules before issuing or amending a rule.\n[Page H1251]\n","sponsors.0.district":22,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":45,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1515/text?format=json","bill.sponsors.0.lastName":"Porter"}} +{"type":"node","id":"9231","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1484/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bost","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1484/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1484","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 1484.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution.\n[Page H1014]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1484/cosponsors?format=json","sponsors.0.bioguideId":"B001295","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1484/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1484/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","bill.sponsors.0.bioguideId":"B000574","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1484/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1484/text?format=json","bill.updateDate":"2025-01-03T04:49:44Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1484/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","request.billNumber":"1484","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1484/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1484/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:44Z","title":"Pipeline Sabotage and Accident Prevention Act","bill.title":"Rural Wind Energy Modernization and Extension Act of 2021","bill.number":"1484","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1484/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1484/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1484/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"EARL","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1484/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1484/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1484?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOST:\nH.R. 1484.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nPenalties for the intentional disruption or destruction of\npipelines.\n[Page H1250]\n","sponsors.0.district":12,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":3,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1484/text?format=json","bill.sponsors.0.lastName":"BLUMENAUER"}} +{"type":"node","id":"9232","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2021-03-02","cboCostEstimates.0.pubDate":"2024-06-21T20:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1513/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1513","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 1513.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H1015]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1513/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1513/actions?format=json","latestAction.actionDate":"2024-09-19","textVersions.count":4,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"P000605","bill.originChamber":"House","bill.actions.count":3,"titles.count":10,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-506","bill.sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1513/text?format=json","bill.updateDate":"2025-01-03T04:49:42Z","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1513/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":20,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"1513","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1513/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1513/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:42Z","title":"FUTURE Networks Act","bill.title":"Special Drawing Rights Oversight Act","bill.number":"1513","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 14, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60445","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1513/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2021-03-02","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/506?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1513/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1513/summaries?format=json","cboCostEstimates.0.title":"H.R. 1513, FUTURE Networks Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1513/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1513/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1513?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 1513.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo direct the Federal Communications Commission to\nestablish a task force to be known as the ``6G Task Force'',\nand for other purposes.\n[Page H1251]\n","sponsors.0.district":7,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:51:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1513/text?format=json","bill.sponsors.0.lastName":"Perry"}} +{"type":"node","id":"9233","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1486/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castor","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1486/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1486","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 1486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec. 8\n[Page H1014]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1486/cosponsors?format=json","sponsors.0.bioguideId":"C001066","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1486/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1486/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Castor, Kathy [D-FL-14]","bill.sponsors.0.bioguideId":"B001305","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1486/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1486/text?format=json","bill.updateDate":"2025-01-03T04:49:42Z","updateDate":"2024-09-25T08:05:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1486/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001066?format=json","request.billNumber":"1486","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1486/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1486/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:42Z","title":"Traditional Cigar Manufacturing and Small Business Jobs Preservation Act of 2023","bill.title":"To repeal the Office of Financial Research, and for other purposes.","bill.number":"1486","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1486/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1486/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1486/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1486/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1486/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1486?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CASTOR of Florida:\nH.R. 1486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTobacco\n[Page H1250]\n","sponsors.0.district":14,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Kathy","bill.type":"HR","updateDateIncludingText":"2024-09-25T08:05:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1486/text?format=json","bill.sponsors.0.lastName":"Budd"}} +{"type":"node","id":"9234","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1186/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lynch","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1186/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1186","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 1186.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States.\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1186/cosponsors?format=json","sponsors.0.bioguideId":"L000562","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1186/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","bill.sponsors.0.bioguideId":"V000133","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1186/text?format=json","bill.updateDate":"2025-01-03T04:46:41Z","updateDate":"2024-07-24T15:23:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1186/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","request.billNumber":"1186","committees.url":"https://api.congress.gov/v3/bill/118/hr/1186/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1186/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:41Z","title":"Embassy Construction Accountability Act of 2023","bill.title":"Supply Chain Security and Pharmaceutical Authentication Act of 2021","bill.number":"1186","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1186/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1186/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1186/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jefferson","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1186/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1186/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1186?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 1186.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8, Cl. 18\nThe single subject of this legislation is:\nEmbassy Construction Oversight\n[Page H876]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":2,"sponsors.0.firstName":"Stephen","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1186/text?format=json","bill.sponsors.0.lastName":"Van Drew"}} +{"type":"node","id":"9235","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1185/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lesko","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1185/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"1185","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TRONE:\nH.R. 1185.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1185/cosponsors?format=json","sponsors.0.bioguideId":"L000589","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1185/actions?format=json","latestAction.actionDate":"2023-02-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1185/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","bill.sponsors.0.bioguideId":"T000483","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Trone, David J. [D-MD-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1185/text?format=json","bill.updateDate":"2025-01-03T04:46:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1185/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","request.billNumber":"1185","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1185/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1185/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:48Z","title":"Make Education Local Act of 2023","bill.title":"Opioid Patients’ Right to Know Act of 2021","bill.number":"1185","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1185/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1185/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1185/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000483?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1185/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1185/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1185?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 1185.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRelating to Federal education funding\n[Page H876]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":6,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1185/text?format=json","bill.sponsors.0.lastName":"Trone"}} +{"type":"node","id":"9236","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1184/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Animals","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1184/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1184","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 1184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1184/cosponsors?format=json","sponsors.0.bioguideId":"J000301","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1184/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1184/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":27,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1184/text?format=json","bill.updateDate":"2025-01-03T04:46:48Z","updateDate":"2024-09-10T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1184/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","request.billNumber":"1184","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1184/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1184/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:48Z","title":"Healthy Dog Importation Act","bill.title":"Helping Experts Accelerate Rare Treatments Act of 2021","bill.number":"1184","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1184/committees?format=json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1184/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1184/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"SD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1184/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1184/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1184?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 1184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticie 1, Section 8, Clause 3 of the Constitution\nThe single subject of this legislation is:\nTo improve governmental coordination and accountability for\nthe importation of live dogs.\n[Page H876]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Dusty","bill.type":"HR","updateDateIncludingText":"2024-09-10T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1184/text?format=json","bill.sponsors.0.lastName":"Tonko"}} +{"type":"node","id":"9237","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1176/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Connolly","bill.latestAction.actionDate":"2021-02-19","cboCostEstimates.0.pubDate":"2023-05-22T20:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1176/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"L.","number":"1176","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUSH:\nH.R. 1176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1176/cosponsors?format=json","sponsors.0.bioguideId":"C001078","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1176/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1176/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-07-26","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","bill.sponsors.0.bioguideId":"R000515","bill.actions.count":4,"bill.originChamber":"House","titles.count":5,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rush, Bobby L. [D-IL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1176/text?format=json","bill.updateDate":"2025-01-03T04:46:47Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1176/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":12,"sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","request.billNumber":"1176","committees.url":"https://api.congress.gov/v3/bill/118/hr/1176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1176/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:47Z","title":"Taiwan International Solidarity Act","bill.title":"PSA Screening for HIM Act","bill.number":"1176","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on May 16, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59188","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1176/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1176/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1176/summaries?format=json","bill.cosponsors.count":38,"cboCostEstimates.0.title":"H.R. 1176, Taiwan International Solidarity Act","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000515?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"BOBBY","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1176/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1176/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1176?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 1176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo counter China's efforts to undermine Taiwan's\nparticipation in international organizations or Taiwan's\nrelationships with other countries.\n[Page H876]\n","sponsors.0.district":11,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Gerald","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1176/text?format=json","bill.sponsors.0.lastName":"RUSH"}} +{"type":"node","id":"9238","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1167/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Adams","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1167/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Agriculture, and in addition to the Committees on Education and the Workforce, Financial Services, the Judiciary, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1167","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAPPAS:\nH.R. 1167.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 18 provides Congress with the\npower ``to make all Laws which shall be necessary and proper\nfor carrying into Execution the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or in any Department or Officer thereof.''\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1167/cosponsors?format=json","sponsors.0.bioguideId":"A000370","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1167/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1167/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Adams, Alma S. [D-NC-12]","bill.sponsors.0.bioguideId":"P000614","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":35,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pappas, Chris [D-NH-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1167/text?format=json","bill.updateDate":"2025-01-03T04:46:53Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1167/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/A000370?format=json","request.billNumber":"1167","committees.url":"https://api.congress.gov/v3/bill/118/hr/1167/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1167/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:53Z","title":"Justice for Black Farmers Act of 2023","bill.title":"Advancing Enrollment and Reducing Drug Costs Act of 2021","bill.number":"1167","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1167/committees?format=json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1167/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1167/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000614?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Chris","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1167/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1167/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1167?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ADAMS:\nH.R. 1167.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Under Article 1, Section 8 of the\nConstitution.\nThe single subject of this legislation is:\nUSDA reform for Black farmers & ranchers\n[Page H876]\n","sponsors.0.district":12,"bill.sponsors.0.state":"NH","bill.sponsors.0.district":1,"sponsors.0.firstName":"Alma","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1167/text?format=json","bill.sponsors.0.lastName":"Pappas"}} +{"type":"node","id":"9239","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/544/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brownley","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy and Mineral Resources.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/544/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"544","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section III, Clause II: ``The Congress shall\nhave power to dispose of and make all needful rules and\nregulations respecting the Territory or other property\nbelonging to the United States; and nothing in this\nConstitution shall be so construed as to prejudice any claims\nof the United States, or of any particular state.\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/544/cosponsors?format=json","sponsors.0.bioguideId":"B001285","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/544/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/544/relatedbills?format=json","latestAction.actionDate":"2023-02-14","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","bill.sponsors.0.bioguideId":"H001068","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":39,"bill.latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/544/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/544/text?format=json","bill.updateDate":"2025-01-03T04:43:20Z","updateDate":"2024-09-10T08:05:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/544/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","request.billNumber":"544","committees.url":"https://api.congress.gov/v3/bill/118/hr/544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/544/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:20Z","title":"Veterans Infertility Treatment Act of 2023","bill.title":"Stop Arctic Ocean Drilling Act of 2021","bill.number":"544","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":39,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/544/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/544/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/544/summaries?format=json","bill.cosponsors.count":38,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jared","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/544/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/544/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/544?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H429]\n","sponsors.0.district":26,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Julia","bill.type":"HR","updateDateIncludingText":"2024-09-10T08:05:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/544/text?format=json","bill.sponsors.0.lastName":"Huffman"}} +{"type":"node","id":"9240","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1149/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wild","bill.latestAction.actionDate":"2021-02-19","cboCostEstimates.0.pubDate":"2023-03-10T19:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1149/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1149","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LONG:\nH.R. 1149.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or office therof.\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1149/cosponsors?format=json","sponsors.0.bioguideId":"W000826","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1149/actions?format=json","latestAction.actionDate":"2023-04-20","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1149/relatedbills?format=json","textVersions.count":3,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Wild, Susan [D-PA-7]","bill.sponsors.0.bioguideId":"L000576","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1149/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Long, Billy [R-MO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1149/text?format=json","bill.updateDate":"2025-01-03T04:47:02Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1149/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/W000826?format=json","request.billNumber":"1149","committees.url":"https://api.congress.gov/v3/bill/118/hr/1149/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1149/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:02Z","title":"Countering Untrusted Telecommunications Abroad Act","bill.title":"CONNECT Act","bill.number":"1149","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58979","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1149/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1149/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1149/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 1149, Countering Untrusted Telecommunications Abroad Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000576?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":15,"bill.committees.count":1,"bill.sponsors.0.firstName":"Billy","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1149/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1149/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1149?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WILD:\nH.R. 1149.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nNational security.\n[Page H868]\n","sponsors.0.district":7,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Susan","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1149/text?format=json","bill.sponsors.0.lastName":"Long"}} +{"type":"node","id":"9241","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1148/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Walberg","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1148/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1148","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LONG:\nH.R. 1148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or office therof.\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1148/cosponsors?format=json","sponsors.0.bioguideId":"W000798","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1148/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1148/relatedbills?format=json","latestAction.actionDate":"2023-02-21","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","bill.sponsors.0.bioguideId":"L000576","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1148/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Long, Billy [R-MO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1148/text?format=json","bill.updateDate":"2025-01-03T04:47:02Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1148/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","request.billNumber":"1148","committees.url":"https://api.congress.gov/v3/bill/118/hr/1148/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1148/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:02Z","title":"Critical Electric Infrastructure Cybersecurity Incident Reporting Act","bill.title":"CABLE Leadership Act","bill.number":"1148","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1148/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1148/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1148/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000576?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Billy","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1148/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1148/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1148?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 1148.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by enhancing energy sector cybersecurity incident\ninformation sharing.\n[Page H868]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Tim","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1148/text?format=json","bill.sponsors.0.lastName":"Long"}} +{"type":"node","id":"9242","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1141/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 8.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1141","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution.\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1141/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1141/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1141/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":41,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1141/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-15","bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1141/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1141/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"1141","committees.url":"https://api.congress.gov/v3/bill/118/hr/1141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1141/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Natural Gas Tax Repeal Act","bill.title":"Broadband Competition and Efficient Deployment Act","bill.number":"1141","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":41,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1141/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/15?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1141/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1141/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"John","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1141/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1141/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1141?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing the natural gas tax.\n[Page H868]\n","sponsors.0.district":11,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1141/text?format=json","bill.sponsors.0.lastName":"Joyce"}} +{"type":"node","id":"9243","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1119/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DelBene","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1119/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1119","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 1119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1119/cosponsors?format=json","sponsors.0.bioguideId":"D000617","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1119/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1119/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","bill.sponsors.0.bioguideId":"D000615","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1119/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1119/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","request.billNumber":"1119","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1119/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1119/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Freedom to Invest in a Sustainable Future Act","bill.title":"Stopping Chinese Communist Involvement in the Power Grid Act","bill.number":"1119","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1119/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1119/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1119/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jeff","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1119/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1119/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1119?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DelBENE:\nH.R. 1119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nRetirement\n[Page H867]\n","sponsors.0.district":1,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":3,"sponsors.0.firstName":"Suzan","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1119/text?format=json","bill.sponsors.0.lastName":"Duncan"}} +{"type":"node","id":"9244","labels":["Bill"],"properties":{"relatedBills.count":5,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1118/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cicilline","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1118/summaries?format=json","type":"HR","latestAction.text":"ASSUMING FIRST SPONSORSHIP - Mr. Pappas asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1118, a bill originally introduced by Representative Cicilline, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1118","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 1118.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1118/cosponsors?format=json","sponsors.0.bioguideId":"C001084","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1118/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1118/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Cicilline, David N. [D-RI-1]","bill.sponsors.0.bioguideId":"D000624","bill.originChamber":"House","bill.actions.count":7,"titles.count":5,"cosponsors.count":193,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1118/text?format=json","bill.updateDate":"2025-01-03T04:46:44Z","updateDate":"2024-08-07T08:05:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1118/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/C001084?format=json","request.billNumber":"1118","committees.url":"https://api.congress.gov/v3/bill/118/hr/1118/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1118/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:44Z","title":"DISCLOSE Act of 2023","bill.title":"Medicare Hearing Aid Coverage Act of 2021","bill.number":"1118","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":193,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1118/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","sponsors.0.middleName":"N.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1118/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1118/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"latestAction.actionTime":"19:03:18","bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":20,"bill.committees.count":2,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"RI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1118/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1118/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1118?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CICILLINE:\nH.R. 1118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nTo amend the Federal Election Campaign Act of 1971 to\nprovide for additional disclosure requirements for\ncorporations, labor organizations, Super PACs and other\nentities, and for other purposes,\n[Page H867]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":12,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2024-08-07T08:05:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1118/text?format=json","bill.sponsors.0.lastName":"Dingell"}} +{"type":"node","id":"9245","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1113/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bera","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1113/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1113","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nARTICLE 1, SECTION 8.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1113/cosponsors?format=json","sponsors.0.bioguideId":"B001287","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1113/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","bill.sponsors.0.bioguideId":"C001119","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1113/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1113/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-21T09:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1113/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","request.billNumber":"1113","committees.url":"https://api.congress.gov/v3/bill/118/hr/1113/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1113/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Easy Enrollment in Health Care Act","bill.title":"Renewable Fuel Standard Integrity Act of 2021","bill.number":"1113","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1113/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1113/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1113/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":1,"bill.sponsors.0.firstName":"Angie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1113/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1113/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1113?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHealth\n[Page H875]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ami","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1113/text?format=json","bill.sponsors.0.lastName":"Craig"}} +{"type":"node","id":"9246","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1107/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kim","bill.latestAction.actionDate":"2021-02-19","cboCostEstimates.0.pubDate":"2023-03-07T21:29:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1107/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1107","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASE:\nH.R. 1107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1107/cosponsors?format=json","sponsors.0.bioguideId":"K000397","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1107/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-03-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1107/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","bill.sponsors.0.bioguideId":"C001055","bill.actions.count":4,"bill.originChamber":"House","titles.count":5,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Case, Ed [D-HI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1107/text?format=json","bill.updateDate":"2025-01-03T04:46:47Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1107/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","request.billNumber":"1107","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1107/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1107/committees?format=json","bill.updateDateIncludingText":"2025-02-25T17:27:14Z","title":"PRC Is Not a Developing Country Act","bill.title":"PLAN Act","bill.number":"1107","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58978","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1107/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1107/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1107/summaries?format=json","bill.cosponsors.count":4,"cboCostEstimates.0.title":"H.R. 1107, PRC is Not a Developing Country Act","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001055?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1107/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1107/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1107?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 1107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo direct the Secretary of State to take certain actions\nwith respect to the labeling of the People's Republic of\nChina as a developing country, and for other purposes.\n[Page H867]\n","sponsors.0.district":40,"bill.sponsors.0.state":"HI","bill.sponsors.0.district":1,"sponsors.0.firstName":"Young","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1107/text?format=json","bill.sponsors.0.lastName":"Case"}} +{"type":"node","id":"9247","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1106/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wexton","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1106/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1106","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 1106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 (relating to the power of\nCongress to lay and collect Taxes, Duties, Imposts and\nExcises, to pay the Debts and provide for the common Defense\nand general Welfare of the United States).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1106/cosponsors?format=json","sponsors.0.bioguideId":"W000825","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1106/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1106/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Wexton, Jennifer [D-VA-10]","bill.sponsors.0.bioguideId":"C001090","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1106/text?format=json","bill.updateDate":"2025-01-03T04:46:48Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1106/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000825?format=json","request.billNumber":"1106","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1106/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1106/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:48Z","title":"COST of Relocations Act","bill.title":"HEAR Act of 2021","bill.number":"1106","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1106/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1106/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1106/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1106/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1106/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1106?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WEXTON:\nH.R. 1106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nRequiring a benefit-cost analysis for any proposed\nrelocation of a Federal agency.\n[Page H856]\n","sponsors.0.district":10,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Jennifer","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1106/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"9248","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1103/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2021-02-19","cboCostEstimates.0.pubDate":"2023-12-11T22:42:39Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1103/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 527.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"1103","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 1103.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe attached language falls within Congress delegated\nauthority to legislate interstate commerce, found in Article\nI, Section 8, clause 3 of the U.S. Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1103/cosponsors?format=json","sponsors.0.bioguideId":"S000522","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1103/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1103/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-09-25","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","bill.sponsors.0.bioguideId":"B001248","bill.actions.count":4,"bill.originChamber":"House","titles.count":5,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1103/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1103/text?format=json","bill.updateDate":"2025-01-03T04:47:03Z","updateDate":"2024-12-16T20:43:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1103/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","request.billNumber":"1103","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1103/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1103/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:03Z","title":"Hong Kong Economic and Trade Office (HKETO) Certification Act","bill.title":"CABLE Competition Act","bill.number":"1103","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on November 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59811","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1103/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1103/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1103/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 1103, Hong Kong Economic and Trade Office (HKETO) Certification Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1103/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1103/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1103?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 1103.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H856]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"CHRISTOPHER","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:43:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1103/text?format=json","bill.sponsors.0.lastName":"Burgess"}} +{"type":"node","id":"9249","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1100/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Posey","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1100/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1100","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1100/cosponsors?format=json","sponsors.0.bioguideId":"P000599","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1100/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"bill.policyArea.name":"Civil Rights and Liberties, Minority Issues","sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":16,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1100/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1100/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","request.billNumber":"1100","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1100/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SAFE for America Act of 2023","bill.title":"Online Accessibility Act","bill.number":"1100","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1100/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1100/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1100/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1100/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1100/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1100?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POSEY:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nA Visa Lottery Immigration Bill\n[Page H856]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-12-04T09:05:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1100/text?format=json","bill.sponsors.0.lastName":"Budd"}} +{"type":"node","id":"9250","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1099/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1099/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"1099","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BROWN:\nH.R. 1099.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Article I, Section 8, Clause\n18)\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1099/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1099/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1099/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"B001304","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1099/text?format=json","bill.updateDate":"2025-01-03T04:47:02Z","updateDate":"2024-07-24T15:23:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1099/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"1099","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1099/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1099/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:02Z","title":"PAID OFF Act of 2023","bill.title":"VACCINE Act","bill.number":"1099","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1099/committees?format=json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1099/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1099/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1099/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1099/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1099?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nAmending the Foreign Agents Registration Act of 1938 to\nclose lobbying loopholes exploited by countries of concern.\n[Page H856]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1099/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"9251","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1092/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1092","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1092/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1092/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1092/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1092/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-09-26T08:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1092/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"1092","committees.url":"https://api.congress.gov/v3/bill/118/hr/1092/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1092/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"BENEFIT Act of 2023","bill.title":"To place temporary restrictions on acquisitions by the People's Republic of China, and for other purposes.","bill.number":"1092","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1092/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1092/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1092/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1092/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1092/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1092?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo strengthen the use of patient-experience data within the\nbenefit-risk framework for approval of new drugs.\n[Page H856]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-09-26T08:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1092/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"9252","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lieu","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1090/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1090","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 1090.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1090/cosponsors?format=json","sponsors.0.bioguideId":"L000582","bill.subjects.count":22,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1090/actions?format=json","latestAction.actionDate":"2023-02-24","textVersions.count":1,"bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","bill.sponsors.0.bioguideId":"B001299","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1090/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:23:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1090/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","request.billNumber":"1090","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1090/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1090/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"DEVICE Act of 2023","bill.title":"Online Consumer Protection Act of 2021","bill.number":"1090","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1090/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1090/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1090/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1090/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1090/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1090?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 1090.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nHealth care\n[Page H856]\n","sponsors.0.district":36,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ted","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1090/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"9253","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1178/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ferguson","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Intelligence and Counterterrorism.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1178/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1178","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 1178.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1178/cosponsors?format=json","sponsors.0.bioguideId":"F000465","bill.subjects.count":20,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1178/actions?format=json","latestAction.actionDate":"2023-02-24","textVersions.count":1,"bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":22,"bill.latestAction.text":"Referred to the Subcommittee on Intelligence and Counterterrorism.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1178/text?format=json","bill.updateDate":"2025-03-03T20:01:49Z","updateDate":"2024-07-24T15:23:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1178/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","request.billNumber":"1178","committees.url":"https://api.congress.gov/v3/bill/118/hr/1178/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1178/subjects?format=json","bill.updateDateIncludingText":"2025-03-03T20:01:49Z","title":"Broadband SALE Act","bill.title":"Commission on Domestic Terrorism Act of 2021","bill.number":"1178","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1178/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","sponsors.0.middleName":"Drew","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1178/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1178/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1178/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1178/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1178?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 1178.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 (Necessary and Proper)\nThe single subject of this legislation is:\nTelecommunications\n[Page H876]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"A.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1178/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"9254","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/741/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"CALVERT","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Labor and Employment","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/741/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"741","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 20 (Wednesday, February 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 and Amendment XVI\n[Page H324]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/741/cosponsors?format=json","sponsors.0.bioguideId":"C000059","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/741/actions?format=json","latestAction.actionDate":"2023-02-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/741/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Calvert, Ken [R-CA-41]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/741/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/741/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/741/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C000059?format=json","request.billNumber":"741","committees.url":"https://api.congress.gov/v3/bill/118/hr/741/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/741/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Employee Bonus Protection Act","bill.title":"Sustainable Aviation Fuel Act","bill.number":"741","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/741/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/741/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/741/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-02-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/741/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/741/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/741?format=json","bill.introducedDate":"2021-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CALVERT:\nH.R. 741.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis legislation is provided by Article I, Section 8 of the\nUnited States Constitution, specifically clause 18 (relating\nto the power to make all laws necessary and proper for\ncarrying out the powers vested in Congress)\nThe single subject of this legislation is:\nThis legislation would exclude from an employee's regular\npay rate, for purposes of calculating overtime compensation,\npayments made to reward an employee or group of employees for\nmeeting or exceeding the productivity, quality, efficiency,\nor sales goals specified in writing in a gainsharing plan,\nincentive bonus plan, commission plan, or performance\ncontingent bonus plan.\n[Page H680]\n","sponsors.0.district":41,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"KEN","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/741/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9255","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SIMPSON","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/269/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"269","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 6 (Monday, January 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VELA:\nH.R. 269.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1: The Congress shall have\npower to lay and collect taxes, duties, imposts and excised,\nto pay the debts and provide for the common defence and\ngeneral welfare of the United States; but all duties, imposts\nand excises shall be uniform throughout the United States.\nArticle 1 Section 8 Clause 3: To regulate Commerce with\nforeign nations, and among the several states, and with the\nIndian tribes.\n[Page H124]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/269/cosponsors?format=json","sponsors.0.bioguideId":"S001148","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/269/actions?format=json","latestAction.actionDate":"2023-01-10","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/269/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Simpson, Michael K. [R-ID-2]","bill.sponsors.0.bioguideId":"V000132","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Vela, Filemon [D-TX-34]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/269/text?format=json","bill.updateDate":"2025-01-03T04:41:22Z","updateDate":"2024-07-24T15:24:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/269/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001148?format=json","request.billNumber":"269","committees.url":"https://api.congress.gov/v3/bill/118/hr/269/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/269/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:41:22Z","title":"To authorize an additional district judgeship for the district of Idaho.","bill.title":"Putting Our Resources Toward Security (PORTS) Act","bill.number":"269","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/269/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/269/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/269/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000132?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-10","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Filemon","sponsors.0.state":"ID","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/269/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/269/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/269?format=json","bill.introducedDate":"2021-01-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 8 (Tuesday, January 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SIMPSON:\nH.R. 269.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article I of the Constitution\n[Page H152]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":34,"sponsors.0.firstName":"MICHAEL","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/269/text?format=json","bill.sponsors.0.lastName":"Vela"}} +{"type":"node","id":"9256","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/762/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/762/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"762","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 20 (Wednesday, February 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H325]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/762/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/762/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","latestAction.actionDate":"2023-02-10","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/762/text?format=json","bill.updateDate":"2025-01-03T04:44:41Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/762/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"762","subjects.url":"https://api.congress.gov/v3/bill/118/hr/762/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/762/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:41Z","title":"Building Resilient Supply Chains Act","bill.title":"SAFE TO DRIVE Act","bill.number":"762","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/762/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/762/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/762/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-02-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/762/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/762/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/762?format=json","bill.introducedDate":"2021-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 1,3, and 14 of the\nConstitution.\nThe single subject of this legislation is:\nThe single subject of this legislation is to promote U.S.\nmanufactoriung by building resilient supply chains.\n[Page H681]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/762/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}} +{"type":"node","id":"9257","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/744/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bonamici","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/744/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"D.","number":"744","bill.cosponsors.countIncludingWithdrawnCosponsors":49,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 20 (Wednesday, February 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CLARKE of New York:\nH.R. 744.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H324]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/744/cosponsors?format=json","sponsors.0.bioguideId":"B001278","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/744/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/744/relatedbills?format=json","latestAction.actionDate":"2023-02-10","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","bill.sponsors.0.bioguideId":"C001067","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":25,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/744/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Clarke, Yvette D. [D-NY-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/744/text?format=json","bill.updateDate":"2025-01-03T04:44:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/744/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","request.billNumber":"744","subjects.url":"https://api.congress.gov/v3/bill/118/hr/744/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/744/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:37Z","title":"Supporting the Mental Health of Educators and Staff Act of 2023","bill.title":"FEMA Climate Change Preparedness Act","bill.number":"744","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/744/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/744/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/744/summaries?format=json","bill.cosponsors.count":49,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001067?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-02-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Yvette","sponsors.0.state":"OR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/744/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/744/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/744?format=json","bill.introducedDate":"2021-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 744.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nMental health access\n[Page H680]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":9,"sponsors.0.firstName":"Suzanne","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/744/text?format=json","bill.sponsors.0.lastName":"Clarke"}} +{"type":"node","id":"9258","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/712/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crenshaw","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Immigration","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/712/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F.","number":"712","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 19 (Tuesday, February 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 712.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n[Page H280]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/712/cosponsors?format=json","sponsors.0.bioguideId":"C001120","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/712/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/712/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-01","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","bill.sponsors.0.bioguideId":"L000562","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/712/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/712/text?format=json","bill.updateDate":"2025-01-03T04:44:13Z","updateDate":"2024-11-09T04:56:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/712/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","request.billNumber":"712","subjects.url":"https://api.congress.gov/v3/bill/118/hr/712/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/712/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:13Z","title":"State Border Security Reimbursement Act of 2023","bill.title":"Air Traffic Noise and Pollution Expert Consensus Act of 2021","bill.number":"712","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/712/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/712/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/712/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","introducedDate":"2023-02-01","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephen","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/712/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/712/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/712?format=json","bill.introducedDate":"2021-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 712.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8: ``To make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nTo reimburse states for funds spent carrying out federal\nresponsibilities.\n[Page H629]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/712/text?format=json","bill.sponsors.0.lastName":"Lynch"}} +{"type":"node","id":"9259","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norman","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/632/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"632","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. YOUNG:\nH.R. 632.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution (clauses 3 and 18), which grants Congress\nthe power to regulate Commerce with foreign Nations, and\namong the several states, and with the Indian Tribes; and to\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing powers.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/632/cosponsors?format=json","sponsors.0.bioguideId":"N000190","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/632/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/632/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","bill.sponsors.0.bioguideId":"Y000033","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Young, Don [R-AK-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/632/text?format=json","bill.updateDate":"2025-01-03T04:43:37Z","updateDate":"2024-07-24T15:23:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/632/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","request.billNumber":"632","committees.url":"https://api.congress.gov/v3/bill/118/hr/632/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/632/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:37Z","title":"Ensuring Accurate and Complete Abortion Data Reporting Act of 2023","bill.title":"Maritime Lien Reform Act of 2021","bill.number":"632","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/632/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/632/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/632/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/Y000033?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"DON","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/632/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/632/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/632?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 632.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nIncentivize the reporting of abortion data to the Centers\nfor Disease Control and Prevention\n[Page H511]\n","sponsors.0.district":5,"bill.sponsors.0.state":"AK","sponsors.0.firstName":"Ralph","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:56Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/632/text?format=json","bill.sponsors.0.lastName":"YOUNG"}} +{"type":"node","id":"9260","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/609/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"609","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 609.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle II, Section 8.\n[Page H253]\n","sponsors.0.bioguideId":"S000522","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/609/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","bill.sponsors.0.bioguideId":"S001199","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/609/text?format=json","bill.updateDate":"2025-01-03T04:43:38Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/609/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","request.billNumber":"609","subjects.url":"https://api.congress.gov/v3/bill/118/hr/609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/609/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:38Z","title":"Education, Achievement, and Opportunity Act","bill.title":"To amend title 49, United States Code, to require Amtrak to convey of certain properties to the Commonwealth of Pennsylvania, and for other purposes.","bill.number":"609","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/609/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/609/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/609/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lloyd","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/609/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/609/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/609?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 609.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEducation\n[Page H491]\n","sponsors.0.district":4,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":11,"sponsors.0.firstName":"CHRISTOPHER","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/609/text?format=json","bill.sponsors.0.lastName":"Smucker"}} +{"type":"node","id":"9261","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/553/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/553/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"553","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LARSEN of Washington:\nH.R. 553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1--All legislative Powers herein granted\nshall be vested in a Congress of the United States, which\nshall consist of a Senate and House of Representatives.\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/553/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/553/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/553/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"L000560","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Larsen, Rick [D-WA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/553/text?format=json","bill.updateDate":"2025-01-03T04:43:09Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/553/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"553","subjects.url":"https://api.congress.gov/v3/bill/118/hr/553/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/553/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:09Z","title":"Workplace Choice and Flexibility for Individuals with Disabilities Act","bill.title":"Aviation Manufacturing Jobs Protection Act of 2021","bill.number":"553","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/553/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/553/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/553/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000560?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"RICK","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/553/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/553/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/553?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nDisabilitiy employment\n[Page H429]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/553/text?format=json","bill.sponsors.0.lastName":"LARSEN"}} +{"type":"node","id":"9262","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/545/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Buchanan","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/545/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"R","number":"545","bill.cosponsors.countIncludingWithdrawnCosponsors":40,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 545.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/545/cosponsors?format=json","sponsors.0.bioguideId":"B001260","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/545/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/545/relatedbills?format=json","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","bill.sponsors.0.bioguideId":"H001068","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/545/text?format=json","bill.updateDate":"2025-01-03T04:43:22Z","updateDate":"2024-12-21T09:05:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/545/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","request.billNumber":"545","committees.url":"https://api.congress.gov/v3/bill/118/hr/545/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/545/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:22Z","title":"Defending Domestic Produce Protection Act","bill.title":"No Congressional Gun Loophole Act","bill.number":"545","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/545/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/545/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/545/summaries?format=json","bill.cosponsors.count":40,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jared","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/545/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/545/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/545?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 545.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\n[Page H429]\n","sponsors.0.district":16,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Vern","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/545/text?format=json","bill.sponsors.0.lastName":"Huffman"}} +{"type":"node","id":"9263","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/512/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Good","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/512/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"512","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/512/cosponsors?format=json","sponsors.0.bioguideId":"G000595","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/512/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/512/text?format=json","bill.updateDate":"2025-01-03T04:43:38Z","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/512/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","request.billNumber":"512","committees.url":"https://api.congress.gov/v3/bill/118/hr/512/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/512/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:38Z","title":"One Citizen One Vote Act","bill.title":"Green Bus Act of 2021","bill.number":"512","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/512/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/512/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/512/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/512/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/512/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/512?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nElection Integrity\n[Page H325]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Bob","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/512/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9264","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/511/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DELAURO","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/511/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"511","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 511.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/511/cosponsors?format=json","sponsors.0.bioguideId":"D000216","bill.subjects.count":2,"actions.url":"https://api.congress.gov/v3/bill/118/hr/511/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/511/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/511/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/511/text?format=json","bill.updateDate":"2025-01-03T04:43:40Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/511/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","request.billNumber":"511","committees.url":"https://api.congress.gov/v3/bill/118/hr/511/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/511/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:40Z","title":"American Apprenticeship Act","bill.title":"National Multimodal Freight Network Improvement Act","bill.number":"511","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/511/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/511/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/511/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"CT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/511/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/511/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/511?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 511.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\n[Page H325]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"ROSA","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/511/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9265","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/510/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-02-04","cboCostEstimates.0.pubDate":"2023-03-16T17:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Foreign Trade and International Finance","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/510/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","number":"510","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 510.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/510/cosponsors?format=json","sponsors.0.bioguideId":"D000626","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/510/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/510/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"B001285","bill.actions.count":4,"bill.originChamber":"House","titles.count":6,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/510/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-294","bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/510/text?format=json","bill.updateDate":"2025-01-03T04:43:41Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/510/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"510","committees.url":"https://api.congress.gov/v3/bill/118/hr/510/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/510/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:41Z","title":"Chinese Currency Accountability Act of 2023","bill.title":"Support Local Transportation Act","bill.number":"510","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59006","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/510/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/294?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/510/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/510/summaries?format=json","bill.cosponsors.count":4,"cboCostEstimates.0.title":"H.R. 510, Chinese Currency Accountability Act of 2023","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/510/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/510/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/510?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\n[Pages H324-H325]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 510.\n[[Page H325]]\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nThe United States' input regarding the special drawing\nrights at the International Monetary Fund.\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/510/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9266","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/509/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/509/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"509","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 509.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/509/cosponsors?format=json","sponsors.0.bioguideId":"D000626","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/509/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/509/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"B001285","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/509/text?format=json","bill.updateDate":"2025-01-03T04:43:41Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/509/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"509","committees.url":"https://api.congress.gov/v3/bill/118/hr/509/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/509/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:41Z","title":"Debt Cancellation Accountability Act of 2023","bill.title":"Coast Guard Safety and Accountability Act","bill.number":"509","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/509/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/509/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/509/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/509/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/509/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/509?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 509.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nEducation\n[Page H324]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/509/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9267","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/508/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crenshaw","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/508/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"508","bill.cosponsors.countIncludingWithdrawnCosponsors":29,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 508.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/508/cosponsors?format=json","sponsors.0.bioguideId":"C001120","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/508/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/508/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/508/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/508/text?format=json","bill.updateDate":"2025-01-03T04:43:31Z","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/508/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","request.billNumber":"508","committees.url":"https://api.congress.gov/v3/bill/118/hr/508/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/508/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:31Z","title":"ATF Accountability Act of 2023","bill.title":"SAFE Streets Act","bill.number":"508","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/508/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/508/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/508/summaries?format=json","bill.cosponsors.count":29,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/508/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/508/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/508?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 508.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8: To make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nProtect the Second Amendment by creating an appeals process\nto ATF rulings.\n[Page H324]\n","sponsors.0.district":2,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/508/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9268","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/486/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Roy","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/486/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"486","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SHERMAN:\nH.R. 486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/486/cosponsors?format=json","sponsors.0.bioguideId":"R000614","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/486/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/486/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","bill.sponsors.0.bioguideId":"S000344","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/486/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sherman, Brad [D-CA-30]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/486/text?format=json","bill.updateDate":"2025-01-03T04:42:35Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/486/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","request.billNumber":"486","subjects.url":"https://api.congress.gov/v3/bill/118/hr/486/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/486/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:35Z","title":"To prohibit the government of the District of Columbia from using Federal funds to allow individuals who are not citizens of the United States to vote in any election, and for other purposes.","bill.title":"Kobe Bryant & Gianna Bryant Helicopter Safety Act","bill.number":"486","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/486/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/486/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/486/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000344?format=json","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"BRAD","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/486/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/486/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/486?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SHERMAN:\nH.R. 486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the U.S. Constitution\n[Page H233]\n","sponsors.0.district":21,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":30,"sponsors.0.firstName":"Chip","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/486/text?format=json","bill.sponsors.0.lastName":"SHERMAN"}} +{"type":"node","id":"9269","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/481/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/481/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"E.","number":"481","bill.cosponsors.countIncludingWithdrawnCosponsors":55,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PRICE of North Carolina:\nH.R. 481.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause l:\n``The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States; . . .\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/481/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/481/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"P000523","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Price, David E. [D-NC-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/481/text?format=json","bill.updateDate":"2025-01-03T04:42:34Z","updateDate":"2024-07-24T15:24:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/481/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"481","committees.url":"https://api.congress.gov/v3/bill/118/hr/481/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/481/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:34Z","title":"Wildfire Smoke Relief Act","bill.title":"Flood Resiliency and Taxpayer Savings Act of 2021","bill.number":"481","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/481/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/481/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/481/summaries?format=json","bill.cosponsors.count":55,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000523?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"DAVID","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/481/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/481/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/481?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PRICE of North Carolina:\nH.R. 481.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause l:\n``The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States; . . .\n[Page H233]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":4,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/481/text?format=json","bill.sponsors.0.lastName":"PRICE"}} +{"type":"node","id":"9270","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/476/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/476/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"D.","number":"476","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.R. 476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/476/cosponsors?format=json","sponsors.0.bioguideId":"M001205","bill.subjects.count":32,"actions.url":"https://api.congress.gov/v3/bill/118/hr/476/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/476/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Miller, Carol D. [R-WV-1]","bill.sponsors.0.bioguideId":"M001206","bill.originChamber":"House","bill.actions.count":11,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/476/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Morelle, Joseph D. [D-NY-25]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/476/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-17T03:11:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/476/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001205?format=json","request.billNumber":"476","subjects.url":"https://api.congress.gov/v3/bill/118/hr/476/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/476/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Helping HANDS for Families Act","bill.title":"Innovation Centers Acceleration Act","bill.number":"476","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/476/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/476/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/476/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001206?format=json","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":7,"bill.sponsors.0.firstName":"Joseph","sponsors.0.state":"WV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/476/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/476/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/476?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.R. 476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution\n[Page H233]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":25,"sponsors.0.firstName":"Carol","bill.type":"HR","updateDateIncludingText":"2025-01-17T03:11:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/476/text?format=json","bill.sponsors.0.lastName":"Morelle"}} +{"type":"node","id":"9271","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/460/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Espaillat","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/460/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"460","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 460.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/460/cosponsors?format=json","sponsors.0.bioguideId":"E000297","bill.subjects.count":35,"actions.url":"https://api.congress.gov/v3/bill/118/hr/460/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/460/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":7,"titles.count":4,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/460/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/460/text?format=json","bill.updateDate":"2025-01-03T04:42:30Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/460/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","request.billNumber":"460","committees.url":"https://api.congress.gov/v3/bill/118/hr/460/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/460/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:30Z","title":"SPELL Act","bill.title":"Health Force, Resilience Force, and Jobs To Fight COVID–19 Act of 2021","bill.number":"460","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/460/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/460/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/460/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/460/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/460/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/460?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 460.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H233]\n","sponsors.0.district":13,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"Adriano","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/460/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"9272","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/424/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"424","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 12 (Thursday, January 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SIRES:\nH.R. 424.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 3(d)(1) of rule XIII of the Rules of the\nHouse of Representatives, the Committee finds the authority\nfor this legislation in article I, section 8 of the\nConstitution.\n[Page H225]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/424/cosponsors?format=json","sponsors.0.bioguideId":"J000299","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/424/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Johnson, Mike [R-LA-4]","bill.sponsors.0.bioguideId":"S001165","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","cosponsors.count":10,"request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sires, Albio [D-NJ-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/424/text?format=json","bill.updateDate":"2025-01-03T04:42:14Z","updateDate":"2024-07-24T15:24:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/424/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000299?format=json","request.billNumber":"424","committees.url":"https://api.congress.gov/v3/bill/118/hr/424/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/424/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:14Z","title":"Leaker Accountability Act of 2023","bill.title":"Safe Scooters Act","bill.number":"424","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/424/committees?format=json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/424/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/424/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001165?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-20","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Albio","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/424/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/424/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/424?format=json","bill.introducedDate":"2021-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Louisiana:\nH.R. 424.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H252]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":8,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/424/text?format=json","bill.sponsors.0.lastName":"Sires"}} +{"type":"node","id":"9273","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/389/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schweikert","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/389/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on the Judiciary, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"389","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 12 (Thursday, January 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASE:\nH.R. 389.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, Article I of the Constitution\n[Page H224]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/389/cosponsors?format=json","sponsors.0.bioguideId":"S001183","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/389/actions?format=json","latestAction.actionDate":"2023-01-17","textVersions.count":1,"bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Schweikert, David [R-AZ-1]","bill.sponsors.0.bioguideId":"C001055","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Case, Ed [D-HI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/389/text?format=json","bill.updateDate":"2025-01-03T04:42:05Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/389/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001183?format=json","request.billNumber":"389","committees.url":"https://api.congress.gov/v3/bill/118/hr/389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/389/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:05Z","title":"PORTFOLIO Act","bill.title":"Safe and Quiet Skies Act of 2021","bill.number":"389","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/389/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/389/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/389/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001055?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-17","bill.originChamberCode":"H","subjects.count":19,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/389/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/389/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/389?format=json","bill.introducedDate":"2021-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHWEIKERT:\nH.R. 389.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have the Power to make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H244]\n","sponsors.0.district":1,"bill.sponsors.0.state":"HI","bill.sponsors.0.district":1,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/389/text?format=json","bill.sponsors.0.lastName":"Case"}} +{"type":"node","id":"9274","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/537/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Salazar","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Social Security.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/537/summaries?format=json","bill.relatedBills.count":3,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"537","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss GONZALEZ-COLON:\nH.R. 537.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress has the power to enact this legislation\npursuant to Article I, Section 8, Clauses 1 and 18 of the\nU.S. Constitution, which provide as follows:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\n[and . . .]\nTo make all laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/537/cosponsors?format=json","sponsors.0.bioguideId":"S000168","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/537/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/537/relatedbills?format=json","latestAction.actionDate":"2024-06-12","textVersions.count":3,"bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Salazar, Maria Elvira [R-FL-27]","bill.sponsors.0.bioguideId":"G000582","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":295,"bill.latestAction.text":"Referred to the Subcommittee on Social Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/537/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Resident Commissioner González-Colón, Jenniffer [R-PR-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/537/text?format=json","bill.updateDate":"2025-01-03T04:43:24Z","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/537/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/S000168?format=json","request.billNumber":"537","subjects.url":"https://api.congress.gov/v3/bill/118/hr/537/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/537/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:24Z","title":"Forgotten Heroes of the Holocaust Congressional Gold Medal Act","bill.title":"Supplemental Security Income Equality Act","bill.number":"537","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":295,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/537/committees?format=json","request.format":"json","sponsors.0.middleName":"Elvira","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/537/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/537/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jenniffer","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/537/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/537/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/537?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALAZAR:\nH.R. 537.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nHolocaust\n[Page H429]\n","sponsors.0.district":27,"bill.sponsors.0.state":"PR","sponsors.0.firstName":"Maria","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:20:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/537/text?format=json","bill.sponsors.0.lastName":"Gonzalez-Colon"}} +{"type":"node","id":"9275","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/489/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Van Drew","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/489/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"489","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 489.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/489/cosponsors?format=json","sponsors.0.bioguideId":"V000133","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/489/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/489/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","bill.sponsors.0.bioguideId":"S001196","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/489/text?format=json","bill.updateDate":"2025-01-03T04:42:36Z","updateDate":"2024-07-24T15:24:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/489/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","request.billNumber":"489","subjects.url":"https://api.congress.gov/v3/bill/118/hr/489/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/489/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:36Z","title":"Expedited Removal Codification Act of 2023","bill.title":"Protecting Rural Access to Care Act","bill.number":"489","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/489/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/489/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/489/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elise","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/489/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/489/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/489?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 489.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\n[Page H233]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":21,"sponsors.0.firstName":"Jefferson","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/489/text?format=json","bill.sponsors.0.lastName":"Stefanik"}} +{"type":"node","id":"9276","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/574/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steube","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/574/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"574","bill.cosponsors.countIncludingWithdrawnCosponsors":36,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 574.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Sections 7 & 8\nof Article I of the United States Constitution and Amendment\nXVI of the United States Constitution.\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/574/cosponsors?format=json","sponsors.0.bioguideId":"S001214","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/574/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-03","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.sponsors.0.bioguideId":"M001160","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":18,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/574/text?format=json","bill.updateDate":"2025-01-03T04:43:08Z","updateDate":"2024-07-24T15:23:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/574/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","request.billNumber":"574","subjects.url":"https://api.congress.gov/v3/bill/118/hr/574/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/574/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:08Z","title":"Protecting Dogs Subjected to Experiments Act","bill.title":"Earned Income and Child Tax Credits Outreach Act of 2021","bill.number":"574","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/574/committees?format=json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/574/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/574/summaries?format=json","bill.cosponsors.count":36,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gwen","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/574/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/574/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/574?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 574.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Untied States Constitution\n[Page H430]\n","sponsors.0.district":17,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":4,"sponsors.0.firstName":"W.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/574/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"9277","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/590/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Barragan","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/590/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"590","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POSEY:\nH.R. 590.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution to\n``provide for the common defense and general welfare of the\nUnited States.''\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/590/cosponsors?format=json","sponsors.0.bioguideId":"B001300","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/590/actions?format=json","latestAction.actionDate":"2023-01-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/590/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Barragan, Nanette Diaz [D-CA-44]","bill.sponsors.0.bioguideId":"P000599","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/590/text?format=json","bill.updateDate":"2025-01-03T04:43:38Z","updateDate":"2025-01-06T23:41:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/590/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001300?format=json","request.billNumber":"590","subjects.url":"https://api.congress.gov/v3/bill/118/hr/590/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/590/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:38Z","title":"Ensuring Kids Have Access to Medically Necessary Dental Care Act","bill.title":"RAM Act of 2021","bill.number":"590","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/590/committees?format=json","sponsors.0.middleName":"Diaz","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/590/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/590/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/590/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/590/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/590?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BARRAGAN:\nH.R. 590.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis bill modifies dental coverage under the Children's\nHealth Insurance Program (CHIP).\n[Page H490]\n","sponsors.0.district":44,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Nanette","bill.type":"HR","updateDateIncludingText":"2025-01-06T23:41:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/590/text?format=json","bill.sponsors.0.lastName":"Posey"}} +{"type":"node","id":"9278","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzalez-Colon","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/600/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"R","number":"600","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHRADER:\nH.R. 600.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 8, cl. 18;\n[Page H253]\n","sponsors.0.bioguideId":"G000582","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/600/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-01","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rescom. González-Colón, Jenniffer [R-PR-At Large]","bill.sponsors.0.bioguideId":"S001180","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Schrader, Kurt [D-OR-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/600/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/600/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","request.billNumber":"600","committees.url":"https://api.congress.gov/v3/bill/118/hr/600/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/600/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"To waive certain provisions in the case of an emergency declaration under the Robert T. Stafford Disaster Relief and Emergency Assistance Act.","bill.title":"Presidential Inaugural Committee Oversight Act","bill.number":"600","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/600/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/600/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/600/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001180?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kurt","sponsors.0.state":"PR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/600/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/600/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/600?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. GONZALEZ-COLON:\nH.R. 600.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section I of the U.S. Constitution\n``All legislative Powers herein granted shall be vested in\na Congress of the United States, which shall consist of a\nSenate and a House of Representatives.''\nArticle I, Section 18, Clause 18 of the U.S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall he necessary and proper for carrying into\nExecution of the foregoing Powers, and all other Powers\nvested by this Constitution in the Government of the United\nStates, or any Department or Officer thereof.''\n[Page H490]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jenniffer","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/600/text?format=json","bill.sponsors.0.lastName":"Schrader"}} +{"type":"node","id":"9279","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/557/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hill","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/557/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"557","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 557.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/557/cosponsors?format=json","sponsors.0.bioguideId":"H001072","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/557/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/557/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","bill.sponsors.0.bioguideId":"L000589","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/557/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/557/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/557/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","request.billNumber":"557","committees.url":"https://api.congress.gov/v3/bill/118/hr/557/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/557/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"International Financial Institutions Governance Act of 2023","bill.title":"Make Education Local Act of 2021","bill.number":"557","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/557/committees?format=json","sponsors.0.middleName":"French","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/557/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/557/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"AR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/557/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/557/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/557?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 557.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nInternational Financial Institutions.\n[Page H429]\n","sponsors.0.district":2,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":8,"sponsors.0.firstName":"J.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/557/text?format=json","bill.sponsors.0.lastName":"Lesko"}} +{"type":"node","id":"9280","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/603/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gottheimer","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Education","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/603/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"C. \"Bobby\"","number":"603","bill.cosponsors.countIncludingWithdrawnCosponsors":202,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT of Virginia:\nH.R. 603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/603/cosponsors?format=json","sponsors.0.bioguideId":"G000583","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/603/actions?format=json","latestAction.actionDate":"2023-01-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/603/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","bill.sponsors.0.bioguideId":"S000185","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":183,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/603/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Scott, Robert C. \"Bobby\" [D-VA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/603/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/603/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","request.billNumber":"603","committees.url":"https://api.congress.gov/v3/bill/118/hr/603/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/603/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"HEAL Act","bill.title":"Raise the Wage Act of 2021","bill.number":"603","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":183,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/603/committees?format=json","sponsors.0.middleName":"C. \"Bobby\"","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/603/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/603/summaries?format=json","bill.cosponsors.count":202,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000185?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/603/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/603/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/603?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all laws that\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all powers vested by this Constitution\nin the government of the United States, or in any department\nor officer thereof.\n[Page H490]\n","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/603/text?format=json","bill.sponsors.0.lastName":"Scott"}} +{"type":"node","id":"9281","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/497/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Duncan","bill.latestAction.actionDate":"2021-01-28","cboCostEstimates.0.pubDate":"2023-01-30T18:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/497/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"497","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/497/cosponsors?format=json","sponsors.0.bioguideId":"D000615","bill.subjects.count":20,"actions.url":"https://api.congress.gov/v3/bill/118/hr/497/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/497/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":3,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":5,"cosponsors.count":75,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/497/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/497/text?format=json","bill.updateDate":"2025-01-03T04:43:07Z","updateDate":"2024-12-21T09:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/497/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","request.billNumber":"497","subjects.url":"https://api.congress.gov/v3/bill/118/hr/497/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/497/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:07Z","title":"Freedom for Health Care Workers Act","bill.title":"To prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization.","bill.number":"497","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As introduced on January 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":75,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58922","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/497/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-01-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/497/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/497/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 497, Freedom for Healthcare Workers Act","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/497/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/497/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/497?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nSingle Subject Statement:\nThis legislation eliminates the COVID-19 Vaccine mandate on\nhealth care providers furnishing items and services under\ncertain Federal health care programs.\n[Page H324]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Jeff","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/497/text?format=json","bill.sponsors.0.lastName":"Arrington"}} +{"type":"node","id":"9282","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/504/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Burgess","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/504/summaries?format=json","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H521)","bill.summaries.count":1,"sponsors.0.party":"R","number":"504","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 504.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/504/cosponsors?format=json","sponsors.0.bioguideId":"B001248","bill.subjects.count":21,"actions.url":"https://api.congress.gov/v3/bill/118/hr/504/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","bill.sponsors.0.bioguideId":"B001301","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/504/text?format=json","bill.updateDate":"2025-01-03T04:43:09Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/504/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","request.billNumber":"504","subjects.url":"https://api.congress.gov/v3/bill/118/hr/504/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/504/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:09Z","title":"REACT Act","bill.title":"To direct the Secretary of State to establish a unit within the Office of the Inspector General to audit United States contributions to multilateral and international organizations, and for other purposes.","bill.number":"504","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/504/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","sponsors.0.middleName":"C.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/504/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/504/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jack","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/504/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/504/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/504?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 504.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nBy Mr. COHEN\nH.R. 505.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H324]\n","sponsors.0.district":26,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":1,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/504/text?format=json","bill.sponsors.0.lastName":"Bergman"}} +{"type":"node","id":"9283","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/624/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/624/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"624","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WILSON of South Carolina:\nH.R. 624.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/624/cosponsors?format=json","sponsors.0.bioguideId":"C001103","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/624/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/624/relatedbills?format=json","latestAction.actionDate":"2023-01-30","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","bill.sponsors.0.bioguideId":"W000795","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/624/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wilson, Joe [R-SC-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/624/text?format=json","bill.updateDate":"2025-01-03T04:43:26Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/624/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","request.billNumber":"624","subjects.url":"https://api.congress.gov/v3/bill/118/hr/624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/624/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:26Z","title":"Recognizing Victims of Illicit Fentanyl Poisoning Act","bill.title":"Parris Island Protection Act","bill.number":"624","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/624/committees?format=json","request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/624/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/624/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000795?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/624/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/624/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/624?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 624.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution\n[Page H510]\n","sponsors.0.district":1,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":2,"sponsors.0.firstName":"Earl","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/624/text?format=json","bill.sponsors.0.lastName":"Wilson"}} +{"type":"node","id":"9284","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/618/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Walberg","bill.latestAction.actionDate":"2021-01-28","cboCostEstimates.0.pubDate":"2024-06-18T20:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/618/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 472.","bill.summaries.count":1,"sponsors.0.party":"R","number":"618","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VARGAS:\nH.R. 618.\nCongress has the power to enact this legislation pursuant\nto the following:\n(1) To regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes, as enumerated\nin Article 1, Section 8, Clause 3 of the U.S. Constitution;\n(2) To make all laws necessary and proper for executing\npowers vested by the Constitution in the Government of the\nUnited States, as enumerated in Article I, Section 8, Clause\n18 of the United States Constitution.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/618/cosponsors?format=json","sponsors.0.bioguideId":"W000798","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/618/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/618/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-05","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","bill.sponsors.0.bioguideId":"V000130","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":55,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-571","bill.sponsors.0.fullName":"Rep. Vargas, Juan [D-CA-51]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/618/text?format=json","bill.updateDate":"2025-01-03T04:43:29Z","updateDate":"2025-02-15T21:26:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/618/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","request.billNumber":"618","subjects.url":"https://api.congress.gov/v3/bill/118/hr/618/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/618/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:29Z","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","bill.title":"Promoting Access to Credit for Homebuyers Act of 2021","bill.number":"618","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60427","cosponsors.countIncludingWithdrawnCosponsors":55,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/618/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/571?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/618/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/618/summaries?format=json","bill.cosponsors.count":7,"cboCostEstimates.0.title":"H.R. 618, Improving Access to Workers’ Compensation for Injured Federal Workers Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000130?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Juan","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/618/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/618/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/618?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 618.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nTo amend chapter 81 of title 5, United States Code, to\ncover, for purposes of workers' compensation under such\nchapter, services by physician assistants and nurse\npractitioners provided to injured Federal workers, and for\nother purposes.\n[Page H510]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":51,"sponsors.0.firstName":"Tim","bill.type":"HR","updateDateIncludingText":"2025-02-15T21:26:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/618/text?format=json","bill.sponsors.0.lastName":"Vargas"}} +{"type":"node","id":"9285","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/622/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"BLUMENAUER","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/622/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"622","bill.cosponsors.countIncludingWithdrawnCosponsors":111,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WATSON COLEMAN:\nH.R. 622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/622/cosponsors?format=json","sponsors.0.bioguideId":"B000574","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/622/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-01","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","bill.sponsors.0.bioguideId":"W000822","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Watson Coleman, Bonnie [D-NJ-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/622/text?format=json","bill.updateDate":"2025-01-03T04:43:18Z","updateDate":"2024-07-24T15:23:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/622/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","request.billNumber":"622","committees.url":"https://api.congress.gov/v3/bill/118/hr/622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/622/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:18Z","title":"REAL House Act","bill.title":"Officer Brian D. Sicknick Congressional Gold Medal Act","bill.number":"622","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/622/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/622/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/622/summaries?format=json","bill.cosponsors.count":111,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000822?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bonnie","sponsors.0.state":"OR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/622/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/622/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/622?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 2, Clause 3\nThe single subject of this legislation is:\nThis legislation expands the voting membership of the U.S.\nHouse of Representatives.\n[Page H510]\n","sponsors.0.district":3,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":12,"sponsors.0.firstName":"EARL","bill.type":"HR","updateDateIncludingText":"2025-01-09T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/622/text?format=json","bill.sponsors.0.lastName":"Watson Coleman"}} +{"type":"node","id":"9286","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/535/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Connolly","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/535/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"535","bill.cosponsors.countIncludingWithdrawnCosponsors":31,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARAMENDI:\nH.R. 535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/535/cosponsors?format=json","sponsors.0.bioguideId":"C001078","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/535/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/535/relatedbills?format=json","latestAction.actionDate":"2023-01-26","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","bill.sponsors.0.bioguideId":"G000559","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/535/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garamendi, John [D-CA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/535/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:24:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/535/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","request.billNumber":"535","subjects.url":"https://api.congress.gov/v3/bill/118/hr/535/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/535/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Defending Ukraine’s Territorial Integrity Act","bill.title":"Special Districts Provide Essential Services Act","bill.number":"535","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/535/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/535/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/535/summaries?format=json","bill.cosponsors.count":31,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000559?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"John","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/535/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/535/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/535?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nForeign Affairs--To counter Russian influence and\naggression in Ukraine.\n[Page H429]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Gerald","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/535/text?format=json","bill.sponsors.0.lastName":"Garamendi"}} +{"type":"node","id":"9287","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/549/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Garbarino","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Social Welfare","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/549/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"549","bill.cosponsors.countIncludingWithdrawnCosponsors":20,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/549/cosponsors?format=json","sponsors.0.bioguideId":"G000597","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/549/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/549/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","bill.sponsors.0.bioguideId":"K000391","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":272,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/549/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-21T09:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/549/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","request.billNumber":"549","subjects.url":"https://api.congress.gov/v3/bill/118/hr/549/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/549/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Metastatic Breast Cancer Access to Care Act","bill.title":"STOP Bullying Act","bill.number":"549","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":272,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/549/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/549/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/549/summaries?format=json","bill.cosponsors.count":20,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/549/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/549/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/549?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.R. 549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\n[Page H429]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/549/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}} +{"type":"node","id":"9288","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/583/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"583","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/583/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/583/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/583/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/583/text?format=json","bill.updateDate":"2025-01-03T04:43:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"583","committees.url":"https://api.congress.gov/v3/bill/118/hr/583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:27Z","title":"American Shores Protection Act of 2023","bill.title":"Green Bus Tax Credit Act of 2021","bill.number":"583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/583/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/583/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/583/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/583/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/583?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nNatural Resources\n[Page H430]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/583/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"9289","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/606/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ISSA","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/606/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"606","bill.cosponsors.countIncludingWithdrawnCosponsors":67,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Missouri:\nH.R. 606.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/606/cosponsors?format=json","sponsors.0.bioguideId":"I000056","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/606/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","bill.sponsors.0.bioguideId":"S001195","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":67,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Jason [R-MO-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/606/text?format=json","bill.updateDate":"2025-01-03T04:43:24Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/606/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","request.billNumber":"606","committees.url":"https://api.congress.gov/v3/bill/118/hr/606/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/606/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:24Z","title":"No Track No Tax Act of 2023","bill.title":"No Abortion Bonds Act","bill.number":"606","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":67,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/606/committees?format=json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/606/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/606/summaries?format=json","bill.cosponsors.count":67,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001195?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/606/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/606/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/606?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 606.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the US Constitution\nThe single subject of this legislation is:\nTo prohibit the use of Federal funds to study, propose,\nestablish, implement, or enforce any mileage tax, including\nthrough the funding of a mileage tracking program.\n[Page H490]\n","sponsors.0.district":48,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":8,"sponsors.0.firstName":"DARRELL","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/606/text?format=json","bill.sponsors.0.lastName":"Smith"}} +{"type":"node","id":"9290","labels":["Bill"],"properties":{"relatedBills.count":6,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/605/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hill","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/605/summaries?format=json","bill.relatedBills.count":6,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"605","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Missouri:\nH.R. 605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution of the\nUnited States.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/605/cosponsors?format=json","sponsors.0.bioguideId":"H001072","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/605/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/605/relatedbills?format=json","latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","bill.sponsors.0.bioguideId":"S001195","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/605/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Jason [R-MO-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/605/text?format=json","bill.updateDate":"2025-01-03T04:43:25Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/605/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","request.billNumber":"605","committees.url":"https://api.congress.gov/v3/bill/118/hr/605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/605/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:25Z","title":"Special Drawing Rights Oversight Act of 2023","bill.title":"Student Empowerment Act","bill.number":"605","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/605/committees?format=json","request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/605/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/605/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001195?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"AR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/605/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/605/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/605?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nSpecial Drawing Rights Act\n[Page H490]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":8,"sponsors.0.firstName":"J.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/605/text?format=json","bill.sponsors.0.lastName":"Smith"}} +{"type":"node","id":"9291","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/573/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steube","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/573/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"573","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 573.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/573/cosponsors?format=json","sponsors.0.bioguideId":"S001214","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/573/actions?format=json","latestAction.actionDate":"2023-02-03","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/573/relatedbills?format=json","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.sponsors.0.bioguideId":"M001160","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/573/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/573/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/573/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","request.billNumber":"573","committees.url":"https://api.congress.gov/v3/bill/118/hr/573/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/573/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"CASE–IT Act","bill.title":"Family Poverty is Not Child Neglect Act","bill.number":"573","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/573/committees?format=json","request.format":"json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/573/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/573/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gwen","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/573/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/573/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/573?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 573.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H430]\n","sponsors.0.district":17,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":4,"sponsors.0.firstName":"W.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/573/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"9292","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/566/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/566/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"566","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 566.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution:\nCongress has the power ``to regulate Commerce with foreign\nnations, and among the several states, and with the Indian\nTribes.''\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/566/cosponsors?format=json","sponsors.0.bioguideId":"N000026","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/566/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/566/relatedbills?format=json","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"M001208","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/566/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/566/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/566/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"566","committees.url":"https://api.congress.gov/v3/bill/118/hr/566/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/566/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"China Lied People Died Act","bill.title":"To amend section 105(a) of the Child Abuse Prevention and Treatment Act to authorize the Secretary of Health and Human Services to award a grant to a nonprofit entity for a national child abuse hotline.","bill.number":"566","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/566/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","sponsors.0.middleName":"E.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/566/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/566/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lucy","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/566/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/566/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/566?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 566.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H430]\n","sponsors.0.district":22,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/566/text?format=json","bill.sponsors.0.lastName":"McBath"}} +{"type":"node","id":"9293","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/613/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Torres","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Civil Rights and Liberties, Minority Issues","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/613/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"613","bill.cosponsors.countIncludingWithdrawnCosponsors":106,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1. The Congress shall have\nPower To lay and collect Taxes, Duties, Imposts and Excises,\nto pay the Debts and provide for the common Defence and\ngeneral Welfare of the United States; but all Duties, Imposts\nand Excises shall be uniform throughout the United States\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/613/cosponsors?format=json","sponsors.0.bioguideId":"T000486","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/613/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/613/text?format=json","bill.updateDate":"2025-01-03T04:43:25Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/613/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","request.billNumber":"613","subjects.url":"https://api.congress.gov/v3/bill/118/hr/613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/613/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:25Z","title":"Wayne Ford Racial Impact Statement Act of 2023","bill.title":"SALT Deductibility Act","bill.number":"613","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/613/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/613/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/613/summaries?format=json","bill.cosponsors.count":106,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/613/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/613/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/613?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H491]\n","sponsors.0.district":15,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ritchie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/613/text?format=json","bill.sponsors.0.lastName":"Suozzi"}} +{"type":"node","id":"9294","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"Hoeven","cboCostEstimates.0.pubDate":"2021-11-05T15:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-335.","policyArea.name":"Energy","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"989","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/989/cosponsors?format=json","sponsors.0.bioguideId":"H001061","laws.0.number":"117-335","actions.url":"https://api.congress.gov/v3/bill/118/s/989/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/989/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-27","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","amendments.url":"https://api.congress.gov/v3/bill/117/s/989/amendments?format=json","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-46","textVersions.url":"https://api.congress.gov/v3/bill/118/s/989/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"989","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/989/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/989/committees?format=json","title":"North American Energy Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nAugust 4, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57568","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-01-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/46?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/989/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/989/summaries?format=json","cboCostEstimates.0.title":"S. 989, Native American Language Resource Center Act of 2021","introducedDate":"2023-03-27","subjects.count":1,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/989?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9295","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5329/text?format=json","relatedBills.count":2,"updateDate":"2024-12-17T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"5329","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Became Public Law No: 117-362.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5329/subjects?format=json","policyArea.name":"Agriculture and Food","committees.url":"https://api.congress.gov/v3/bill/118/s/5329/committees?format=json","title":"FIGHTING for America Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5329","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5329/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5329/titles?format=json","laws.0.number":"117-362","summaries.url":"https://api.congress.gov/v3/bill/117/s/5329/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5329/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5329/relatedbills?format=json","latestAction.actionDate":"2024-11-14","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"cosponsors.count":5,"introducedDate":"2024-11-14","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5329?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-18T17:27:14Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9296","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5328/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"5328","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Became Public Law No: 117-361.","committees.url":"https://api.congress.gov/v3/bill/118/s/5328/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/s/5328/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to direct the Secretary of Commerce to submit to Congress a report containing an assessment of the value, cost, and feasibility of a trans-Atlantic submarine fiber optic cable connecting the contiguous United States, the United States Virgin Islands, Ghana, and Nigeria.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"5328","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5328/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5328/titles?format=json","laws.0.number":"117-361","summaries.url":"https://api.congress.gov/v3/bill/117/s/5328/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5328/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5328/relatedbills?format=json","latestAction.actionDate":"2024-11-14","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":2,"cosponsors.count":1,"introducedDate":"2024-11-14","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5328?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9297","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5168/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"5168","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Became Public Law No: 117-360.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5168/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5168/committees?format=json","policyArea.name":"Immigration","title":"Judiciary Accountability Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","sponsors.0.middleName":"K.","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5168/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5168/titles?format=json","laws.0.number":"117-360","summaries.url":"https://api.congress.gov/v3/bill/117/s/5168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5168/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5168/relatedbills?format=json","latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5168?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-09T01:57:48Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9298","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5087/text?format=json","updateDate":"2024-11-04T14:38:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"5087","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Became Public Law No: 117-359.","policyArea.name":"Housing and Community Development","committees.url":"https://api.congress.gov/v3/bill/118/s/5087/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5087/subjects?format=json","type":"S","title":"Tenants’ Right to Organize Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5087","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-01-05","summaries.count":4,"amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5087/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5087/titles?format=json","laws.0.number":"117-359","summaries.url":"https://api.congress.gov/v3/bill/117/s/5087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5087/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/5087/amendments?format=json","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5087?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-04T14:38:58Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5066/text?format=json","updateDate":"2024-09-25T02:53:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"5066","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Became Public Law No: 117-358.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5066/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5066/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"No Taxation Without Representation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5066","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5066/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5066/titles?format=json","laws.0.number":"117-358","summaries.url":"https://api.congress.gov/v3/bill/117/s/5066/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5066/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-17","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":3,"introducedDate":"2024-09-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5066?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-03-07T17:27:15Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9300","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5016/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"5016","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Became Public Law No: 117-357.","committees.url":"https://api.congress.gov/v3/bill/118/s/5016/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5016/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Combat Chinese Economic Aggression Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5016","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5016/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5016/titles?format=json","laws.0.number":"117-357","summaries.url":"https://api.congress.gov/v3/bill/117/s/5016/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5016/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5016/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2024-09-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5016?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9301","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-356.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4978","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4978/cosponsors?format=json","sponsors.0.bioguideId":"L000571","laws.0.number":"117-356","actions.url":"https://api.congress.gov/v3/bill/118/s/4978/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4978/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4978/amendments?format=json","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4978/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4978","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4978/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4978/committees?format=json","title":"No American Land for Communist China Act","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4978/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4978/summaries?format=json","introducedDate":"2024-08-01","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4978?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T19:00:46Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9302","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Soto","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-355.","policyArea.name":"Armed Forces and National Security","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"4949","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4949/cosponsors?format=json","sponsors.0.bioguideId":"S001200","laws.0.number":"117-355","actions.url":"https://api.congress.gov/v3/bill/118/hr/4949/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4949/relatedbills?format=json","sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","titles.count":3,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4949/text?format=json","updateDate":"2024-06-21T16:18:59Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"4949","sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4949/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4949/committees?format=json","title":"Don Young Veterans Advancing Conservation Act","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4949/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4949/summaries?format=json","introducedDate":"2023-07-26","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4949?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SOTO:\nH.R. 4949.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution.\nThe single subject of this legislation is:\nVeteran conservation grant training program.\n[Page H4033]\n","sponsors.0.district":9,"sponsors.0.firstName":"Darren","updateDateIncludingText":"2024-06-21T16:18:59Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9303","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Massie","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-354.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4926","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","sponsors.0.bioguideId":"M001184","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4926/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4926/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4926/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4926/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","request.billNumber":"4926","committees.url":"https://api.congress.gov/v3/bill/118/hr/4926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4926/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"Members of Congress Pension Opt Out Clarification Act","bill.title":"LEAVE Act","bill.number":"4926","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4926/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4926/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4926/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4926/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4926?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFiscal Reform\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4926/text?format=json","bill.sponsors.0.lastName":"Speier"}} +{"type":"node","id":"9304","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Burlison","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-334.","policyArea.name":"Taxation","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"450","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/450/cosponsors?format=json","sponsors.0.bioguideId":"B001316","laws.0.number":"117-334","actions.url":"https://api.congress.gov/v3/bill/118/hr/450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/450/relatedbills?format=json","sponsors.0.fullName":"Rep. Burlison, Eric [R-MO-7]","amendments.url":"https://api.congress.gov/v3/bill/117/s/450/amendments?format=json","titles.count":3,"cosponsors.count":12,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/450/text?format=json","updateDate":"2024-06-11T16:14:44Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"450","sponsors.0.url":"https://api.congress.gov/v3/member/B001316?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/450/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/450/committees?format=json","title":"Repeal the NFA Act","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"Mauze","latestAction_actionDate":"2023-01-05","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/450/summaries?format=json","introducedDate":"2023-01-24","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/450?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-06-11T16:14:44Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9305","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4439/text?format=json","relatedBills.count":2,"updateDate":"2024-08-05T16:12:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"4439","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Became Public Law No: 117-353.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/4439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4439/committees?format=json","type":"S","title":"Transparency in Debt Issuance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4439","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4439/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4439/titles?format=json","laws.0.number":"117-353","summaries.url":"https://api.congress.gov/v3/bill/117/s/4439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4439/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4439?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-05T16:12:59Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4411/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4411","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Became Public Law No: 117-352.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4411/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4411/committees?format=json","policyArea.name":"Energy","title":"REDUCE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S3886)","sponsors.0.party":"D","number":"4411","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4411/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4411/titles?format=json","laws.0.number":"117-352","summaries.url":"https://api.congress.gov/v3/bill/117/s/4411/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4411/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4411/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4411?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-03T20:51:24Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9307","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-351.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"4240","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4240/cosponsors?format=json","sponsors.0.bioguideId":"C001095","laws.0.number":"117-351","actions.url":"https://api.congress.gov/v3/bill/118/s/4240/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4240/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-02","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4240/amendments?format=json","titles.count":3,"cosponsors.count":21,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4240/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4240","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4240/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4240/committees?format=json","title":"No Bailouts for Campus Criminals Act","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4240/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4240/summaries?format=json","introducedDate":"2024-05-02","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4240?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9308","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-350.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4120","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4120/cosponsors?format=json","sponsors.0.bioguideId":"C001070","laws.0.number":"117-350","actions.url":"https://api.congress.gov/v3/bill/118/s/4120/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4120/relatedbills?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4120/amendments?format=json","titles.count":3,"cosponsors.count":25,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4120/text?format=json","updateDate":"2024-11-09T01:28:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4120","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4120/subjects?format=json","title":"Long-Term Care Workforce Support Act","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4120/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4120/summaries?format=json","introducedDate":"2024-04-15","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4120?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-11-09T01:28:27Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9309","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Buchanan","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-349.","policyArea.name":"Health","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"4104","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4104/cosponsors?format=json","sponsors.0.bioguideId":"B001260","laws.0.number":"117-349","actions.url":"https://api.congress.gov/v3/bill/118/hr/4104/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4104/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4104/amendments?format=json","titles.count":3,"cosponsors.count":27,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-287","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4104/text?format=json","updateDate":"2024-12-20T09:06:18Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":6,"request.billNumber":"4104","sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4104/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4104/committees?format=json","title":"Preserving Patient Access to Home Infusion Act","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-01-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/287?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4104/summaries?format=json","introducedDate":"2023-06-14","subjects.count":6,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4104?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 4104.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. 1, Sec. 8\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to clarify\ncongressional intent and preserve patient access to home\ninfusion therapy under the Medicare program\n[Page H2933]\n","sponsors.0.district":16,"sponsors.0.firstName":"Vern","updateDateIncludingText":"2024-12-20T09:06:18Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9310","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-348.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3949","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3949/cosponsors?format=json","sponsors.0.bioguideId":"B001320","laws.0.number":"117-348","actions.url":"https://api.congress.gov/v3/bill/118/s/3949/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3949/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3949/amendments?format=json","titles.count":3,"cosponsors.count":9,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3949/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3949","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3949/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3949/committees?format=json","title":"Pride In Mental Health Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3949/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3949/summaries?format=json","introducedDate":"2024-03-14","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3949?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9311","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2024-08-12T18:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-347.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-201.","sponsors.0.party":"R","number":"3946","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3946/cosponsors?format=json","sponsors.0.bioguideId":"C001098","laws.0.number":"118-201","actions.url":"https://api.congress.gov/v3/bill/118/s/3946/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3946/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3946/amendments?format=json","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3946/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"3946","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3946/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3946/committees?format=json","title":"A bill to designate the facility of the United States Postal Service located at 1106 Main Street in Bastrop, Texas, as the \"Sergeant Major Billy D. Waugh Post Office\".","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60622","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3946/summaries?format=json","cboCostEstimates.0.title":"S. 3946, a bill to designate the facility of the United States Postal Service located at 1106 Main Street in Bastrop, Texas, as the “Sergeant Major Billy D. Waugh Post Office”","introducedDate":"2024-03-14","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3946?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9312","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-346.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3773","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8 Clause 3--Commerce clause\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3773/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3773/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3773/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3773/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Stop Anti-Semitism on College Campuses Act","bill.title":"PACT Act of 2021","bill.number":"3773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3773/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3773/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3773?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to prohibit\ninstitutions of higher education that authorize Anti-Semitic\nevents on campus from participating in the student loan and\ngrant programs under title IV of such Act.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3773/text?format=json","bill.sponsors.0.lastName":"Joyce"}} +{"type":"node","id":"9313","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3519/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-345.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3519/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3519","bill.cosponsors.countIncludingWithdrawnCosponsors":95,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3519/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3519/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3519/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"L000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":121,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3519/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3519/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3519/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"3519","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3519/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3519/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Hot Foods Act of 2023","bill.title":"Stop Child Hunger Act of 2021","bill.number":"3519","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":121,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3519/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3519/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3519/summaries?format=json","bill.cosponsors.count":95,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3519/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3519/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3519?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nSNAP\n[Page H2459]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3519/text?format=json","bill.sponsors.0.lastName":"Levin"}} +{"type":"node","id":"9314","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3240/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"3240","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 620.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3240/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3240/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to require senior Department of State officials to maintain security clearances and to require the Secretary of State to notify Congress when the security clearances of such officials are suspended or revoked.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3240","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/243?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3240/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3240/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3240/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3240/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3240/relatedbills?format=json","latestAction.actionDate":"2023-11-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":2,"introducedDate":"2023-11-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3240?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:00:46Z","committeeReports.0.citation":"S. Rept. 117-243"}} +{"type":"node","id":"9315","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2022-11-16T20:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2510","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2510/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/2510/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2510/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2510/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2510","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2510/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2510/subjects?format=json","title":"RAPID Reserve Act","cboCostEstimates.0.description":"As ordered reported on June 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58783","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-12-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2510/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2510/summaries?format=json","cboCostEstimates.0.title":"S. 2510,\t Preventing HEAT Illness and Deaths Act of 2021","introducedDate":"2023-07-26","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2510?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9316","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2022-10-31T20:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 630.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4109","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4109/cosponsors?format=json","sponsors.0.bioguideId":"W000817","actions.url":"https://api.congress.gov/v3/bill/118/s/4109/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4109/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"cosponsors.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4109/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4109","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4109/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4109/subjects?format=json","title":"Blast Overpressure Safety Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on May 25, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58432","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4109/summaries?format=json","cboCostEstimates.0.title":"S. 4109, National R&D Strategy for Distributed Ledger Technology Act of 2022","introducedDate":"2024-04-11","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4109?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9317","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blackburn","cboCostEstimates.0.pubDate":"2022-09-26T21:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 629.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3817","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3817/cosponsors?format=json","sponsors.0.bioguideId":"B001243","actions.url":"https://api.congress.gov/v3/bill/118/s/3817/actions?format=json","latestAction.actionDate":"2024-02-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3817/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3817/text?format=json","updateDate":"2024-11-09T01:57:45Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3817","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3817/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3817/committees?format=json","title":"Safer Prisons Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58518","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3817/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3817/summaries?format=json","cboCostEstimates.0.title":"S. 3817, TORNADO Act","introducedDate":"2024-02-27","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3817?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:45Z"}} +{"type":"node","id":"9318","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4121/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4121","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 623.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4121/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4121/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"Solitary Confinement Reform Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4121","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-12","sponsors.0.middleName":"J.","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/246?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4121/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4121/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4121/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4121/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4121/relatedbills?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-04-15","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4121?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:28:28Z","committeeReports.0.citation":"S. Rept. 117-246"}} +{"type":"node","id":"9319","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Paul","cboCostEstimates.0.pubDate":"2024-07-31T19:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 488.","sponsors.0.party":"R","number":"3664","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3664/cosponsors?format=json","sponsors.0.bioguideId":"P000603","actions.url":"https://api.congress.gov/v3/bill/118/s/3664/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3664/relatedbills?format=json","latestAction.actionDate":"2024-09-09","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-210","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3664/text?format=json","updateDate":"2025-01-17T03:11:13Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"3664","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3664/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3664/subjects?format=json","title":"Royalty Transparency Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60589","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/210?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3664/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3664/summaries?format=json","cboCostEstimates.0.title":"S. 3664, Royalty Transparency Act","introducedDate":"2024-01-25","subjects.count":7,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3664?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-17T03:11:13Z"}} +{"type":"node","id":"9320","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-08-30T14:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3434","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3434/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3434/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3434/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3434/committees?format=json","title":"Incentivizing the Expansion of U.S. Ports Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58438","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3434/summaries?format=json","cboCostEstimates.0.title":"S. 3434, Strengthening Support for American Manufacturing Act","introducedDate":"2023-12-07","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9321","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Carson","cboCostEstimates.0.pubDate":"2022-11-21T16:39:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 618.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"D","number":"1538","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1538/cosponsors?format=json","sponsors.0.bioguideId":"C001072","actions.url":"https://api.congress.gov/v3/bill/118/hr/1538/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1538/relatedbills?format=json","latestAction.actionDate":"2023-03-10","sponsors.0.fullName":"Rep. Carson, Andre [D-IN-7]","titles.count":3,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-241","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1538/text?format=json","updateDate":"2024-12-21T09:05:53Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"1538","sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1538/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1538/subjects?format=json","title":"Emerging Business Encouragement Act of 2023","cboCostEstimates.0.description":"As ordered reported on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58809","request.format":"json","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/241?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1538/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1538/summaries?format=json","cboCostEstimates.0.title":"S. 1538, Smith River National Recreation Area Expansion Act","introducedDate":"2023-03-10","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1538?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARSON:\nH.R. 1538.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nTo amend the Small Business Act to provide for contracting\npreferences and other benefits for emerging business\nenterprises, and for other purposes.\n[Page H1280]\n","sponsors.0.district":7,"sponsors.0.firstName":"André","updateDateIncludingText":"2024-12-21T09:05:53Z"}} +{"type":"node","id":"9322","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Hassan","cboCostEstimates.0.pubDate":"2022-06-27T20:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 626.","policyArea.name":"Taxation","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3296","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3296/cosponsors?format=json","sponsors.0.bioguideId":"H001076","actions.url":"https://api.congress.gov/v3/bill/118/s/3296/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3296/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-14","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3296/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3296","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3296/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3296/subjects?format=json","title":"Upskilling and Retraining Assistance Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58257","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3296/summaries?format=json","cboCostEstimates.0.title":"S. 3296, TRANSLATE Act","introducedDate":"2023-11-14","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3296?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"9323","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2022-11-21T17:07:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 622.","policyArea.name":"Energy","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4080","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4080/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/4080/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4080/relatedbills?format=json","latestAction.actionDate":"2024-04-09","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-245","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4080/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4080","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4080/subjects?format=json","title":"A bill to require the Secretary of Energy to conduct a study and submit a report on national resource adequacy, and for other purposes.","cboCostEstimates.0.description":"As ordered reported on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58825","request.format":"json","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/245?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4080/summaries?format=json","cboCostEstimates.0.title":"S. 4080, Berryessa Snow Mountain National Monument Expansion Act","introducedDate":"2024-04-09","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4080?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9324","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3667/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3667","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 621.","committees.url":"https://api.congress.gov/v3/bill/118/s/3667/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3667/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Consumer Advocacy and Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3667","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/244?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3667/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3667/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3667/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3667/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-01-25","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3667?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z","committeeReports.0.citation":"S. Rept. 117-244"}} +{"type":"node","id":"9325","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2022-10-21T19:58:10Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 616.","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"4528","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4528/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/4528/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-12","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"cosponsors.count":9,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-238","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4528/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4528","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4528/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4528/subjects?format=json","title":"Marshall Walter Major Taylor Congressional Gold Medal Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58585","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/238?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4528/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4528/summaries?format=json","cboCostEstimates.0.title":"S. 4528, Improving Digital Identity Act of 2022","introducedDate":"2024-06-12","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4528?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9326","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2022-11-09T16:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 617.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4902","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4902/cosponsors?format=json","sponsors.0.bioguideId":"M001111","actions.url":"https://api.congress.gov/v3/bill/118/s/4902/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4902/relatedbills?format=json","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":4,"cosponsors.count":22,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-239","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4902/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4902","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4902/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4902/subjects?format=json","title":"BE HEARD in the Workplace Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":22,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58740","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/239?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4902/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4902/summaries?format=json","cboCostEstimates.0.title":"S. 4902, Invent Here, Make Here for Homeland Security Act","introducedDate":"2024-07-31","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4902?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9327","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-11-09T16:14:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 615.","policyArea.name":"Foreign Trade and International Finance","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3531","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3531/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3531/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3531/relatedbills?format=json","latestAction.actionDate":"2023-12-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":11,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-237","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3531/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3531","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3531/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3531/subjects?format=json","title":"Protect American Gun Exporters Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58722","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/237?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3531/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3531/summaries?format=json","cboCostEstimates.0.title":"S. 3531, National Climate Adaptation and Resilience Strategy Act of 2022","introducedDate":"2023-12-14","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3531?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9328","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Hassan","cboCostEstimates.0.pubDate":"2022-11-09T16:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"By Senator Peters from Committee on Homeland Security and Governmental Affairs filed written report. Report No. 117-240.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4399","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4399/cosponsors?format=json","sponsors.0.bioguideId":"H001076","actions.url":"https://api.congress.gov/v3/bill/118/s/4399/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4399/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-240","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4399/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4399","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4399/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4399/subjects?format=json","title":"Help Grandfamilies Prevent Child Abuse Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58726","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/240?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4399/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4399/summaries?format=json","cboCostEstimates.0.title":"S. 4399, All-American Flag Act","introducedDate":"2024-05-23","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4399?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9329","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5235/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"5235","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/5235/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5235/subjects?format=json","type":"S","title":"Fiscally Responsible Highway Funding Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"5235","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5235/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5235/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5235/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5235/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5235/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5235?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9330","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5236/text?format=json","updateDate":"2024-12-05T15:34:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"5236","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5236/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5236/committees?format=json","policyArea.name":"Health","title":"Keeping Obstetrics Local Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5236","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5236/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5236/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5236/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5236/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5236?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-12-05T15:34:27Z"}} +{"type":"node","id":"9331","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5237/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5237","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5237/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5237/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"No China in Index Funds Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"5237","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5237/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5237/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5237/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5237/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5237/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5237?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9332","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5234/text?format=json","relatedBills.count":1,"updateDate":"2024-11-05T15:36:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5234","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S7103-7104)","subjects.url":"https://api.congress.gov/v3/bill/118/s/5234/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5234/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protecting Endowments from Our Adversaries Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5234","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5234/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5234/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5234/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5234/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5234/relatedbills?format=json","latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5234?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-11-05T15:36:57Z"}} +{"type":"node","id":"9333","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5233/text?format=json","relatedBills.count":1,"updateDate":"2024-10-22T19:53:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5233","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S7103)","committees.url":"https://api.congress.gov/v3/bill/118/s/5233/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5233/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"No Capital Gains Allowance for American Adversaries Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5233","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5233/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5233/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/5233/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5233/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5233/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5233?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-10-22T19:53:51Z"}} +{"type":"node","id":"9334","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5085/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Helmy","sponsors.0.isByRequest":"N","request.billNumber":"5085","sponsors.0.url":"https://api.congress.gov/v3/member/H001097?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5085/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Justice for Trooper Werner Foerster Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"5085","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5085/cosponsors?format=json","sponsors.0.bioguideId":"H001097","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5085/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5085/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5085/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Helmy, George S. [D-NJ]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5085?format=json","sponsors.0.firstName":"George","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9335","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5084/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"5084","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5084/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5084/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Safe School Meals Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"5084","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5084/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5084/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5084/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5084/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5084?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9336","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5083/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"5083","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5083/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to amend the John D. Dingell, Jr. Conservation, Management, and Recreation Act to extend the Every Kid Outdoors program.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"5083","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5083/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5083/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5083/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":2,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5083?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9337","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5082/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"5082","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/5082/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/s/5082/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Regulations from the Executive in Need of Scrutiny Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"5082","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5082/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5082/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5082/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5082/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":3,"cosponsors.count":7,"introducedDate":"2024-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5082?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9338","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5081/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"5081","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6672)","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/5081/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5081/subjects?format=json","type":"S","title":"Arctic Research and Policy Amendments Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S6146-6147)","sponsors.0.party":"R","number":"5081","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5081/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5081/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5081/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5081/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5081/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5081?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9339","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5080/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"5080","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/5080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Postmaster General Reform Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5080","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5080/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5080/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5080/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2024-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5080?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9340","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5079/text?format=json","relatedBills.count":2,"updateDate":"2024-11-27T19:32:06Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Romney","sponsors.0.isByRequest":"N","request.billNumber":"5079","sponsors.0.url":"https://api.congress.gov/v3/member/R000615?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5079/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5079/committees?format=json","policyArea.name":"Taxation","title":"ERTC Repeal Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5079","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5079/cosponsors?format=json","sponsors.0.bioguideId":"R000615","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5079/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/5079/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5079/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5079/relatedbills?format=json","sponsors.0.fullName":"Sen. Romney, Mitt [R-UT]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5079?format=json","sponsors.0.firstName":"Mitt","updateDateIncludingText":"2024-11-27T19:32:06Z"}} +{"type":"node","id":"9341","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5078/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5078","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5078/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5078/committees?format=json","policyArea.name":"Housing and Community Development","title":"Homes Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5078/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5078/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5078/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5078?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9342","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5076/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"5076","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/5076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5076/committees?format=json","title":"Iran Internet Freedom Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"5076","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5076/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5076/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5076/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-17","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-09-17","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5076?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9343","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2022-10-24T20:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 543.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1009","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1009/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/1009/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1009/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-28","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-192","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1009/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1009","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1009/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1009/committees?format=json","title":"A bill to authorize the posthumous honorary promotion to general of Lieutenant General Frank Maxwell Andrews, United States Army.","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 14, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58590","request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/192?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1009/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1009/summaries?format=json","cboCostEstimates.0.title":"S. 1009, Homeland Procurement Reform Act","introducedDate":"2023-03-28","subjects.count":2,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1009?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9344","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"5077","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/5077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5077/subjects?format=json","type":"S","title":"Government Service Delivery Improvement Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5077","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5077/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5077/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5077/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5077?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9345","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Bennet","cboCostEstimates.0.pubDate":"2022-11-21T17:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"An errata sheet on written report No. 117-187 was printed.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3450","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3450/cosponsors?format=json","sponsors.0.bioguideId":"B001267","actions.url":"https://api.congress.gov/v3/bill/118/s/3450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3450/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-187,Errata","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3450/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"committeeReports.1.citation":"S. Rept. 117-187","request.billNumber":"3450","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3450/subjects?format=json","title":"Mental and Physical Health Care Comorbidities Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58823","request.format":"json","latestAction_actionDate":"2022-11-07","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/187?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3450/summaries?format=json","cboCostEstimates.0.title":"S. 3450, Sun River Hydropower Authorization Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/117/SRPT/187?format=json","introducedDate":"2023-12-07","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3450?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"9346","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2022-08-30T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 537.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5751-5761)","sponsors.0.party":"D","number":"3404","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3404/cosponsors?format=json","sponsors.0.bioguideId":"D000563","actions.url":"https://api.congress.gov/v3/bill/118/s/3404/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3404/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-186","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3404/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3404","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3404/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3404/committees?format=json","title":"Student Loan Borrower Bill of Rights","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58440","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/186?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3404/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3404/summaries?format=json","cboCostEstimates.0.title":"S. 3404, a bill to provide the consent of Congress to an amendment to the Constitution of the State of New Mexico","introducedDate":"2023-12-05","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3404?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9347","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Padilla","cboCostEstimates.0.pubDate":"2022-07-14T17:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"By Senator Cantwell from Committee on Commerce, Science, and Transportation filed written report under authority of the order of the Senate of 10/14/2022. Report No. 117-191.","policyArea.name":"Commerce","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3375","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3375/cosponsors?format=json","sponsors.0.bioguideId":"P000145","actions.url":"https://api.congress.gov/v3/bill/118/s/3375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3375/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-191","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3375/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3375","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3375/committees?format=json","title":"Accelerating Small Business Growth Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58298","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/191?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3375/summaries?format=json","cboCostEstimates.0.title":"S. 3375, Omnibus Travel and Tourism Act of 2021","introducedDate":"2023-11-30","subjects.count":7,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3375?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9348","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Van Hollen","cboCostEstimates.0.pubDate":"2022-05-24T21:28:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 542.","policyArea.name":"Emergency Management","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"977","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/977/cosponsors?format=json","sponsors.0.bioguideId":"V000128","actions.url":"https://api.congress.gov/v3/bill/118/s/977/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/977/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-27","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":4,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/977/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"977","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/977/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/977/subjects?format=json","title":"FIRE STATION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on May 5, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58141","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-10-18","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/977/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/977/summaries?format=json","cboCostEstimates.0.title":"S. 977, No Oil Producing and Exporting Cartels Act of 2021","introducedDate":"2023-03-27","subjects.count":8,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/977?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9349","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Heinrich","cboCostEstimates.0.pubDate":"2022-11-21T16:56:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 535.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"3185","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3185/cosponsors?format=json","sponsors.0.bioguideId":"H001046","actions.url":"https://api.congress.gov/v3/bill/118/s/3185/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3185/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-184","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3185/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3185","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3185/subjects?format=json","title":"Tribal Cultural Areas Protection Act","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58819","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-10-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/184?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3185/summaries?format=json","cboCostEstimates.0.title":"S. 3185,\t a bill to amend the Delaware Water Gap National Recreation Area Improvement Act to extend the exception to the closure of certain roads within the Recreation Area for local businesses, and for other purposes","introducedDate":"2023-11-01","subjects.count":13,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3185?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T18:13:01Z"}} +{"type":"node","id":"9350","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Fry","cboCostEstimates.0.pubDate":"2022-11-21T16:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 534.","policyArea.name":"Crime and Law Enforcement","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3141","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3141/cosponsors?format=json","sponsors.0.bioguideId":"F000478","actions.url":"https://api.congress.gov/v3/bill/118/hr/3141/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3141/relatedbills?format=json","latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. Fry, Russell [R-SC-7]","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-183","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3141/text?format=json","updateDate":"2024-07-24T15:22:17Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"3141","sponsors.0.url":"https://api.congress.gov/v3/member/F000478?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3141/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3141/committees?format=json","title":"Targeting Child Predators Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58818","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-10-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/183?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3141/summaries?format=json","cboCostEstimates.0.title":"S. 3141, New Philadelphia National Historical Park Act","introducedDate":"2023-05-09","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FRY:\nH.R. 3141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nPreventing child exploitation\n[Page H2173]\n","sponsors.0.district":7,"sponsors.0.firstName":"Russell","updateDateIncludingText":"2024-07-24T15:22:17Z"}} +{"type":"node","id":"9351","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Casey","cboCostEstimates.0.pubDate":"2022-11-21T17:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 541.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3685","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3685/cosponsors?format=json","sponsors.0.bioguideId":"C001070","actions.url":"https://api.congress.gov/v3/bill/118/s/3685/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3685/relatedbills?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-190","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3685/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3685","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3685/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3685/subjects?format=json","title":"Life Saving Leave Act","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58824","request.format":"json","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/190?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3685/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3685/summaries?format=json","cboCostEstimates.0.title":"S. 3685, John P. Parker House Study Act","introducedDate":"2024-01-30","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3685?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9352","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Casey","cboCostEstimates.0.pubDate":"2022-11-21T16:49:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 533.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2693","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2693/cosponsors?format=json","sponsors.0.bioguideId":"C001070","actions.url":"https://api.congress.gov/v3/bill/118/s/2693/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2693/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-182","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2693/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2693","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2693/subjects?format=json","title":"Family Violence Prevention and Services Improvement Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58815","request.format":"json","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/182?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2693/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2693/summaries?format=json","cboCostEstimates.0.title":"S. 2693, Salton Sea Projects Improvements Act","introducedDate":"2023-07-27","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2693?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9353","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1769/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Carper","sponsors.0.isByRequest":"N","request.billNumber":"1769","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 532.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1769/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1769/committees?format=json","policyArea.name":"Health","title":"KIDS Health Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1769","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-10-18","sponsors.0.middleName":"R.","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/181?format=json","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1769/cosponsors?format=json","sponsors.0.bioguideId":"C000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1769/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1769/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1769/relatedbills?format=json","sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","titles.count":4,"introducedDate":"2023-05-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1769?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-11-09T01:28:28Z","committeeReports.0.citation":"S. Rept. 117-181"}} +{"type":"node","id":"9354","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4872/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4872","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Housing, Transportation, and Community Development. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4872/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4872/committees?format=json","policyArea.name":"Sports and Recreation","title":"WAGER Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4872","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4872/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4872/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4872/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4872?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T18:59:41Z"}} +{"type":"node","id":"9355","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3441/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"3441","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Housing, Transportation, and Community Development. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3441/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3441/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Terrorist Financing Prevention Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"3441","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3441/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3441/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3441/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3441/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3441/relatedbills?format=json","latestAction.actionDate":"2024-02-08","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":3,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3441?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:24:11Z"}} +{"type":"node","id":"9356","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4892/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"4892","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4892/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4892/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"The First Responders Wellness Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4892","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4892/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4892/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4892/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4892/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4892?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"9357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4890/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4890","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4890/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4890/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Access to Small Business Investor Capital Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"4890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4890/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4890/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4890/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4890?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9358","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4889/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:11:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"4889","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4889/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4889/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Federal Jobs for STARs Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4889","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4889/cosponsors?format=json","sponsors.0.bioguideId":"B000944","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4889/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4889/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4889/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4889/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":2,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4889?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-01-17T03:11:17Z"}} +{"type":"node","id":"9359","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4888/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4888","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4888/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4888/committees?format=json","policyArea.name":"Immigration","type":"S","title":"A bill to include Czechia in the list of foreign states whose nationals are eligible for admission into the United States as E-1 nonimmigrants if United States nationals are treated similarly by the Government of Czechia.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4888","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4888/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4888/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4888/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4888/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4888/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4888?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"9360","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4887/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"4887","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4887/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4887/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"Continued Presence Improvement Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4887","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4887/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4887/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4887/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4887/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4887/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4887?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"9361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4886/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"4886","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4886/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4886/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"Native Arts and Culture Promotion Act","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"4886","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4886/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4886/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4886/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4886/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4886/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4886?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:13:01Z"}} +{"type":"node","id":"9362","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4283/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"4283","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4283/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4283/committees?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Alternatives to Guardianship Education Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4283","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4283/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4283/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4283/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4283/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4283/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-08","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":5,"introducedDate":"2024-05-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4283?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9363","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3867/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"3867","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3867/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3867/committees?format=json","policyArea.name":"Housing and Community Development","title":"Livable Communities Act of 2024","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"3867","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3867/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3867/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3867/relatedbills?format=json","latestAction.actionDate":"2024-03-12","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":5,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3867?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:24:12Z"}} +{"type":"node","id":"9364","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4883/text?format=json","updateDate":"2025-01-14T19:06:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"4883","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S4823)","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/4883/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4883/subjects?format=json","type":"S","title":"Unmasking Networks of Virtual Election Interference and Lies Act of 2024","latestAction.text":"Read twice and referred to the Select Committee on Intelligence.","sponsors.0.party":"R","number":"4883","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-09-19","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4883/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4883/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4883/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4883?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:06:24Z"}} +{"type":"node","id":"9365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4881/text?format=json","relatedBills.count":1,"updateDate":"2025-02-11T14:06:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"4881","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4881/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4881/committees?format=json","type":"S","title":"A bill to repeal the Military Selective Service Act.","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4881","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4881/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4881/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4881/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4881/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4881?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-02-11T14:06:28Z"}} +{"type":"node","id":"9366","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4880/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"4880","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4880/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4880/committees?format=json","policyArea.name":"Families","title":"Child Care Workforce Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4880","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-19","sponsors.0.middleName":"M.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4880/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4880/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4880/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4880/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4880/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4880?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9367","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4879/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:18:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4879","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S4823)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4879/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4879/committees?format=json","policyArea.name":"Health","title":"American Cures Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Appropriations. (text: CR S5685)","sponsors.0.party":"D","number":"4879","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4879/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4879/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4879/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4879/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4879/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4879?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:18:18Z"}} +{"type":"node","id":"9368","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4785/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"4785","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Became Public Law No: 117-177.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4785/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/s/4785/committees?format=json","type":"S","title":"Responsibility in Drug Advertising Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"4785","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-16","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4785/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4785/titles?format=json","laws.0.number":"117-177","summaries.url":"https://api.congress.gov/v3/bill/117/s/4785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4785/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4785/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-25","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-07-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4785?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9369","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Merkley","cboCostEstimates.0.pubDate":"2022-08-10T18:19:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-176.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"3103","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3103/cosponsors?format=json","sponsors.0.bioguideId":"M001176","laws.0.number":"117-176","actions.url":"https://api.congress.gov/v3/bill/118/s/3103/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3103/relatedbills?format=json","latestAction.actionDate":"2023-10-19","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3103/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3103","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3103/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3103/subjects?format=json","title":"Medical Debt Relief Act of 2023","cboCostEstimates.0.description":"As passed by the Senate on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58380","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-16","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3103/summaries?format=json","cboCostEstimates.0.title":"S. 3103, Eliminating Limits to Justice for Child Sex Abuse Victims Act of 2022","introducedDate":"2023-10-19","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3103?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9370","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4653/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4653","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 490.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4653/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4653/committees?format=json","policyArea.name":"Education","title":"Childcare Worker Opportunity Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4653","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-15","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4653/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4653/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4653/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4653/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4653/relatedbills?format=json","latestAction.actionDate":"2024-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4653?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9371","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4878/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4878","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4878/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4878/committees?format=json","policyArea.name":"Health","type":"S","title":"REMEDY Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5684-5685)","sponsors.0.party":"D","number":"4878","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4878/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4878/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4878/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4878/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4878/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4878?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9372","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4876/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"4876","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4876/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4876/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Summer Meals and Learning Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4876","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4876/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4876/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4876/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4876/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4876/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4876?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9373","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4875/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4875","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4875/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4875/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"NO FAKES Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4875","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4875/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4875/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4875/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4875/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4875/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4875?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"9374","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4661/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4661","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4661/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4661/committees?format=json","policyArea.name":"Economics and Public Finance","title":"Improper Payments Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"4661","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4661/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4661/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4661/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4661/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4661/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"cosponsors.count":6,"introducedDate":"2024-07-10","subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4661?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"9375","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4660/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4660","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4660/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4660/committees?format=json","policyArea.name":"Economics and Public Finance","title":"No Bias in the Baseline Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"4660","request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4660/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4660/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4660/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4660/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2024-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4660?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"9376","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4659/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4659","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4659/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4659/committees?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Debt-to-GDP Transparency and Stabilization Act","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"4659","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4659/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4659/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4659/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4659/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4659/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"cosponsors.count":3,"introducedDate":"2024-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4659?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"9377","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"4658","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Water Resources Development","committees.url":"https://api.congress.gov/v3/bill/118/s/4658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4658/subjects?format=json","type":"S","title":"A bill to provide for the ongoing presence of certain structures at the Table Rock Lake project.","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"4658","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4658/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4658/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4658/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4658/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4658?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9378","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4657/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"4657","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4657/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4657/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"CHIPS Training in America Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4657","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4657/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4657/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4657/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4657/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4657/relatedbills?format=json","latestAction.actionDate":"2024-07-10","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4657?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9379","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4655/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norman","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-10-20T19:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4655/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 265.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4655","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LARSEN of Washington:\nH.R. 4655.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1--All legislative power herein granted\nshall be vested in a Congress of the United States, which\nshall consist of a Senate and House of Representatives.\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4655/cosponsors?format=json","sponsors.0.bioguideId":"N000190","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4655/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-19","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","bill.sponsors.0.bioguideId":"L000560","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-326","bill.sponsors.0.fullName":"Rep. Larsen, Rick [D-WA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4655/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-09T04:56:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4655/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","request.billNumber":"4655","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4655/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4655/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Businesses Over Activists Act","bill.title":"American Workforce Investment in Next Generation of Students Act","bill.number":"4655","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59678","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4655/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/326?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/4655/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4655/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 4655, Businesses Over Activists Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000560?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"RICK","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4655/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4655/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4655?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 4655.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nWould amend the Securities Exchange Act of 1934 to prohibit\nthe Securities and Exchange Commission from compelling the\ninclusion or discussion of shareholder proposals or proxy or\nconsent solicitation materials, and for other purposes.\n[Page H3613]\n","sponsors.0.district":5,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ralph","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4655/text?format=json","bill.sponsors.0.lastName":"LARSEN"}} +{"type":"node","id":"9380","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4280/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4280","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4280/committees?format=json","policyArea.name":"Health","title":"Essential Caregivers Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4280","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4280/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4280/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4280/actions?format=json","latestAction.actionDate":"2024-05-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4280/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-05-08","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4280?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-12-17T12:03:18Z"}} +{"type":"node","id":"9381","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2024-12-11T19:43:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 679.","sponsors.0.party":"D","number":"4066","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4066/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/4066/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4066/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-09","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-276","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4066/text?format=json","updateDate":"2025-01-31T23:06:12Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"4066","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4066/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4066/subjects?format=json","title":"FIT Procurement Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 15, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61100","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/276?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4066/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4066/summaries?format=json","cboCostEstimates.0.title":"S. 4066, FIT Procurement Act","introducedDate":"2024-03-22","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4066?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-31T23:06:12Z"}} +{"type":"node","id":"9382","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4061/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"4061","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/4061/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4061/subjects?format=json","type":"S","title":"Veterans Assistance Helpline Act of 2024","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"4061","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4061/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4061/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4061/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4061/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4061/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":3,"introducedDate":"2024-03-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4061?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"9383","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4038/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4038","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/4038/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4038/committees?format=json","title":"CARE Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4038","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","sponsors.0.middleName":"R.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4038/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4038/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4038/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4038/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":4,"introducedDate":"2024-03-21","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4038?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9384","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3856/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"3856","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/3856/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3856/committees?format=json","type":"S","title":"Timber Harvesting Restoration Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"3856","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3856/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3856/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3856/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3856/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3856/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2024-02-29","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3856?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9385","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3769/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"3769","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3769/subjects?format=json","policyArea.name":"Families","type":"S","title":"Alternative Pathways to Child Abuse Prevention Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3769","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3769/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3769/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3769/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-08","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-02-08","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3769?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9386","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3740/text?format=json","updateDate":"2024-12-21T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3740","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3740/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3740/committees?format=json","policyArea.name":"Health","type":"S","title":"STRONGER Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3740","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3740/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3740/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3740/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3740/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3740/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3740?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-21T12:03:17Z"}} +{"type":"node","id":"9387","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3719/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"3719","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Environmental Protection","committees.url":"https://api.congress.gov/v3/bill/118/s/3719/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3719/subjects?format=json","type":"S","title":"Sound Science for Farmers Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"3719","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3719/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3719/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3719/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2024-02-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3719?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3543/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"3543","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3543/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3543/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Historic Greenwood District—Black Wall Street National Monument Establishment Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3543","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3543/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3543/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3543/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3543/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3543/relatedbills?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":3,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"18:25:58","titles.count":5,"introducedDate":"2023-12-14","cosponsors.count":6,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3543?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"9389","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3145/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3145","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3145/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3145/committees?format=json","policyArea.name":"Health","type":"S","title":"Improving Access to Addiction Medicine Providers Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3145","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3145/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3145/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3145/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3145/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3145/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-26","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-10-26","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3145?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9390","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4652/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LUCAS","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4652/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4652","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\n[Pages H3845-H3846]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIND:\nH.R. 4652.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[[Page H3846]]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4652/cosponsors?format=json","sponsors.0.bioguideId":"L000491","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4652/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4652/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-14","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","bill.sponsors.0.bioguideId":"K000188","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kind, Ron [D-WI-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4652/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-09T04:56:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4652/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","request.billNumber":"4652","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4652/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4652/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Public Company Advisory Committee Act of 2023","bill.title":"Training for Realtime Writers Act of 2021","bill.number":"4652","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4652/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-07-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4652/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4652/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000188?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"RON","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4652/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4652/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4652?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 4652.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof\nThe single subject of this legislation is:\nThis bill would create a Public Company Advisory Committee\nat the SEC.\n[Page H3613]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":3,"sponsors.0.firstName":"FRANK","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4652/text?format=json","bill.sponsors.0.lastName":"KIND"}} +{"type":"node","id":"9391","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4650/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"4650","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4650/committees?format=json","title":"Housing for All Veterans Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4650","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4650/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4650/actions?format=json","latestAction.actionDate":"2024-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4650?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9392","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4649/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Loudermilk","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4649/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4649","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 4649.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the Constitution.\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4649/cosponsors?format=json","sponsors.0.bioguideId":"L000583","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4649/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4649/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","bill.sponsors.0.bioguideId":"J000301","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4649/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4649/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-09T04:56:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4649/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","request.billNumber":"4649","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4649/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4649/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Ensuring U.S. Authority over U.S. Banking Regulations Act","bill.title":"To amend title VI of the Social Security Act to allow for the use of the Coronavirus State fiscal recovery fund to support mental and behavioral health programs, and for other purposes.","bill.number":"4649","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4649/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4649/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4649/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dusty","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4649/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4649/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4649?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 4649.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18.\nThe single subject of this legislation is:\nTo require disclosures from certain federal financial\nregulators when major rulemakings implement the policies of,\nor conform with, certain non-governmental organization.\n[Page H3613]\n","sponsors.0.district":11,"bill.sponsors.0.state":"SD","sponsors.0.firstName":"Barry","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4649/text?format=json","bill.sponsors.0.lastName":"Johnson"}} +{"type":"node","id":"9393","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4648/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4648","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4648/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4648/committees?format=json","type":"S","title":"Classification Reform for Transparency Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4648","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4648/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4648/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4648/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4648/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4648/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2024-07-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4648?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9394","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4437/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"4437","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4437/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4437/committees?format=json","type":"S","title":"Coordinating Care for Senior Veterans and Wounded Warriors Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4437/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4437/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4437?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"9395","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4353/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4353","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 426.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4353/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4353/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Quality Loss Adjustment Improvement for Farmers Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"4353","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4353/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4353/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4353/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4353/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4353/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-16","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4353?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9396","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blumenthal","cboCostEstimates.0.pubDate":"2022-04-19T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 428.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3511","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3511/cosponsors?format=json","sponsors.0.bioguideId":"B001277","actions.url":"https://api.congress.gov/v3/bill/118/s/3511/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3511/relatedbills?format=json","latestAction.actionDate":"2023-12-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-122","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3511/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3511","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3511/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3511/subjects?format=json","title":"Stopping Grinch Bots Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on\nMarch 30, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57997","request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/122?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3511/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3511/summaries?format=json","cboCostEstimates.0.title":"S. 3511, Satellite Cybersecurity Act","introducedDate":"2023-12-13","subjects.count":9,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3511?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9397","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Reed","cboCostEstimates.0.pubDate":"2023-11-14T21:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 427.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 384.","sponsors.0.party":"D","number":"2150","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2150/cosponsors?format=json","sponsors.0.bioguideId":"R000122","actions.url":"https://api.congress.gov/v3/bill/118/s/2150/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2150/relatedbills?format=json","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-173","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2150/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2150","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2150/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2150/committees?format=json","title":"Unity through Service Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on October 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59741","request.format":"json","latestAction_actionDate":"2022-06-21","sponsors.0.middleName":"F.","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/173?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2150/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2150/summaries?format=json","cboCostEstimates.0.title":"S. 2150, Unity Through Service Act of 2023","introducedDate":"2023-06-22","subjects.count":11,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2150?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9398","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4436/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4436","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4436/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protect Infant Formula from Contamination Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4436","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4436/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4436/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4436/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"cosponsors.count":6,"introducedDate":"2024-06-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4436?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9399","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4435/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"bill.cboCostEstimates.0.title":"H.R. 4435, Fight Notario Fraud Act of 2021","sponsors.0.lastName":"Rodgers","bill.latestAction.actionDate":"2021-07-21","cboCostEstimates.0.pubDate":"2023-07-19T14:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4435/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 23 - 20.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4435","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 125 (Friday, July 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESCOBAR:\nH.R. 4435.\nCongress has the power to enact this legislation pursuant\nto the following:\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power . . . To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H3632]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4435/cosponsors?format=json","sponsors.0.bioguideId":"M001159","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4435/actions?format=json","latestAction.actionDate":"2023-07-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4435/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","bill.sponsors.0.bioguideId":"E000299","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nJuly 21, 2021\n","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Ordered to be Reported.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-09-24T16:03:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4435/text?format=json","bill.updateDate":"2025-01-03T07:22:09Z","updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4435/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","request.billNumber":"4435","committees.url":"https://api.congress.gov/v3/bill/118/hr/4435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4435/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:22:09Z","title":"Unauthorized Spending Accountability Act","bill.title":"Fight Notario Fraud Act of 2021","bill.number":"4435","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59388","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4435/committees?format=json","request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2022-06-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4435/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4435/summaries?format=json","bill.cosponsors.count":4,"cboCostEstimates.0.title":"H.R. 4435, Unauthorized Spending Accountability Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","introducedDate":"2023-06-30","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Veronica","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4435/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4435/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4435?format=json","bill.introducedDate":"2021-07-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 114 (Friday, June 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 4435.\nCongress has the power to enact this legislation pursuant\nfollowing:\nSection 8 Clause 1\nThe single subject of this legislation is:\nThis bill creates a sunset for federal spending on federal\nprograms that are not currently authorized by an Act of\nCongress.\n[Page H3162]\n","sponsors.0.district":5,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":16,"sponsors.0.firstName":"Cathy","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4435/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57496","bill.sponsors.0.lastName":"Escobar"}} +{"type":"node","id":"9400","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4431/text?format=json","relatedBills.count":3,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","congress":118,"committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4431","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 425.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4431/subjects?format=json","policyArea.name":"Energy","committees.url":"https://api.congress.gov/v3/bill/118/s/4431/committees?format=json","type":"S","title":"A bill to reinstate the Bull Mountains Mining Plan Modification, and for other purposes.","latestAction.text":"Committee on Energy and Natural Resources Subcommittee on Public Lands, Forests, and Mining. Hearings held.","sponsors.0.party":"R","number":"4431","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4431/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4431/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4431/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4431/actions?format=json","latestAction.actionDate":"2024-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4431/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":4,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4431?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9401","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Casey","cboCostEstimates.0.pubDate":"2022-04-27T19:53:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Agriculture and Food","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3309","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3309/cosponsors?format=json","sponsors.0.bioguideId":"C001070","actions.url":"https://api.congress.gov/v3/bill/118/s/3309/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3309/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3309/amendments?format=json","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"14:52:29","committeeReports.0.citation":"S. Rept. 117-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3309/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3309","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3309/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3309/subjects?format=json","title":"Rural Partnership and Prosperity Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58046","request.format":"json","latestAction_actionDate":"2022-06-21","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/109?format=json","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3309/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3309/summaries?format=json","cboCostEstimates.0.title":"S. 3309, Securing Semiconductor Supply Chains Act of 2021","latestAction.actionTime":"14:52:29","introducedDate":"2023-11-15","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3309?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9402","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2280/text?format=json","relatedBills.count":6,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2280","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2280/committees?format=json","policyArea.name":"Social Welfare","type":"S","title":"Social Security 2100 Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2280","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2280/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2280/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2280/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2280/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","latestAction.actionTime":"14:52:23","titles.count":3,"introducedDate":"2023-07-12","cosponsors.count":4,"request.contentType":"application/json","subjects.count":20,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2280?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:57:27Z","latestAction_actionTime":"14:52:23"}} +{"type":"node","id":"9403","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2021-12-06T21:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"2129","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2129/cosponsors?format=json","sponsors.0.bioguideId":"B001302","actions.url":"https://api.congress.gov/v3/bill/118/hr/2129/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2129/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"cosponsors.count":4,"request.contentType":"application/json","latestAction_actionTime":"14:52:14","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2129/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"2129","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2129/subjects?format=json","title":"To provide for a limitation on availability of funds for Independent Agencies, National Archives and Records Administration, Office of Inspector General for fiscal year 2024.","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on October 28, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57670","request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2129/summaries?format=json","cboCostEstimates.0.title":"S. 2129, Otto Warmbier Countering North Korean Censorship and Surveillance Act of 2021","latestAction.actionTime":"14:52:14","introducedDate":"2023-03-29","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2129?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2129.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9404","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-04-17T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-144.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 282.","sponsors.0.party":"D","number":"66","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/66/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-144","actions.url":"https://api.congress.gov/v3/bill/118/s/66/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/66/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-64","textVersions.url":"https://api.congress.gov/v3/bill/118/s/66/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"66","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/66/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/66/committees?format=json","title":"NOTAM Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59070","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/64?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/66/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/66/summaries?format=json","cboCostEstimates.0.title":"S. 66, NOTAM Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/66?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9405","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4160/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"4160","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Became Public Law No: 117-148.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4160/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4160/committees?format=json","policyArea.name":"Government Operations and Politics","title":"POSTAL Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4160","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-16","sponsors.0.middleName":"M.","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4160/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4160/titles?format=json","laws.0.number":"117-148","summaries.url":"https://api.congress.gov/v3/bill/117/s/4160/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4160/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4160/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":4,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4160?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9406","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cassidy","cboCostEstimates.0.pubDate":"2022-06-13T15:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-146.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3580","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3580/cosponsors?format=json","sponsors.0.bioguideId":"C001075","laws.0.number":"117-146","actions.url":"https://api.congress.gov/v3/bill/118/s/3580/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3580/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3580/amendments?format=json","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3580/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3580","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3580/subjects?format=json","title":"Protecting Students on Campus Act of 2024","cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 10, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58204","request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3580/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of S. 3580, the Ocean Shipping Reform Act of 2022","introducedDate":"2024-01-11","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3580?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9407","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-09-07T21:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-145.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 291.","sponsors.0.party":"D","number":"2201","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2201/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-145","actions.url":"https://api.congress.gov/v3/bill/118/s/2201/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2201/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","amendments.url":"https://api.congress.gov/v3/bill/117/s/2201/amendments?format=json","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-43","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2201/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2201","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2201/subjects?format=json","title":"American Cybersecurity Literacy Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59553","request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/43?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2201/summaries?format=json","cboCostEstimates.0.title":"S. 2201, American Cybersecurity Literacy Act","introducedDate":"2023-06-22","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2201?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9408","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/4434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4434/subjects?format=json","type":"S","title":"Modernizing Retrospective Regulatory Review Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4434","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4434/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4434/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9409","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4433/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"4433","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4433/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"BOLSTER Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4433","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4433/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4433/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4433?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4432/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4432","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4432/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4432/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","sponsors.0.party":"R","number":"4432","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4432/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4432/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4432/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4432/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4432/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":5,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4432?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T17:20:41Z"}} +{"type":"node","id":"9411","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4429/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"4429","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4429/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4429/committees?format=json","policyArea.name":"Health","type":"S","title":"SUPPORT Rx Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4429","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4429/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4429/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4429/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4429/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4429/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4429?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9412","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4426/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4426","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4426/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4426/committees?format=json","policyArea.name":"Health","title":"Promising Pathway Act 2.0","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"4426","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4426/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4426/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4426/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4426/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4426/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4426?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4427","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4427/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4427/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"DOE and SBA Research Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4427","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4427/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4427/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4427/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4427?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9414","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Ogles","cboCostEstimates.0.pubDate":"2021-08-25T16:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-124.","policyArea.name":"Taxation","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"812","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/812/cosponsors?format=json","sponsors.0.bioguideId":"O000175","laws.0.number":"117-124","actions.url":"https://api.congress.gov/v3/bill/118/hr/812/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/812/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-03","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/812/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":8,"request.congress":"118","actions.count":11,"request.billNumber":"812","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/812/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/812/subjects?format=json","title":"Inflation Reduction Act of 2023","cboCostEstimates.0.description":"As passed by the Senate on August 6, 2021.\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57436","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/812/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/812/summaries?format=json","cboCostEstimates.0.title":"S. 812, a bill to direct the Secretary of State to develop a strategy to regain observer status for Taiwan in the World Health Organization, and for other purposes","introducedDate":"2023-02-02","subjects.count":280,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/812?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 812.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo repeal the Inflation Reduction Act of 2022\n[Page H683]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-02-04T16:54:13Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9415","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-125.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3059","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3059/cosponsors?format=json","sponsors.0.bioguideId":"B001267","laws.0.number":"117-125","actions.url":"https://api.congress.gov/v3/bill/118/s/3059/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3059/relatedbills?format=json","latestAction.actionDate":"2023-10-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3059/amendments?format=json","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3059/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3059","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3059/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3059/subjects?format=json","title":"REAL Health Providers Act","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3059/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3059/summaries?format=json","introducedDate":"2023-10-17","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3059?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:57:51Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9416","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2021-04-05T15:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-122.","policyArea.name":"Agriculture and Food","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"658","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/658/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-122","actions.url":"https://api.congress.gov/v3/bill/118/s/658/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/658/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-24","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57628","textVersions.url":"https://api.congress.gov/v3/bill/118/s/658/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2021-11-19T20:30:00Z","actions.count":2,"request.billNumber":"658","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/658/subjects?format=json","title":"EQIP Improvement Act of 2023","cboCostEstimates.1.description":"As ordered reported by the House Committee on Homeland Security on October 26, 2021\n","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57108","request.format":"json","latestAction_actionDate":"2022-05-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/24?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/658/summaries?format=json","cboCostEstimates.0.title":"S. 658, National Cybersecurity Preparedness Consortium Act of 2021","introducedDate":"2023-03-06","subjects.count":7,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/658?format=json","cboCostEstimates.1.title":"S. 658, National Cybersecurity Preparedness Consortium Act of 2021","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9417","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/497/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Duncan","bill.latestAction.actionDate":"2021-01-28","cboCostEstimates.0.pubDate":"2023-01-30T18:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-121.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/497/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"497","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/497/cosponsors?format=json","sponsors.0.bioguideId":"D000615","bill.subjects.count":20,"actions.url":"https://api.congress.gov/v3/bill/118/hr/497/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/497/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":3,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":5,"cosponsors.count":75,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/497/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/497/text?format=json","bill.updateDate":"2025-01-03T04:43:07Z","updateDate":"2024-12-21T09:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/497/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","request.billNumber":"497","subjects.url":"https://api.congress.gov/v3/bill/118/hr/497/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/497/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:07Z","title":"Freedom for Health Care Workers Act","bill.title":"To prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization.","bill.number":"497","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As introduced on January 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":75,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58922","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/497/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-05-12","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/497/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/497/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 497, Freedom for Healthcare Workers Act","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/497/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/497/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/497?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nSingle Subject Statement:\nThis legislation eliminates the COVID-19 Vaccine mandate on\nhealth care providers furnishing items and services under\ncertain Federal health care programs.\n[Page H324]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Jeff","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/497/text?format=json","bill.sponsors.0.lastName":"Arrington"}} +{"type":"node","id":"9418","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-15T19:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-123.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"270","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/270/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-123","actions.url":"https://api.congress.gov/v3/bill/118/s/270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/270/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/117/s/270/amendments?format=json","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-87","textVersions.url":"https://api.congress.gov/v3/bill/118/s/270/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"270","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/270/subjects?format=json","title":"Protecting America’s Meatpacking Workers Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57932","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/87?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/270/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/270/summaries?format=json","cboCostEstimates.0.title":"S. 270, Brown v. Board of Education National Historic Site Expansion Act","introducedDate":"2023-02-02","subjects.count":62,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/270?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9419","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4219/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4219","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4219/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4219/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Future Farmers and Ranchers of Tomorrow Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4219","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4219/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4219/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4219/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"cosponsors.count":2,"introducedDate":"2024-05-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4219?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9420","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4218/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4218","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/4218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4218/subjects?format=json","type":"S","title":"A bill to designate the visitor center for the First State National Historical Park to be located at the Sheriff's House in New Castle, Delaware, as the \"Thomas R. Carper Visitor Center\".","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 615.","sponsors.0.party":"D","number":"4218","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4218/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4218/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4218/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4218?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:20:41Z"}} +{"type":"node","id":"9421","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4215/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":6,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"4215","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4215/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4215/committees?format=json","policyArea.name":"Health","type":"HR","title":"End Price Gouging for Medications Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4215","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4215/cosponsors?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4215/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4215/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":3,"introducedDate":"2023-06-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":27,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4215?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 107 (Tuesday, June 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 4215.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo end prescription drug price gouging.\n[Page H2991]\n","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9422","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4214/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T14:03:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"4214","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4214/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4214/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Trafficking Survivors Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4214","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4214/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4214/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4214/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":9,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4214?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2024-12-17T14:03:33Z"}} +{"type":"node","id":"9423","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4213/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"4213","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/4213/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4213/committees?format=json","title":"Kids Off Social Media Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4213","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4213/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4213/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4213/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2024-04-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4213?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9424","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4211/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","request.billNumber":"4211","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4211/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4211/committees?format=json","policyArea.name":"Education","type":"S","title":"High School Voter Empowerment Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4211","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4211/cosponsors?format=json","sponsors.0.bioguideId":"B001320","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4211/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4211/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4211/actions?format=json","latestAction.actionDate":"2024-04-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4211/relatedbills?format=json","sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4211?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9425","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blackburn","cboCostEstimates.0.pubDate":"2024-12-06T19:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Arts, Culture, Religion","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"4212","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4212/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"B001243","actions.url":"https://api.congress.gov/v3/bill/118/s/4212/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4212/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/4212/amendments?format=json","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4212/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"4212","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4212/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4212/subjects?format=json","title":"American Music Tourism Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on September 17, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61076","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-05-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4212/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4212/summaries?format=json","cboCostEstimates.0.title":"S. 4212, American Music Tourism Act of 2024","latestAction.actionTime":"15:02:37","introducedDate":"2024-04-30","subjects.count":6,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4212?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:57:03Z"}} +{"type":"node","id":"9426","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4210/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4210","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Housing and Community Development","committees.url":"https://api.congress.gov/v3/bill/118/s/4210/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4210/subjects?format=json","type":"S","title":"Lead-Safe Housing for Kids Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S3080-3081)","sponsors.0.party":"D","number":"4210","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4210/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4210/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4210/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4210/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4210/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4210?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9427","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4206/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4206","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4206/committees?format=json","policyArea.name":"Animals","type":"S","title":"Captive Primate Safety Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"4206","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4206/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4206/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4206/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4206?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9428","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4209/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"4209","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (Sponsor introductory remarks on measure: CR S2495)","committees.url":"https://api.congress.gov/v3/bill/118/s/4209/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4209/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Katahdin Woods and Waters National Monument Access Act","latestAction.text":"Held at the desk.","sponsors.0.party":"I","number":"4209","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4209/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4209/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4209/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4209/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","latestAction.actionTime":"18:05:40","titles.count":5,"introducedDate":"2024-04-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4209?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"9429","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4207/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"4207","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/4207/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4207/subjects?format=json","type":"S","title":"Spectrum and National Security Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4207","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4207/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4207/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4207/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4207/actions?format=json","latestAction.actionDate":"2024-04-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4207/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":5,"introducedDate":"2024-04-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4207?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9430","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4204/text?format=json","updateDate":"2024-08-12T13:55:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Mullin","sponsors.0.isByRequest":"N","request.billNumber":"4204","sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4204/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4204/committees?format=json","policyArea.name":"Health","type":"S","title":"MVP Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4204","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4204/cosponsors?format=json","sponsors.0.bioguideId":"M001190","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4204/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4204/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4204/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Mullin, Markwayne [R-OK]","titles.count":4,"introducedDate":"2024-04-30","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4204?format=json","sponsors.0.firstName":"Markwayne","updateDateIncludingText":"2024-08-12T13:55:13Z"}} +{"type":"node","id":"9431","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4203/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"4203","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/4203/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4203/committees?format=json","type":"S","title":"Agricultural Emergency Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"4203","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4203/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4203/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4203/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4203/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4203/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4203?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9432","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4202/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"4202","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S2494-2495)","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/4202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4202/subjects?format=json","title":"Embassy in a Box Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4202","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4202/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4202/actions?format=json","latestAction.actionDate":"2024-04-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4202/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":3,"introducedDate":"2024-04-23","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4202?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9433","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4201/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"4201","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4201/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4201/committees?format=json","policyArea.name":"Health","title":"Rural Health Sustainability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4201","request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4201/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4201/relatedbills?format=json","sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-04-23","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4201?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"9434","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3982/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"3982","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3982/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3982/subjects?format=json","policyArea.name":"Agriculture and Food","title":"EAT Local Foods Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3982","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3982/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3982/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3982/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3982/actions?format=json","latestAction.actionDate":"2024-03-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"cosponsors.count":15,"introducedDate":"2024-03-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3982?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9435","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3985/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3985","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/3985/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3985/subjects?format=json","type":"S","title":"Sarvis Creek Wilderness Completion Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 609.","sponsors.0.party":"D","number":"3985","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3985/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3985/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3985/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3985/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3985/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":4,"introducedDate":"2024-03-20","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3985?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z"}} +{"type":"node","id":"9436","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3981/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3981","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3981/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3981/committees?format=json","policyArea.name":"Health","type":"S","title":"DeOndra Dixon INCLUDE Project Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3981","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3981/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3981/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3981/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3981/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3981/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":8,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3981?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9437","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3979/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"3979","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S1912-1913)","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/3979/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3979/committees?format=json","type":"S","title":"A bill to amend title 38, United States Code, to make permanent and codify the pilot program for use of contract physicians for disability examinations, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"3979","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3979/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3979/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3979/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3979/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3979/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":2,"introducedDate":"2024-03-19","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3979?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"9438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3977/text?format=json","relatedBills.count":1,"updateDate":"2024-07-31T18:48:54Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"3977","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3977/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3977/committees?format=json","policyArea.name":"Health","type":"S","title":"Medicare Orthotics and Prosthetics Patient-Centered Care Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3977","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3977/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3977/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3977/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3977/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3977/relatedbills?format=json","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3977?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-31T18:48:54Z"}} +{"type":"node","id":"9439","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3975/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3975","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3975/committees?format=json","policyArea.name":"Commerce","title":"AI CONSENT Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3975","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3975/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3975/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3975/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3975/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3975/relatedbills?format=json","latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3975?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9440","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3974/text?format=json","relatedBills.count":3,"updateDate":"2024-09-17T11:28:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"3974","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3974/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3974/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"Boosting Benefits and COLAs for Seniors Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3974","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3974/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3974/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3974/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3974/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3974/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":5,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3974?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-09-17T11:28:42Z"}} +{"type":"node","id":"9441","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3973/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"3973","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/3973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3973/subjects?format=json","type":"S","title":"Countering China’s Political Warfare Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3973","request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3973/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3973/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3973/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3973/relatedbills?format=json","latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3973?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9442","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3972/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3972","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/3972/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3972/committees?format=json","type":"S","title":"SOS Act","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"3972","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3972/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3972/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3972/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3972/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3972?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"9443","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/567/text?format=json","relatedBills.count":1,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Obernolte","sponsors.0.isByRequest":"N","request.billNumber":"567","sponsors.0.url":"https://api.congress.gov/v3/member/O000019?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/567/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/567/committees?format=json","policyArea.name":"Public Lands and Natural Resources","title":"SALVAGE Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"567","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/567/cosponsors?format=json","sponsors.0.bioguideId":"O000019","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/567/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/567/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/567/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/567/relatedbills?format=json","latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Obernolte, Jay [R-CA-23]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/567?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OBERNOLTE:\nH.R. 567.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H430]\n","sponsors.0.district":23,"sponsors.0.firstName":"Jay","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"9444","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3968/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"3968","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3968/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3968/committees?format=json","policyArea.name":"Health","title":"Community TEAMS Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3968","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3968/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3968/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3968/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3968/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3968/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3968?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9445","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3965/text?format=json","updateDate":"2025-01-14T18:18:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"3965","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3965/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3965/subjects?format=json","policyArea.name":"Immigration","title":"Deploy Fentanyl Scanners Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Appropriations.","sponsors.0.party":"D","number":"3965","request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3965/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3965/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3965/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3965?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:18:18Z"}} +{"type":"node","id":"9446","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3964/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"3964","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3964/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3964/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Sarah Debbink Langenkamp Active Transportation Safety Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"3964","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3964/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3964/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3964/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3964/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3964/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3964?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9447","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3963/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3963","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Environmental Protection","committees.url":"https://api.congress.gov/v3/bill/118/s/3963/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3963/subjects?format=json","title":"Native Species Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"3963","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3963/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3963/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3963/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3963/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3963/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3963?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9448","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Wicker","cboCostEstimates.0.pubDate":"2024-09-20T18:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Became Public Law No: 118-202.","sponsors.0.party":"R","number":"3959","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3959/cosponsors?format=json","sponsors.0.bioguideId":"W000437","laws.0.number":"118-202","actions.url":"https://api.congress.gov/v3/bill/118/s/3959/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3959/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":6,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3959/text?format=json","updateDate":"2025-02-22T01:21:13Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"3959","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3959/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3959/committees?format=json","title":"Transportation Security Screening Modernization Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60738","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-30","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3959/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3959/summaries?format=json","cboCostEstimates.0.title":"S. 3959, Transportation Security Screening Modernization Act of 2024","introducedDate":"2024-03-14","subjects.count":5,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3959?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-02-22T01:21:13Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9449","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3962/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"3962","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3962/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3962/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Enhanced End-Use Monitoring Accountability Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3962","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3962/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3962/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3962/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3962/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3962?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9450","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3958/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3958","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/3958/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3958/committees?format=json","type":"S","title":"Molly R. Loomis Research for Descendants of Toxic Exposed Veterans Act of 2024","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"3958","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3958/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3958/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3958/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3958/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3958/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3958?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"9451","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3960/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"3960","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3960/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3960/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"A bill to amend title 35, United States Code, to provide a good faith exception to the imposition of fines for false assertions and certifications, and for other purposes.","latestAction.text":"Became Public Law No: 118-151.","sponsors.0.party":"D","number":"3960","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-03-30","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3960/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3960/titles?format=json","laws.0.number":"118-151","summaries.url":"https://api.congress.gov/v3/bill/118/s/3960/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3960/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3960/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":4,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3960?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:15:30Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9452","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2675/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"2675","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/2675/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2675/subjects?format=json","title":"Backcountry Aviation Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2675","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2675/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2675/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2675/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2675/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2675/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2675?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9453","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3953/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3953","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3953/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3953/committees?format=json","policyArea.name":"Education","type":"S","title":"NURSE Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3953","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3953/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3953/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3953/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3953/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3953/relatedbills?format=json","latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3953?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9454","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3714/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3714","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3714/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3714/committees?format=json","policyArea.name":"Immigration","title":"GRACE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3714","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2022-02-28","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3714/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3714/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3714/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3714/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3714/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":4,"introducedDate":"2024-01-31","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3714?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2024-07-24T15:19:17Z"}} +{"type":"node","id":"9455","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3713/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"3713","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S838)","subjects.url":"https://api.congress.gov/v3/bill/118/s/3713/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3713/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Life and Integrity in Research Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3713","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3713/cosponsors?format=json","sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3713/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3713?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9456","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3712/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3712","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S838)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/3712/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3712/committees?format=json","type":"S","title":"A bill to amend the National Voter Registration Act of 1993 to treat United States Citizenship and Immigration Services field offices as voter registration agencies, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S311)","sponsors.0.party":"D","number":"3712","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3712/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3712/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3712/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3712/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3712/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":2,"introducedDate":"2024-01-31","cosponsors.count":16,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3712?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-07-24T15:19:17Z"}} +{"type":"node","id":"9457","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3711/text?format=json","relatedBills.count":3,"updateDate":"2024-12-20T12:57:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3711","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3711/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3711/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protect Innocent Victims Of Taxation After Fire Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S311)","sponsors.0.party":"D","number":"3711","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3711/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3711/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3711/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3711/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3711/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3711?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-12-20T12:57:55Z"}} +{"type":"node","id":"9458","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3710/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"3710","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/3710/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3710/committees?format=json","type":"S","title":"Regulation A+ Improvement Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3710","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3710/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3710/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3710/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3710/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3710/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3710?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9459","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Ossoff","cboCostEstimates.0.pubDate":"2022-02-28T21:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 287.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1620","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1620/cosponsors?format=json","sponsors.0.bioguideId":"O000174","actions.url":"https://api.congress.gov/v3/bill/118/s/1620/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1620/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-86","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1620/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1620","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1620/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1620/committees?format=json","title":"Fort Gillem Defense Forensics Enhancement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on November 18, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/86?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1620/summaries?format=json","cboCostEstimates.0.title":"S. 1620, Save the Liberty Theatre Act of 2021","introducedDate":"2023-05-16","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1620?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9460","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Thune","cboCostEstimates.0.pubDate":"2022-11-21T16:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 286.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1629)","sponsors.0.party":"R","number":"1583","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1583/cosponsors?format=json","sponsors.0.bioguideId":"T000250","actions.url":"https://api.congress.gov/v3/bill/118/s/1583/actions?format=json","latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1583/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":2,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-85","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1583/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1583","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1583/subjects?format=json","title":"A bill to require the Secretary of State to submit to Congress classified dissent cables relating to the withdrawal of the United States Armed Forces from Afghanistan.","cboCostEstimates.0.description":"As reported on February 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58810","request.format":"json","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/85?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1583/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1583/summaries?format=json","cboCostEstimates.0.title":"S. 1583, Lake Tahoe Restoration Reauthorization Act","introducedDate":"2023-05-11","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1583?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9461","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-01-14T15:56:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3035","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3035/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3035/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3035/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-82","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3035/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3035","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3035/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3035/subjects?format=json","title":"Protecting Our Kids from Harmful Research Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on\nNovember 3, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57758","request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/82?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3035/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3035/summaries?format=json","cboCostEstimates.0.title":"S. 3035, GOOD AI Act of 2021","introducedDate":"2023-10-04","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3035?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9462","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2022-05-12T20:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 285.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1354","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1354/cosponsors?format=json","sponsors.0.bioguideId":"M001111","actions.url":"https://api.congress.gov/v3/bill/118/s/1354/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1354/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"cosponsors.count":42,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-84","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1354/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1354","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1354/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1354/subjects?format=json","title":"Child Care for Working Families Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on February 28, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58108","cosponsors.countIncludingWithdrawnCosponsors":42,"request.format":"json","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/84?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1354/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1354/summaries?format=json","cboCostEstimates.0.title":"S. 1354, Alaska Trails Act","introducedDate":"2023-04-27","subjects.count":33,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1354?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9463","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-04T21:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 284.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"904","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/904/cosponsors?format=json","sponsors.0.bioguideId":"B001288","actions.url":"https://api.congress.gov/v3/bill/118/s/904/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/904/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":17,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-83","textVersions.url":"https://api.congress.gov/v3/bill/118/s/904/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"904","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/904/subjects?format=json","title":"Sickle Cell Disease Comprehensive Care Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on February 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57903","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/83?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/904/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/904/summaries?format=json","cboCostEstimates.0.title":"S. 904, Modernizing Access to Our Public Land Act","introducedDate":"2023-03-21","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/904?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"9464","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3708/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3708","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3708/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3708/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to reprogram Federal funds appropriated for UNRWA to construct the southwest border wall and to prohibit future funding for UNRWA.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3708","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3708/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3708/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3708/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3708/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3708/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2024-01-31","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3708?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9465","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3707/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3707","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/3707/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3707/committees?format=json","type":"S","title":"Peace and Tolerance in Palestinian Education Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3707","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3707/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3707/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3707/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3707/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3707/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3707?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9466","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-88.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/583/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"583","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/583/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/583/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/583/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/583/text?format=json","bill.updateDate":"2025-01-03T04:43:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"583","committees.url":"https://api.congress.gov/v3/bill/118/hr/583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:27Z","title":"American Shores Protection Act of 2023","bill.title":"Green Bus Tax Credit Act of 2021","bill.number":"583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/583/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/583/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/583/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/583/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/583?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nNatural Resources\n[Page H430]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/583/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"9467","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/566/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-87.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/566/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"566","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 566.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution:\nCongress has the power ``to regulate Commerce with foreign\nnations, and among the several states, and with the Indian\nTribes.''\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/566/cosponsors?format=json","sponsors.0.bioguideId":"N000026","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/566/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/566/relatedbills?format=json","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"M001208","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/566/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/566/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/566/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"566","committees.url":"https://api.congress.gov/v3/bill/118/hr/566/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/566/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"China Lied People Died Act","bill.title":"To amend section 105(a) of the Child Abuse Prevention and Treatment Act to authorize the Secretary of Health and Human Services to award a grant to a nonprofit entity for a national child abuse hotline.","bill.number":"566","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/566/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-22","sponsors.0.middleName":"E.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/566/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/566/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lucy","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/566/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/566/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/566?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 566.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H430]\n","sponsors.0.district":22,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/566/text?format=json","bill.sponsors.0.lastName":"McBath"}} +{"type":"node","id":"9468","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Moran","cboCostEstimates.0.pubDate":"2022-03-22T15:07:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3541","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3541/cosponsors?format=json","sponsors.0.bioguideId":"M000934","actions.url":"https://api.congress.gov/v3/bill/118/s/3541/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3541/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"10:03:20","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3541/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3541","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3541/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3541/subjects?format=json","title":"Fair Audits and Inspections for Regulators’ Exams Act","cboCostEstimates.0.description":"As passed by the Senate on February 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57910","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-02-18","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3541/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3541/summaries?format=json","cboCostEstimates.0.title":"S. 3541, Health Care for Burn Pit Veterans Act","latestAction.actionTime":"10:03:20","introducedDate":"2023-12-14","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3541?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9469","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/697/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"697","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/697/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/697/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Treating Tribes and Counties as Good Neighbors Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"697","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/697/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/697/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/697/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/697/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/697/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","latestAction.actionTime":"10:03:00","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/697?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"10:03:00"}} +{"type":"node","id":"9470","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3705/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"3705","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/3705/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3705/subjects?format=json","type":"S","title":"Human Rights Defenders Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"3705","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3705/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3705/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3705/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3705/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3705/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3705?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9471","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3704/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:06:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"3704","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3704/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3704/committees?format=json","policyArea.name":"Energy","type":"S","title":"Unlocking Domestic LNG Potential Act of 2024","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3704","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3704/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3704/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3704/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3704/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3704/relatedbills?format=json","latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3704?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-17T03:06:27Z"}} +{"type":"node","id":"9472","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3703/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"3703","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3703/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3703/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"RESPITE for Businesses Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3703","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3703/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3703/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3703/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3703/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3703/relatedbills?format=json","latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":4,"introducedDate":"2024-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3703?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9473","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3702/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T12:03:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"3702","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3702/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3702/committees?format=json","policyArea.name":"Taxation","title":"Credit for Caring Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3702","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3702/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3702/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3702/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3702/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3702/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3702?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-04T12:03:19Z"}} +{"type":"node","id":"9474","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3445/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3445","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3445/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3445/committees?format=json","policyArea.name":"Energy","type":"S","title":"Supporting Made in America Energy Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3445","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-01-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3445/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3445?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9475","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3444","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/3444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3444/committees?format=json","type":"S","title":"Local 9–8–8 Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","sponsors.0.party":"D","number":"3444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3444/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3444/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3444?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9476","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3442/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"3442","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/3442/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3442/committees?format=json","type":"S","title":"Timely Review of SNAP Online Retailer Applications Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3442","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3442/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3442/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3442/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3442/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3442/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-12-07","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3442?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9477","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3440/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"3440","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Environmental Protection","subjects.url":"https://api.congress.gov/v3/bill/118/s/3440/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3440/committees?format=json","title":"Farewell to Foam Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3440","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3440/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3440/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3440/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3440/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3440/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":10,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3440?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9478","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3439/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"3439","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3439/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Concrete and Asphalt Innovation Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3439","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3439/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3439/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3439/relatedbills?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3439?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9479","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3438/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"3438","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3438/committees?format=json","policyArea.name":"Families","title":"SAFE Home Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3438","request.format":"json","latestAction_actionDate":"2022-01-04","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3438/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3438/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3438?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:19:32Z"}} +{"type":"node","id":"9480","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2021-12-14T16:01:00Z","sponsors.0.isByRequest":"N","notes.0.text":"Joint explanatory statement is in Armed Services Committee Print No. 2.","latestAction_text":"Became Public Law No: 117-81.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1605","amendments.count":13,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1605/cosponsors?format=json","sponsors.0.bioguideId":"W000817","laws.0.number":"117-81","actions.url":"https://api.congress.gov/v3/bill/118/s/1605/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1605/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/1605/amendments?format=json","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57693","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1605/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2021-12-14T16:01:00Z","actions.count":2,"request.billNumber":"1605","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1605/subjects?format=json","title":"Maternal Health Pandemic Response Act","cboCostEstimates.1.description":"As Passed by the House of Representatives on December 7, 2021\n","cboCostEstimates.0.description":"As Passed by the House of Representatives on December 7, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57693","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-12-27","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1605/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1605/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of S. 1605, The National Defense Authorization Act for Fiscal Year 2022","introducedDate":"2023-05-15","subjects.count":20,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1605?format=json","cboCostEstimates.1.title":"Statutory Pay-As-You-Go Effects of S. 1605, The National Defense Authorization Act for Fiscal Year 2022","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9481","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3377","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Became Public Law No: 117-77.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/3377/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3377/committees?format=json","type":"S","title":"Disadvantaged Business Enterprise Supportive Services Expansion Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S5694-5695)","sponsors.0.party":"D","number":"3377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-12-22","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3377/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3377/titles?format=json","laws.0.number":"117-77","summaries.url":"https://api.congress.gov/v3/bill/117/s/3377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3377/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3377/relatedbills?format=json","latestAction.actionDate":"2023-11-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-11-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3377?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-07-24T15:19:41Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9482","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3437/text?format=json","updateDate":"2025-01-13T22:02:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"3437","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3437/subjects?format=json","policyArea.name":"Social Welfare","committees.url":"https://api.congress.gov/v3/bill/118/s/3437/committees?format=json","title":"Addressing SILO Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3437","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3437/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","latestAction.actionTime":"10:46:16","titles.count":4,"introducedDate":"2023-12-07","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3437?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-13T22:02:39Z","latestAction_actionTime":"10:46:16"}} +{"type":"node","id":"9483","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3435/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moore","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 230.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3435/summaries?format=json","bill.relatedBills.count":20,"type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"McMorris","number":"3435","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 88 (Thursday, May 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 3435.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H2654]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3435/cosponsors?format=json","sponsors.0.bioguideId":"M001213","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3435/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3435/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Moore, Blake D. [R-UT-1]","bill.sponsors.0.bioguideId":"M001159","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":64,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3435/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3435/text?format=json","bill.updateDate":"2025-01-03T05:04:04Z","updateDate":"2024-07-24T08:05:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3435/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001213?format=json","request.billNumber":"3435","committees.url":"https://api.congress.gov/v3/bill/118/hr/3435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3435/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:04Z","title":"Charitable Act","bill.title":"American Broadband Act","bill.number":"3435","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":64,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3435/committees?format=json","request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3435/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3435/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Cathy","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3435/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3435/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3435?format=json","bill.introducedDate":"2021-05-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOORE of Utah:\nH.R. 3435.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nTo modify and extend the deduction for charitable\ncontributions for individuals not itemizing deductions.\n[Page H2428]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Blake","bill.type":"HR","updateDateIncludingText":"2024-07-24T08:05:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3435/text?format=json","bill.sponsors.0.lastName":"Rodgers"}} +{"type":"node","id":"9484","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Health","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3433","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3433/cosponsors?format=json","sponsors.0.bioguideId":"M001157","actions.url":"https://api.congress.gov/v3/bill/118/hr/3433/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3433/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":6,"cosponsors.count":235,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-700","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3433/text?format=json","updateDate":"2025-01-16T07:06:17Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":18,"request.billNumber":"3433","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3433/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3433/committees?format=json","title":"Give Kids a Chance Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":235,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/700?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3433/summaries?format=json","introducedDate":"2023-05-17","subjects.count":9,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3433?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 3433.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo expand cancer research for children.\n[Page H2428]\n","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-16T07:06:17Z"}} +{"type":"node","id":"9485","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Schatz","cboCostEstimates.0.pubDate":"2021-07-15T20:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 227.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2016","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2016/cosponsors?format=json","sponsors.0.bioguideId":"S001194","actions.url":"https://api.congress.gov/v3/bill/118/s/2016/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2016/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"cosponsors.count":65,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2016/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2016","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2016/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2016/committees?format=json","title":"CONNECT for Health Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on June 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57359","cosponsors.countIncludingWithdrawnCosponsors":65,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2016/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2016/summaries?format=json","cboCostEstimates.0.title":"S. 2016, Surface Transportation Investment Act of 2021","introducedDate":"2023-06-15","subjects.count":15,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2016?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"9486","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kennedy","cboCostEstimates.0.pubDate":"2022-11-16T20:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 228.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2068","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2068/cosponsors?format=json","sponsors.0.bioguideId":"K000393","actions.url":"https://api.congress.gov/v3/bill/118/s/2068/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2068/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2068/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2068","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2068/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2068/subjects?format=json","title":"Main Street Growth Act","cboCostEstimates.0.description":"As reported on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58782","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2068/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2068/summaries?format=json","cboCostEstimates.0.title":"S. 2068, Minority Business Development Act of 2021","introducedDate":"2023-06-21","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2068?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9487","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/46/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"46","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 223.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/46/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/46/committees?format=json","policyArea.name":"Health","type":"HR","title":"Mental Health Access and Gun Violence Prevention Act of 2023","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"46","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/46/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/46/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/46/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/46/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/46/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/46?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 46.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1, 3 and 18 of\nthe United States Constitution.\n[Page H108]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9488","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2022-04-20T20:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 221.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2699","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2699/cosponsors?format=json","sponsors.0.bioguideId":"S001217","actions.url":"https://api.congress.gov/v3/bill/118/s/2699/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2699/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2699/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2699","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2699/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2699/committees?format=json","title":"Opioid RADAR Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58014","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2699/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2699/summaries?format=json","cboCostEstimates.0.title":"S. 2699, American Cybersecurity Literacy Act of 2021","introducedDate":"2023-07-27","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2699?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9489","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2424/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"2424","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 220.","policyArea.name":"Native Americans","subjects.url":"https://api.congress.gov/v3/bill/118/s/2424/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2424/committees?format=json","type":"S","title":"Indian Programs Advance Appropriations Act of 2023","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"2424","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2424/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2424/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2424/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2424/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2424/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2424?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:13:01Z"}} +{"type":"node","id":"9490","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1995/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2021-09-22T12:55:00Z","sponsors.0.isByRequest":"N","request.billNumber":"1995","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 218.","committees.url":"https://api.congress.gov/v3/bill/118/s/1995/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1995/subjects?format=json","policyArea.name":"Health","type":"S","title":"Public Health Infrastructure Saves Lives Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S2100)","sponsors.0.party":"D","number":"1995","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on June 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57483","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1995/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1995/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1995/summaries?format=json","cboCostEstimates.0.title":"S. 1995, Sport Fish Restoration and Recreational Boating Safety Act of 2021","actions.url":"https://api.congress.gov/v3/bill/118/s/1995/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1995?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9491","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wyden","cboCostEstimates.0.pubDate":"2024-12-04T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 216.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1890","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1890/cosponsors?format=json","sponsors.0.bioguideId":"W000779","actions.url":"https://api.congress.gov/v3/bill/118/s/1890/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1890/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-222","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1890/text?format=json","updateDate":"2025-01-17T03:11:18Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1890","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1890/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1890/committees?format=json","title":"Malheur Community Empowerment for the Owyhee Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61052","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/222?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1890/summaries?format=json","cboCostEstimates.0.title":"S. 1890, Malheur Community Empowerment for the Owyhee Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-06-08","subjects.count":16,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1890?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-17T03:11:18Z"}} +{"type":"node","id":"9492","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1790/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"1790","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 214.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1790/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1790/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Biologics Competition Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1790","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1790/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1790/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1790/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1790/actions?format=json","latestAction.actionDate":"2023-03-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1790/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1790?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 1790.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nStudy to determine whether there are impediments to the\napproval process for interchangeable biologics.\n[Page H1438]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-07-24T15:23:12Z"}} +{"type":"node","id":"9493","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2023-03-13T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 207.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"316","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/316/cosponsors?format=json","amendments.count":56,"sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/316/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/316/relatedbills?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":3,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/316/amendments?format=json","titles.count":2,"cosponsors.count":46,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/316/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"316","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/316/subjects?format=json","title":"A bill to repeal the authorizations for use of military force against Iraq.","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on March 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":46,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59000","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-12-17","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/316/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/316/summaries?format=json","cboCostEstimates.0.title":"S. 316, a bill to repeal the authorizations for use of military force against Iraq","latestAction.actionTime":"12:04:24","introducedDate":"2023-02-09","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/316?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9494","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3047/text?format=json","updateDate":"2025-01-14T19:06:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"3047","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3047/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3047/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Air America Act of 2023","latestAction.text":"Read twice and referred to the Select Committee on Intelligence.","sponsors.0.party":"R","number":"3047","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3047/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3047/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3047/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3047/actions?format=json","latestAction.actionDate":"2023-10-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3047/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-10-17","cosponsors.count":31,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3047?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:06:24Z"}} +{"type":"node","id":"9495","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2405/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"2405","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2405/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2405/committees?format=json","policyArea.name":"Health","type":"S","title":"Strengthening Pharmacy Access for Seniors Act","latestAction.text":"Read twice and referred to the Committee on Finance. (text: CR S3461-3462)","sponsors.0.party":"R","number":"2405","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2405/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2405/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2405/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2405/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2405/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2405?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:21Z"}} +{"type":"node","id":"9496","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2329/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"2329","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/2329/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2329/subjects?format=json","policyArea.name":"Health","type":"S","title":"Emerging Pathogen Preparedness Program Authorization Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2329","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2329/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2329/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2329/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2329/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2329/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2023-07-13","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2329?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9497","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rubio","cboCostEstimates.0.pubDate":"2024-05-23T19:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 371.","sponsors.0.party":"R","number":"1881","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1881/cosponsors?format=json","sponsors.0.bioguideId":"R000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1881/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1881/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-07","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1881/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1881","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1881/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1881/committees?format=json","title":"Restoring Sovereignty and Human Rights in Nicaragua Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on May 7, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60293","request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1881/summaries?format=json","cboCostEstimates.0.title":"S. 1881, Restoring Sovereignty and Human Rights in Nicaragua Act of 2024","introducedDate":"2023-06-08","subjects.count":32,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1881?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9498","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1838/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"1838","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1838/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1838/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Credit Card Competition Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S2007-2008)","sponsors.0.party":"D","number":"1838","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-11-17","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1838/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1838/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1838/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1838/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1838/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-06-07","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1838?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9499","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1364/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1364","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Committee on Indian Affairs. Hearings held. Hearings printed: S.Hrg. 117-115.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1364/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Foreign Agents Disclosure and Registration Enhancement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1364","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"Mauze","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1364/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1364/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1364/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1364/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1364/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1364?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9500","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-06-15T17:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","sponsors.0.party":"D","number":"1564","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1564/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1564/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1564/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1564/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1564","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1564/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1564/subjects?format=json","title":"AI Leadership Training Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 17, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59204","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-11-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/109?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1564/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1564/summaries?format=json","cboCostEstimates.0.title":"S. 1564, AI Leadership Training Act","introducedDate":"2023-05-11","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1564?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9501","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1296/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"1296","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1296/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1296/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Restoration of Employment Choice for Adults with Disabilities Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1296","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1296/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1296/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1296/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1296/relatedbills?format=json","latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1296?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1296.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nDisability employment\n[Page H1051]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9502","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3221/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3221","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3221/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3221/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Wildland Firefighter Fair Pay Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"3221","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3221/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3221/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3221/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3221/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3221/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"cosponsors.count":7,"introducedDate":"2023-11-02","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3221?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9503","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-02T20:21:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3222","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3222/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/s/3222/committees?format=json","policyArea.name":"Congress","type":"S","title":"A bill to ensure the security of office space rented by Senators, and for other purposes.","latestAction.text":"Became Public Law No: 118-36.","sponsors.0.party":"D","number":"3222","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3222/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3222/titles?format=json","laws.0.number":"118-36","summaries.url":"https://api.congress.gov/v3/bill/118/s/3222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3222/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3222/relatedbills?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3222?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-02T20:21:22Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9504","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3219/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"3219","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3219/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3219/committees?format=json","policyArea.name":"Health","type":"S","title":"Influenza Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3219","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3219/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3219/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3219/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":4,"introducedDate":"2023-11-02","cosponsors.count":3,"request.contentType":"application/json","subjects.count":25,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3219?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9505","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3220/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"3220","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/3220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3220/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to expand the tropical disease product priority review voucher program to encourage prevention and treatment of coccidioidomycosis.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3220","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3220/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3220/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3220/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3220/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3220/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3220?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9506","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3216/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cammack","sponsors.0.isByRequest":"N","request.billNumber":"3216","sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3216/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3216/committees?format=json","type":"HR","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3216","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3216/cosponsors?format=json","sponsors.0.bioguideId":"C001039","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3216/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3216/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3216/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3216/relatedbills?format=json","sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":13,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3216?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAMMACK:\nH.R. 3216.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nThis bill amends the Rural Electrification Act of 1936 to\nreauthorize and improve the ReConnect loan and grant program.\n[Page H2311]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kat","updateDateIncludingText":"2024-07-24T15:22:14Z"}} +{"type":"node","id":"9507","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3218/text?format=json","updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3218","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3218/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3218/committees?format=json","policyArea.name":"Immigration","title":"NOTICE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3218","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3218/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3218/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"cosponsors.count":3,"introducedDate":"2023-11-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3218?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2024-07-23T16:18:13Z"}} +{"type":"node","id":"9508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3217/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T16:18:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3217","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3217/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Manifest Modernization Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3217","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3217/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3217/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3217/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3217?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-07-23T16:18:12Z"}} +{"type":"node","id":"9509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 168.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","policyArea.name":"Taxation","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","title":"Senior Citizens Tax Elimination Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"cosponsors.count":36,"introducedDate":"2023-05-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}} +{"type":"node","id":"9510","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3215/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3215","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3215/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3215/committees?format=json","policyArea.name":"Health","title":"Flu Vaccine Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3215","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-16","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3215/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3215/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3215/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3215?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9511","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-07-15T19:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 166.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2428","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2428/cosponsors?format=json","sponsors.0.bioguideId":"B001288","actions.url":"https://api.congress.gov/v3/bill/118/s/2428/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2428/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2428/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2428","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2428/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2428/subjects?format=json","title":"PATHS to Tutor Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on November 16, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58308","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-11-16","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2428/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2428/summaries?format=json","cboCostEstimates.0.title":"S. 2428, False Claims Amendments Act of 2021","introducedDate":"2023-07-20","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2428?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9512","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3214/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"3214","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3214/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3214/committees?format=json","policyArea.name":"Education","type":"S","title":"Counseling Not Criminalization in Schools Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3214","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3214/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3214/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3214/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3214?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9513","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3213/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3213","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/3213/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3213/committees?format=json","type":"S","title":"Tech Safety for Victims of Domestic Violence, Dating Violence, Sexual Assault, and Stalking Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3213","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3213/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3213/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3213/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":30,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3213?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-07-23T16:18:13Z"}} +{"type":"node","id":"9514","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2981/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2981","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2981/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2981/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"IRS Accountability and Transparency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"2981","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2981/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2981/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2981/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2981/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2981/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2981?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9515","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2975/text?format=json","relatedBills.count":2,"updateDate":"2024-08-16T13:46:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Schrier","sponsors.0.isByRequest":"N","request.billNumber":"2975","sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2975/committees?format=json","policyArea.name":"Agriculture and Food","title":"ENABLE Conservation Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"2975","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2975/cosponsors?format=json","sponsors.0.bioguideId":"S001216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2975/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2975/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2975/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2975/relatedbills?format=json","latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2975?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHRIER:\nH.R. 2975.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the United States Constitution.\nThe single subject of this legislation is:\nConservation\n[Page H2088]\n","sponsors.0.district":8,"sponsors.0.firstName":"Kim","updateDateIncludingText":"2024-08-16T13:46:50Z"}} +{"type":"node","id":"9516","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2974/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"2974","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2974/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2974/committees?format=json","policyArea.name":"Education","type":"S","title":"Pregnant Students’ Rights Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2974","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2974/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2974/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2974/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2974/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2974/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":7,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2974?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9517","labels":["Bill"],"properties":{"relatedBills.count":7,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2973/text?format=json","updateDate":"2024-11-09T01:57:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2973","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2973/subjects?format=json","policyArea.name":"Health","type":"S","title":"Modernizing and Ensuring PBM Accountability Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","sponsors.0.party":"D","number":"2973","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/122?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2973/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2973/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2973/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2973/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2973/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2023-09-28","cosponsors.count":6,"subjects.count":19,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2973?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:47Z","committeeReports.0.citation":"S. Rept. 118-122"}} +{"type":"node","id":"9518","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2972/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"2972","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2972/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2972/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require the Secretary of the Interior to repay States for amounts expended by States to operate units of the National Park System during a Government shutdown.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"2972","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2972/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2972/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2972/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2972/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2972?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9519","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2971/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2971","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/2971/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2971/subjects?format=json","type":"S","title":"Unhoused VOTE Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"2971","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2971/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2971/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2971/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2971/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2971/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-09-28","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2971?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"9520","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2970/text?format=json","relatedBills.count":1,"updateDate":"2024-11-26T19:30:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"2970","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/2970/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2970/committees?format=json","type":"S","title":"Indigenous Peoples' Day Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2970","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2970/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2970/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2970/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2970/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2970/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":13,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2970?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-11-26T19:30:33Z"}} +{"type":"node","id":"9521","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2969/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"2969","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/2969/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2969/committees?format=json","type":"S","title":"A bill to ensure that United States diplomats and officials of the U.S. Section of the International Boundary and Water Commission are able to advance efforts seeking compliance by the United Mexican States with the 1944 Treaty on Utilization of Waters of the Colorado and Tijuana Rivers and of the Rio Grande.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2969","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2969/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2969/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2969/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2969/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2969/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2969?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9522","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2966/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Boozman","sponsors.0.isByRequest":"N","request.billNumber":"2966","sponsors.0.url":"https://api.congress.gov/v3/member/B001236?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2966/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2966/subjects?format=json","policyArea.name":"Health","type":"S","title":"Targeting Emotional and Mental Stability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2966","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2966/cosponsors?format=json","sponsors.0.bioguideId":"B001236","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2966/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2966/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2966/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2966/relatedbills?format=json","sponsors.0.fullName":"Sen. Boozman, John [R-AR]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":6,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2966?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9523","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2967/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"2967","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2967/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2967/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Intelligence Community Workforce Agility Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2967","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2967/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2967/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2967/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2967/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2967/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2967?format=json","updateDateIncludingText":"2024-07-24T15:20:14Z","sponsors.0.firstName":"Marco"}} +{"type":"node","id":"9524","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2965/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2965","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2965/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2965/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to establish a critical mineral environmental processing and mining cleanup program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"2965","request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2965/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2965/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2965/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2965?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9525","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2968/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norman","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2968/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"2968","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 2968.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws, which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2968/cosponsors?format=json","sponsors.0.bioguideId":"N000190","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2968/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2968/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","bill.sponsors.0.bioguideId":"C001078","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2968/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2968/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","request.billNumber":"2968","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2968/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2968/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"COST Act of 2023","bill.title":"Military and Veteran Caregiver Student Loan Relief Act of 2021","bill.number":"2968","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2968/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-10-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2968/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2968/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gerald","sponsors.0.state":"SC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2968/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2968/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2968?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 2968.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation will require public disclosure of the\ntotal cost to taxpayers for every project supported with\nfederal funds.\n[Page H2087]\n","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Ralph","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2968/text?format=json","bill.sponsors.0.lastName":"Connolly"}} +{"type":"node","id":"9526","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2963/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Loudermilk","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Finance and Financial Sector","type":"HR","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2963/summaries?format=json","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2963","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 2963.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment XVI of the U.S. Constitution\n[Page H2141]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2963/cosponsors?format=json","sponsors.0.bioguideId":"L000583","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2963/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2963/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2963/text?format=json","bill.updateDate":"2025-01-03T05:01:02Z","updateDate":"2024-11-09T04:56:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2963/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","request.billNumber":"2963","committees.url":"https://api.congress.gov/v3/bill/118/hr/2963/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2963/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:01:02Z","title":"FinCEN Accountability Act of 2023","bill.title":"VOW to Hire Heroes Extension Act of 2021","bill.number":"2963","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2963/committees?format=json","request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2963/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2963/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2963/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2963/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2963?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOUDERMILK:\nH.R. 2963.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, SectIon 8, Clause 18\nThe single subject of this legislation is:\nTo ensure that Congress has the information necessary to\ncarry out oversight of the Financial Crimes Enforcement\nNetwork.\n[Page H2087]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Barry","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2963/text?format=json","bill.sponsors.0.lastName":"Brownley"}} +{"type":"node","id":"9527","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2962/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"2962","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2962/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2962/committees?format=json","policyArea.name":"Taxation","title":"Drive American Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2962","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2962/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2962/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2962/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2962/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2962/relatedbills?format=json","sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2962?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2024-07-24T15:20:14Z"}} +{"type":"node","id":"9528","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2953/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Law","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2953/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2953","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 2953.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2141]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2953/cosponsors?format=json","sponsors.0.bioguideId":"J000288","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2953/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2953/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","bill.sponsors.0.bioguideId":"M001208","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":102,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2953/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2953/text?format=json","bill.updateDate":"2025-01-03T05:00:54Z","updateDate":"2024-09-19T08:05:51Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2953/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","request.billNumber":"2953","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2953/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2953/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:54Z","title":"FAIR Act of 2023","bill.title":"SAFER Act","bill.number":"2953","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":102,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2953/committees?format=json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2021-10-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2953/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2953/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lucy","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2953/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2953/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2953?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Georgia:\nH.R. 2953.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 1.\nThe single subject of this legislation is:\nThis bill amends title 9 of the United States Code with\nrespect to arbitration, in order to prohibit predispute\narbitration agreements that force arbitration of future\nemployment, consumer, antitrust, or civil rights disputes,\nand to prohibit agreements and practices that interfere with\nthe rights of individuals, workers, and small businesses to\nparticipate in a joint, class, or collective action related\nto an employment, consumer, antitrust, or civil rights\ndispute.\n[Page H2087]\n","sponsors.0.district":4,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Henry","bill.type":"HR","updateDateIncludingText":"2024-09-19T08:05:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2953/text?format=json","bill.sponsors.0.lastName":"McBath"}} +{"type":"node","id":"9529","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2960/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2960","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2960/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2960/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Expanding the VOTE Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"2960","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2960/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2960/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2960/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2960/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2960/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2960?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"9530","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2961/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2961","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2961/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2961/committees?format=json","policyArea.name":"Emergency Management","title":"FEMA Equity Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"2961","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2961/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2961/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2961/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2961/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2961/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2961?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9531","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Carper","cboCostEstimates.0.pubDate":"2024-03-18T21:23:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"2958","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2958/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"C000174","actions.url":"https://api.congress.gov/v3/bill/118/s/2958/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2958/relatedbills?format=json","latestAction.actionDate":"2024-04-20","textVersions.count":2,"sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/118/s/2958/amendments?format=json","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2958/text?format=json","updateDate":"2025-01-17T03:11:18Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":10,"request.billNumber":"2958","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2958/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2958/committees?format=json","title":"Strengthening Coastal Communities Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Environment and Public Works on September 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60117","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-10-07","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2958/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2958/summaries?format=json","cboCostEstimates.0.title":"S. 2958, Strengthening Coastal Communities Act of 2023","latestAction.actionTime":"09:35:26","introducedDate":"2023-09-27","subjects.count":19,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2958?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-17T03:11:18Z"}} +{"type":"node","id":"9532","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2954/text?format=json","relatedBills.count":5,"updateDate":"2024-07-24T15:20:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"2954","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S7001)","subjects.url":"https://api.congress.gov/v3/bill/118/s/2954/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2954/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Medicaid Beneficiaries Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2954","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2954/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2954/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2954/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2954/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2954/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2954?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:16Z"}} +{"type":"node","id":"9533","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2955/text?format=json","updateDate":"2024-11-18T21:14:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2955","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2955/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Srebrenica Genocide Remembrance Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2955","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2955/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2955/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2955/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2955/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-09-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2955?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-11-18T21:14:40Z"}} +{"type":"node","id":"9534","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2728/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thompson","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2728/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2728","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 3\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2728/cosponsors?format=json","sponsors.0.bioguideId":"T000467","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2728/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","bill.sponsors.0.bioguideId":"G000594","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2728/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2728/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","request.billNumber":"2728","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2728/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2728/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Young Farmer Success Act","bill.title":"Protecting Military Installations from Foreign Espionage Act","bill.number":"2728","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2728/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2728/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2728/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2728/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2728/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2728?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto add farmers and ranchers to the Public Service Loan\nForgiveness program.\n[Page H1888]\n","sponsors.0.district":15,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":23,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2728/text?format=json","bill.sponsors.0.lastName":"Gonzales"}} +{"type":"node","id":"9535","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2727/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"2727","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2727/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2727/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Advice and Consent Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2727","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2727/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2727/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-06","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2023-09-06","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2727?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2726/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2726","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2726/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2726/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"CAMPUS Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2726","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2726/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2726/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2726/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2726/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2726/relatedbills?format=json","latestAction.actionDate":"2023-09-05","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":4,"introducedDate":"2023-09-05","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2726?format=json","updateDateIncludingText":"2025-01-14T19:00:46Z","sponsors.0.firstName":"James"}} +{"type":"node","id":"9537","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/808/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"808","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/808/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/808/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Expediting Forest Restoration and Recovery Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S802)","sponsors.0.party":"R","number":"808","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/808/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/808/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/808/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/808/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/808/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-03-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/808?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9538","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/354/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"354","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/354/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/354/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Strengthening Local Processing Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S317-319)","sponsors.0.party":"R","number":"354","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/354/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/354/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/354/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/354/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/354/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/354?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9539","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1815/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1815","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1815/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1815/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Filing Relief for Natural Disasters Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1815","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1815/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1815/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1815/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1815/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1815/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-06-06","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1815?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"9540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1217/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"1217","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1217/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1217/committees?format=json","policyArea.name":"Health","type":"S","title":"Ending the Prescription Drug Kickback Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1217","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1217/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1217/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1217/relatedbills?format=json","latestAction.actionDate":"2023-04-19","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-04-19","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1217?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9541","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2725/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"2725","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2725/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2725/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to authorize the establishment of the US-ASEAN Center to support United States economic and cultural engagement with Southeast Asia.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"2725","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2725/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2725/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2725/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2725/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2725/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":2,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2725?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9542","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2724/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2724","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2724/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2724/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Nationwide Right To Unionize Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2724","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2724/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2724/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2724/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2724/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2724/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2724?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9543","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2723/text?format=json","relatedBills.count":2,"updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"2723","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","latestAction_text":"Read twice and referred to the Committee on the Budget.","committees.url":"https://api.congress.gov/v3/bill/118/s/2723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2723/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Modernizing Agricultural and Manufacturing Bonds Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2723","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2723/cosponsors?format=json","sponsors.0.bioguideId":"B000944","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2723/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2723/actions?format=json","latestAction.actionDate":"2023-09-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2723/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2723?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-14T16:56:14Z"}} +{"type":"node","id":"9544","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2722/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"2722","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6459-6460; text: CR S6460)","policyArea.name":"Labor and Employment","committees.url":"https://api.congress.gov/v3/bill/118/s/2722/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2722/subjects?format=json","type":"S","title":"Investing in Tomorrow's Workforce Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2722","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2722/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2722/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2722/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2722/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2722/relatedbills?format=json","latestAction.actionDate":"2023-09-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"cosponsors.count":4,"introducedDate":"2023-09-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2722?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9545","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2721/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ogles","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2721/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2721","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 2721.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representative.\n[Page H2055]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2721/cosponsors?format=json","sponsors.0.bioguideId":"O000175","bill.subjects.count":23,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2721/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2721/relatedbills?format=json","latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","bill.sponsors.0.bioguideId":"C001097","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2721/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2721/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:22:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2721/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","request.billNumber":"2721","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2721/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2721/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"Ukraine Lend-Lease Accountability Act","bill.title":"Clean Commute for Kids Act of 2021","bill.number":"2721","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2721/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2721/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2721/summaries?format=json","bill.cosponsors.count":38,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"TN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2721/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2721/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2721?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 2721.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLimit Presidential Authority granted by the Ukraine Lend-\nLease Democracy Defense Act.\n[Page H1887]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"sponsors.0.firstName":"Andrew","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2721/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}} +{"type":"node","id":"9546","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2719/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Newhouse","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2719/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2719","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\n[Page H2055]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2719/cosponsors?format=json","sponsors.0.bioguideId":"N000189","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2719/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","bill.sponsors.0.bioguideId":"B000574","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2719/text?format=json","bill.updateDate":"2025-01-03T04:58:43Z","updateDate":"2024-12-12T09:05:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2719/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","request.billNumber":"2719","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2719/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2719/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:58:43Z","title":"Conservation and Innovative Climate Partnership Act of 2023","bill.title":"Rebuilding America’s Airport Infrastructure Act","bill.number":"2719","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2719/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2719/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2719/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"EARL","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2719/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2719/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2719?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Food, Agriculture, Conservation, and Trade Act\nof 1990 to establish a competitive grant program under which\nthe Secretary of Agriculture provides grants to land-grant\ncolleges and universities to support agricultural producers\nin adopting conservation and innovative climate practices\n[Page H1887]\n","sponsors.0.district":4,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-12-12T09:05:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2719/text?format=json","bill.sponsors.0.lastName":"BLUMENAUER"}} +{"type":"node","id":"9547","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2718/text?format=json","relatedBills.count":4,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"NEAL","sponsors.0.isByRequest":"N","request.billNumber":"2718","sponsors.0.url":"https://api.congress.gov/v3/member/N000015?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6458-6459; text: CR S6459)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2718/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2718/committees?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Elder Justice Reauthorization and Modernization Act of 2023","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2718","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2718/cosponsors?format=json","sponsors.0.bioguideId":"N000015","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2718/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2718/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2718/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2718/relatedbills?format=json","sponsors.0.fullName":"Rep. Neal, Richard E. [D-MA-1]","titles.count":3,"introducedDate":"2023-04-19","cosponsors.count":22,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2718?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEAL:\nH.R. 2718.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nElder Justice Act\n[Page H1887]\n","sponsors.0.district":1,"sponsors.0.firstName":"RICHARD","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9548","labels":["Bill"],"properties":{"relatedBills.count":5,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2713/text?format=json","updateDate":"2024-12-21T09:05:54Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","request.billNumber":"2713","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2713/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2713/committees?format=json","policyArea.name":"Health","type":"HR","title":"I CAN Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2713","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2713/cosponsors?format=json","sponsors.0.bioguideId":"J000295","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2713/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2713/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":4,"introducedDate":"2023-04-19","cosponsors.count":35,"subjects.count":20,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2713?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 2713.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 and Article I, Section 8,\nClause 1\nThe single subject of this legislation is:\nTo Amend Titles XVIII and XIX of the Social Security Act to\nincrease access to services provided by advanced practice\nregistered nurses under the Medicare and Medicaid programs.\n[Page H1887]\n","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2024-12-21T09:05:54Z"}} +{"type":"node","id":"9549","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2716/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"2716","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S6458)","subjects.url":"https://api.congress.gov/v3/bill/118/s/2716/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2716/committees?format=json","policyArea.name":"Health","type":"S","title":"Accountability in Foreign Animal Research Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2716","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2716/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2716/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2716/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2716/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2716/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2716?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9550","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2024-02-08T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"2717","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2717/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/2717/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2717/relatedbills?format=json","latestAction.actionDate":"2024-04-26","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2717/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"2717","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2717/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2717/subjects?format=json","title":"A bill to designate the facility of the United States Postal Service located at 231 North Franklin Street in Greensburg, Indiana, as the \"Brigadier General John T. Wilder Post Office\".","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59960","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-13","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2717/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2717/summaries?format=json","cboCostEstimates.0.title":"S. 2717, a bill to designate the facility of the United States Postal Service located at 231 North Franklin Street in Greensburg, Indiana, as the “Brigadier General John T. Wilder Post Office”","latestAction.actionTime":"10:11:14","introducedDate":"2023-09-05","subjects.count":5,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2717?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9551","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2715/text?format=json","relatedBills.count":2,"updateDate":"2025-01-24T21:14:37Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2715","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/s/2715/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2715/subjects?format=json","type":"S","title":"Countering Mexican Transnational Criminal Organizations in Cyberspace Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2715","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2715/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2715/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2715/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2715/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2715/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2715?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-24T21:14:37Z"}} +{"type":"node","id":"9552","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2714/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"2714","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/2714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2714/subjects?format=json","title":"CREATE AI Act of 2024","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 721.","sponsors.0.party":"D","number":"2714","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-09-13","sponsors.0.middleName":"T.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2714/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2714/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2714/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2714/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2714/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":6,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2714?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T18:57:01Z"}} +{"type":"node","id":"9553","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 123.","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2021-08-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"9554","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2464/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2464","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2464/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2464/committees?format=json","policyArea.name":"Health","type":"S","title":"Access to Breast Cancer Diagnosis Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2464","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2464/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2464/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2464/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2464/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2464/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2464?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2465/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2465","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/2465/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2465/subjects?format=json","title":"DOULA for VA Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"2465","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2465/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2465/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2465/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2465/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2465/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-07-25","cosponsors.count":5,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2465?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"9556","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2463/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"2463","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2463/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Ban Stock Trading for Government Officials Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"2463","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2463/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2463/actions?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":5,"introducedDate":"2023-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2463?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2462/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"2462","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2462/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Motorsports Fairness and Permanency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2462","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2462/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2462/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2462/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2462/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2462/relatedbills?format=json","latestAction.actionDate":"2023-07-25","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2462?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:20:51Z"}} +{"type":"node","id":"9558","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2461/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2461","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2461/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2461/subjects?format=json","policyArea.name":"Education","title":"COREY Safety Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2461","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2461/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2461/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2461/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2461/actions?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2461/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":4,"introducedDate":"2023-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2461?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9559","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2460/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","sponsors.0.isByRequest":"N","request.billNumber":"2460","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2460/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2460/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Training for School Food Service Workers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2460","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2460/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2460/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2460/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2460/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2460/relatedbills?format=json","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2460?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9560","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2459/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Carper","sponsors.0.isByRequest":"N","request.billNumber":"2459","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2459/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2459/committees?format=json","policyArea.name":"Health","type":"S","title":"Enabling More of the Physical and Occupational Workforce to Engage in Rehabilitation Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2459","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2459/cosponsors?format=json","sponsors.0.bioguideId":"C000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2459/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2459/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2459/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2459/relatedbills?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","titles.count":3,"cosponsors.count":4,"introducedDate":"2023-07-25","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2459?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"9561","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2453/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2453","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2453/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2453/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Armed Forces Facility Conditions and Quality of Life Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2453","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2453/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2453/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2453/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2453/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2453/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2453?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9562","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2452/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2452","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S5053)","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/2452/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2452/committees?format=json","type":"S","title":"Biomanufacturing and Jobs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2452","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2452/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2452/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2452/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2452/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2452/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":3,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2452?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9563","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2458/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2458","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2458/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2458/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Crop Insurance for Future Farmers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2458","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2458/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2458/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2458/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2458/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2458/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2458?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9564","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2457/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2457","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2457/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2457/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Self-Governance, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2457","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2457/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2457/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2457/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2457?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9565","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2456/text?format=json","relatedBills.count":3,"updateDate":"2024-10-04T19:08:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"2456","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2456/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Seniors from High Drug Costs Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2456","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2456/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2456/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2456/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2456?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-10-04T19:08:58Z"}} +{"type":"node","id":"9566","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2455/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2455","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/2455/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2455/committees?format=json","type":"S","title":"Research, Development, Test and Evaluation Unmet Needs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2455","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2455/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2455/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2455/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2455/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2455?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9567","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2454","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S5053-5054)","committees.url":"https://api.congress.gov/v3/bill/118/s/2454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2454/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmaceutical Supply Chain Security Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2454/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2454/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2454/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2454?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9568","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2450/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"2450","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/2450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2450/subjects?format=json","type":"S","title":"A bill to improve coordination between the Department of Energy and the National Science Foundation on activities carried out under the National Quantum Initiative Program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2450","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2450/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2450/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2450?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2451/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2451","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2451/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2451/committees?format=json","policyArea.name":"Health","type":"S","title":"Hemp Access and Consumer Safety Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2451","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2451/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2451/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2451/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2451?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9570","labels":["Bill"],"properties":{"relatedBills.count":4,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2443/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"2443","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Economics and Public Finance","committees.url":"https://api.congress.gov/v3/bill/118/s/2443/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2443/subjects?format=json","type":"S","title":"Energy and Water Development and Related Agencies Appropriations Act, 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 145.","sponsors.0.party":"D","number":"2443","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/72?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2443/cosponsors?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2443/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2443/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2443/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2443/relatedbills?format=json","sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":4,"subjects.count":55,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2443?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"S. Rept. 118-72"}} +{"type":"node","id":"9571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"2444","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2444/committees?format=json","policyArea.name":"Health","title":"ATTAIN Mental Health Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2444/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2444/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2444/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":4,"introducedDate":"2023-07-20","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2444?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9572","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2445/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2445","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/s/2445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2445/subjects?format=json","type":"S","title":"Community-Based Gang Intervention Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2445","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2445/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2445/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2445?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:57Z"}} +{"type":"node","id":"9573","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2446","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2446/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Miranda Rights for Kids Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2446","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2446/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2446/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2446/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2446?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:56Z"}} +{"type":"node","id":"9574","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/951/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"951","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/951/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/951/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Office of Gun Violence Prevention Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/951/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/951/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/951/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/951/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/951/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-03-22","cosponsors.count":1,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/951?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:21Z"}} +{"type":"node","id":"9575","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/727/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"727","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/727/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/727/committees?format=json","policyArea.name":"Health","title":"Insulin for All Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"727","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/727/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/727/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/727/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/727?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9576","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/613/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Torres","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","policyArea.name":"Civil Rights and Liberties, Minority Issues","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/613/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"613","bill.cosponsors.countIncludingWithdrawnCosponsors":106,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1. The Congress shall have\nPower To lay and collect Taxes, Duties, Imposts and Excises,\nto pay the Debts and provide for the common Defence and\ngeneral Welfare of the United States; but all Duties, Imposts\nand Excises shall be uniform throughout the United States\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/613/cosponsors?format=json","sponsors.0.bioguideId":"T000486","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/613/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/613/text?format=json","bill.updateDate":"2025-01-03T04:43:25Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/613/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","request.billNumber":"613","subjects.url":"https://api.congress.gov/v3/bill/118/hr/613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/613/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:25Z","title":"Wayne Ford Racial Impact Statement Act of 2023","bill.title":"SALT Deductibility Act","bill.number":"613","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/613/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/613/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/613/summaries?format=json","bill.cosponsors.count":106,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/613/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/613/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/613?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H491]\n","sponsors.0.district":15,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ritchie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/613/text?format=json","bill.sponsors.0.lastName":"Suozzi"}} +{"type":"node","id":"9577","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/539/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"539","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/539/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/539/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Veterans Member Business Loan Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"539","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/539/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/539/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/539/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/539/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/539/relatedbills?format=json","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2023-02-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/539?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9578","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1467/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"1467","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1467/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1467/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Access Technology Affordability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1467","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1467/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1467/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1467/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1467/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1467/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-05-04","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1467?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2024-11-09T01:57:21Z"}} +{"type":"node","id":"9579","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2023-06-07T22:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 286.","sponsors.0.party":"R","number":"1280","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1280/cosponsors?format=json","sponsors.0.bioguideId":"C001098","actions.url":"https://api.congress.gov/v3/bill/118/s/1280/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1280/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":6,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1280/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1280","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1280/committees?format=json","title":"TRANQ Research Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on May 10, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59250","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1280/summaries?format=json","cboCostEstimates.0.title":"S. 1280, TRANQ Research Act of 2023","introducedDate":"2023-04-25","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1280?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9580","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2189/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"2189","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2189/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Executive Branch Emissions Transparency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"2189","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2189/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2189/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2189?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9581","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2191/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"2191","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2191/subjects?format=json","policyArea.name":"Health","type":"S","title":"Consensual Donation and Research Integrity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2191","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2191/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2191/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2191/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2191/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2191?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9582","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2187/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2187","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2187/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2187/subjects?format=json","policyArea.name":"Education","type":"S","title":"Endowment Transparency Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2187","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2187/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2187/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2187/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2187/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2187/relatedbills?format=json","latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2187?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9583","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2188/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2188","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2188/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2188/committees?format=json","policyArea.name":"Health","title":"PrEP Access and Coverage Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2188","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2188/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2188/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2188/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2188/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":22,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2188?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9584","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2186/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"2186","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","subjects.url":"https://api.congress.gov/v3/bill/118/s/2186/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2186/committees?format=json","type":"S","title":"Improving Access to Transfusion Care for Hospice Patients Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2186","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2186/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2186/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2186/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2186/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2186/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2186?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2024-07-24T15:21:23Z"}} +{"type":"node","id":"9585","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2185/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"2185","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2185/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Small Business Development Centers Improvement Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"2185","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2185/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2185/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2185/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2185/relatedbills?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":5,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2185?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:17:46Z"}} +{"type":"node","id":"9586","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","title":"SPR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9587","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":4,"sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":24,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9588","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1771/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"1771","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/1771/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1771/subjects?format=json","policyArea.name":"Law","type":"S","title":"CASE LOAD Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1846)","sponsors.0.party":"D","number":"1771","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1771/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1771/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1771/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1771/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1771/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":4,"introducedDate":"2023-05-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1771?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"9589","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1527/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1527","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1527/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Access to Contraception for Servicemembers and Dependents Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1527","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1527/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1527/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1527/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1527/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":30,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1527?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9590","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1526/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1526","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1526/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"NTIA Policy and Cybersecurity Coordination Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1526","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1526/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1526/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1526/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1526?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9591","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2183/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2183","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2183/subjects?format=json","policyArea.name":"Health","title":"Red Hill Health Impact Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2183","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2183/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2183/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2183/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2183/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2183/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2183?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9592","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2180/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"2180","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/2180/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2180/committees?format=json","title":"Small Farm Conservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2180","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2180/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2180/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2180/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2180/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2180/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":15,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2180?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9593","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2181/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":26,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2181","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/2181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2181/subjects?format=json","type":"S","title":"Keeping Military Families Together Act of 2024","latestAction.text":"Became Public Law No: 118-271.","sponsors.0.party":"D","number":"2181","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2181/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2181/titles?format=json","laws.0.number":"118-271","summaries.url":"https://api.congress.gov/v3/bill/118/s/2181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2181/actions?format=json","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2181/relatedbills?format=json","latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":8,"introducedDate":"2023-06-22","cosponsors.count":6,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2181?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-16T12:03:17Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9594","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1922/text?format=json","updateDate":"2024-04-17T23:52:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1922","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1922/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1922/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide coverage for wigs as durable medical equipment under the Medicare program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1922","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1922/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1922/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1922/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1922/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1922/relatedbills?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":2,"cosponsors.count":5,"introducedDate":"2023-06-12","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1922?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-04-17T23:52:24Z"}} +{"type":"node","id":"9595","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1921/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"1921","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/117/s/1921/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1921/committees?format=json","policyArea.name":"Energy","type":"S","title":"Children Don't Belong on Tobacco Farms Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1921","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1921/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1921/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1921/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1921/actions?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1921/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":3,"request.contentType":"application/json","subjects.count":30,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1921?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9596","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1920/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1920","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1920/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1920/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Library of Congress, Congressional Office For International Leadership for fiscal year 2024.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"1920","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1920/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1920/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1920/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1920/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1920/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1920?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1920.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"9597","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1919/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"1919","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1919/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1919/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Chinese Currency Accountability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1919","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1919/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1919/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1919/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1919/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1919/relatedbills?format=json","latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1919?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9598","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1926/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1926","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1926/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Employment and Training Administration, Ex-Offender Activities for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1926","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1926/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1926/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1926/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1926/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"cosponsors.count":4,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1926?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9599","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1918/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"1918","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1918/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1918/committees?format=json","type":"S","title":"Don Young Veterans Advancing Conservation Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1918","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1918/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1918/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1918/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1918/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1918/relatedbills?format=json","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1918?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9600","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1916/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"1916","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1916/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1916/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Combating International Islamophobia Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1916","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1916/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1916/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1916/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1916/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1916/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1916?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9601","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1923/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1923","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1923/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1923/committees?format=json","policyArea.name":"Environmental Protection","title":"POPP Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"1923","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1923/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1923/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1923/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1923/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1923/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":4,"introducedDate":"2023-06-12","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1923?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9602","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1909/text?format=json","relatedBills.count":1,"updateDate":"2024-11-14T12:03:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"1909","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/1909/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1909/committees?format=json","title":"BUMP Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1909","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2021-05-27","sponsors.0.middleName":"T.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1909/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1909/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1909/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1909/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1909/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":4,"introducedDate":"2023-06-08","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1909?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-11-14T12:03:16Z"}} +{"type":"node","id":"9603","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1915/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Arts, Culture, Religion","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1915/summaries?format=json","bill.relatedBills.count":4,"type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"1915","bill.cosponsors.countIncludingWithdrawnCosponsors":67,"bill.committeeReports.0.citation":"H. Rept. 117-69","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 49 (Tuesday, March 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeFAZIO:\nH.R. 1915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe Constitution.\n[Page H1413]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1915/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1915/actions?format=json","latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1915/relatedbills?format=json","textVersions.count":1,"bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"D000191","bill.originChamber":"House","bill.actions.count":11,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 48.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1915/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/69?format=json","committeeReports.0.citation":"H. Rept. 117-69","bill.sponsors.0.fullName":"Rep. DeFazio, Peter A. [D-OR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1915/text?format=json","bill.updateDate":"2025-01-03T04:52:40Z","updateDate":"2024-07-24T15:22:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1915/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"1915","committees.url":"https://api.congress.gov/v3/bill/118/hr/1915/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1915/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:52:40Z","title":"To provide for a limitation on availability of funds for Library of Congress, Books for the Blind and Physically Handicapped, Salaries and Expenses for fiscal year 2024.","bill.title":"Water Quality Protection and Job Creation Act of 2021","bill.number":"1915","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1915/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-05-27","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/69?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1915/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1915/summaries?format=json","bill.cosponsors.count":67,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000191?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"PETER","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1915/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1915/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1915?format=json","bill.introducedDate":"2021-03-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1915/text?format=json","bill.sponsors.0.lastName":"DEFAZIO"}} +{"type":"node","id":"9604","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1914/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1914","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1914/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1914/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Air Traffic Control Workforce Transparency Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1914","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1914/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1914/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1914/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1914/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1914/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1914?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9605","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1913/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1913","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1913/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1913/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Library of Congress, Copyright Office Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1913","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1913/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1913/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1913/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1913/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1913/relatedbills?format=json","latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1913?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1913.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}} +{"type":"node","id":"9606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1912/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"1912","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S3899-3900)","policyArea.name":"Emergency Management","subjects.url":"https://api.congress.gov/v3/bill/118/s/1912/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1912/committees?format=json","type":"S","title":"ARTICLE ONE Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1912","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1912/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1912/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1912/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1912/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1912/relatedbills?format=json","latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2023-06-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1912?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1899/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1899","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1899/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1899/committees?format=json","type":"S","title":"Hydrogen Aviation Development Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1899","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1899/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1899/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1899/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1899/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1899/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":2,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1899?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9608","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1907/text?format=json","relatedBills.count":1,"updateDate":"2024-09-24T11:03:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"1907","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1907/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1907/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Federal Firearms Licensee Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1907","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1907/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1907/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1907/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1907/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1907/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1907?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-09-24T11:03:16Z"}} +{"type":"node","id":"9609","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1908/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1908","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1908/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1908/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Joint Items, Capitol Power Plant for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"1908","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1908/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1908/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1908/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1908/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1908/relatedbills?format=json","latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"cosponsors.count":4,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1908?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1908.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1643]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"9610","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1902/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1902","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/1902/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1902/subjects?format=json","title":"Hydrogen Aviation Strategy Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1902","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1902/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1902/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1902/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1902/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1902/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1902?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9611","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1906/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"1906","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S3899)","subjects.url":"https://api.congress.gov/v3/bill/118/s/1906/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1906/committees?format=json","policyArea.name":"Health","title":"Promising Pathway Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1906","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1906/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1906/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1906/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1906/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1906/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":19,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1906?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9612","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1901/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1901","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/s/1901/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1901/subjects?format=json","title":"Sponsor Promote and Compensation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1901","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1901/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1901/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1901/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1901/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1901?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9613","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1900/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1900","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/1900/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1900/committees?format=json","title":"Tracking Bad Actors Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1900","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1900/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1900/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1900/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1900/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1900?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9614","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1632/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"1632","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/1632/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1632/subjects?format=json","type":"S","title":"Compressed Gas Cylinder Safety and Oversight Improvements Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1632","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1632/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1632/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1632/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1632/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1632/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-05-17","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1632?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9615","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1630/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"1630","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1630/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1630/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"SOAR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1630","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1630/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1630/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1630/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1630/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":12,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1630?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9616","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1629/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"1629","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1629/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1629/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Hatch Act Enforcement Transparency and Accountability Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"1629","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1629/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1629/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1629/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1629?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9617","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1627/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:08Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1627","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1627/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1627/committees?format=json","policyArea.name":"Taxation","type":"S","title":"PRECEPT Nurses Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1627","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1627/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1627/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1627/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1627/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1627/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1627?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:08Z"}} +{"type":"node","id":"9618","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1626/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1626","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/1626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1626/subjects?format=json","title":"ASK Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1626","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1626/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1626/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1626/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1626?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9619","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1625/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"1625","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Taxation","subjects.url":"https://api.congress.gov/v3/bill/118/s/1625/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1625/committees?format=json","title":"HITS Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1680-1681)","sponsors.0.party":"D","number":"1625","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1625/cosponsors?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1625/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1625/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1625/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1625/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1625?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2024-07-24T15:22:09Z"}} +{"type":"node","id":"9620","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2024-09-13T15:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Health","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 224.","sponsors.0.party":"D","number":"1624","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1624/cosponsors?format=json","sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/1624/actions?format=json","latestAction.actionDate":"2023-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1624/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"cosponsors.count":15,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1624/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1624","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1624/committees?format=json","title":"Gabriella Miller Kids First Research Act 2.0","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on October 4, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":15,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60715","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-05-13","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1624/summaries?format=json","cboCostEstimates.0.title":"S. 1624, Gabriella Miller Kids First Research Act 2.0","introducedDate":"2023-05-16","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1624?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9621","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1623/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1623","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1623/committees?format=json","type":"S","title":"Fort Gordon Child Development Center Expansion Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1623","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1623/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1623/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1623/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1623/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1623?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9622","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1622/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1622","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/1622/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1622/committees?format=json","type":"S","title":"End Speculative Oil and Gas Leasing Act of 2023","latestAction.text":"Committee on Energy and Natural Resources Subcommittee on Public Lands, Forests, and Mining. Hearings held.","sponsors.0.party":"D","number":"1622","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1622/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1622/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1622/relatedbills?format=json","latestAction.actionDate":"2023-07-12","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1622?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9623","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1621/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1621","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/1621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1621/subjects?format=json","type":"S","title":"Military Mental Health Professionals Support Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1621/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1621/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1621/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1621?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9624","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1615/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"1615","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/1615/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1615/committees?format=json","type":"S","title":"Regulatory Accountability Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1615","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1615/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1615/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1615/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1615/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1615/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1615?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"James"}} +{"type":"node","id":"9625","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1619/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1619","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1619/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1619/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Disrupt Fentanyl Trafficking Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1619","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1619/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1619/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1619/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1619/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1619?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9626","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1618/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1618","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1618/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1618/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Employee Equity Investment Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"1618","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1618/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1618/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1618/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1618/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1618/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1618?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"9627","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1611/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1611","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services. (Sponsor introductory remarks on measure: CR S2525)","subjects.url":"https://api.congress.gov/v3/bill/118/s/1611/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1611/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Community Connect Grant Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1611","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1611/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1611/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1611/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1611?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9628","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1612/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1612","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1612/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1612/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reimburse Veterans for Domiciliary Care Act","latestAction.text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-217.","sponsors.0.party":"I","number":"1612","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1612/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1612/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1612/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1612/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1612?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:05:17Z"}} +{"type":"node","id":"9629","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1613/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1613","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1613/committees?format=json","policyArea.name":"Agriculture and Food","title":"Feral Swine Eradication Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1613","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1613/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1613/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1613/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1613/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1613/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1613?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9630","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1610/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1610","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1610/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1610/committees?format=json","type":"S","title":"Protecting Service Members and Military Families’ Access to Reproductive Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1610","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1610/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1610/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1610/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1610/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1610/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1610?format=json","updateDateIncludingText":"2025-01-14T17:07:58Z","sponsors.0.firstName":"Jeanne"}} +{"type":"node","id":"9631","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1609/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1609","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/1609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1609/committees?format=json","title":"Support Our Election Workers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1609","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1609/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1609/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1609/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1609/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1609/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1609?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"9632","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1608/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1608","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1608/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1608/committees?format=json","type":"S","title":"Starr–Camargo Bridge Expansion Act","latestAction.text":"Became Public Law No: 118-80.","sponsors.0.party":"R","number":"1608","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1608/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1608/titles?format=json","laws.0.number":"118-80","summaries.url":"https://api.congress.gov/v3/bill/118/s/1608/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1608/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1608/relatedbills?format=json","latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1608?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:17:41Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9633","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1606/text?format=json","relatedBills.count":27,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"1606","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1606/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1606/subjects?format=json","policyArea.name":"Health","type":"S","title":"Black Maternal Health Momnibus Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1606","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1606/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1606/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1606/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1606/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1606/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":32,"introducedDate":"2023-05-15","subjects.count":51,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1606?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9634","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1366/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9635","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1363/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1363","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1363/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1363/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Repeal CFPB Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1363","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1363/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1363/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1363/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1363/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1363/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1363?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9636","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/814/text?format=json","updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2021-05-18T20:05:00Z","sponsors.0.isByRequest":"N","request.billNumber":"814","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 49.","committees.url":"https://api.congress.gov/v3/bill/118/s/814/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/814/subjects?format=json","policyArea.name":"Immigration","title":"Romania Visa Waiver Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (text: CR S802)","sponsors.0.party":"D","number":"814","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on April 26, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57232","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/814/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/814/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/814/summaries?format=json","cboCostEstimates.0.title":"S. 814, Ukraine Security Partnership Act of 2021","actions.url":"https://api.congress.gov/v3/bill/118/s/814/actions?format=json","latestAction.actionDate":"2023-03-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-03-15","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/814?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-03-01T17:27:14Z"}} +{"type":"node","id":"9637","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1362/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1362","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/1362/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1362/committees?format=json","type":"S","title":"Transparency in CFPB Cost-Benefit Analysis Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1362","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1362/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1362/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1362/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1362/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1362/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1362?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9638","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/578/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","congress":118,"committees.count":1,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"578","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Became Public Law No: 117-11.","policyArea.name":"Housing and Community Development","subjects.url":"https://api.congress.gov/v3/bill/118/s/578/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/578/committees?format=json","title":"Liberty City Rising Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"578","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/578/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/578/titles?format=json","laws.0.number":"117-11","summaries.url":"https://api.congress.gov/v3/bill/118/s/578/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/578/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/578/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":8,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/578?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9639","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/422/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"422","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Became Public Law No: 117-10.","subjects.url":"https://api.congress.gov/v3/bill/118/s/422/subjects?format=json","policyArea.name":"Immigration","committees.url":"https://api.congress.gov/v3/bill/118/s/422/committees?format=json","type":"S","title":"Build the Wall Now Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"422","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/422/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/422/titles?format=json","laws.0.number":"117-10","summaries.url":"https://api.congress.gov/v3/bill/118/s/422/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/422/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/422/relatedbills?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"cosponsors.count":9,"introducedDate":"2023-02-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/422?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9640","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/415/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"415","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Became Public Law No: 117-9.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/415/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/415/committees?format=json","title":"Food and Energy Security Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S399)","sponsors.0.party":"R","number":"415","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/415/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/415/titles?format=json","laws.0.number":"117-9","summaries.url":"https://api.congress.gov/v3/bill/118/s/415/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/415/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/415?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9641","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/164/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"164","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Became Public Law No: 117-8.","subjects.url":"https://api.congress.gov/v3/bill/118/s/164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/164/committees?format=json","policyArea.name":"Health","title":"Doss's Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"164","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/164/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/164/titles?format=json","laws.0.number":"117-8","summaries.url":"https://api.congress.gov/v3/bill/118/s/164/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/164/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/164/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":5,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/164?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9642","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-09-28T22:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 168.","sponsors.0.party":"D","number":"1352","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1352/cosponsors?format=json","sponsors.0.bioguideId":"K000367","actions.url":"https://api.congress.gov/v3/bill/118/s/1352/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1352/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1352/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1352","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1352/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1352/committees?format=json","title":"504 Modernization and Small Manufacturer Enhancement Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Small Business and Entrepreneurship on July 25, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59618","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1352/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1352/summaries?format=json","cboCostEstimates.0.title":"S. 1352, 504 Modernization and Small Manufacturer Enhancement Act of 2023","introducedDate":"2023-04-27","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1352?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"9643","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1361/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1361","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1361/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1361/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"A bill to amend the Agricultural Credit Act of 1978 to authorize the Secretary of Agriculture to provide for floodplain easement restoration and management, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1361","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1361/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1361/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1361/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"cosponsors.count":1,"introducedDate":"2023-04-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1361?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9644","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1360/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1360","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1360/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1360/committees?format=json","type":"S","title":"PFAS Exposure Assessment and Documentation Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1360","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1360/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1360/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1360/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1360?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9645","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1349/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"1349","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1349/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1349/committees?format=json","policyArea.name":"Education","title":"College Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1349","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1349/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1349/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1349/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1349/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1349/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":31,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1349?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9646","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1348/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"1348","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Select Committee on Intelligence.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1348/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1348/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Wyoming Public Lands Initiative Act of 2023","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1348","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/185?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1348/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1348/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1348/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1348/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1348/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","latestAction.actionTime":"10:13:00","titles.count":5,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1348?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:11:28Z","committeeReports.0.citation":"S. Rept. 118-185"}} +{"type":"node","id":"9647","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1347/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1347","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1347/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1347/committees?format=json","type":"S","title":"Military Families Mental Health Services Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1347","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1347/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1347/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1347/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1347/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1347/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1347?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9648","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1359/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1359","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/s/1359/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1359/subjects?format=json","title":"CLAIM Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1359","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1359/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1359/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1359/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1359/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1359/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1359?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9649","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1346/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1346","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1346/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1346/committees?format=json","policyArea.name":"Health","type":"S","title":"Improving Mental Health Access from the Emergency Department Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1346","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1346/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1346/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1346/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1346/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1346/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1346?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9650","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1358/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"1358","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S2173-2175)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1358/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1358/committees?format=json","policyArea.name":"Commerce","title":"Combating Rural Inflation Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1358","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-04-22","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1358/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1358/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1358/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1358/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1358/relatedbills?format=json","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1358?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 1358.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEconomic Reporting\n[Page H1115]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9651","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1357/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"1357","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1357/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1357/committees?format=json","type":"HR","title":"Congressional Oversight of Russian Sanctions Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1357","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1357/cosponsors?format=json","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1357/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1357/relatedbills?format=json","latestAction.actionDate":"2023-03-03","sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1357?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 1357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nCongressional Oversight\n[Page H1115]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"9652","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1356/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"1356","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1356/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1356/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Public Diplomacy Modernization Act of 2023","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1356","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1356/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1356/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1356/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-03-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1356?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 1356.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nState Department modernization.\n[Page H1115]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"9653","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1355/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1355","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1355/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1355/committees?format=json","policyArea.name":"Health","type":"S","title":"PASTEUR Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1355","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1355/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1355/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1355/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1355?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9654","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1044/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"1044","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1044/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1044/committees?format=json","title":"Railway Accountability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1044","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","sponsors.0.middleName":"K.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1044/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1044/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1044/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1044/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":3,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1044?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9655","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1054/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Walberg","sponsors.0.isByRequest":"N","request.billNumber":"1054","sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1054/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1054/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HR","title":"EEOC Transparency and Accountability Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1054","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1054/cosponsors?format=json","sponsors.0.bioguideId":"W000798","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1054/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1054/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1054/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1054/relatedbills?format=json","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1054?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 1054.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo amend title VII of the Civil Rights Act of 1964 to\nrequire the Equal Employment Opportunity Commission to\napprove commencing, intervening in, or participating in\ncertain litigation.\n[Page H842]\n","sponsors.0.district":5,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9656","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1043/text?format=json","relatedBills.count":7,"updateDate":"2024-11-09T04:51:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"1043","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1043/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1043/committees?format=json","policyArea.name":"Energy","type":"HR","title":"To restore onshore energy production.","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","sponsors.0.party":"R","number":"1043","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1043/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1043/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1043/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1043/actions?format=json","latestAction.actionDate":"2023-03-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1043/relatedbills?format=json","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2023-02-14","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1043?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 1043.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation restarts the federal onshore leasing\nprogram and requires replacement sales when a sale is missed.\n[Page H842]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2024-11-09T04:51:58Z"}} +{"type":"node","id":"9657","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1063/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1063","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1063/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1063/subjects?format=json","policyArea.name":"Health","type":"S","title":"Jobs and Opportunities for Medicaid Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1063","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1063/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1063/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1063/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1063/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1063/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":12,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1063?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:23:01Z"}} +{"type":"node","id":"9658","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1053/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"1053","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1053/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1053/committees?format=json","policyArea.name":"Housing and Community Development","title":"Housing Supply Expansion Act","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1053","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1053/cosponsors?format=json","sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1053/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1053/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1053/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1053/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":11,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1053?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 1053.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nThis bill only updates regarding prevalent wage\ndeterminations in order to expand access to affordable\nhousing.\n[Page H842]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2025-02-19T17:27:12Z"}} +{"type":"node","id":"9659","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1062/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1062","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1062/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1062/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Jobs and Opportunities for SNAP Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1062","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1062/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1062/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1062/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1062/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1062/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1062?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9660","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Aguilar","cboCostEstimates.0.pubDate":"2023-07-21T17:40:09Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-110.","sponsors.0.party":"D","number":"1060","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1060/cosponsors?format=json","sponsors.0.bioguideId":"A000371","laws.0.number":"118-110","actions.url":"https://api.congress.gov/v3/bill/118/hr/1060/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2024-11-25","sponsors.0.fullName":"Rep. Aguilar, Pete [D-CA-33]","titles.count":2,"cosponsors.count":50,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/60607","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1060/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"cboCostEstimates.1.pubDate":"2024-08-12T18:49:00Z","request.congress":"118","actions.count":27,"request.billNumber":"1060","sponsors.0.url":"https://api.congress.gov/v3/member/A000371?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1060/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1060/committees?format=json","title":"To designate the facility of the United States Postal Service located at 1663 East Date Place in San Bernardino, California, as the \"Dr. Margaret B. Hill Post Office Building\".","cboCostEstimates.1.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":50,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59411","request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1060/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1060/summaries?format=json","cboCostEstimates.0.title":"H.R. 1060, a bill to designate the facility of the United States Postal Service located at 1663 East Date Place in San Bernardino, California, as the “Dr. Margaret B. Hill Post Office Building”","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1060?format=json","cboCostEstimates.1.title":"H.R. 1060, an act to designate the facility of the United States Postal Service located at 1663 East Date Place in San Bernardino, California, as the “Dr. Margaret B. Hill Post Office Building”","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AGUILAR:\nH.R. 1060.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nRenaming a Post Office in San Bernardino, California\n[Page H854]\n","sponsors.0.district":33,"sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-02-04T17:04:03Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9661","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1052/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"1052","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1052/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1052/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Administrative Pay-As-You-Go Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1052","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1052/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1052/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1052/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1052/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1052?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9662","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cornyn","cboCostEstimates.0.pubDate":"2023-11-28T16:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1059","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1059/cosponsors?format=json","sponsors.0.bioguideId":"C001056","actions.url":"https://api.congress.gov/v3/bill/118/s/1059/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1059/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-145","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1059/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1059","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1059/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1059/subjects?format=json","title":"Big Bend National Park Boundary Adjustment Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59794","request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/145?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1059/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1059/summaries?format=json","cboCostEstimates.0.title":"S. 1059, Big Bend National Park Boundary Adjustment Act","latestAction.actionTime":"18:04:52","introducedDate":"2023-03-29","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1059?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9663","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1051/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:02Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"1051","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1051/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1051/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protect Taxpayers’ Privacy Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1051","request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-03-25","summaries.count":1,"sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1051/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1051/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1051/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1051/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1051?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:23:02Z"}} +{"type":"node","id":"9664","labels":["Bill"],"properties":{"relatedBills.count":7,"congress":118,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship. (text: CR S1830-1831)","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 16.","sponsors.0.party":"R","number":"1058","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1058/cosponsors?format=json","sponsors.0.bioguideId":"A000377","actions.url":"https://api.congress.gov/v3/bill/118/hr/1058/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1058/relatedbills?format=json","sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":4,"cosponsors.count":17,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-24","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1058/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":18,"request.billNumber":"1058","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1058/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1058/committees?format=json","title":"Promoting Cross-border Energy Infrastructure Act","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-03-25","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/24?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1058/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1058/summaries?format=json","introducedDate":"2023-02-17","subjects.count":13,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1058?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 1058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by streamlining the permitting process of cross-\nborder pipelines and electric transmission lines.\n[Page H854]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"9665","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1057/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1057","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/1057/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1057/subjects?format=json","type":"S","title":"Further Strengthening Supply Chains for Servicemembers and Security Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1057","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1057/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1057/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1057/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1057/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1057/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1057?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9666","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1050/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stevens","sponsors.0.isByRequest":"N","request.billNumber":"1050","sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1050/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1050/committees?format=json","policyArea.name":"Education","type":"HR","title":"Data Science and Literacy Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"1050","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1050/cosponsors?format=json","sponsors.0.bioguideId":"S001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1050/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1050/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1050/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1050/relatedbills?format=json","latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1050?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEVENS:\nH.R. 1050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nImproving data science and literacy education.\n[Page H842]\n","sponsors.0.district":11,"sponsors.0.firstName":"Haley","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9667","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-12-05T16:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Energy","type":"HR","latestAction.text":"Became Public Law No: 118-62.","sponsors.0.party":"R","number":"1042","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1042/cosponsors?format=json","sponsors.0.bioguideId":"M001159","laws.0.number":"118-62","actions.url":"https://api.congress.gov/v3/bill/118/hr/1042/actions?format=json","textVersions.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1042/relatedbills?format=json","latestAction.actionDate":"2024-05-13","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-296","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1042/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"1042","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1042/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1042/committees?format=json","title":"Prohibiting Russian Uranium Imports Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on December 1, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59805","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2021-03-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/296?format=json","summaries.count":5,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1042/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1042/summaries?format=json","cboCostEstimates.0.title":"H.R. 1042, Prohibiting Russian Uranium Imports Act","introducedDate":"2023-02-14","subjects.count":6,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1042?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 1042.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 10\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by preventing imports of uranium from Russia.\n[Page H842]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-01-15T18:51:50Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9668","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1049/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1049","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1049/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1049/committees?format=json","policyArea.name":"Emergency Management","title":"REAADI for Disasters Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1049","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1049/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1049/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1049/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1049/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1049/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1049?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9669","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1029/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"1029","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1029/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Protecting Military Servicemembers' Data Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1029","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1029/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1029/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1029/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1029/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1029/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-03-29","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1029?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9670","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1028/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"1028","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1028/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1028/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Servicemembers and Veterans Empowerment and Support Act of 2023","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"1028","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1028/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1028/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1028/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1028/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1028/relatedbills?format=json","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1028?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:02:09Z"}} +{"type":"node","id":"9671","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1027/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"1027","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/1027/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1027/subjects?format=json","title":"STAND with Taiwan Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1027","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1027/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1027/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1027/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1027/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1027/relatedbills?format=json","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1027?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9672","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1026/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"1026","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1026/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1026/committees?format=json","policyArea.name":"Health","type":"S","title":"Gun Violence Prevention Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1026","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1026/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1026/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1026/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1026/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1026/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":30,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1026?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9673","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1025/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1025","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1025/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1025/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"SAFEGUARD Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1025","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1025/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1025/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1025/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1025/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1025/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1025?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9674","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/765/text?format=json","updateDate":"2024-07-03T08:05:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bowman","sponsors.0.isByRequest":"N","request.billNumber":"765","sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/765/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/765/committees?format=json","policyArea.name":"Arts, Culture, Religion","title":"African American History Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"765","cosponsors.countIncludingWithdrawnCosponsors":122,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/765/cosponsors?format=json","sponsors.0.bioguideId":"B001223","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/765/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/765/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/765/actions?format=json","latestAction.actionDate":"2023-02-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/765/relatedbills?format=json","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":122,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/765?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOWMAN:\nH.R. 765.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nAfrican American history\n[Page H681]\n","sponsors.0.district":16,"sponsors.0.firstName":"Jamaal","updateDateIncludingText":"2024-07-27T16:27:11Z"}} +{"type":"node","id":"9675","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/767/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"767","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/767/committees?format=json","policyArea.name":"International Affairs","title":"MINDS Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"767","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/767/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/767/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/767/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/767/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-09","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/767?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9676","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/766/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"766","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/766/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/766/subjects?format=json","policyArea.name":"Education","title":"Pay Teachers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"766","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/766/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/766/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/766/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/766/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/766/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/766?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9677","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Boebert","cboCostEstimates.0.pubDate":"2023-06-02T21:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Animals","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"764","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/764/cosponsors?format=json","sponsors.0.bioguideId":"B000825","actions.url":"https://api.congress.gov/v3/bill/118/hr/764/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/764/relatedbills?format=json","latestAction.actionDate":"2024-05-01","textVersions.count":4,"sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":5,"cosponsors.count":25,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-206","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/764/text?format=json","updateDate":"2024-11-09T04:56:36Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"764","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/764/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/764/subjects?format=json","title":"Trust the Science Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on April 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":25,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59239","request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/206?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/764/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/764/summaries?format=json","cboCostEstimates.0.title":"H.R. 764, Trust the Science Act","introducedDate":"2023-02-02","subjects.count":6,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/764?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 764.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defense and general welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nPermanelty Delists Gray Wolves in the lower 48 United\nStates.\n[Page H681]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-01-09T00:18:25Z"}} +{"type":"node","id":"9678","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/763/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"763","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/763/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/763/committees?format=json","policyArea.name":"Energy","title":"Reduce Russian Uranium Imports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"763","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/763/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/763/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/763/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/763/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/763/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/763?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9679","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2023-04-19T19:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-97.","sponsors.0.party":"R","number":"679","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/679/cosponsors?format=json","sponsors.0.bioguideId":"S001217","laws.0.number":"118-97","actions.url":"https://api.congress.gov/v3/bill/118/s/679/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/679/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-25","textVersions.url":"https://api.congress.gov/v3/bill/118/s/679/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"679","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/679/committees?format=json","title":"GAO Database Modernization Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59087","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/25?format=json","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/679/summaries?format=json","cboCostEstimates.0.title":"S. 679, GAO Database Modernization Act of 2023","introducedDate":"2023-03-07","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/679?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9680","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/762/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/762/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"762","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 20 (Wednesday, February 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H325]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/762/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/762/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","latestAction.actionDate":"2023-02-10","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/762/text?format=json","bill.updateDate":"2025-01-03T04:44:41Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/762/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"762","subjects.url":"https://api.congress.gov/v3/bill/118/hr/762/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/762/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:41Z","title":"Building Resilient Supply Chains Act","bill.title":"SAFE TO DRIVE Act","bill.number":"762","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/762/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/762/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/762/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-02-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/762/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/762/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/762?format=json","bill.introducedDate":"2021-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 1,3, and 14 of the\nConstitution.\nThe single subject of this legislation is:\nThe single subject of this legislation is to promote U.S.\nmanufactoriung by building resilient supply chains.\n[Page H681]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/762/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}} +{"type":"node","id":"9681","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/761/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"761","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/761/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/761/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Stop Forced Organ Harvesting Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"761","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/761/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/761/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/761/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/761/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/761/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":21,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/761?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9682","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/760/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"760","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/760/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/760/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Healthy Food Financing Initiative Reauthorization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"760","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/760/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/760/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/760/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/760/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/760/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/760?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9683","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/759/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"759","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/759/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/759/committees?format=json","title":"Beagle Brigade Act of 2023","type":"S","latestAction.text":"Became Public Law No: 118-191.","sponsors.0.party":"D","number":"759","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/759/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/759/titles?format=json","laws.0.number":"118-191","summaries.url":"https://api.congress.gov/v3/bill/118/s/759/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/759/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/759/relatedbills?format=json","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":5,"introducedDate":"2023-03-09","cosponsors.count":11,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/759?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:43:41Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9684","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/758/text?format=json","updateDate":"2024-07-24T15:23:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"758","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/117/s/758/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/758/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Moving Americans Privacy Protection Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"758","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/758/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/758/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/758/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/758/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/758/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","latestAction.actionTime":"16:09:50","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":3,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/758?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:23:41Z"}} +{"type":"node","id":"9685","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/755/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"755","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/755/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/755/subjects?format=json","type":"S","title":"Protecting Critical Ecosystems and Military Readiness in Florida Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"755","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/755/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/755/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/755/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/755/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/755?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9686","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/757/text?format=json","updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"757","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/757/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/757/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Kids from Candy-Flavored Drugs Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"757","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/757/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/757/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/757/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/757/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/757/relatedbills?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/757?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 757.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact thIs\nlegislation is provided by Article 1, section 8 of the United\nStatos Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carring out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nTo amend the Controlled Substanes Act to prohibit\nmanufacturing or distributing candy-flavored controlled\nsubstances for mInors, and for other purposes.\n[Page H680]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:23:51Z"}} +{"type":"node","id":"9687","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/754/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"754","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/754/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/754/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Mental Health and Wellness in Schools Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"754","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/754/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/754/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/754/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/754/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/754/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/754?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9688","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/756/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"756","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/756/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/756/subjects?format=json","policyArea.name":"Taxation","title":"REVOKE Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"756","request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-03-16","summaries.count":1,"sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/756/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/756/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/756/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/756/relatedbills?format=json","latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-03-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/756?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:26Z"}} +{"type":"node","id":"9689","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/752/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"752","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1571-1572)","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/752/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/752/committees?format=json","type":"S","title":"Preventing Violence Against Female Inmates Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"752","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/752/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/752/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/752/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/752/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/752/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/752?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:26Z"}} +{"type":"node","id":"9690","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/750/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"750","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/750/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/750/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Taxpayer Funding for Health Centers Providing Abortion Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"750","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/750/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/750/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/750/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/750/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/750?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9691","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/751/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"751","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/751/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/751/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Human-Animal Chimera Prohibition Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"751","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/751/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/751/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/751/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/751/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/751/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-03-09","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/751?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"9692","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/749/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"749","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hr/749/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/749/committees?format=json","type":"HR","title":"Turn OFF THE TAP Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"749","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/749/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/749/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/749/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/749/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/749/relatedbills?format=json","latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2023-02-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/749?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nThe subject of this bill is preventing federal funds from\ngoing to sanctioned entities.\n[Page H680]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9693","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/748/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"748","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/748/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/748/committees?format=json","type":"S","title":"American Aviator Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"748","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/748/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/748/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/748/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/748/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/748/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/748?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9694","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"446","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/446/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/446/committees?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Trading System Preservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"446","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/446/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/446/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/446/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/446?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-07-24T15:23:45Z"}} +{"type":"node","id":"9695","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/439/text?format=json","relatedBills.count":2,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"439","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/hr/439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/439/committees?format=json","type":"HR","title":"Public Land Search and Rescue Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"439","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/439/cosponsors?format=json","sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/439/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/439/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","titles.count":3,"introducedDate":"2023-01-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/439?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 439.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article I, Section 8, Clause 1\n[Page H252]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-24T18:06:37Z"}} +{"type":"node","id":"9696","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/445/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"445","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/445/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/445/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Grizzly Bear State Management Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"445","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/445/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/445/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/445?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9697","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/435/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"435","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/435/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/435/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Ensuring Military Readiness Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"435","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/435/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/435/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/435/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/435/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/435/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/435?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9698","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/438/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"438","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/438/committees?format=json","policyArea.name":"Energy","title":"Natural Gas Export Expansion Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"438","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/438/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/438/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/438/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/438?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9699","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/436/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"436","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S864-865)","committees.url":"https://api.congress.gov/v3/bill/118/s/436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/436/subjects?format=json","policyArea.name":"International Affairs","title":"SAFE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"436","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/436/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/436/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/436?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9700","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"434","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/434/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"PAID OFF Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S427)","sponsors.0.party":"R","number":"434","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/434/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/434/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/434/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/434?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9701","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/433/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"433","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/433/subjects?format=json","type":"S","title":"A bill to require the Secretary of Agriculture to convene a blue ribbon panel to review the forest inventory and analysis program of the Forest Service, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"433","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/433/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/433/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/433/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/433?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9702","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"427","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/427/committees?format=json","title":"Financial Freedom Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"427","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/427/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/427/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/427/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/427?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9703","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Welch","cboCostEstimates.0.pubDate":"2023-10-24T18:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"432","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/432/cosponsors?format=json","sponsors.0.bioguideId":"W000800","actions.url":"https://api.congress.gov/v3/bill/118/s/432/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/432/relatedbills?format=json","latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-149","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59700","textVersions.url":"https://api.congress.gov/v3/bill/118/s/432/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"cboCostEstimates.1.pubDate":"2023-10-24T18:27:00Z","request.congress":"118","actions.count":12,"request.billNumber":"432","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/432/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/432/subjects?format=json","title":"Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023","cboCostEstimates.1.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cboCostEstimates.0.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59700","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/149?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/432/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/432/summaries?format=json","cboCostEstimates.0.title":"S. 432, Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023","latestAction.actionTime":"18:04:11","introducedDate":"2023-02-15","subjects.count":6,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/432?format=json","cboCostEstimates.1.title":"S. 432, Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023 ","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9704","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/425/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"425","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/425/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/425/committees?format=json","policyArea.name":"Immigration","type":"S","title":"Secure and Protect Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"425","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/425/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/425/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/425/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/425/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/425/relatedbills?format=json","latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/425?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"9705","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/431/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"431","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/431/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/431/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"UNRWA Accountability and Transparency Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"431","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/431/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/431/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/431/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/431/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/431/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":24,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/431?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9706","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Law","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/424/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"424","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 12 (Thursday, January 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SIRES:\nH.R. 424.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 3(d)(1) of rule XIII of the Rules of the\nHouse of Representatives, the Committee finds the authority\nfor this legislation in article I, section 8 of the\nConstitution.\n[Page H225]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/424/cosponsors?format=json","sponsors.0.bioguideId":"J000299","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/424/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Johnson, Mike [R-LA-4]","bill.sponsors.0.bioguideId":"S001165","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","cosponsors.count":10,"request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Sires, Albio [D-NJ-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/424/text?format=json","bill.updateDate":"2025-01-03T04:42:14Z","updateDate":"2024-07-24T15:24:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/424/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000299?format=json","request.billNumber":"424","committees.url":"https://api.congress.gov/v3/bill/118/hr/424/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/424/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:14Z","title":"Leaker Accountability Act of 2023","bill.title":"Safe Scooters Act","bill.number":"424","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/424/committees?format=json","latestAction_actionDate":"2021-02-24","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/424/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/424/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001165?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-20","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Albio","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/424/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/424/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/424?format=json","bill.introducedDate":"2021-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 13 (Friday, January 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Louisiana:\nH.R. 424.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H252]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":8,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/424/text?format=json","bill.sponsors.0.lastName":"Sires"}} +{"type":"node","id":"9707","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/430/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"430","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/430/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/430/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to provide authority to enter into a cooperative agreement to protect civilians in Iraq and the Arabian Peninsula from weaponized unmanned aerial systems.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"430","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/430/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/430/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/430/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/430/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/430/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/430?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9708","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/429/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"429","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/429/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/429/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Abandoned Well Remediation Research and Development Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"429","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/429/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/429/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/429/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/429/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/429/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-02-15","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/429?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9709","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/423/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"423","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/423/subjects?format=json","policyArea.name":"Health","title":"Easy Enrollment in Health Care Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"423","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/423/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/423/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/423/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/423/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/423/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/423?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:23:45Z"}} +{"type":"node","id":"9710","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/428/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"428","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/428/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/428/committees?format=json","type":"S","title":"FIND Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"428","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/428/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/428/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/428/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/428/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/428/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":22,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/428?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9711","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/417/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"417","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/417/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/417/committees?format=json","type":"S","title":"Francis G. Newlands Memorial Removal Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"417","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/417/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/417/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/417/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/417/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/417/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/417?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9712","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/418/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"418","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Environmental Protection","subjects.url":"https://api.congress.gov/v3/bill/118/s/418/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/418/committees?format=json","type":"S","title":"Justice for Jana Elementary Act of 2023","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"418","request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":2,"sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/418/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/418/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/418/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/418/relatedbills?format=json","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","latestAction.actionTime":"13:19:29","titles.count":4,"introducedDate":"2023-02-14","subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/418?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T17:17:39Z"}} +{"type":"node","id":"9713","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wicker","cboCostEstimates.0.pubDate":"2023-08-08T21:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 147.","sponsors.0.party":"R","number":"416","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/416/cosponsors?format=json","sponsors.0.bioguideId":"W000437","actions.url":"https://api.congress.gov/v3/bill/118/s/416/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/416/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/416/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"416","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/416/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/416/committees?format=json","title":"HARM Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations\non July 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59428","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-02-24","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/416/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/416/summaries?format=json","cboCostEstimates.0.title":"S. 416, Holding Accountable Russian Mercenaries Act","introducedDate":"2023-02-14","subjects.count":15,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/416?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9714","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/136/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"136","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/136/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"ISA Student Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"136","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/136/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/136/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/136/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/136?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"9715","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9716","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":41,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9717","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":44,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9718","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2023-04-17T17:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Committee on Veterans' Affairs. Ordered to be reported with an amendment in the nature of a substitute favorably.","sponsors.0.party":"D","number":"132","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/132/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/132/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/132/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/132/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"132","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/132/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/132/committees?format=json","title":"Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59068","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/132/summaries?format=json","cboCostEstimates.0.title":"S. 132, Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","introducedDate":"2023-01-30","subjects.count":15,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/132?format=json","updateDateIncludingText":"2025-01-14T17:05:14Z","sponsors.0.firstName":"Sherrod"}} +{"type":"node","id":"9719","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}} +{"type":"node","id":"9720","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"9721","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}} +{"type":"node","id":"9722","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","policyArea.name":"Health","type":"HR","title":"Defund Planned Parenthood Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"9723","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","type":"S","title":"Preventive Health Savings Act","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"9724","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/113/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"cosponsors.count":21,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","title":"Prescription Pricing for the People Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":21,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","introducedDate":"2023-01-26","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"9725","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2023-05-02T19:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Became Public Law No: 118-18.","sponsors.0.party":"R","number":"112","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/112/cosponsors?format=json","sponsors.0.bioguideId":"B001310","laws.0.number":"118-18","actions.url":"https://api.congress.gov/v3/bill/118/s/112/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/112/relatedbills?format=json","latestAction.actionDate":"2023-10-06","textVersions.count":5,"sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":8,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/112/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"112","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/112/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/112/subjects?format=json","title":"A bill to amend title 38, United States Code, to strengthen benefits for children of Vietnam veterans born with spina bifida, and for other purposes.","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58974","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/112/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/112/summaries?format=json","cboCostEstimates.0.title":"S. 112, a bill to amend title 38, United States Code, to strengthen benefits for children of Vietnam veterans born with spina bifida, and for other purposes","introducedDate":"2023-01-26","subjects.count":8,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/112?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:02:09Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9726","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S201)","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/127/relatedbills?format=json","latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/127?format=json","updateDateIncludingText":"2025-01-14T18:51:33Z","sponsors.0.firstName":"Maria"}} +{"type":"node","id":"9727","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-01-28","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/126/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"9728","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"9729","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9730","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/117/s/123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}} +{"type":"node","id":"9731","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","type":"HR","title":"No Vaccine Passports Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9732","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-01-26","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"9733","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9734","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/106/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"106","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/106/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/106/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"106","request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/106/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/106/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-07-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/106?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9735","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-01-26","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}} +{"type":"node","id":"9736","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hjres/104/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"cosponsors.count":29,"introducedDate":"2024-07-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/104?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9737","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/103/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"103","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/103/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/103/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"Safeguarding and Securing the Open Internet; Restoring Internet Freedom\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"103","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/103/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/103/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/103/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/103/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-23","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/103?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9738","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/102/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"102","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/102/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/102/committees?format=json","policyArea.name":"Science, Technology, Communications","title":"Space Research Innovation Act","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"R","number":"102","cosponsors.countIncludingWithdrawnCosponsors":65,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/102/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/102/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/102/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/102/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/102/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":65,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/102?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 102.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"9739","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/101/text?format=json","updateDate":"2024-07-24T15:19:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Orden","sponsors.0.isByRequest":"N","request.billNumber":"101","sponsors.0.url":"https://api.congress.gov/v3/member/V000135?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/101/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/101/subjects?format=json","policyArea.name":"Congress","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States to prohibit Members of Congress from receiving compensation for any period during which a Government shutdown is in effect.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"101","request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"sponsors.0.bioguideId":"V000135","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/101/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hjres/101/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/101/actions?format=json","latestAction.actionDate":"2023-11-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/101/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Orden, Derrick [R-WI-3]","titles.count":2,"introducedDate":"2023-11-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/101?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 187 (Monday, November 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN ORDEN:\nH.J. Res. 101.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nThe single subject of this legislation is:\nProposing an amendment to the Constitution of the United\nStates to prohibit Members of Congress from receiving\ncompensation for any period during which a Government\nshutdown is in effect.\n[Page H5730]\n","sponsors.0.district":3,"sponsors.0.firstName":"Derrick","updateDateIncludingText":"2024-07-24T15:19:54Z"}} +{"type":"node","id":"9740","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Garbarino","cboCostEstimates.0.pubDate":"2024-07-22T20:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-216.","policyArea.name":"Finance and Financial Sector","type":"HJRES","latestAction.text":"Placed on the Union Calendar, Calendar No. 614.","sponsors.0.party":"R","number":"100","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/100/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"G000597","laws.0.number":"117-216","actions.url":"https://api.congress.gov/v3/bill/118/hjres/100/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/100/relatedbills?format=json","sponsors.0.fullName":"Rep. Garbarino, Andrew R. [R-NY-2]","amendments.url":"https://api.congress.gov/v3/bill/117/hjres/100/amendments?format=json","titles.count":2,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-727","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/100/text?format=json","updateDate":"2025-01-17T03:06:30Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"100","sponsors.0.url":"https://api.congress.gov/v3/member/G000597?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/100/committees?format=json","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on May 16, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60565","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-02","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/727?format=json","summaries.count":1,"request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/100/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/100/summaries?format=json","cboCostEstimates.0.title":"H.J. Res. 100, a joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to “Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure”","introducedDate":"2023-11-09","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/100?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 186 (Thursday, November 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARBARINO:\nH.J. Res. 100.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, Article I\nThe single subject of this legislation is:\nResolution under the Congressional Review Act to nullify\nthe Securities and Exchange Commission's rule ``Cybersecurity\nRisk Management, Strategy, Governance, and Incident\nDisclosure''.\n[Page H5671]\n","sponsors.0.district":2,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-01-17T03:06:30Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9741","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/86/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"86","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","subjects.url":"https://api.congress.gov/v3/bill/118/s/86/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/86/committees?format=json","policyArea.name":"Congress","type":"S","title":"Members of Congress Pension Opt Out Clarification Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"86","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/86/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/86/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/86/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/86/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/86/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/86?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.J. Res. 86.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 7\n[Page H4723]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9742","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/85/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"85","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/85/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/85/committees?format=json","type":"S","title":"No TikTok on United States Devices Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"85","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/85/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/85/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/85/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/85/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/85/relatedbills?format=json","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-01-25","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/85?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 71 (Friday, April 29, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.J. Res. 85.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe bill is enacted pursuant to the power granted Congress\nby Article V of the Constitution.\n[Page H4708]\n","sponsors.0.district":25,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9743","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/84/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"84","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/s/84/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/84/subjects?format=json","policyArea.name":"Health","title":"Defund EcoHealth Alliance Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"84","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/84/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/84/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/84/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/84/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/84/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-01-25","subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/84?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 70 (Thursday, April 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.J. Res. 84.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H4609]\n","sponsors.0.district":10,"sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9744","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":119,"sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2024-09-09T20:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Arts, Culture, Religion","type":"HR","latestAction.text":"Referred to the House Committee on Education and Workforce.","sponsors.0.party":"R","number":"82","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/82/cosponsors?format=json","amendments.count":14,"sponsors.0.bioguideId":"B001302","laws.0.number":"118-273","actions.url":"https://api.congress.gov/v3/bill/119/hr/82/actions?format=json","latestAction.actionDate":"2025-01-03","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/82/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/82/amendments?format=json","titles.count":3,"cosponsors.count":330,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/119/hr/82/text?format=json","updateDate":"2025-02-06T17:42:01Z","originChamber":"House","committees.count":1,"request.congress":"119","actions.count":3,"request.billNumber":"82","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","committees.url":"https://api.congress.gov/v3/bill/119/hr/82/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/119/hr/82/subjects?format=json","title":"Defund National Endowment for the Humanities Act of 2025","cboCostEstimates.0.description":"As introduced in the House of Representatives on January 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60690","cosponsors.countIncludingWithdrawnCosponsors":330,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/119/hr/82/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/119/hr/82/summaries?format=json","cboCostEstimates.0.title":"H.R. 82, Social Security Fairness Act of 2023","introducedDate":"2025-01-03","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/82?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 171, Number 1 (Friday, January 3, 2025)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS of Arizona:\nH.R. 82.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to provide that none of\nthe funds made available to the National Endowment for the\nHumanities for any fiscal year may be used to carry out\nsection 7 of the National Foundation on the Arts and the\nHumanities Act of 1965.\n[Page H38]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-06T17:42:01Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9745","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/80/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"80","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/hr/80/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/80/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To terminate the designation of the Islamic Republic of Pakistan as a major non-NATO ally, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"80","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/80/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/80/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/80/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/80/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":51,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/80?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.J. Res. 80.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H3865]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9746","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/78/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:04Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"78","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/78/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/78/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Child Interstate Abortion Notification Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"78","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/78/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/78/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/78/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/78/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/78/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":17,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/78?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.J. Res. 78.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V: The Congress, whenever two thirds of both\nHouses shall deem it necessary, shall propose Amendments to\nthis Constitution . . .\n[Page H3859]\n","sponsors.0.district":3,"sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:24:04Z"}} +{"type":"node","id":"9747","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/77/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"77","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/77/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/77/committees?format=json","policyArea.name":"Commerce","title":"STEP Improvement Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"77","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/77/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/77/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/77/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/77/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/77/relatedbills?format=json","latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/77?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 48 (Thursday, March 17, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.J. Res. 77.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V of the U.S. Constitution.\n[Page H3828]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}} +{"type":"node","id":"9748","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/48/text?format=json","updateDate":"2024-07-24T15:23:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"48","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/48/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/48/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States providing that the rights extended by the Constitution are the rights of natural persons only.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"48","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/48/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/48/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/48/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/48/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/48/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/48?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.J. Res. 48.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nThis bill proposes an amendment to the Constitution of the\nUnited States providing that the rights extended by the\nConstitution are the rights of natural persons only.\n[Page H1695]\n","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2024-07-24T15:23:18Z"}} +{"type":"node","id":"9749","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/60/text?format=json","updateDate":"2024-07-24T15:22:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"60","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/60/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/60/committees?format=json","policyArea.name":"Education","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States to require the United States and the States to jointly ensure a high-quality education to all persons within the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"60","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/60/cosponsors?format=json","sponsors.0.bioguideId":"D000623","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/60/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/60/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/60/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":2,"introducedDate":"2023-04-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/60?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.J. Res. 60.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nEducation\n[Page H2088]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:13Z"}} +{"type":"node","id":"9750","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/74/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"74","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/hr/74/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/74/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit the use of Federal funds to propose, establish, implement, or enforce any requirement that an individual wear a mask or other face covering, or be vaccinated, to prevent the spread of COVID-19, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"74","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/74/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/74/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/74/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/74/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/74?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 74.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9751","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/71/text?format=json","relatedBills.count":6,"updateDate":"2024-07-24T15:21:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"Crane","sponsors.0.isByRequest":"N","request.billNumber":"71","sponsors.0.url":"https://api.congress.gov/v3/member/C001132?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Emergency Management","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/71/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/71/committees?format=json","type":"HJRES","title":"Relating to a national emergency declared by the President on May 22, 2003.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"71","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/71/cosponsors?format=json","sponsors.0.bioguideId":"C001132","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/71/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/71/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/71/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/71/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","sponsors.0.fullName":"Rep. Crane, Elijah [R-AZ-2]","latestAction.actionTime":"18:13:56","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/71?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRANE:\nH.J. Res. 71.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 9, Clause 7: ``No money shall be drawn\nfrom Treasury, but in Consequence of Appropriations made by\nLaw; and a regular Statement and Account of Receipts and\nExpenditures of all public Money shall be published from time\nto time.''\nThe single subject of this legislation is:\nThe purpose of this bill is to end the national emergency\nproclamation in Iraw enacted in 2003.\n[Page H2934]\n","sponsors.0.district":2,"sponsors.0.firstName":"Elijah","updateDateIncludingText":"2024-07-24T15:21:55Z"}} +{"type":"node","id":"9752","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/69/text?format=json","relatedBills.count":6,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"69","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/hr/69/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/69/committees?format=json","title":"NOSHA Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"69","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/69/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/69/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/69/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/69/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/69/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/69?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 69.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9753","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/53/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nehls","sponsors.0.isByRequest":"N","request.billNumber":"53","sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/53/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/53/committees?format=json","policyArea.name":"Environmental Protection","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"53","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/53/cosponsors?format=json","sponsors.0.bioguideId":"N000026","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/53/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/53/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/53/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/53/relatedbills?format=json","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","titles.count":2,"introducedDate":"2023-04-06","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/53?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 60 (Thursday, April 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.J. Res. 53.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is,\nProviding for congressional disapproval under chapter 8 of\ntitle 5, United States Code, of the rule submitted by the\nEnvironmental Protection Agency relating to ``Control of Air\nPollution From New Motor Vehicles: Heavy-Duty Engine and\nVehicle Standards''.\n[Page H1712]\n","sponsors.0.district":22,"sponsors.0.firstName":"Troy","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"9754","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/70/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"70","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/70/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/70/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Credit Card Penalty Fees (Regulation Z)\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"70","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/70/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/70/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/70/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/70/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/70/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2024-04-08","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/70?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9755","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/69/text?format=json","relatedBills.count":6,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"69","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/hr/69/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/69/committees?format=json","title":"NOSHA Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"69","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/69/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/69/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/69/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/69/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/69/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sjres/69?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 69.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9756","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/68/text?format=json","relatedBills.count":1,"updateDate":"2024-04-11T17:15:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"68","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/117/sjres/68/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/68/subjects?format=json","policyArea.name":"Congress","type":"SJRES","title":"A joint resolution providing for the issuance of a summons, providing for the appointment of a committee to receive and to report evidence, and establishing related procedures concerning the articles of impeachment against Alejandro Nicholas Mayorkas.","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 352.","sponsors.0.party":"R","number":"68","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/68/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/68/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/68/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/68/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/68/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-03-23","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/68?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-04-11T17:15:44Z"}} +{"type":"node","id":"9757","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/67/text?format=json","relatedBills.count":1,"updateDate":"2025-02-07T21:53:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"67","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S7259-7260)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/67/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/67/committees?format=json","policyArea.name":"Labor and Employment","title":"Small Business Flexibility Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"67","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/67/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/67/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/67/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/67/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sjres/67/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sjres/67?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 67.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-07T21:53:44Z"}} +{"type":"node","id":"9758","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/60/text?format=json","updateDate":"2024-07-24T15:22:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"60","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Failed of passage in Senate by Yea-Nay Vote. 49 - 49. Record Vote Number: 390.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/60/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/60/committees?format=json","policyArea.name":"Education","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States to require the United States and the States to jointly ensure a high-quality education to all persons within the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"60","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/60/cosponsors?format=json","sponsors.0.bioguideId":"D000623","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/60/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/60/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/60/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","titles.count":2,"introducedDate":"2023-04-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sjres/60?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeSAULNIER:\nH.J. Res. 60.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nEducation\n[Page H2088]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:13Z"}} +{"type":"node","id":"9759","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-04-17T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 282.","sponsors.0.party":"D","number":"66","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/66/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-144","actions.url":"https://api.congress.gov/v3/bill/118/s/66/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/66/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-64","textVersions.url":"https://api.congress.gov/v3/bill/118/s/66/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"66","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/66/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/66/committees?format=json","title":"NOTAM Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59070","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-13","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/64?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/66/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/66/summaries?format=json","cboCostEstimates.0.title":"S. 66, NOTAM Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/66?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9760","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/65/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"McConnell","sponsors.0.isByRequest":"N","request.billNumber":"65","sponsors.0.url":"https://api.congress.gov/v3/member/M000355?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/65/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/65/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","sponsors.0.party":"R","number":"65","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/65/cosponsors?format=json","sponsors.0.bioguideId":"M000355","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/65/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/65/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/65/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/65/relatedbills?format=json","sponsors.0.fullName":"Sen. McConnell, Mitch [R-KY]","titles.count":2,"cosponsors.count":49,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/65?format=json","sponsors.0.firstName":"Mitch","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9761","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/62/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"62","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/62/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/62/committees?format=json","policyArea.name":"Agriculture and Food","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Animal and Plant Health Inspection Service relating to \"Importation of Fresh Beef From Paraguay\".","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"62","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/62/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/62/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/62/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/62/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-03-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/62/relatedbills?format=json","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","latestAction.actionTime":"09:03:10","titles.count":2,"introducedDate":"2024-02-26","cosponsors.count":12,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/62?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T16:43:44Z"}} +{"type":"node","id":"9762","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/63/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"63","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/63/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/63/committees?format=json","policyArea.name":"Labor and Employment","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Employee or Independent Contractor Classification Under the Fair Labor Standards Act\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"63","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2022-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/63/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/63/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/63/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/63/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/63/relatedbills?format=json","latestAction.actionDate":"2024-03-06","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","latestAction.actionTime":"16:08:39","titles.count":2,"introducedDate":"2024-03-06","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/63?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"16:08:39"}} +{"type":"node","id":"9763","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/64/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"64","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/64/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/64/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"The Infrastructure Investment and Jobs Act: Prevention and Elimination of Digital Discrimination\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"64","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/64/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/64/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/64/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/64/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/64/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/64?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9764","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/55/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"55","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Star Print ordered on the joint resolution.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/55/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/55/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"55","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2022-09-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/55/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/55/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/55/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/55/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/55/relatedbills?format=json","latestAction.actionDate":"2024-01-22","textVersions.count":1,"sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/55?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9765","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/57/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"57","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/57/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/57/committees?format=json","policyArea.name":"Health","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Treasury relating to \"Coronavirus State and Local Fiscal Recovery Funds\".","latestAction.text":"Failed of passage in Senate by Yea-Nay Vote. 46 - 49. Record Vote Number: 168.","sponsors.0.party":"R","number":"57","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/57/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/57/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/57/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/57/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/57/relatedbills?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":2,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"cosponsors.count":12,"introducedDate":"2024-02-01","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/57?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-11-09T01:28:28Z"}} +{"type":"node","id":"9766","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2023-08-07T19:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 267.","sponsors.0.party":"I","number":"61","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/61/cosponsors?format=json","sponsors.0.bioguideId":"S001191","actions.url":"https://api.congress.gov/v3/bill/118/s/61/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/61/relatedbills?format=json","sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-123","textVersions.url":"https://api.congress.gov/v3/bill/118/s/61/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"61","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/61/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/61/committees?format=json","title":"Combating Cartels on Social Media Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on June 14, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59462","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"Mauze","latestAction_actionDate":"2022-09-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/123?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/61/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/61/summaries?format=json","cboCostEstimates.0.title":"S. 61, Combating Cartels on Social Media Act of 2023","introducedDate":"2023-01-24","subjects.count":8,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/61?format=json","sponsors.0.firstName":"Kyrsten","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9767","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/58/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"58","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/58/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/58/committees?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Furnaces\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"58","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2022-08-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/58/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/58/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/58/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/58/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/58/relatedbills?format=json","latestAction.actionDate":"2024-05-22","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"13:28:58","titles.count":2,"cosponsors.count":36,"introducedDate":"2024-02-01","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/58?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-03T20:58:56Z"}} +{"type":"node","id":"9768","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2024-10-15T15:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-188.","sponsors.0.party":"I","number":"59","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/59/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"S001191","laws.0.number":"118-188","actions.url":"https://api.congress.gov/v3/bill/118/s/59/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","amendments.url":"https://api.congress.gov/v3/bill/118/s/59/amendments?format=json","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-250","textVersions.url":"https://api.congress.gov/v3/bill/118/s/59/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"59","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/59/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/59/committees?format=json","title":"Chance to Compete Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60824","request.format":"json","latestAction_actionDate":"2022-08-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/250?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/59/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/59/summaries?format=json","cboCostEstimates.0.title":"S. 59, Chance to Compete Act of 2024","introducedDate":"2023-01-24","subjects.count":12,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/59?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"Kyrsten","laws.0.type":"Public Law"}} +{"type":"node","id":"9769","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/56/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"56","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/56/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/56/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sales to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"56","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-07-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/56/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/56/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/56/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/56/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/56/relatedbills?format=json","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/56?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9770","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/54/text?format=json","relatedBills.count":1,"updateDate":"2025-02-22T01:21:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"54","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/54/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/54/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"54","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/54/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/54/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/54/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/54/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/54/relatedbills?format=json","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/54?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-02-22T01:21:13Z"}} +{"type":"node","id":"9771","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/53/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nehls","sponsors.0.isByRequest":"N","request.billNumber":"53","sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/53/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/53/committees?format=json","policyArea.name":"Environmental Protection","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"53","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/53/cosponsors?format=json","sponsors.0.bioguideId":"N000026","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/53/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/53/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/53/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/53/relatedbills?format=json","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","titles.count":2,"introducedDate":"2023-04-06","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sjres/53?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 60 (Thursday, April 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.J. Res. 53.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is,\nProviding for congressional disapproval under chapter 8 of\ntitle 5, United States Code, of the rule submitted by the\nEnvironmental Protection Agency relating to ``Control of Air\nPollution From New Motor Vehicles: Heavy-Duty Engine and\nVehicle Standards''.\n[Page H1712]\n","sponsors.0.district":22,"sponsors.0.firstName":"Troy","updateDateIncludingText":"2025-01-16T11:56:46Z"}} +{"type":"node","id":"9772","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/52/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"52","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/52/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/52/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency entitled \"Finding That Lead Emissions From Aircraft Engines That Operate on Leaded Fuel Cause or Contribute to Air Pollution That May Reasonably Be Anticipated To Endanger Public Health and Welfare\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"52","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/52/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/52/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/52/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/52/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-06","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":2,"introducedDate":"2023-12-06","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/52?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9773","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/50/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"50","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/sjres/50/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/50/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"50","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2022-06-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/50/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/50/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/50/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/50/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/50/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-09","sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"cosponsors.count":8,"introducedDate":"2023-11-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/50?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9774","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":119,"sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2024-09-09T20:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Arts, Culture, Religion","type":"HR","latestAction.text":"Referred to the House Committee on Education and Workforce.","sponsors.0.party":"R","number":"82","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/82/cosponsors?format=json","amendments.count":14,"sponsors.0.bioguideId":"B001302","laws.0.number":"118-273","actions.url":"https://api.congress.gov/v3/bill/119/hr/82/actions?format=json","latestAction.actionDate":"2025-01-03","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/82/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/82/amendments?format=json","titles.count":3,"cosponsors.count":330,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/119/hr/82/text?format=json","updateDate":"2025-02-06T17:42:01Z","originChamber":"House","committees.count":1,"request.congress":"119","actions.count":3,"request.billNumber":"82","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","committees.url":"https://api.congress.gov/v3/bill/119/hr/82/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/119/hr/82/subjects?format=json","title":"Defund National Endowment for the Humanities Act of 2025","cboCostEstimates.0.description":"As introduced in the House of Representatives on January 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60690","cosponsors.countIncludingWithdrawnCosponsors":330,"request.format":"json","latestAction_actionDate":"2022-12-22","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/119/hr/82/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/119/hr/82/summaries?format=json","cboCostEstimates.0.title":"H.R. 82, Social Security Fairness Act of 2023","introducedDate":"2025-01-03","subjects.count":4,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/82?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 171, Number 1 (Friday, January 3, 2025)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS of Arizona:\nH.R. 82.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is to provide that none of\nthe funds made available to the National Endowment for the\nHumanities for any fiscal year may be used to carry out\nsection 7 of the National Foundation on the Arts and the\nHumanities Act of 1965.\n[Page H38]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-06T17:42:01Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9775","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Rules.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"9776","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/117/s/123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}} +{"type":"node","id":"9777","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-16","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/121/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","latestAction.actionDate":"2024-12-12","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/121?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}} +{"type":"node","id":"9778","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Received in the Senate.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/124?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"Brian"}} +{"type":"node","id":"9779","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/122?format=json","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9780","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/120/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/120/relatedbills?format=json","latestAction.actionDate":"2024-12-05","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/120?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}} +{"type":"node","id":"9781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/110/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"110","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/110/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/110/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Alaska; Hunting and Trapping in National Preserves\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"110","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/110/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/110/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/110/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/110/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/110/relatedbills?format=json","latestAction.actionDate":"2024-09-19","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-09-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/110?format=json","sponsors.0.district":22,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9782","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/119?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}} +{"type":"node","id":"9783","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","title":"No Vaccine Passports Act","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9784","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-11-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9785","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/116/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"116","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/116/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed enhancement or upgrade of sensitivity of technology or capability of certain major defense equipment for the Government of Israel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"I","number":"116","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/116/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/116/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/116/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/116/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/116?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9786","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/115/relatedbills?format=json","latestAction.actionDate":"2024-11-20","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/115?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9787","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","title":"Preventive Health Savings Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z"}} +{"type":"node","id":"9788","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/93/text?format=json","updateDate":"2024-07-24T15:23:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"93","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/93/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/93/committees?format=json","policyArea.name":"Law","type":"HR","title":"Protecting Businesses From Frivolous COVID Lawsuits Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"93","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hconres/93/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/93/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/93/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/93/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/93?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 93.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:23:22Z"}} +{"type":"node","id":"9789","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/89/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"89","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/89/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/89/committees?format=json","policyArea.name":"Congress","title":"No Budget, No Pay Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"89","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/89/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/89/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/89/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/89/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/89/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/89?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9790","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/86/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"86","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/86/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/86/committees?format=json","policyArea.name":"Congress","type":"S","title":"Members of Congress Pension Opt Out Clarification Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"86","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/86/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/86/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/86/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/86/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/86/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/86?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.J. Res. 86.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 7\n[Page H4723]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9791","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/84/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"84","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/s/84/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/84/subjects?format=json","policyArea.name":"Health","title":"Defund EcoHealth Alliance Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"84","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/84/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/84/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/84/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/84/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/84/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-01-25","subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/84?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 70 (Thursday, April 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.J. Res. 84.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H4609]\n","sponsors.0.district":10,"sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9792","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/80/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"80","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/80/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/80/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To terminate the designation of the Islamic Republic of Pakistan as a major non-NATO ally, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"80","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/80/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/80/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/80/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/80/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":51,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/80?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.J. Res. 80.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H3865]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9793","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/73/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"73","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"Health","subjects.url":"https://api.congress.gov/v3/bill/118/hr/73/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/73/committees?format=json","title":"No Pro-Abortion Task Force Act","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"73","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/73/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/73/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/73/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/73/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/73/relatedbills?format=json","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/73?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 73.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-06-12T18:21:02Z"}} +{"type":"node","id":"9794","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/52/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"52","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/52/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/52/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency entitled \"Finding That Lead Emissions From Aircraft Engines That Operate on Leaded Fuel Cause or Contribute to Air Pollution That May Reasonably Be Anticipated To Endanger Public Health and Welfare\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"52","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/52/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/52/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/52/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/52/actions?format=json","latestAction.actionDate":"2023-12-06","textVersions.count":1,"sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":2,"introducedDate":"2023-12-06","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/52?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T17:12:38Z","latestAction_actionTime":"13:16:31"}} +{"type":"node","id":"9795","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/51/text?format=json","relatedBills.count":2,"updateDate":"2024-04-17T23:45:12Z","originChamber":"Senate","congress":117,"request.congress":"117","actions.count":8,"sponsors.0.lastName":"Leahy","sponsors.0.isByRequest":"N","request.billNumber":"51","sponsors.0.url":"https://api.congress.gov/v3/member/L000174?format=json","latestAction_text":"Pursuant to the provisions of H. Res. 1531, S. Con. Res. 51 is considered passed House. (text: CR H10074-10075)","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/51/subjects?format=json","policyArea.name":"Congress","type":"SCONRES","title":"A concurrent resolution providing for a correction in the enrollment of H.R. 2617.","latestAction.text":"Pursuant to the provisions of H. Res. 1531, S. Con. Res. 51 is considered passed House. (text: CR H10074-10075)","sponsors.0.party":"D","number":"51","request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":3,"sponsors.0.bioguideId":"L000174","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/51/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/51/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/51/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2022-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/51/relatedbills?format=json","sponsors.0.fullName":"Sen. Leahy, Patrick J. [D-VT]","latestAction.actionTime":"12:38:20","titles.count":2,"introducedDate":"2022-12-22","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/51?format=json","sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-04-17T23:45:12Z","latestAction_actionTime":"12:38:20"}} +{"type":"node","id":"9796","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/16/text?format=json","relatedBills.count":1,"updateDate":"2024-07-09T18:13:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"16","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Held at the desk.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hconres/16/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/16/subjects?format=json","type":"HCONRES","title":"Recognizing the victims of the Port Chicago explosion of July 17, 1944, the 79th anniversary of the greatest homeland loss of life of World War II, and exonerating the 50 African-American sailors unjustly court-martialed by the Navy.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"16","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/16/cosponsors?format=json","sponsors.0.bioguideId":"D000623","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/16/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/16/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/16/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/16/relatedbills?format=json","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","latestAction.actionTime":"12:11:03","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":13,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/16?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-09T18:13:39Z","latestAction_actionTime":"12:11:03"}} +{"type":"node","id":"9797","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/50/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"50","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7075)","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/sjres/50/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/50/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"50","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/50/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/50/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/50/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/50/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/50/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-09","sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"cosponsors.count":8,"introducedDate":"2023-11-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/50?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9798","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/47/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":117,"request.congress":"117","actions.count":6,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"47","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 603.","committees.url":"https://api.congress.gov/v3/bill/117/sconres/47/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/47/subjects?format=json","policyArea.name":"International Affairs","type":"SCONRES","title":"A concurrent resolution commending the bravery, courage, and resolve of the women and men of Iran demonstrating in more than 80 cities and risking their safety to speak out against the Iranian regime's human rights abuses.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 603.","sponsors.0.party":"D","number":"47","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/47/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/47/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/47/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/47/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2022-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/47/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2022-09-29","cosponsors.count":23,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/47?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9799","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/46/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"46","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Star Print ordered on the concurrent resolution.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/46/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/46/committees?format=json","policyArea.name":"Health","type":"HR","title":"Mental Health Access and Gun Violence Prevention Act of 2023","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"46","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/46/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/46/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/46/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/46/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/46/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/46?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 46.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1, 3 and 18 of\nthe United States Constitution.\n[Page H108]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9800","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/49/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":117,"request.congress":"117","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"49","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6786-6787)","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/49/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sconres/49/committees?format=json","policyArea.name":"International Affairs","type":"SCONRES","title":"A concurrent resolution expressing support for the Geneva Consensus Declaration on Promoting Women's Health and Strengthening the Family and urging that the United States be added as a signatory.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S6786-6787)","sponsors.0.party":"R","number":"49","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/49/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/49/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/49/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/49/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2022-11-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/49/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2022-11-17","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/49?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9801","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/45/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"45","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sconres/45/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/45/subjects?format=json","policyArea.name":"Congress","type":"SCONRES","title":"A concurrent resolution affirming the nature and importance of the support of the United States for Syria.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7183-7184)","sponsors.0.party":"D","number":"45","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-09-30","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/45/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/45/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/45/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/45/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/45/relatedbills?format=json","latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","latestAction.actionTime":"12:15:04","titles.count":2,"cosponsors.count":5,"introducedDate":"2024-12-18","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/45?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z","latestAction_actionTime":"12:15:04"}} +{"type":"node","id":"9802","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/48/text?format=json","updateDate":"2024-07-24T15:23:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"48","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5561-5562)","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/48/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/48/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States providing that the rights extended by the Constitution are the rights of natural persons only.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"48","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/48/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/48/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/48/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/48/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/48/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/48?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.J. Res. 48.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nThis bill proposes an amendment to the Constitution of the\nUnited States providing that the rights extended by the\nConstitution are the rights of natural persons only.\n[Page H1695]\n","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2024-07-24T15:23:18Z"}} +{"type":"node","id":"9803","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/44/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:49:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"44","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/44/subjects?format=json","type":"SCONRES","title":"A concurrent resolution directing the Clerk of the House of Representatives to make a correction in the enrollment of the bill H.R. 5009.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"D","number":"44","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-09-21","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/44/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/44/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/44/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/44/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/44/relatedbills?format=json","latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","latestAction.actionTime":"18:04:09","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":4,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/44?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-31T18:49:07Z","latestAction_actionTime":"14:46:26"}} +{"type":"node","id":"9804","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Carper","sponsors.0.isByRequest":"N","latestAction_text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 34 - 63. Record Vote Number: 265.","policyArea.name":"Armed Forces and National Security","type":"SCONRES","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"43","cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/43/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"C000174","actions.url":"https://api.congress.gov/v3/bill/118/sconres/43/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/43/relatedbills?format=json","latestAction.actionDate":"2024-12-11","sponsors.0.fullName":"Sen. Carper, Thomas R. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/118/sconres/43/amendments?format=json","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/43/text?format=json","updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":10,"request.billNumber":"43","sponsors.0.url":"https://api.congress.gov/v3/member/C000174?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/43/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/43/committees?format=json","title":"A concurrent resolution expressing support for the designation of September 29, 2024, as \"Veterans of Foreign Wars of the United States Day\".","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-07-20","summaries.count":1,"request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/43/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/43/summaries?format=json","latestAction.actionTime":"16:55:07","introducedDate":"2024-09-25","subjects.count":3,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/43?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-14T16:56:14Z"}} +{"type":"node","id":"9805","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Clyde","cboCostEstimates.0.pubDate":"2023-03-31T18:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Government Operations and Politics","type":"HJRES","latestAction.text":"The Chair directed the Clerk to notify the Senate of the action of the House.","sponsors.0.party":"R","number":"42","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/42/cosponsors?format=json","sponsors.0.bioguideId":"C001116","actions.url":"https://api.congress.gov/v3/bill/118/hjres/42/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/42/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2023-06-13","sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","titles.count":2,"cosponsors.count":19,"request.contentType":"application/json","latestAction_actionTime":"15:02:43","committeeReports.0.citation":"H. Rept. 118-33","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/42/text?format=json","updateDate":"2025-03-07T20:06:14Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":42,"request.billNumber":"42","sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/42/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/42/committees?format=json","title":"Disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":19,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59033","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-07-13","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/33?format=json","summaries.count":4,"request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/42/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/42/summaries?format=json","cboCostEstimates.0.title":"H.J. Res. 42, a joint resolution disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022","latestAction.actionTime":"17:52:27","introducedDate":"2023-03-09","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/42?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.J. Res. 42.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec, 8, Clause 16 of the U.S. Constitution\nstates: The Congress shall have the power to ``Excercise\nexclusive legislation in all cases whatsoeverm over such\nDistrict (not exceeding 10 Miles square, as may, by Cession\nof particular States, and the Acceptance of Congress, become\nthe Seat of Government of the United States.''\nThe single subject of this legislation is:\nThis bill pertains to DC matters\n[Page H1251]\n","sponsors.0.district":9,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-03-07T20:06:14Z"}} +{"type":"node","id":"9806","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/41/text?format=json","updateDate":"2024-11-21T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"41","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 29 - 67. Record Vote Number: 228. (CR S2960)","committees.url":"https://api.congress.gov/v3/bill/118/hr/41/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/41/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Same-Day Scheduling Act of 2023","latestAction.text":"Subcommittee Consideration and Mark-up Session Held.","sponsors.0.party":"R","number":"41","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-06-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/41/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/41/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/41/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/41/actions?format=json","latestAction.actionDate":"2023-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":71,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/41?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 41.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nauthorized by Congress' power to ``provide for the common\nDefense and general Welfare of the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-21T09:05:49Z"}} +{"type":"node","id":"9807","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/40/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"40","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 415.","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/40/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/40/committees?format=json","policyArea.name":"Congress","title":"RESTORE Resolution of 2024","type":"SCONRES","latestAction.text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","sponsors.0.party":"R","number":"40","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-06-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/40/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/40/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/40/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/40/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/40/relatedbills?format=json","latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/40?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"9808","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/39/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"39","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S2496)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/39/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/39/subjects?format=json","policyArea.name":"Immigration","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that individuals who have been wrongfully or unjustly deported from the United States who established significant ties to the United States through years of life in the United States deserve a chance to come home to reunite with loved ones through a fair and centralized process within the Department of Homeland Security.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","sponsors.0.party":"D","number":"39","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/39/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/39/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/39/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/39/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/39/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/39?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"9809","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","latestAction.actionTime":"12:06:52","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z","latestAction_actionTime":"12:06:52"}} +{"type":"node","id":"9810","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S2283-2284)","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2022-05-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z"}} +{"type":"node","id":"9811","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S2248)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-05-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/37/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"cosponsors.count":3,"introducedDate":"2023-01-09","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9812","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2022-04-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","latestAction.actionDate":"2023-06-22","textVersions.count":1,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"12:12:28","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"12:12:28"}} +{"type":"node","id":"9813","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/35/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9814","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/641/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"641","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 171.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/641/subjects?format=json","policyArea.name":"Private Legislation","committees.url":"https://api.congress.gov/v3/bill/118/hr/641/committees?format=json","type":"HR","title":"For the relief of Reverend Olusegun Samson Olaoye.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"641","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-12-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/641/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/641/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/641/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/641/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/641/relatedbills?format=json","latestAction.actionDate":"2023-01-30","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":2,"introducedDate":"2023-01-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/641?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 641.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nImmigration Private Bill\n[Page H511]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"9815","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1532/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"1532","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1532/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1532/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Expressing support for designation of the week of October 4, 2024, through October 10, 2024, as \"World Space Week\".","latestAction.text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1532","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1532/cosponsors?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1532/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1532/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1532/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-04","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":2,"introducedDate":"2024-10-04","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1532?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9816","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1382/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:57:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1382","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Pursuant to the provisions of H. Res. 1531, H. Res. 1382 is considered passed House. (text: CR H10074)","subjects.url":"https://api.congress.gov/v3/bill/118/s/1382/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1382/committees?format=json","policyArea.name":"Law","type":"S","title":"Protecting Our Supreme Court Justices Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1382","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1382/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1382/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1382/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1382/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","latestAction.actionTime":"12:38:18","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1382?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:39Z","latestAction_actionTime":"12:38:18"}} +{"type":"node","id":"9817","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/366/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"366","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Pursuant to the provisions of H. Res. 1531, H. Res. 366 is considered passed House. (text: CR H10074)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/366/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/366/committees?format=json","title":"Democracy in Design Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"366","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/366/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/366/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/366/relatedbills?format=json","latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","latestAction.actionTime":"12:38:15","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/366?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:12:38Z","latestAction_actionTime":"12:38:15"}} +{"type":"node","id":"9818","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1531/text?format=json","relatedBills.count":5,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"1531","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1531/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1531/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for designation of the week of October 6, 2024, through October 12, 2024, as \"Latex Allergy Awareness Week\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1531","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-12-23","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/664?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1531/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1531/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1531/actions?format=json","latestAction.actionDate":"2024-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1531/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","latestAction.actionTime":"12:38:13","titles.count":2,"introducedDate":"2024-10-04","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1531?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2025-02-04T16:54:13Z","latestAction_actionTime":"12:38:13","committeeReports.0.citation":"H. Rept. 117-664"}} +{"type":"node","id":"9819","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1530/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"1530","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1530/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1530/committees?format=json","type":"HRES","title":"Recognizing the life, achievements, and public service of former President James Earl \"Jimmy\" Carter, Jr., on the occasion of his 100th birthday.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1530","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","latestAction_actionDate":"2022-12-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1530/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1530/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1530/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1530/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":2,"introducedDate":"2024-10-01","cosponsors.count":43,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1530?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9820","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Luna","sponsors.0.isByRequest":"N","latestAction_text":"Pursuant to the provisions of H. Res. 1529, H. Res. 1434 is considered passed House.","policyArea.name":"Armed Forces and National Security","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1434","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1434/cosponsors?format=json","sponsors.0.bioguideId":"L000596","actions.url":"https://api.congress.gov/v3/bill/118/hr/1434/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1434/relatedbills?format=json","latestAction.actionDate":"2023-03-08","sponsors.0.fullName":"Rep. Luna, Anna Paulina [R-FL-13]","titles.count":3,"cosponsors.count":19,"request.contentType":"application/json","latestAction_actionTime":"23:30:10","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1434/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1434","sponsors.0.url":"https://api.congress.gov/v3/member/L000596?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1434/committees?format=json","title":"Stop Our Sexual Assault in the Military Act","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1434/summaries?format=json","latestAction.actionTime":"23:30:10","introducedDate":"2023-03-08","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1434?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LUNA:\nH.R. 1434.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 cl. 14\nThe single subject of this legislation is:\nSelf defense/combat training for active duty service\nmembers\n[Page H1207]\n","sponsors.0.district":13,"sponsors.0.firstName":"Anna Paulina","updateDateIncludingText":"2024-07-24T15:23:28Z"}} +{"type":"node","id":"9821","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","latestAction_text":"Pursuant to the provisions of H. Res. 1529, H. Res. 693 is considered passed House.","policyArea.name":"Health","type":"HRES","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"693","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/693/cosponsors?format=json","sponsors.0.bioguideId":"J000288","actions.url":"https://api.congress.gov/v3/bill/118/hres/693/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/693/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-22","sponsors.0.fullName":"Rep. Johnson, Henry C. \"Hank,\" Jr. [D-GA-4]","titles.count":2,"cosponsors.count":13,"request.contentType":"application/json","latestAction_actionTime":"23:30:08","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/693/text?format=json","updateDate":"2024-12-05T19:17:31Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"693","sponsors.0.url":"https://api.congress.gov/v3/member/J000288?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/693/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/693/committees?format=json","title":"Expressing support for the designation of September 9 as \"National African Immigrant and Refugee HIV/AIDS and Hepatitis Awareness (NAIRHHA) Day\".","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"C. \"Hank\"","latestAction_actionDate":"2022-12-21","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/693/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/693/summaries?format=json","latestAction.actionTime":"23:30:08","introducedDate":"2023-09-18","subjects.count":8,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/693?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-12-05T19:17:31Z"}} +{"type":"node","id":"9822","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luttrell","bill.latestAction.actionDate":"2021-03-02","cboCostEstimates.0.pubDate":"2023-05-16T16:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1529/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1529","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 2, Clause 18. Congress has the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof,\nincluding the regulation of health care for citizens for the\nUnited States\n[Page H1016]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1529/cosponsors?format=json","sponsors.0.bioguideId":"L000603","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1529/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1529/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.sponsors.0.bioguideId":"W000821","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.congress":117,"latestAction_actionTime":"21:08:51","bill.sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1529/text?format=json","bill.updateDate":"2025-01-03T04:49:34Z","updateDate":"2024-12-18T09:05:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":9,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","request.billNumber":"1529","committees.url":"https://api.congress.gov/v3/bill/118/hr/1529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1529/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:34Z","title":"Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.title":"VOTER ID Act","bill.number":"1529","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on April 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59150","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1529/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1529/summaries?format=json","bill.cosponsors.count":10,"cboCostEstimates.0.title":"H.R. 1529, Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bruce","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1529?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''.\nThe single subject of this legislation is:\nVeteran Affairs\n[Page H1279]\n","sponsors.0.district":8,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1529/text?format=json","bill.sponsors.0.lastName":"Westerman"}} +{"type":"node","id":"9823","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1379/text?format=json","updateDate":"2025-01-17T21:04:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"committeeReports.1.citation":"H. Rept. 117-583,Part 2","sponsors.0.lastName":"Ogles","sponsors.0.isByRequest":"N","request.billNumber":"1379","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","latestAction_text":"Supplemental report filed by the Committee on Veterans' Affairs, H. Rept. 117-583, Part II.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1379/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1379/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Impeaching Kamala Devi Harris, Vice President of the United States, for high crimes and misdemeanors.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1379","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-20","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/583?format=json","sponsors.0.bioguideId":"O000175","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1379/actions?format=json","latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1379/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/117/HRPT/583?format=json","titles.count":2,"introducedDate":"2024-07-23","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1379?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-01-17T21:04:35Z","committeeReports.0.citation":"H. Rept. 117-583"}} +{"type":"node","id":"9824","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1476/text?format=json","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Timmons","sponsors.0.isByRequest":"N","request.billNumber":"1476","sponsors.0.url":"https://api.congress.gov/v3/member/T000480?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 168.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1476/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1476/committees?format=json","policyArea.name":"Commerce","title":"PPP Shell Company Discovery Act","type":"HR","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1476","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/648?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1476/cosponsors?format=json","sponsors.0.bioguideId":"T000480","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1476/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1476/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1476/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Timmons, William R. IV [R-SC-4]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-03-08","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1476?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIMMONS:\nH.R. 1476.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nA Bill to identify and report fraudulent PPP Reciepients.\n[Page H1208]\n","sponsors.0.district":4,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:23:24Z","committeeReports.0.citation":"H. Rept. 117-648"}} +{"type":"node","id":"9825","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1528/text?format=json","updateDate":"2024-12-16T19:19:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"1528","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committees on Ways and Means, the Judiciary, Financial Services, Energy and Commerce, Agriculture, Oversight and Reform, Armed Services, Veterans' Affairs, Natural Resources, Foreign Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1528/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1528/committees?format=json","policyArea.name":"Agriculture and Food","type":"HRES","title":"Expressing support for the recognition of September 29, 2024, as \"International Day of Awareness of Food Loss and Waste\".","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"R","number":"1528","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1528/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1528/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1528/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1528/actions?format=json","latestAction.actionDate":"2024-10-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2024-10-01","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1528?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-16T19:19:20Z"}} +{"type":"node","id":"9826","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1475/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Smucker","sponsors.0.isByRequest":"N","request.billNumber":"1475","sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 167.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1475/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1475/committees?format=json","policyArea.name":"Health","type":"HR","title":"Hospital Adoption Education Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1475","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-12-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/647?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1475/cosponsors?format=json","sponsors.0.bioguideId":"S001199","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1475/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1475/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1475/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","titles.count":3,"cosponsors.count":6,"introducedDate":"2023-03-08","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1475?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 1475.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I of the U.S. Constitution\n(the Spending Clause)\nThe single subject of this legislation is:\nTo establish a grant program to fund adoption education for\nhospitals and establish a committee of adoption experts to\ndisseminate nationally best practices in adoption sensitivity\nprocedures.\n[Page H1208]\n","sponsors.0.district":11,"sponsors.0.firstName":"Lloyd","updateDateIncludingText":"2025-02-04T16:28:27Z","committeeReports.0.citation":"H. Rept. 117-647"}} +{"type":"node","id":"9827","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1524/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Tiffany","sponsors.0.isByRequest":"N","request.billNumber":"1524","sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1524/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1524/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","title":"FAIR Act of 2023","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Oversight and Accountability, Education and the Workforce, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1524","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1524/cosponsors?format=json","sponsors.0.bioguideId":"T000165","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1524/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1524/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1524/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1524/relatedbills?format=json","latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","titles.count":4,"cosponsors.count":11,"introducedDate":"2023-03-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1524?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 1524.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the constitution\nAmendment XIV, Section 5 of the constitution\nThe single subject of this legislation is:\nCivil rights\n[Page H1251]\n","sponsors.0.district":7,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9828","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"SMITH","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1519","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1519/cosponsors?format=json","sponsors.0.bioguideId":"S000522","actions.url":"https://api.congress.gov/v3/bill/118/hr/1519/actions?format=json","latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1519/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"10:27:04","committeeReports.0.citation":"H. Rept. 117-643","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1519/text?format=json","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1519","sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1519/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1519/subjects?format=json","title":"Compensation for the Victims of State Misrepresentations to the World Health Organization Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-12-15","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/643?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1519/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1519/summaries?format=json","latestAction.actionTime":"10:27:04","introducedDate":"2023-03-09","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1519?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 1519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 1 of the U.S. Constitution\nThe single subject of this legislation is:\nVictims Compensation\n[Page H1251]\n","sponsors.0.district":4,"sponsors.0.firstName":"CHRISTOPHER","updateDateIncludingText":"2024-07-24T15:23:25Z"}} +{"type":"node","id":"9829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1527/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1527","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1527/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Access to Contraception for Servicemembers and Dependents Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1527","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1527/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1527/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1527/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1527/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":30,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1527?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9830","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1525/text?format=json","updateDate":"2024-12-16T19:19:16Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Casar","sponsors.0.isByRequest":"N","request.billNumber":"1525","sponsors.0.url":"https://api.congress.gov/v3/member/C001131?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Immigration","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1525/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1525/committees?format=json","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1525","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1525/cosponsors?format=json","sponsors.0.bioguideId":"C001131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1525/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1525/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1525/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Rep. Casar, Greg [D-TX-35]","titles.count":2,"introducedDate":"2024-10-01","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1525?format=json","sponsors.0.district":35,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-16T19:19:16Z"}} +{"type":"node","id":"9831","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1526/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1526","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1526/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"NTIA Policy and Cybersecurity Coordination Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1526","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1526/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1526/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1526/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1526?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"9832","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1485/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T16:04:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1485","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hres/1485/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1485/subjects?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that the third Friday of September shall be recognized as \"National POW/MIA Recognition Day\".","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1485","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1485/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1485/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1485/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1485/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1485/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-23","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":2,"introducedDate":"2024-09-23","cosponsors.count":41,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1485?format=json","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-01-03T16:04:33Z"}} +{"type":"node","id":"9833","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-11-17T16:52:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1516/summaries?format=json","bill.relatedBills.count":8,"type":"HR","bill.summaries.count":1,"number":"1516","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"amendments.count":6,"sponsors.0.bioguideId":"P000048","bill.subjects.count":3,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1516/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1516/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-319","updateDate":"2025-03-03T20:01:49Z","committees.count":2,"request.billNumber":"1516","committees.url":"https://api.congress.gov/v3/bill/118/hr/1516/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:43Z","bill.number":"1516","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","latestAction_actionDate":"2022-12-14","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1516/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1516/summaries?format=json","cboCostEstimates.0.title":"H.R. 1516, DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","introducedDate":"2023-03-09","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Katie","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1516/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hres/1516?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProhibits DHS funds from being awarded to universities that\nhave ties to the Chinese Communist Party.\n[Page H1251]\n","bill.sponsors.0.district":45,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1516/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-03-02","latestAction_text":"Pursuant to the provisions of H. Res. 1518, H. Res. 1516 is considered passed House. (consideration: CR text: H9752-9803; text: CR H9752-9803)","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1015]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1516/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1516/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"P000618","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1516/amendments?format=json","bill.actions.count":3,"titles.count":5,"cosponsors.count":18,"latestAction_actionTime":"14:09:12","bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1516/text?format=json","bill.updateDate":"2025-01-03T04:49:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1516/subjects?format=json","request.congress":"118","actions.count":42,"committeeReports.1.citation":"H. Rept. 118-319,Part 2","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1516/subjects?format=json","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.title":"Stop Foreign Interference in Ballot Measures Act","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59754","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1516/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","request.billType":"hr","bill.cosponsors.count":26,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1516/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-02","sponsors.0.district":11,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"August","updateDateIncludingText":"2025-03-03T20:01:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1516/text?format=json","bill.sponsors.0.lastName":"Porter"}} +{"type":"node","id":"9834","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1355/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1355","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 135.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1355/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1355/committees?format=json","policyArea.name":"Health","title":"PASTEUR Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1355","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1355/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1355/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1355/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1355?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9835","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1275/text?format=json","updateDate":"2024-09-10T20:12:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"1275","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 134.","committees.url":"https://api.congress.gov/v3/bill/117/hres/1275/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1275/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1275","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/528?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1275/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1275/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1275/actions?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":1,"sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","latestAction.actionTime":"16:46:28","titles.count":2,"introducedDate":"2024-06-04","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1275?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2024-09-10T20:12:00Z","committeeReports.0.citation":"H. Rept. 117-528"}} +{"type":"node","id":"9836","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Schiff","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 133.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1274","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1274/cosponsors?format=json","sponsors.0.bioguideId":"S001150","actions.url":"https://api.congress.gov/v3/bill/118/hres/1274/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1274/relatedbills?format=json","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":2,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 117-527","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1274/text?format=json","updateDate":"2024-08-19T13:16:49Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"1274","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1274/committees?format=json","title":"Responding to the promulgation of the Safeguarding National Security Ordinance, under Article 23 of the Basic Law, by the Hong Kong Special Administrative Region Government on March 19, 2024.","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/527?format=json","summaries.count":2,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1274/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1274/summaries?format=json","introducedDate":"2024-06-03","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1274?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Adam","updateDateIncludingText":"2024-08-19T13:16:49Z"}} +{"type":"node","id":"9837","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1403/text?format=json","updateDate":"2024-08-28T13:19:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gimenez","sponsors.0.isByRequest":"N","request.billNumber":"1403","sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1403/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1403/committees?format=json","type":"HRES","title":"Recognizing Edmundo González of Venezuela as the winner of the Venezuelan Election which took place on July 28th, 2024 and condemning the Maduro regime.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1403","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-29","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1403/cosponsors?format=json","sponsors.0.bioguideId":"G000593","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1403/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1403/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1403/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-28]","latestAction.actionTime":"17:32:25","titles.count":2,"introducedDate":"2024-08-02","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1403?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Carlos","updateDateIncludingText":"2024-08-28T13:19:48Z","latestAction_actionTime":"17:32:25"}} +{"type":"node","id":"9838","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1398/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Porter","sponsors.0.isByRequest":"N","request.billNumber":"1398","sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1398/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1398/committees?format=json","type":"HRES","title":"Expressing support for the designation of July 30, 2024, as \"National Whistleblower Appreciation Day\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1398","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1398/cosponsors?format=json","sponsors.0.bioguideId":"P000618","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1398/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1398/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1398/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1398/relatedbills?format=json","sponsors.0.fullName":"Rep. Porter, Katie [D-CA-47]","titles.count":2,"introducedDate":"2024-07-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1398?format=json","sponsors.0.district":47,"sponsors.0.firstName":"Katie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9839","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1272/text?format=json","relatedBills.count":1,"updateDate":"2024-09-26T08:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"1272","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 132.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/hres/1272/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1272/subjects?format=json","type":"HRES","title":"Calling on the Biden Administration to pursue censure of Iran at the International Atomic Energy Agency (IAEA), refer the issue to the United Nations Security Council, and reaffirm that all measures will be taken to prevent the regime in Iran from acquiring nuclear weapons.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1272","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/525?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1272/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1272/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1272/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1272/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1272/relatedbills?format=json","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2024-06-03","cosponsors.count":32,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1272?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-09-26T08:05:41Z","committeeReports.0.citation":"H. Rept. 117-525"}} +{"type":"node","id":"9840","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1265/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"1265","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 131.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1265/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1265/subjects?format=json","policyArea.name":"Energy","type":"HRES","title":"Expressing support for the designation of May 2024 as \"Renewable Fuels Month\" to recognize the important role that renewable fuels play in reducing carbon impacts, lowering fuel prices for consumers, supporting rural communities, and lessening reliance on foreign adversaries.","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"1265","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/524?format=json","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1265/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1265/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1265/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1265/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1265/relatedbills?format=json","latestAction.actionDate":"2024-06-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":2,"cosponsors.count":8,"introducedDate":"2024-05-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1265?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2025-01-16T11:56:46Z","committeeReports.0.citation":"H. Rept. 117-524"}} +{"type":"node","id":"9841","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1408/text?format=json","updateDate":"2024-11-27T16:24:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","request.billNumber":"1408","sponsors.0.url":"https://api.congress.gov/v3/member/T000474?format=json","latestAction_text":"Referred to the House Committee on Rules.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1408/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1408/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HRES","title":"Recognizing August 6, National Night Out, the national coming together of Americans all over the Nation to unite and promote public safety.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1408","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1408/cosponsors?format=json","sponsors.0.bioguideId":"T000474","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1408/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1408/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1408/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1408/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","sponsors.0.fullName":"Rep. Torres, Norma J. [D-CA-35]","titles.count":2,"cosponsors.count":1,"introducedDate":"2024-08-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1408?format=json","sponsors.0.district":35,"sponsors.0.firstName":"Norma","updateDateIncludingText":"2024-11-27T16:24:44Z"}} +{"type":"node","id":"9842","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1406/text?format=json","relatedBills.count":1,"updateDate":"2024-08-28T13:20:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ramirez","sponsors.0.isByRequest":"N","request.billNumber":"1406","sponsors.0.url":"https://api.congress.gov/v3/member/R000617?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1406/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1406/committees?format=json","type":"HRES","title":"Commemorating 175 years of diplomatic relations between the United States and the Republic of Guatemala.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1406","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1406/cosponsors?format=json","sponsors.0.bioguideId":"R000617","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1406/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1406/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1406/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1406/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","sponsors.0.fullName":"Rep. Ramirez, Delia C. [D-IL-3]","titles.count":2,"introducedDate":"2024-08-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1406?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Delia","updateDateIncludingText":"2024-08-28T13:20:33Z"}} +{"type":"node","id":"9843","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1407/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steil","sponsors.0.isByRequest":"N","request.billNumber":"1407","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1407/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1407/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Recognizing the 12-year anniversary of the tragic attack that took place at the Oak Creek Sikh Gurdwara on August 5, 2012, and honoring the memory of those who died in the attack.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1407","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1407/cosponsors?format=json","sponsors.0.bioguideId":"S001213","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1407/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1407/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1407/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":2,"cosponsors.count":6,"introducedDate":"2024-08-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1407?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9844","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1410/text?format=json","updateDate":"2024-12-05T14:32:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Graves","sponsors.0.isByRequest":"N","request.billNumber":"1410","sponsors.0.url":"https://api.congress.gov/v3/member/G000577?format=json","latestAction_text":"Referred to the House Committee on Ethics.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1410/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1410/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for the consideration of the bill (H.R. 82) to amend title II of the Social Security Act to repeal the Government pension offset and windfall elimination provisions.","latestAction.text":"Laid on the table.","sponsors.0.party":"R","number":"1410","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Scott","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1410/cosponsors?format=json","sponsors.0.bioguideId":"G000577","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1410/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1410/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1410/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1410/relatedbills?format=json","sponsors.0.fullName":"Rep. Graves, Garret [R-LA-6]","latestAction.actionTime":"10:25:27","titles.count":2,"introducedDate":"2024-08-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1410?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Garret","updateDateIncludingText":"2024-12-05T14:32:16Z"}} +{"type":"node","id":"9845","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1411/text?format=json","relatedBills.count":2,"updateDate":"2024-11-21T19:52:18Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"1411","sponsors.0.url":"https://api.congress.gov/v3/member/L000551?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1411/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1411/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Recognizing July 2024 as the 30th anniversary of the reproductive justice movement to raise awareness around the history of reproductive justice and honor the foremothers of the reproductive justice movement, build a world in which Black girls and gender expansive people, as well as all Americans marginalized by their race, class, or gender, are free from systems of reproductive oppression of their bodies, sexuality, labor, and reproduction.","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1411","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1411/cosponsors?format=json","sponsors.0.bioguideId":"L000551","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1411/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1411/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1411/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1411/relatedbills?format=json","latestAction.actionDate":"2024-08-06","sponsors.0.fullName":"Rep. Lee, Barbara [D-CA-12]","titles.count":2,"introducedDate":"2024-08-06","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1411?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Barbara","updateDateIncludingText":"2024-11-21T19:52:18Z"}} +{"type":"node","id":"9846","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1402/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Finstad","sponsors.0.isByRequest":"N","request.billNumber":"1402","sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1402/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1402/committees?format=json","policyArea.name":"Sports and Recreation","type":"HRES","title":"Commending the Minnesota State University, Mankato women's and men's basketball teams for winning the 2024 NCAA Division II Basketball National Championships.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1402","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1402/cosponsors?format=json","sponsors.0.bioguideId":"F000475","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1402/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1402/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1402/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1402/relatedbills?format=json","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","titles.count":2,"introducedDate":"2024-08-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1402?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9847","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Jeffries","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1396","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1396/cosponsors?format=json","sponsors.0.bioguideId":"J000294","actions.url":"https://api.congress.gov/v3/bill/118/hres/1396/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1396/relatedbills?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Jeffries, Hakeem S. [D-NY-8]","titles.count":2,"cosponsors.count":12,"request.contentType":"application/json","latestAction_actionTime":"19:29:30","committeeReports.0.citation":"H. Rept. 117-507","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1396/text?format=json","updateDate":"2024-08-29T17:07:03Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1396","sponsors.0.url":"https://api.congress.gov/v3/member/J000294?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1396/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1396/subjects?format=json","title":"Recognizing a half century of the independence of the Republic of Cabo Verde and celebrating the contributions of Cabo Verdean-Americans to democracy in Cabo Verde and the United States.","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-28","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/507?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1396/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1396/summaries?format=json","latestAction.actionTime":"19:29:30","introducedDate":"2024-07-30","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1396?format=json","sponsors.0.district":8,"updateDateIncludingText":"2024-08-29T17:07:03Z","sponsors.0.firstName":"Hakeem"}} +{"type":"node","id":"9848","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 130.","policyArea.name":"Health","type":"HRES","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"1283","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1283/cosponsors?format=json","sponsors.0.bioguideId":"M001136","actions.url":"https://api.congress.gov/v3/bill/118/hres/1283/actions?format=json","latestAction.actionDate":"2024-06-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1283/relatedbills?format=json","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":2,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 117-523","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1283/text?format=json","updateDate":"2024-11-18T14:09:42Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1283","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1283/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1283/committees?format=json","title":"Supporting the designation of June 6, 2024, as National Naloxone Awareness Day.","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/523?format=json","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1283/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1283/summaries?format=json","introducedDate":"2024-06-07","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1283?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2024-11-18T14:09:42Z"}} +{"type":"node","id":"9849","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1397/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McCollum","sponsors.0.isByRequest":"N","request.billNumber":"1397","sponsors.0.url":"https://api.congress.gov/v3/member/M001143?format=json","latestAction_text":"Referred to the Subcommittee on Middle East, North Africa and Global Counterterrorism.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1397/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1397/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Expressing support for July to be designated as \"Disability Pride Month\".","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"1397","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1397/cosponsors?format=json","sponsors.0.bioguideId":"M001143","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1397/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1397/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1397/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1397/relatedbills?format=json","sponsors.0.fullName":"Rep. McCollum, Betty [D-MN-4]","titles.count":2,"introducedDate":"2024-07-30","cosponsors.count":10,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1397?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Betty","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9850","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1400/text?format=json","updateDate":"2024-11-21T19:51:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Carter","sponsors.0.isByRequest":"N","request.billNumber":"1400","sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1400/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1400/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Supporting the goals and ideals of Fentanyl Prevention and Awareness Day on August 21, 2024.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"1400","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2022-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1400/cosponsors?format=json","sponsors.0.bioguideId":"C001103","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1400/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1400/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1400/actions?format=json","latestAction.actionDate":"2024-08-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1400/relatedbills?format=json","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","titles.count":2,"introducedDate":"2024-08-02","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1400?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Earl","updateDateIncludingText":"2024-11-21T19:51:46Z"}} +{"type":"node","id":"9851","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1246/text?format=json","updateDate":"2025-01-06T20:20:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Huizenga","sponsors.0.isByRequest":"N","request.billNumber":"1246","sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 129.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/hres/1246/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1246/subjects?format=json","type":"HRES","title":"Condemning the Department of State's statement expressing condolences for the death of Iranian President Ebrahim Raisi, Foreign Minister Amir-Abdollahian, and other members of their delegation.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1246","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2022-09-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/522?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1246/cosponsors?format=json","sponsors.0.bioguideId":"H001058","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1246/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1246/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1246/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-21","sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-4]","titles.count":2,"introducedDate":"2024-05-21","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1246?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-06T20:20:01Z","committeeReports.0.citation":"H. Rept. 117-522"}} +{"type":"node","id":"9852","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1288/text?format=json","updateDate":"2024-08-07T16:19:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Burchett","sponsors.0.isByRequest":"N","request.billNumber":"1288","sponsors.0.url":"https://api.congress.gov/v3/member/B001309?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 128.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1288/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1288/committees?format=json","type":"HRES","title":"Condemning certain members of the intelligence community.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"1288","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/521?format=json","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1288/cosponsors?format=json","sponsors.0.bioguideId":"B001309","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1288/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1288/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1288/actions?format=json","latestAction.actionDate":"2024-06-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Burchett, Tim [R-TN-2]","titles.count":2,"introducedDate":"2024-06-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1288?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Tim","updateDateIncludingText":"2024-08-07T16:19:01Z","committeeReports.0.citation":"H. Rept. 117-521"}} +{"type":"node","id":"9853","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Donalds","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 127.","policyArea.name":"Immigration","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1285","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1285/cosponsors?format=json","sponsors.0.bioguideId":"D000032","actions.url":"https://api.congress.gov/v3/bill/118/hr/1285/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1285/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 117-520","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1285/text?format=json","updateDate":"2024-07-24T15:23:29Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1285","sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1285/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1285/committees?format=json","title":"Immigration Authorization Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/520?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1285/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1285/summaries?format=json","introducedDate":"2023-03-01","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1285?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 1285.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nImmigration\n[Page H1050]\n","sponsors.0.district":19,"sponsors.0.firstName":"Byron","updateDateIncludingText":"2024-07-24T15:23:29Z"}} +{"type":"node","id":"9854","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1116/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:45:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"1116","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1116/committees?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that the Federal Government should recoup monies from the Synergy Marine Group and Maersk Line Limited to compensate taxpayers for certain damages resulting from the allision of the cargo shipping vessel the Dali with the Francis Scott Key Bridge on March 26, 2024, and for other purposes.","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"R","number":"1116","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1116/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1116/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1116/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1116/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2024-04-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1116?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-06-11T15:45:35Z"}} +{"type":"node","id":"9855","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1110/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Thompson","sponsors.0.isByRequest":"N","request.billNumber":"1110","sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1110/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1110/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Supporting the goals and ideals of National Women's History Month.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1110","cosponsors.countIncludingWithdrawnCosponsors":60,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1110/cosponsors?format=json","sponsors.0.bioguideId":"T000460","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1110/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1110/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1110/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1110/relatedbills?format=json","latestAction.actionDate":"2024-03-29","sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-4]","titles.count":2,"introducedDate":"2024-03-29","cosponsors.count":60,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1110?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9856","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1113/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bera","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1113/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1113","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nARTICLE 1, SECTION 8.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1113/cosponsors?format=json","sponsors.0.bioguideId":"B001287","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1113/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","bill.sponsors.0.bioguideId":"C001119","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1113/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1113/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-21T09:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1113/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","request.billNumber":"1113","committees.url":"https://api.congress.gov/v3/bill/118/hr/1113/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1113/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Easy Enrollment in Health Care Act","bill.title":"Renewable Fuel Standard Integrity Act of 2021","bill.number":"1113","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1113/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1113/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1113/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":1,"bill.sponsors.0.firstName":"Angie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1113/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1113/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1113?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHealth\n[Page H875]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ami","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1113/text?format=json","bill.sponsors.0.lastName":"Craig"}} +{"type":"node","id":"9857","labels":["Bill"],"properties":{"relatedBills.count":4,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1112/text?format=json","updateDate":"2024-11-09T04:56:39Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":16,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1112","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1112/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1112/subjects?format=json","policyArea.name":"Immigration","type":"HRES","title":"Denouncing the Biden administration's immigration policies.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1112","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1112/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1112/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1112/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1112/actions?format=json","latestAction.actionDate":"2024-05-01","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1112/relatedbills?format=json","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","latestAction.actionTime":"17:24:58","titles.count":2,"introducedDate":"2024-04-05","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1112?format=json","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-11-09T04:56:39Z"}} +{"type":"node","id":"9858","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1109/text?format=json","updateDate":"2024-06-26T08:05:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"1109","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1109/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1109/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Recognizing the historic Woman Suffrage Procession of 1913 and honoring the courageous suffragists who fought tirelessly for women's right to vote.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1109","cosponsors.countIncludingWithdrawnCosponsors":63,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1109/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1109/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1109/actions?format=json","latestAction.actionDate":"2024-03-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":2,"introducedDate":"2024-03-26","cosponsors.count":63,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1109?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-06-26T08:05:36Z"}} +{"type":"node","id":"9859","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1111/text?format=json","updateDate":"2024-11-21T19:25:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"1111","sponsors.0.url":"https://api.congress.gov/v3/member/G000598?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/1111/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1111/subjects?format=json","type":"HRES","title":"Recognizing the importance and contributions of neurodivergent people to the United States.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"1111","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1111/cosponsors?format=json","sponsors.0.bioguideId":"G000598","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1111/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1111/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1111/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-02","sponsors.0.fullName":"Rep. Garcia, Robert [D-CA-42]","titles.count":2,"introducedDate":"2024-04-02","cosponsors.count":71,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1111?format=json","sponsors.0.district":42,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-11-21T19:25:57Z"}} +{"type":"node","id":"9860","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Bilirakis","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1104","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1104/cosponsors?format=json","sponsors.0.bioguideId":"B001257","actions.url":"https://api.congress.gov/v3/bill/118/hres/1104/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1104/relatedbills?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","titles.count":2,"cosponsors.count":10,"request.contentType":"application/json","latestAction_actionTime":"18:50:59","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1104/text?format=json","updateDate":"2024-08-21T08:05:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1104","sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1104/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1104/committees?format=json","title":"Recognizing the 203d anniversary of the War of Greek Independence.","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-05-11","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1104/summaries?format=json","latestAction.actionTime":"18:50:59","introducedDate":"2024-03-22","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1104?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Gus","updateDateIncludingText":"2024-08-21T08:05:27Z"}} +{"type":"node","id":"9861","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1103/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SMITH","bill.latestAction.actionDate":"2021-02-19","cboCostEstimates.0.pubDate":"2023-12-11T22:42:39Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1103/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 527.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"1103","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 1103.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe attached language falls within Congress delegated\nauthority to legislate interstate commerce, found in Article\nI, Section 8, clause 3 of the U.S. Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1103/cosponsors?format=json","sponsors.0.bioguideId":"S000522","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1103/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1103/relatedbills?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":3,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Smith, Christopher H. [R-NJ-4]","bill.sponsors.0.bioguideId":"B001248","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1103/relatedbills?format=json","bill.congress":117,"latestAction_actionTime":"12:20:18","bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1103/text?format=json","bill.updateDate":"2025-01-03T04:47:03Z","updateDate":"2024-12-16T20:43:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1103/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/S000522?format=json","request.billNumber":"1103","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1103/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1103/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:03Z","title":"Hong Kong Economic and Trade Office (HKETO) Certification Act","bill.title":"CABLE Competition Act","bill.number":"1103","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on November 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59811","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1103/committees?format=json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-05-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1103/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1103/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 1103, Hong Kong Economic and Trade Office (HKETO) Certification Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":13,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1103/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1103/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1103?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of New Jersey:\nH.R. 1103.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H856]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"CHRISTOPHER","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:43:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1103/text?format=json","bill.sponsors.0.lastName":"Burgess"}} +{"type":"node","id":"9862","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1106/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wexton","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1106/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1106","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 1106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 (relating to the power of\nCongress to lay and collect Taxes, Duties, Imposts and\nExcises, to pay the Debts and provide for the common Defense\nand general Welfare of the United States).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1106/cosponsors?format=json","sponsors.0.bioguideId":"W000825","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1106/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1106/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Wexton, Jennifer [D-VA-10]","bill.sponsors.0.bioguideId":"C001090","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1106/text?format=json","bill.updateDate":"2025-01-03T04:46:48Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1106/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000825?format=json","request.billNumber":"1106","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1106/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1106/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:48Z","title":"COST of Relocations Act","bill.title":"HEAR Act of 2021","bill.number":"1106","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1106/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1106/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1106/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1106/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1106/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1106?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WEXTON:\nH.R. 1106.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nRequiring a benefit-cost analysis for any proposed\nrelocation of a Federal agency.\n[Page H856]\n","sponsors.0.district":10,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Jennifer","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1106/text?format=json","bill.sponsors.0.lastName":"Cartwright"}} +{"type":"node","id":"9863","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1105/text?format=json","relatedBills.count":2,"updateDate":"2024-07-26T08:05:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cammack","sponsors.0.isByRequest":"N","request.billNumber":"1105","sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1105/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1105/committees?format=json","policyArea.name":"Agriculture and Food","type":"HRES","title":"Designating March 21, 2024, as \"National Women in Agriculture Day\".","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"R","number":"1105","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1105/cosponsors?format=json","sponsors.0.bioguideId":"C001039","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1105/relatedbills?format=json","sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","titles.count":2,"introducedDate":"2024-03-22","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1105?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Kat","updateDateIncludingText":"2024-07-26T08:05:32Z"}} +{"type":"node","id":"9864","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1107/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kim","bill.latestAction.actionDate":"2021-02-19","cboCostEstimates.0.pubDate":"2023-03-07T21:29:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1107/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1107","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASE:\nH.R. 1107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1107/cosponsors?format=json","sponsors.0.bioguideId":"K000397","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1107/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-03-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1107/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Kim, Young [R-CA-40]","bill.sponsors.0.bioguideId":"C001055","bill.actions.count":4,"bill.originChamber":"House","titles.count":5,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Case, Ed [D-HI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1107/text?format=json","bill.updateDate":"2025-01-03T04:46:47Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1107/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/K000397?format=json","request.billNumber":"1107","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1107/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1107/committees?format=json","bill.updateDateIncludingText":"2025-02-25T17:27:14Z","title":"PRC Is Not a Developing Country Act","bill.title":"PLAN Act","bill.number":"1107","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":9,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58978","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1107/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1107/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1107/summaries?format=json","bill.cosponsors.count":4,"cboCostEstimates.0.title":"H.R. 1107, PRC is Not a Developing Country Act","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001055?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1107/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1107/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1107?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIM of California:\nH.R. 1107.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo direct the Secretary of State to take certain actions\nwith respect to the labeling of the People's Republic of\nChina as a developing country, and for other purposes.\n[Page H867]\n","sponsors.0.district":40,"bill.sponsors.0.state":"HI","bill.sponsors.0.district":1,"sponsors.0.firstName":"Young","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1107/text?format=json","bill.sponsors.0.lastName":"Case"}} +{"type":"node","id":"9865","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1101/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Horsford","sponsors.0.isByRequest":"N","request.billNumber":"1101","sponsors.0.url":"https://api.congress.gov/v3/member/H001066?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H4850)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1101/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1101/committees?format=json","policyArea.name":"Commerce","type":"HRES","title":"Expressing support for the House of Representatives to work alongside the Congressional Black Caucus to build the Black Wealth Agenda and outline the legislative priorities to achieve the Black Wealth Agenda.","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1101","cosponsors.countIncludingWithdrawnCosponsors":57,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1101/cosponsors?format=json","sponsors.0.bioguideId":"H001066","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1101/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1101/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1101/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1101/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","sponsors.0.fullName":"Rep. Horsford, Steven [D-NV-4]","titles.count":2,"introducedDate":"2024-03-21","cosponsors.count":57,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1101?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Steven","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9866","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Moulton","sponsors.0.isByRequest":"N","latestAction_text":"Pursuant to the provisions of H. Res. 1097, H. Res. 1096 is considered passed House. (consideration: CR H4774-4775; text: CR H4774-4775)","policyArea.name":"Finance and Financial Sector","type":"HR","latestAction.text":"Became Public Law No: 118-10.","sponsors.0.party":"D","number":"1096","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1096/cosponsors?format=json","sponsors.0.bioguideId":"M001196","laws.0.number":"118-10","actions.url":"https://api.congress.gov/v3/bill/118/hr/1096/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1096/relatedbills?format=json","sponsors.0.fullName":"Rep. Moulton, Seth [D-MA-6]","titles.count":7,"cosponsors.count":301,"request.contentType":"application/json","latestAction_actionTime":"20:33:17","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1096/text?format=json","updateDate":"2024-07-24T15:15:24Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":21,"request.billNumber":"1096","sponsors.0.url":"https://api.congress.gov/v3/member/M001196?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1096/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1096/committees?format=json","title":"250th Anniversary of the United States Marine Corps Commemorative Coin Act","cosponsors.countIncludingWithdrawnCosponsors":301,"request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":4,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1096/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1096/summaries?format=json","latestAction.actionTime":"20:33:17","introducedDate":"2023-02-17","subjects.count":5,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1096?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOULTON:\nH.R. 1096.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 5 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to mint coins in\ncommemoration of the 250th Anniversary of the United States\nMarine Corps, and to support programs at the Marine Corps\nHeritage Center.\n[Page H856]\n","sponsors.0.district":6,"sponsors.0.firstName":"Seth","updateDateIncludingText":"2024-07-24T15:15:24Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9867","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1097/text?format=json","relatedBills.count":8,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moylan","sponsors.0.isByRequest":"N","request.billNumber":"1097","sponsors.0.url":"https://api.congress.gov/v3/member/M001219?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Arts, Culture, Religion","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1097/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1097/committees?format=json","type":"HRES","title":"Supporting the designation of March as National CHamoru Heritage and Culture Month.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1097","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-05-10","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/320?format=json","summaries.count":1,"sponsors.0.bioguideId":"M001219","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1097/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1097/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1097/actions?format=json","latestAction.actionDate":"2024-03-20","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1097/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Del. Moylan, James C. [R-GU-At Large]","latestAction.actionTime":"20:33:01","titles.count":2,"introducedDate":"2024-03-20","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GU","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1097?format=json","sponsors.0.district":8,"sponsors.0.firstName":"James","updateDateIncludingText":"2025-02-04T16:54:13Z","latestAction_actionTime":"20:33:01","committeeReports.0.citation":"H. Rept. 117-320"}} +{"type":"node","id":"9868","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1030/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T16:04:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"1030","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1030/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1030/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Calling on Vice President Kamala Harris to convene and mobilize the principal officers of the executive departments of the Cabinet to activate section 4 of the 25th Amendment to declare President Joseph R. Biden incapable of executing the duties of his office and to immediately exercise powers as Acting President.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1030","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1030/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1030/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1030/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1030/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1030/relatedbills?format=json","sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":2,"introducedDate":"2024-02-26","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1030?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-12-06T16:04:21Z"}} +{"type":"node","id":"9869","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1100/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Posey","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1100/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1100","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1100/cosponsors?format=json","sponsors.0.bioguideId":"P000599","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1100/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"bill.policyArea.name":"Civil Rights and Liberties, Minority Issues","sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":16,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1100/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1100/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","request.billNumber":"1100","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1100/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SAFE for America Act of 2023","bill.title":"Online Accessibility Act","bill.number":"1100","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1100/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1100/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1100/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1100/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1100/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1100?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POSEY:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nA Visa Lottery Immigration Bill\n[Page H856]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-12-04T09:05:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1100/text?format=json","bill.sponsors.0.lastName":"Budd"}} +{"type":"node","id":"9870","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1098/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1098","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/1098/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1098/committees?format=json","type":"S","title":"Global Health, Empowerment and Rights Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1098","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1098/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1098/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1098/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1098/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1098/relatedbills?format=json","latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1098?format=json","sponsors.0.district":27,"updateDateIncludingText":"2025-01-14T19:00:46Z","sponsors.0.firstName":"Jeanne"}} +{"type":"node","id":"9871","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1091/text?format=json","updateDate":"2024-06-11T15:42:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lieu","sponsors.0.isByRequest":"N","request.billNumber":"1091","sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","latestAction_text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1091/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1091/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Stop Hate Crimes Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"1091","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2022-05-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1091/cosponsors?format=json","sponsors.0.bioguideId":"L000582","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1091/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1091/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1091/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":21,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1091?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 1091.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nCivil rights\n[Page H856]\n","sponsors.0.district":36,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-06-11T15:42:46Z"}} +{"type":"node","id":"9872","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1092/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1092","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1092/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1092/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1092/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1092/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-09-26T08:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1092/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"1092","committees.url":"https://api.congress.gov/v3/bill/118/hr/1092/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1092/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"BENEFIT Act of 2023","bill.title":"To place temporary restrictions on acquisitions by the People's Republic of China, and for other purposes.","bill.number":"1092","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1092/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-05-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1092/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1092/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1092/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1092/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1092?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo strengthen the use of patient-experience data within the\nbenefit-risk framework for approval of new drugs.\n[Page H856]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-09-26T08:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1092/text?format=json","bill.sponsors.0.lastName":"Banks"}} +{"type":"node","id":"9873","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1094/text?format=json","relatedBills.count":3,"updateDate":"2024-12-16T20:37:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Morelle","sponsors.0.isByRequest":"N","request.billNumber":"1094","sponsors.0.url":"https://api.congress.gov/v3/member/M001206?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1094/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1094/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Recognizing the significance of Sjögren's as a serious and systemic autoimmune disease and designating April as \"Sjögren's Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1094","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-05-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1094/cosponsors?format=json","sponsors.0.bioguideId":"M001206","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1094/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1094/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1094/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1094/relatedbills?format=json","latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Morelle, Joseph D. [D-NY-25]","titles.count":2,"introducedDate":"2024-03-19","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1094?format=json","sponsors.0.district":25,"sponsors.0.firstName":"Joseph","updateDateIncludingText":"2024-12-16T20:37:40Z"}} +{"type":"node","id":"9874","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/855/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Wittman","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/855/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"855","bill.cosponsors.countIncludingWithdrawnCosponsors":34,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 22 (Friday, February 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOSAR:\nH.R. 855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H469]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/855/cosponsors?format=json","sponsors.0.bioguideId":"W000804","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/855/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/855/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","bill.sponsors.0.bioguideId":"G000565","bill.actions.count":6,"bill.originChamber":"House","titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/855/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gosar, Paul A. [R-AZ-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/855/text?format=json","bill.updateDate":"2025-01-03T04:45:23Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/855/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","request.billNumber":"855","committees.url":"https://api.congress.gov/v3/bill/118/hr/855/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/855/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:23Z","title":"Independent and Objective Oversight of Ukrainian Assistance Act","bill.title":"VETS Safe Travel Act","bill.number":"855","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/855/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-14","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/855/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/855/summaries?format=json","bill.cosponsors.count":34,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000565?format=json","introducedDate":"2023-02-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/855/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/855/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/855?format=json","bill.introducedDate":"2021-02-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: ``To regulate Commerce with\nforeign Nations, and among the several States, and with the\nIndian Tribes.''\nThe single subject of this legislation is:\nOversight\n[Page H711]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":4,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/855/text?format=json","bill.sponsors.0.lastName":"Gosar"}} +{"type":"node","id":"9875","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Houchin","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Congress","type":"HRES","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"847","cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/847/cosponsors?format=json","sponsors.0.bioguideId":"H001093","actions.url":"https://api.congress.gov/v3/bill/118/hres/847/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/847/relatedbills?format=json","latestAction.actionDate":"2023-11-07","textVersions.count":2,"sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","titles.count":2,"cosponsors.count":47,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-269","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/847/text?format=json","updateDate":"2024-11-09T04:51:59Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"847","sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/847/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/847/committees?format=json","title":"Providing for consideration of the bill (H.R. 4664) making appropriations for financial services and general government for the fiscal year ending September 30, 2024, and for other purposes.","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-12-13","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/269?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/847/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/847/summaries?format=json","latestAction.actionTime":"14:11:04","introducedDate":"2023-11-06","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/847?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Erin","updateDateIncludingText":"2024-11-09T04:51:59Z"}} +{"type":"node","id":"9876","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-12-10","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}} +{"type":"node","id":"9877","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Science, Technology, Communications","type":"HRES","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"317","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/317/cosponsors?format=json","sponsors.0.bioguideId":"B001307","actions.url":"https://api.congress.gov/v3/bill/118/hres/317/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/317/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":2,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"19:08:54","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/317/text?format=json","updateDate":"2024-07-24T15:22:39Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":6,"request.billNumber":"317","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/317/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/317/committees?format=json","title":"Recognizing the importance of broadband in rural areas throughout the United States and the critical need to invest in broadband expansion in an increasingly remote and digitally dependent world.","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-12-08","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/317/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/317/summaries?format=json","latestAction.actionTime":"19:08:54","introducedDate":"2023-04-24","subjects.count":6,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/317?format=json","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-07-24T15:22:39Z"}} +{"type":"node","id":"9878","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Moylan","sponsors.0.isByRequest":"N","latestAction_text":"The title of the measure was amended. Agreed to without objection.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"837","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/837/cosponsors?format=json","sponsors.0.bioguideId":"M001219","actions.url":"https://api.congress.gov/v3/bill/118/hres/837/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/837/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-20","sponsors.0.fullName":"Del. Moylan, James C. [R-GU-At Large]","titles.count":2,"cosponsors.count":43,"request.contentType":"application/json","latestAction_actionTime":"19:00:29","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/837/text?format=json","updateDate":"2024-12-16T20:37:09Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"837","sponsors.0.url":"https://api.congress.gov/v3/member/M001219?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/837/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/837/committees?format=json","title":"Reaffirming the ties between the United States and the Philippines.","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-12-08","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/837/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/837/summaries?format=json","latestAction.actionTime":"13:23:09","introducedDate":"2023-11-01","subjects.count":6,"sponsors.0.state":"GU","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/837?format=json","sponsors.0.district":10,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-12-16T20:37:09Z"}} +{"type":"node","id":"9879","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/844/text?format=json","updateDate":"2024-07-24T15:20:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Krishnamoorthi","sponsors.0.isByRequest":"N","request.billNumber":"844","sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/844/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/844/committees?format=json","policyArea.name":"Arts, Culture, Religion","type":"HRES","title":"Recognizing the religious and historical significance of the festival of Diwali.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"844","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/844/cosponsors?format=json","sponsors.0.bioguideId":"K000391","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/844/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/844/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/844/actions?format=json","latestAction.actionDate":"2023-11-03","textVersions.count":1,"sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","titles.count":2,"introducedDate":"2023-11-03","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/844?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Raja","updateDateIncludingText":"2024-07-24T15:20:00Z"}} +{"type":"node","id":"9880","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/843/text?format=json","updateDate":"2024-11-15T22:24:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"843","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/843/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/843/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Reaffirming the United States-Philippines alliance and condemning the gray zone campaign of the People's Republic of China in the South China Sea against the Philippines, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"843","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/843/cosponsors?format=json","sponsors.0.bioguideId":"I000056","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/843/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/843/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/843/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-03","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":2,"introducedDate":"2023-11-03","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/843?format=json","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-11-15T22:24:46Z"}} +{"type":"node","id":"9881","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/845/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sánchez","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ethics.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/845/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"845","bill.cosponsors.countIncludingWithdrawnCosponsors":20,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 21 (Thursday, February 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle II, Section 8.\n[Page H388]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/845/cosponsors?format=json","sponsors.0.bioguideId":"S001156","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/845/actions?format=json","latestAction.actionDate":"2023-02-06","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","bill.sponsors.0.bioguideId":"S001199","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/845/text?format=json","bill.updateDate":"2025-01-03T04:44:51Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/845/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","request.billNumber":"845","committees.url":"https://api.congress.gov/v3/bill/118/hr/845/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/845/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:51Z","title":"Put School Counselors Where They’re Needed Act","bill.title":"VA Billing Accountability Act","bill.number":"845","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/845/committees?format=json","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-12-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/845/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/845/summaries?format=json","bill.cosponsors.count":20,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","introducedDate":"2023-02-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lloyd","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/845/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/845/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/845?format=json","bill.introducedDate":"2021-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Elementary and Secondary Education Act of 1965\nto create a demonstration project to fund additional\nsecondary school counselors in troubled title I schools to\nreduce the dropout rate.\n[Page H710]\n","sponsors.0.district":38,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Linda","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/845/text?format=json","bill.sponsors.0.lastName":"Smucker"}} +{"type":"node","id":"9882","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Meuser","cboCostEstimates.0.pubDate":"2023-03-10T21:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"839","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/839/cosponsors?format=json","sponsors.0.bioguideId":"M001204","actions.url":"https://api.congress.gov/v3/bill/118/hr/839/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/839/relatedbills?format=json","latestAction.actionDate":"2024-01-16","textVersions.count":4,"sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","latestAction_actionTime":"21:57:09","committeeReports.0.citation":"H. Rept. 118-291","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/839/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"839","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/839/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/839/committees?format=json","title":"China Exchange Rate Transparency Act of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58993","request.format":"json","latestAction_actionDate":"2021-12-07","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/291?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/839/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/839/summaries?format=json","cboCostEstimates.0.title":"H.R. 839, China Exchange Rate Transparency Act of 2023","latestAction.actionTime":"21:57:09","introducedDate":"2023-02-06","subjects.count":4,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/839?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 839.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo require the United States Executive Director at the\nInternational Monetary Fund to advocate for increased\ntransparency with respect to exchange rate policies of the\nPeople's Republic of China, and for other purposes.\n[Page H710]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9883","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/838/text?format=json","relatedBills.count":5,"updateDate":"2024-11-09T04:52:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"Fischbach","sponsors.0.isByRequest":"N","request.billNumber":"838","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/838/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/838/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for consideration of the bill (H.R. 4821) making appropriations for the Department of the Interior, environment, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the bill (H.R. 4820) making appropriations for the Departments of Transportation, and Housing and Urban Development, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; and providing for consideration of the bill (H.R. 6126) making emergency supplemental appropriations to respond to the attacks in Israel for the fiscal year ending September 30, 2024, and for other purposes.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"838","request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2021-12-07","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/261?format=json","sponsors.0.bioguideId":"F000470","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/838/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/838/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/838/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/838/relatedbills?format=json","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","latestAction.actionTime":"11:00:55","titles.count":2,"introducedDate":"2023-11-02","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/838?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-11-09T04:52:00Z","latestAction_actionTime":"19:27:57","committeeReports.0.citation":"H. Rept. 118-261"}} +{"type":"node","id":"9884","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/822/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T08:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Stewart","sponsors.0.isByRequest":"N","request.billNumber":"822","sponsors.0.url":"https://api.congress.gov/v3/member/S001192?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/822/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/822/subjects?format=json","policyArea.name":"Health","title":"Student Mental Health Helpline Act","type":"HR","latestAction.text":"ASSUMING FIRST SPONSORSHIP - Ms. Bonamici asked unanimous consent that she may hereafter be considered as the first sponsor of H.R. 822, a bill originally introduced by Representative Stewart, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","sponsors.0.party":"R","number":"822","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/822/cosponsors?format=json","sponsors.0.bioguideId":"S001192","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/822/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/822/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/822/actions?format=json","latestAction.actionDate":"2023-11-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/822/relatedbills?format=json","sponsors.0.fullName":"Rep. Stewart, Chris [R-UT-2]","latestAction.actionTime":"10:52:00","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/822?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEWART:\nH.R. 822.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1, section 8\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to authorize the\nSecretary of Health and Human Services, acting through the\nAssistant Secretary for Mental Health and Substance Use, to\naward grants to eligible entities to establish or maintain a\nstudent mental health and safety helpline, and for other\npurposes.\n[Page H683]\n","sponsors.0.district":2,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-06-12T08:05:22Z"}} +{"type":"node","id":"9885","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/840/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bost","sponsors.0.isByRequest":"N","request.billNumber":"840","sponsors.0.url":"https://api.congress.gov/v3/member/B001295?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/hres/840/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/840/committees?format=json","type":"HRES","title":"Expressing support for Veterans Employment Week.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"840","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/840/cosponsors?format=json","sponsors.0.bioguideId":"B001295","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/840/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/840/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/840/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/840/relatedbills?format=json","latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Rep. Bost, Mike [R-IL-12]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/840?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9886","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/836/text?format=json","updateDate":"2024-07-24T15:23:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"836","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/836/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/836/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To redesignate Gravelly Point Park, located along the George Washington Memorial Parkway in Arlington County, Virginia, as the Nancy Reagan Memorial Park, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"836","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-12-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/836/cosponsors?format=json","sponsors.0.bioguideId":"I000056","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/836/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/836/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/836/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":2,"introducedDate":"2023-02-06","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/836?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ISSA:\nH.R. 836.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article I, Section 8,\nClause 18 of the Constitution of the United States.\nThe single subject of this legislation is:\nThis bill would redesignate Gravelly Point Park, located\nalong the George Washington Memorial Parkway in Arlington\nCounty, Virginia, as the Nancy Reagan Memorial Park.\n[Page H710]\n","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-07-24T15:23:47Z"}} +{"type":"node","id":"9887","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-04-05T16:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"On motion to table the motion to reconsider Agreed to by the Yeas and Nays: 217 - 202 (Roll no. 397).","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"829","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/829/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/829/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/829/relatedbills?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":3,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":5,"cosponsors.count":7,"request.contentType":"application/json","latestAction_actionTime":"15:19:08","committeeReports.0.citation":"S. Rept. 118-13","textVersions.url":"https://api.congress.gov/v3/bill/118/s/829/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"829","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/829/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/829/committees?format=json","title":"Disclosing Foreign Influence in Lobbying Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59044","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-02","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/13?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/829/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/829/summaries?format=json","cboCostEstimates.0.title":"S. 829, Disclosing Foreign Influence in Lobbying Act","latestAction.actionTime":"09:25:18","introducedDate":"2023-03-16","subjects.count":4,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/829?format=json","sponsors.0.district":35,"sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/811/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Scalise","sponsors.0.isByRequest":"N","request.billNumber":"811","sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","committees.url":"https://api.congress.gov/v3/bill/117/hres/811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/811/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Authorizing the Clerk to inform the President of the election of the Speaker.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"811","request.format":"json","latestAction_actionDate":"2021-12-02","summaries.count":1,"sponsors.0.bioguideId":"S001176","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/811/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/811/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/811/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/811/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","latestAction.actionTime":"14:47:17","titles.count":2,"introducedDate":"2023-10-25","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/811?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:20:08Z"}} +{"type":"node","id":"9889","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/834/text?format=json","updateDate":"2024-07-24T15:20:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lamborn","sponsors.0.isByRequest":"N","request.billNumber":"834","sponsors.0.url":"https://api.congress.gov/v3/member/L000564?format=json","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/834/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/834/committees?format=json","type":"HRES","title":"Supporting, recognizing, and establishing legislation that affirms the sense of Congress that Israel ought to be provided with sufficient material to defend itself against rocket artillery attacks from Hamas and its allies.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"834","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-12-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/834/cosponsors?format=json","sponsors.0.bioguideId":"L000564","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/834/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/834/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/834/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","sponsors.0.fullName":"Rep. Lamborn, Doug [R-CO-5]","titles.count":2,"introducedDate":"2023-11-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/834?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Doug","updateDateIncludingText":"2024-07-24T15:20:01Z"}} +{"type":"node","id":"9890","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/830/text?format=json","relatedBills.count":3,"updateDate":"2024-11-15T21:50:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"830","sponsors.0.url":"https://api.congress.gov/v3/member/G000061?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/hres/830/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/830/subjects?format=json","type":"HRES","title":"Condemning the Chinese Communist Party for its role in the fentanyl crisis and urging the Biden administration to take certain actions to combat the flow of fentanyl precursors from China to North America.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"830","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Diaz","latestAction_actionDate":"2021-12-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/830/cosponsors?format=json","sponsors.0.bioguideId":"G000061","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/830/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/830/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/830/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/830/relatedbills?format=json","sponsors.0.fullName":"Rep. Garcia, Mike [R-CA-27]","titles.count":2,"introducedDate":"2023-11-01","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/830?format=json","sponsors.0.district":27,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-11-15T21:50:55Z"}} +{"type":"node","id":"9891","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/835/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T13:37:22Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Moore","sponsors.0.isByRequest":"N","request.billNumber":"835","sponsors.0.url":"https://api.congress.gov/v3/member/M001212?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hres/835/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/835/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Condemning the statements of Representative Rashida Tlaib of Michigan.","latestAction.text":"Referred to the Committee on Ethics, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"835","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-12-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/835/cosponsors?format=json","sponsors.0.bioguideId":"M001212","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/835/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/835/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/835/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/835/relatedbills?format=json","sponsors.0.fullName":"Rep. Moore, Barry [R-AL-2]","titles.count":2,"introducedDate":"2023-11-01","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/835?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Barry","updateDateIncludingText":"2024-12-20T13:37:22Z"}} +{"type":"node","id":"9892","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/832/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"832","sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/832/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/832/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"832","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-12-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/832/cosponsors?format=json","sponsors.0.bioguideId":"G000586","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/832/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/832/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/832/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/832/relatedbills?format=json","latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","titles.count":3,"introducedDate":"2023-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/832?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 832.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation will strengthen and advance certain\ndisadvantaged businesses\n[Page H710]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jesus","updateDateIncludingText":"2024-07-24T15:23:46Z"}} +{"type":"node","id":"9893","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/826/text?format=json","updateDate":"2024-12-26T17:26:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller","sponsors.0.isByRequest":"N","request.billNumber":"826","sponsors.0.url":"https://api.congress.gov/v3/member/M001222?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/826/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/826/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Amending the Rules of the House of Representatives to limit the privileged status of a motion causing a vacancy in the Office of Speaker to motions offered by direction of not fewer than 112 Members from the majority party or 112 Members from the minority party.","latestAction.text":"Referred to the House Committee on Rules.","sponsors.0.party":"R","number":"826","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2021-12-01","summaries.count":1,"sponsors.0.bioguideId":"M001222","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/826/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/826/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/826/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller, Max L. [R-OH-7]","latestAction.actionTime":"16:36:25","titles.count":2,"introducedDate":"2023-10-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/826?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Max","updateDateIncludingText":"2024-12-26T17:26:59Z","latestAction_actionTime":"16:36:25"}} +{"type":"node","id":"9894","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/586/text?format=json","updateDate":"2024-07-24T15:21:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"586","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/586/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/586/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Calling for the restoration of power-sharing in Northern Ireland.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"586","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2021-08-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/586/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/586/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/586/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/586/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/586/relatedbills?format=json","latestAction.actionDate":"2023-07-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-07-13","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/586?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:21:35Z"}} +{"type":"node","id":"9895","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/568/text?format=json","updateDate":"2024-07-09T18:13:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Green","sponsors.0.isByRequest":"N","request.billNumber":"568","sponsors.0.url":"https://api.congress.gov/v3/member/G000553?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/568/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/568/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Original LGBTQIA+ Pride Month Resolution of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"568","cosponsors.countIncludingWithdrawnCosponsors":139,"request.format":"json","latestAction_actionDate":"2021-08-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/568/cosponsors?format=json","sponsors.0.bioguideId":"G000553","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/568/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/568/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/568/actions?format=json","latestAction.actionDate":"2023-06-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Green, Al [D-TX-9]","titles.count":3,"introducedDate":"2023-06-30","cosponsors.count":139,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/568?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Al","updateDateIncludingText":"2024-07-09T18:13:54Z"}} +{"type":"node","id":"9896","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/542/text?format=json","relatedBills.count":3,"updateDate":"2024-06-11T15:38:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Omar","sponsors.0.isByRequest":"N","request.billNumber":"542","sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/542/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/542/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Condemning human rights violations and violations of international religious freedom in India, including those targeting Muslims, Christians, Sikhs, Dalits, Adivasis, and other religious and cultural minorities.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"542","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2021-08-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/542/cosponsors?format=json","sponsors.0.bioguideId":"O000173","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/542/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/542/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/542/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/542/relatedbills?format=json","latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/542?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Ilhan","updateDateIncludingText":"2024-06-11T15:38:33Z"}} +{"type":"node","id":"9897","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cole","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Congress","type":"HRES","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"582","cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/582/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"C001053","actions.url":"https://api.congress.gov/v3/bill/118/hres/582/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/582/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-12","sponsors.0.fullName":"Rep. Cole, Tom [R-OK-4]","amendments.url":"https://api.congress.gov/v3/bill/118/hres/582/amendments?format=json","titles.count":2,"cosponsors.count":32,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-141","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/582/text?format=json","updateDate":"2024-11-09T04:42:21Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"582","sponsors.0.url":"https://api.congress.gov/v3/member/C001053?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/582/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/582/committees?format=json","title":"Providing for consideration of the bill (H.R. 2670) to authorize appropriations for fiscal year 2024 for military activities of the Department of Defense and for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year, and for other purposes.","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","latestAction_actionDate":"2021-08-10","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/141?format=json","summaries.count":2,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/582/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/582/summaries?format=json","latestAction.actionTime":"14:13:17","introducedDate":"2023-07-12","subjects.count":3,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/582?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-11-09T04:42:21Z"}} +{"type":"node","id":"9898","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Rules.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/583/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"583","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/583/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/583/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/583/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/583/text?format=json","bill.updateDate":"2025-01-03T04:43:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"583","committees.url":"https://api.congress.gov/v3/bill/118/hr/583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:27Z","title":"American Shores Protection Act of 2023","bill.title":"Green Bus Tax Credit Act of 2021","bill.number":"583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/583/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/583/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/583/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/583/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/583?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nNatural Resources\n[Page H430]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/583/text?format=json","bill.sponsors.0.lastName":"Panetta"}} +{"type":"node","id":"9899","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/580/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sánchez","sponsors.0.isByRequest":"N","request.billNumber":"580","sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hres/580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/580/subjects?format=json","policyArea.name":"Labor and Employment","type":"HRES","title":"Expressing support for the designation of Journeyman Lineworkers Recognition Day.","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"D","number":"580","cosponsors.countIncludingWithdrawnCosponsors":156,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-08-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/580/cosponsors?format=json","sponsors.0.bioguideId":"S001156","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/580/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/580/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/580/relatedbills?format=json","latestAction.actionDate":"2023-07-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","titles.count":2,"introducedDate":"2023-07-11","cosponsors.count":156,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/580?format=json","sponsors.0.district":38,"sponsors.0.firstName":"Linda","updateDateIncludingText":"2025-01-15T18:51:50Z"}} +{"type":"node","id":"9900","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/579/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T16:03:36Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","request.billNumber":"579","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/579/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/579/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Condemning the ongoing acts of repression and human rights violations against the Cuban people by the Cuban regime, and calling for the immediate release of all arbitrarily detained Cuban citizens.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"579","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-08-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/579/cosponsors?format=json","sponsors.0.bioguideId":"M001157","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/579/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/579/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/579/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/579/relatedbills?format=json","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":2,"introducedDate":"2023-07-11","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/579?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-06-11T16:03:36Z"}} +{"type":"node","id":"9901","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/488/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"488","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Referred to the Subcommittee on Western Hemisphere, Civilian Security, Migration and International Economic Policy.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/488/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/488/committees?format=json","title":"FOIA Fix Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"488","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/488/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/488/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/488/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/488/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/488/relatedbills?format=json","latestAction.actionDate":"2023-02-16","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-02-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/488?format=json","sponsors.0.district":25,"sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:42Z"}} +{"type":"node","id":"9902","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/550/text?format=json","updateDate":"2024-07-24T15:21:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Houchin","sponsors.0.isByRequest":"N","request.billNumber":"550","sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","latestAction_text":"Referred to the Subcommittee on Middle East, North Africa and Global Counterterrorism.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/550/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/550/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing the sense of the House of Representatives regarding the Centers for Medicare & Medicaid Services developing a mobility metric to guide providers in preventing mobility loss among hospitalized older adults.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"550","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/550/cosponsors?format=json","sponsors.0.bioguideId":"H001093","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/550/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/550/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/550/actions?format=json","latestAction.actionDate":"2023-06-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","titles.count":2,"introducedDate":"2023-06-23","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/550?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Erin","updateDateIncludingText":"2024-07-24T15:21:49Z"}} +{"type":"node","id":"9903","labels":["Bill"],"properties":{"relatedBills.count":5,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/524/text?format=json","updateDate":"2024-11-09T04:42:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"524","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/524/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/524/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for consideration of the bill (H.R. 3564) to cancel recent changes made by the Federal Housing Finance Agency to the up-front loan level pricing adjustments charged by Fannie Mae and Freddie Mac for guarantee of single-family mortgages, and for other purposes; providing for consideration of the bill (H.R. 3799) to amend the Internal Revenue Code of 1986 to provide for health reimbursement arrangements integrated with individual health insurance coverage; and providing for consideration of the resolution (H. Res. 461) condemning the use of elementary and secondary school facilities to provide shelter for aliens who are not admitted to the United States.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"524","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-08-04","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/115?format=json","sponsors.0.bioguideId":"B001248","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/524/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/524/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/524/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/524/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","latestAction.actionTime":"13:58:34","titles.count":2,"introducedDate":"2023-06-20","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/524?format=json","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T04:42:25Z","committeeReports.0.citation":"H. Rept. 118-115"}} +{"type":"node","id":"9904","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/460/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Espaillat","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/460/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"460","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 460.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/460/cosponsors?format=json","sponsors.0.bioguideId":"E000297","bill.subjects.count":35,"actions.url":"https://api.congress.gov/v3/bill/118/hr/460/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/460/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Espaillat, Adriano [D-NY-13]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":7,"titles.count":4,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/460/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/460/text?format=json","bill.updateDate":"2025-01-03T04:42:30Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/460/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/E000297?format=json","request.billNumber":"460","committees.url":"https://api.congress.gov/v3/bill/118/hr/460/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/460/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:30Z","title":"SPELL Act","bill.title":"Health Force, Resilience Force, and Jobs To Fight COVID–19 Act of 2021","bill.number":"460","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/460/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/460/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/460/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/460/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/460/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/460?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 460.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H233]\n","sponsors.0.district":13,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"Adriano","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/460/text?format=json","bill.sponsors.0.lastName":"Crow"}} +{"type":"node","id":"9905","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/455/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cherfilus-McCormick","sponsors.0.isByRequest":"N","request.billNumber":"455","sponsors.0.url":"https://api.congress.gov/v3/member/C001127?format=json","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/455/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/455/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Expressing support for Black service members this Memorial Day who gave their lives to protect and defend the United States at home and abroad despite facing racism in the Armed Forces and systemic inequities on United States soil.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"455","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/455/cosponsors?format=json","sponsors.0.bioguideId":"C001127","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/455/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/455/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/455/actions?format=json","latestAction.actionDate":"2023-05-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Cherfilus-McCormick, Sheila [D-FL-20]","titles.count":2,"introducedDate":"2023-05-26","cosponsors.count":29,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/455?format=json","sponsors.0.district":20,"sponsors.0.firstName":"Sheila","updateDateIncludingText":"2024-07-24T15:22:08Z"}} +{"type":"node","id":"9906","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/500/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Wagner","sponsors.0.isByRequest":"N","request.billNumber":"500","sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/hr/500/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/500/committees?format=json","type":"HR","title":"Financial Exploitation Prevention Act of 2023","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"500","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/500/cosponsors?format=json","sponsors.0.bioguideId":"W000812","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/500/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/500/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/500/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/500/relatedbills?format=json","sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","titles.count":5,"introducedDate":"2023-01-25","cosponsors.count":13,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/500?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 500.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9907","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/466/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Valadao","sponsors.0.isByRequest":"N","request.billNumber":"466","sponsors.0.url":"https://api.congress.gov/v3/member/V000129?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","committees.url":"https://api.congress.gov/v3/bill/118/hres/466/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/466/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"HRES","title":"Expressing support for the designation of June as Portuguese National Heritage Month.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"466","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/466/cosponsors?format=json","sponsors.0.bioguideId":"V000129","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/466/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/466/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/466/actions?format=json","latestAction.actionDate":"2023-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Valadao, David G. [R-CA-22]","titles.count":2,"introducedDate":"2023-06-05","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/466?format=json","sponsors.0.district":22,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9908","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/574/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steube","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/574/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"574","bill.cosponsors.countIncludingWithdrawnCosponsors":36,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MOORE of Wisconsin:\nH.R. 574.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Sections 7 & 8\nof Article I of the United States Constitution and Amendment\nXVI of the United States Constitution.\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/574/cosponsors?format=json","sponsors.0.bioguideId":"S001214","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/574/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-03","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Steube, W. Gregory [R-FL-17]","bill.sponsors.0.bioguideId":"M001160","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":18,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/574/text?format=json","bill.updateDate":"2025-01-03T04:43:08Z","updateDate":"2024-07-24T15:23:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/574/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001214?format=json","request.billNumber":"574","subjects.url":"https://api.congress.gov/v3/bill/118/hr/574/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/574/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:08Z","title":"Protecting Dogs Subjected to Experiments Act","bill.title":"Earned Income and Child Tax Credits Outreach Act of 2021","bill.number":"574","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/574/committees?format=json","sponsors.0.middleName":"Gregory","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/574/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/574/summaries?format=json","bill.cosponsors.count":36,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gwen","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/574/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/574/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/574?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STEUBE:\nH.R. 574.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Untied States Constitution\n[Page H430]\n","sponsors.0.district":17,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":4,"sponsors.0.firstName":"W.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/574/text?format=json","bill.sponsors.0.lastName":"Moore"}} +{"type":"node","id":"9909","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/570/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Hudson","sponsors.0.isByRequest":"N","request.billNumber":"570","sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hres/570/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/570/committees?format=json","type":"HRES","title":"Expressing support for the designation of the week of June 26 through July 2, 2023, as \"National Tire Safety Week\" in the United States, and supporting the goals and ideals of \"National Tire Safety Week\" to educate American motorists about the importance of proper tire care and maintenance.","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"570","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/570/cosponsors?format=json","sponsors.0.bioguideId":"H001067","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/570/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/570/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/570/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/570/relatedbills?format=json","sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-9]","titles.count":2,"introducedDate":"2023-06-30","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/570?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:21:44Z"}} +{"type":"node","id":"9910","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/559/text?format=json","updateDate":"2024-06-12T18:23:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","request.billNumber":"559","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/559/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/559/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Declaring it is the policy of the United States that a nuclear Islamic Republic of Iran is not acceptable.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"559","cosponsors.countIncludingWithdrawnCosponsors":38,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-08-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/559/cosponsors?format=json","sponsors.0.bioguideId":"M001157","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/559/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/559/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/559/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-01","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","latestAction.actionTime":"19:21:13","titles.count":2,"introducedDate":"2023-06-27","cosponsors.count":38,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/559?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-06-12T18:23:00Z"}} +{"type":"node","id":"9911","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/544/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brownley","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/544/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"544","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section III, Clause II: ``The Congress shall\nhave power to dispose of and make all needful rules and\nregulations respecting the Territory or other property\nbelonging to the United States; and nothing in this\nConstitution shall be so construed as to prejudice any claims\nof the United States, or of any particular state.\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/544/cosponsors?format=json","sponsors.0.bioguideId":"B001285","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/544/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/544/relatedbills?format=json","latestAction.actionDate":"2023-02-14","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","bill.sponsors.0.bioguideId":"H001068","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":39,"bill.latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/544/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/544/text?format=json","bill.updateDate":"2025-01-03T04:43:20Z","updateDate":"2024-09-10T08:05:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/544/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","request.billNumber":"544","committees.url":"https://api.congress.gov/v3/bill/118/hr/544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/544/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:20Z","title":"Veterans Infertility Treatment Act of 2023","bill.title":"Stop Arctic Ocean Drilling Act of 2021","bill.number":"544","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":39,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/544/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/544/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/544/summaries?format=json","bill.cosponsors.count":38,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jared","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/544/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/544/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/544?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H429]\n","sponsors.0.district":26,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Julia","bill.type":"HR","updateDateIncludingText":"2024-09-10T08:05:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/544/text?format=json","bill.sponsors.0.lastName":"Huffman"}} +{"type":"node","id":"9912","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/462/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bera","sponsors.0.isByRequest":"N","request.billNumber":"462","sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","committees.url":"https://api.congress.gov/v3/bill/118/hres/462/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/462/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Remembering the victims of the 1989 Tiananmen Square massacre and condemning the continued and intensifying crackdown on human rights and basic freedoms within the People's Republic of China, including the Hong Kong Special Administrative Region, by the Chinese Communist Party, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"462","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/462/cosponsors?format=json","sponsors.0.bioguideId":"B001287","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/462/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/462/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/462/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/462/relatedbills?format=json","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","titles.count":2,"cosponsors.count":18,"introducedDate":"2023-06-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/462?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Ami","updateDateIncludingText":"2024-07-24T15:22:05Z"}} +{"type":"node","id":"9913","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/456/text?format=json","updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"456","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sres/456/committees?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating November 2023 as \"National College Application Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5432; text: CR S5430-5431)","sponsors.0.party":"D","number":"456","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-08-04","summaries.count":2,"amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/456/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/456/actions?format=json","latestAction.actionDate":"2023-11-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/456/amendments?format=json","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/456?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-04-17T23:51:46Z"}} +{"type":"node","id":"9914","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/312/text?format=json","updateDate":"2024-07-31T15:27:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cárdenas","sponsors.0.isByRequest":"N","request.billNumber":"312","sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/hres/312/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/312/committees?format=json","type":"HRES","title":"Expressing support for the designation of April 2023 as \"Second Chance Month\".","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"312","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/312/cosponsors?format=json","sponsors.0.bioguideId":"C001097","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/312/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/312/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/312/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/312/relatedbills?format=json","latestAction.actionDate":"2023-04-20","textVersions.count":1,"sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","latestAction.actionTime":"18:54:31","titles.count":2,"cosponsors.count":3,"introducedDate":"2023-04-20","subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/312?format=json","sponsors.0.district":29,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-07-31T15:27:48Z","latestAction_actionTime":"18:54:31"}} +{"type":"node","id":"9915","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Labor and Employment","type":"HRES","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"303","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/303/cosponsors?format=json","sponsors.0.bioguideId":"D000624","actions.url":"https://api.congress.gov/v3/bill/118/hres/303/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/303/relatedbills?format=json","latestAction.actionDate":"2023-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":2,"cosponsors.count":25,"request.contentType":"application/json","latestAction_actionTime":"18:53:07","committeeReports.0.citation":"H. Rept. 117-15","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/303/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":4,"request.billNumber":"303","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/303/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/303/subjects?format=json","title":"Recognizing the roles and the contributions of care workers in the United States and expressing support for the designation of April 2023 as \"Care Worker Recognition Month\".","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2021-04-14","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/15?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/303/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/303/summaries?format=json","latestAction.actionTime":"18:53:07","introducedDate":"2023-04-18","subjects.count":8,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/303?format=json","sponsors.0.district":6,"updateDateIncludingText":"2025-02-04T16:28:27Z","sponsors.0.firstName":"Debbie"}} +{"type":"node","id":"9916","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/311/text?format=json","updateDate":"2024-07-24T15:22:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Wagner","sponsors.0.isByRequest":"N","request.billNumber":"311","sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/311/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/311/committees?format=json","type":"HRES","title":"Encouraging the expansion and strengthening of the Abraham Accords to urge other nations to normalize relations with Israel and ensure that existing agreements reap tangible security and economic benefits for the citizens of those countries and all peoples in the region.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"311","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2021-04-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/311/cosponsors?format=json","sponsors.0.bioguideId":"W000812","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/311/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/311/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/311/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":2,"sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","latestAction.actionTime":"19:20:07","titles.count":2,"cosponsors.count":22,"introducedDate":"2023-04-20","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/311?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Ann","updateDateIncludingText":"2024-07-24T15:22:37Z","latestAction_actionTime":"12:10:39"}} +{"type":"node","id":"9917","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/310/text?format=json","updateDate":"2024-06-08T08:05:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"310","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/310/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/310/committees?format=json","type":"HRES","title":"Condemning the inaction by the Islamic Republic of Iran in addressing the poisoning of Iranian schoolgirls, the Daughters of the Iranian Revolution.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"310","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","latestAction_actionDate":"2021-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/310/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/310/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/310/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/310/actions?format=json","latestAction.actionDate":"2023-04-20","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","latestAction.actionTime":"12:10:20","titles.count":2,"cosponsors.count":44,"introducedDate":"2023-04-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/310?format=json","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-06-08T08:05:43Z","latestAction_actionTime":"12:10:20"}} +{"type":"node","id":"9918","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/274/text?format=json","updateDate":"2024-07-24T15:18:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"274","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Motion to Discharge Committee filed by Mrs. Cammack. Petition No: 117-1. (Discharge petition text with signatures.)","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/274/committees?format=json","type":"HRES","title":"Calling on major United States companies still operating in the Russian Federation to reconsider their continued presence given Russia's full-scale invasion of Ukraine.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"274","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/274/cosponsors?format=json","sponsors.0.bioguideId":"K000375","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/274/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/274/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/274/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-03","sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":2,"introducedDate":"2023-04-03","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/274?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:18:54Z"}} +{"type":"node","id":"9919","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/315/text?format=json","relatedBills.count":1,"updateDate":"2024-08-01T13:20:59Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Matsui","sponsors.0.isByRequest":"N","request.billNumber":"315","sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/315/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/315/committees?format=json","policyArea.name":"Environmental Protection","type":"HRES","title":"Expressing support for honoring Earth Day, and for other purposes.","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"315","cosponsors.countIncludingWithdrawnCosponsors":62,"request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2021-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/315/cosponsors?format=json","sponsors.0.bioguideId":"M001163","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/315/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/315/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/315/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/315/relatedbills?format=json","latestAction.actionDate":"2023-04-20","textVersions.count":1,"sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","titles.count":2,"introducedDate":"2023-04-20","cosponsors.count":62,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/315?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Doris","updateDateIncludingText":"2024-08-01T13:20:59Z"}} +{"type":"node","id":"9920","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/306/text?format=json","updateDate":"2025-01-24T18:27:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brownley","sponsors.0.isByRequest":"N","request.billNumber":"306","sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/306/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/306/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Directing the Chief Administrative Officer of the House of Representatives to conduct a study and issue a report about ways to increase the accessability of live broadcasts of floor proceedings of the House of Representatives to individuals without cable or satellite television, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Modernization.","sponsors.0.party":"D","number":"306","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/306/cosponsors?format=json","sponsors.0.bioguideId":"B001285","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/306/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/306/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/306/actions?format=json","latestAction.actionDate":"2023-09-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","titles.count":2,"introducedDate":"2023-04-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/306?format=json","sponsors.0.district":26,"sponsors.0.firstName":"Julia","updateDateIncludingText":"2025-01-24T18:27:05Z"}} +{"type":"node","id":"9921","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/309/text?format=json","updateDate":"2024-07-24T15:22:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Manning","sponsors.0.isByRequest":"N","request.billNumber":"309","sponsors.0.url":"https://api.congress.gov/v3/member/M001135?format=json","latestAction_text":"Referred to the House Committee on Rules.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/309/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/309/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing the sense of the House of Representatives that the Food and Drug Administration has the authority to approve drugs for abortion care.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"309","cosponsors.countIncludingWithdrawnCosponsors":48,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/309/cosponsors?format=json","sponsors.0.bioguideId":"M001135","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/309/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/309/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/309/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","sponsors.0.fullName":"Rep. Manning, Kathy E. [D-NC-6]","titles.count":2,"introducedDate":"2023-04-19","cosponsors.count":48,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/309?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Kathy","updateDateIncludingText":"2024-07-24T15:22:41Z"}} +{"type":"node","id":"9922","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/307/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","request.billNumber":"307","sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/307/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/307/committees?format=json","policyArea.name":"Families","type":"HRES","title":"Expressing support for the goals and ideals of National Child Abuse Prevention Month.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"307","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/307/cosponsors?format=json","sponsors.0.bioguideId":"J000295","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/307/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/307/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/307/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/307/relatedbills?format=json","sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","titles.count":2,"introducedDate":"2023-04-19","cosponsors.count":11,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/307?format=json","sponsors.0.district":14,"sponsors.0.firstName":"David","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9923","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/308/text?format=json","updateDate":"2024-07-24T15:22:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"308","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/hres/308/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/308/committees?format=json","type":"HRES","title":"Condemning former President Donald J. Trump's call to \"defund\" the Department of Justice and the Federal Bureau of Investigation.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"308","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/308/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/308/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/308/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/308/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":2,"introducedDate":"2023-04-19","cosponsors.count":6,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/308?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-07-24T15:22:43Z"}} +{"type":"node","id":"9924","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-15T19:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"270","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/270/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-123","actions.url":"https://api.congress.gov/v3/bill/118/s/270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/270/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/117/s/270/amendments?format=json","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-87","textVersions.url":"https://api.congress.gov/v3/bill/118/s/270/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"270","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/270/subjects?format=json","title":"Protecting America’s Meatpacking Workers Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57932","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/87?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/270/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/270/summaries?format=json","cboCostEstimates.0.title":"S. 270, Brown v. Board of Education National Historic Site Expansion Act","introducedDate":"2023-02-02","subjects.count":62,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/270?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9925","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/268/text?format=json","updateDate":"2024-07-24T15:23:18Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Estes","sponsors.0.isByRequest":"N","request.billNumber":"268","sponsors.0.url":"https://api.congress.gov/v3/member/E000298?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/268/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/268/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HRES","title":"Expressing strong opposition to the imposition of digital services taxes by other countries that discriminate against United States companies.","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"268","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/268/cosponsors?format=json","sponsors.0.bioguideId":"E000298","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/268/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/268/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/268/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Estes, Ron [R-KS-4]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/268?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-07-24T15:23:18Z"}} +{"type":"node","id":"9926","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/302/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":14,"sponsors.0.lastName":"Ross","sponsors.0.isByRequest":"N","request.billNumber":"302","sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/302/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/302/committees?format=json","policyArea.name":"Energy","type":"HR","title":"Energy Cybersecurity University Leadership Act of 2023","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"302","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-04-12","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/302/cosponsors?format=json","sponsors.0.bioguideId":"R000305","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/302/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/302/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/302/actions?format=json","latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/302/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","titles.count":6,"introducedDate":"2023-01-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/302?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 9 (Wednesday, January 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ROSS:\nH.R. 302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts, and Excises shall be uniform\nthroughout the United States;\nRequirement with respect to single-subject bills:\nThe bill is focused on a single subject: energy sector\ncybersecurity.\n[Page H205]\n","sponsors.0.district":2,"sponsors.0.firstName":"Deborah","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"9927","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Houchin","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Congress","type":"HRES","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"298","cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/298/cosponsors?format=json","sponsors.0.bioguideId":"H001093","actions.url":"https://api.congress.gov/v3/bill/118/hres/298/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/298/relatedbills?format=json","sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","titles.count":2,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-37","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/298/text?format=json","updateDate":"2024-11-09T04:56:49Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"298","sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/298/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/298/subjects?format=json","title":"Providing for consideration of the bill (H.R. 734) to amend the Education Amendments of 1972 to provide that for purposes of determining compliance with title IX of such Act in athletics, sex shall be recognized based solely on a person's reproductive biology and genetics at birth, and providing for consideration of the joint resolution (H.J. Res. 42) disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-04-09","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/37?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/298/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/298/summaries?format=json","latestAction.actionTime":"14:10:51","introducedDate":"2023-04-17","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/298?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Erin","updateDateIncludingText":"2024-11-09T04:56:49Z"}} +{"type":"node","id":"9928","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/296/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Stevens","sponsors.0.isByRequest":"N","request.billNumber":"296","sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/296/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/296/committees?format=json","policyArea.name":"Commerce","type":"HRES","title":"Expressing support for the designation of April 13, 2023, as \"Remanufacturing Day\".","latestAction.text":"Sponsor introductory remarks on measure. (CR H2080)","sponsors.0.party":"D","number":"296","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-04-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/296/cosponsors?format=json","sponsors.0.bioguideId":"S001215","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/296/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/296/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/296/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","titles.count":2,"introducedDate":"2023-04-13","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/296?format=json","sponsors.0.district":11,"sponsors.0.firstName":"Haley","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9929","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Placed on the House Calendar, Calendar No. 15.","sponsors.0.party":"R","number":"300","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/300/cosponsors?format=json","sponsors.0.bioguideId":"G000578","actions.url":"https://api.congress.gov/v3/bill/118/hres/300/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/300/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-05-02","sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-44","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/300/text?format=json","updateDate":"2024-11-09T04:56:42Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":9,"request.billNumber":"300","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/300/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/300/committees?format=json","title":"Requesting the President and directing the Secretary of Defense to transmit, respectively, to the House of Representatives copies of all documents indicating any plans for current or future military assistance to Ukraine and documents indicating whether any United States Armed Forces, including special operations forces, are currently deployed in Ukraine.","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-04-08","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/44?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/300/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/300/summaries?format=json","introducedDate":"2023-04-17","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/300?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-11-09T04:56:42Z"}} +{"type":"node","id":"9930","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/293/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"293","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/hres/293/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/293/subjects?format=json","type":"HRES","title":"Supporting the designation of April 2023 as \"National Native Plant Month\".","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"293","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/293/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/293/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/293/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/293/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/293/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":2,"cosponsors.count":3,"introducedDate":"2023-04-13","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/293?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-07-24T15:22:58Z"}} +{"type":"node","id":"9931","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/295/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"295","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hres/295/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/295/committees?format=json","type":"HRES","title":"Recognizing the enduring cultural and historical significance of emancipation in the Nation's capital on the anniversary of President Abraham Lincoln's signing of the District of Columbia Compensated Emancipation Act, which established the \"first freed\" on April 16, 1862, and celebrating passage of the District of Columbia statehood bill in the House of Representatives.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"295","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-04-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/295/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/295/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/295/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/295/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/295/relatedbills?format=json","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2023-04-13","cosponsors.count":6,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/295?format=json","sponsors.0.district":1,"sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9932","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/297/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tlaib","sponsors.0.isByRequest":"N","request.billNumber":"297","sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/297/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/297/committees?format=json","policyArea.name":"Arts, Culture, Religion","type":"HRES","title":"Expressing support for the recognition of April as National Arab American Heritage Month (NAAHM) and celebrating the heritage and culture of Arab Americans in the United States.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"297","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/297/cosponsors?format=json","sponsors.0.bioguideId":"T000481","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/297/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/297/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/297/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/297/relatedbills?format=json","sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-12]","titles.count":2,"introducedDate":"2023-04-13","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/297?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Rashida","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9933","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/291/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beatty","sponsors.0.isByRequest":"N","request.billNumber":"291","sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/hres/291/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/291/committees?format=json","type":"HRES","title":"Supporting the goals and ideals of \"Financial Literacy Month\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"291","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-04-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/291/cosponsors?format=json","sponsors.0.bioguideId":"B001281","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/291/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/291/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/291/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/291/relatedbills?format=json","sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","titles.count":2,"introducedDate":"2023-04-13","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/291?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Joyce","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9934","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/48/text?format=json","updateDate":"2024-07-24T15:23:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jayapal","sponsors.0.isByRequest":"N","request.billNumber":"48","sponsors.0.url":"https://api.congress.gov/v3/member/J000298?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/48/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/48/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States providing that the rights extended by the Constitution are the rights of natural persons only.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"48","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-01-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/48/cosponsors?format=json","sponsors.0.bioguideId":"J000298","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/48/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/48/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/48/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/48/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Jayapal, Pramila [D-WA-7]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/48?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JAYAPAL:\nH.J. Res. 48.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I of the United States Constitution\nand its subsequent amendments, and further clarified and\ninterpreted by the Supreme Court of the United States.\nThe single subject of this legislation is:\nThis bill proposes an amendment to the Constitution of the\nUnited States providing that the rights extended by the\nConstitution are the rights of natural persons only.\n[Page H1695]\n","sponsors.0.district":7,"sponsors.0.firstName":"Pramila","updateDateIncludingText":"2024-07-24T15:23:18Z"}} +{"type":"node","id":"9935","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/41/text?format=json","updateDate":"2024-11-21T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"41","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/41/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/41/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Same-Day Scheduling Act of 2023","latestAction.text":"Subcommittee Consideration and Mark-up Session Held.","sponsors.0.party":"R","number":"41","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/41/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/41/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/41/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/41/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-18","sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"cosponsors.count":71,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/41?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 41.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nauthorized by Congress' power to ``provide for the common\nDefense and general Welfare of the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-21T09:05:49Z","latestAction_actionTime":"12:24:00"}} +{"type":"node","id":"9936","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/47/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":117,"request.congress":"117","actions.count":6,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"47","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","committees.url":"https://api.congress.gov/v3/bill/117/sconres/47/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/47/subjects?format=json","policyArea.name":"International Affairs","type":"SCONRES","title":"A concurrent resolution commending the bravery, courage, and resolve of the women and men of Iran demonstrating in more than 80 cities and risking their safety to speak out against the Iranian regime's human rights abuses.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 603.","sponsors.0.party":"D","number":"47","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2021-01-13","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/47/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/47/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/47/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/47/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2022-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/47/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2022-09-29","cosponsors.count":23,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/47?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9937","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/45/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"45","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","committees.url":"https://api.congress.gov/v3/bill/118/sconres/45/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/45/subjects?format=json","policyArea.name":"Congress","type":"SCONRES","title":"A concurrent resolution affirming the nature and importance of the support of the United States for Syria.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7183-7184)","sponsors.0.party":"D","number":"45","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-13","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/45/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/45/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/45/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/45/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/45/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","latestAction.actionTime":"12:15:04","titles.count":2,"cosponsors.count":5,"introducedDate":"2024-12-18","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/45?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9938","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/46/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"46","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Referred to the House Committee on Ethics.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/46/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/46/committees?format=json","policyArea.name":"Health","type":"HR","title":"Mental Health Access and Gun Violence Prevention Act of 2023","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"46","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/46/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/46/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/46/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/46/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/46/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/46?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 46.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1, 3 and 18 of\nthe United States Constitution.\n[Page H108]\n","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:13Z"}} +{"type":"node","id":"9939","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"21","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/21/cosponsors?format=json","sponsors.0.bioguideId":"J000032","actions.url":"https://api.congress.gov/v3/bill/118/hres/21/actions?format=json","latestAction.actionDate":"2023-01-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/21/relatedbills?format=json","sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","amendments.url":"https://api.congress.gov/v3/bill/117/hres/21/amendments?format=json","titles.count":2,"cosponsors.count":147,"request.contentType":"application/json","latestAction_actionTime":"23:27:17","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/21/text?format=json","updateDate":"2024-11-09T05:06:26Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"21","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/21/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/21/subjects?format=json","title":"Commemorating the life and legacy of Sojourner Truth.","cosponsors.countIncludingWithdrawnCosponsors":147,"request.format":"json","latestAction_actionDate":"2021-01-12","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/21/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/21/summaries?format=json","latestAction.actionTime":"23:27:17","introducedDate":"2023-01-11","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/21?format=json","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-11-09T05:06:26Z"}} +{"type":"node","id":"9940","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z","latestAction_actionTime":"21:15:00"}} +{"type":"node","id":"9941","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"12:12:28","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"09:03:59"}} +{"type":"node","id":"9942","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/35/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z","latestAction_actionTime":"09:03:48"}} +{"type":"node","id":"9943","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Clyde","cboCostEstimates.0.pubDate":"2023-03-31T18:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on Ethics, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","type":"HJRES","latestAction.text":"The Chair directed the Clerk to notify the Senate of the action of the House.","sponsors.0.party":"R","number":"42","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/42/cosponsors?format=json","sponsors.0.bioguideId":"C001116","actions.url":"https://api.congress.gov/v3/bill/118/hjres/42/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/42/relatedbills?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":5,"sponsors.0.fullName":"Rep. Clyde, Andrew S. [R-GA-9]","titles.count":2,"cosponsors.count":19,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-33","textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/42/text?format=json","updateDate":"2025-03-07T20:06:14Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":42,"request.billNumber":"42","sponsors.0.url":"https://api.congress.gov/v3/member/C001116?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/42/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/42/committees?format=json","title":"Disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":19,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59033","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-01-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/33?format=json","summaries.count":4,"request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/42/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hjres/42/summaries?format=json","cboCostEstimates.0.title":"H.J. Res. 42, a joint resolution disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022","latestAction.actionTime":"17:52:27","introducedDate":"2023-03-09","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/42?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLYDE:\nH.J. Res. 42.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec, 8, Clause 16 of the U.S. Constitution\nstates: The Congress shall have the power to ``Excercise\nexclusive legislation in all cases whatsoeverm over such\nDistrict (not exceeding 10 Miles square, as may, by Cession\nof particular States, and the Acceptance of Congress, become\nthe Seat of Government of the United States.''\nThe single subject of this legislation is:\nThis bill pertains to DC matters\n[Page H1251]\n","sponsors.0.district":9,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-03-07T20:06:14Z"}} +{"type":"node","id":"9944","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/23/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"23","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/23/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/23/committees?format=json","type":"HRES","title":"Recognizing the catastrophic impact of the 2022 monsoon season in Pakistan and the devastation inflicted upon the Pakistani people.","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"23","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/23/cosponsors?format=json","sponsors.0.bioguideId":"J000032","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/23/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/23/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/23/actions?format=json","latestAction.actionDate":"2023-01-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","latestAction.actionTime":"11:09:30","titles.count":2,"cosponsors.count":1,"introducedDate":"2023-01-11","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/23?format=json","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:14Z","latestAction_actionTime":"11:09:30"}} +{"type":"node","id":"9945","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/22/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"JACKSON LEE","sponsors.0.isByRequest":"N","request.billNumber":"22","sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/22/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/22/committees?format=json","type":"HRES","title":"Condemning and opposing the unprovoked invasion and egregious act of aggression against the sovereign state of Ukraine by the Russian Federation.","latestAction.text":"Referred to the Subcommittee on Aviation.","sponsors.0.party":"D","number":"22","request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"sponsors.0.bioguideId":"J000032","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/22/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/22/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/22/actions?format=json","latestAction.actionDate":"2023-02-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","latestAction.actionTime":"11:09:18","titles.count":2,"introducedDate":"2023-01-11","subjects.count":16,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/22?format=json","sponsors.0.district":18,"sponsors.0.firstName":"SHEILA","updateDateIncludingText":"2024-07-24T15:24:14Z","latestAction_actionTime":"11:09:18"}} +{"type":"node","id":"9946","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/33?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z"}} +{"type":"node","id":"9947","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Referred to the House Committee on Ethics.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","title":"SPR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}} +{"type":"node","id":"9948","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/29/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"29","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/29/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/29/committees?format=json","type":"SJRES","title":"A joint resolution providing for the reappointment of Michael Govan as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"29","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/29/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/29/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/29/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/29/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/29/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/29?format=json","sponsors.0.district":13,"sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}} +{"type":"node","id":"9949","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/27/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"27","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/27/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/27/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"27","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/27/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/27/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/27/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/27/actions?format=json","latestAction.actionDate":"2023-05-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/27/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/27?format=json","sponsors.0.district":16,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9950","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/18/text?format=json","updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","request.billNumber":"18","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/18/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/18/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Establishing deadlines for the Joint Committee of Congress on the Library to approve or deny the statue of the Reverend William Franklin \"Billy\" Graham, Jr., for placement in the National Statuary Hall.","latestAction.text":"Referred to the Subcommittee on Oversight.","sponsors.0.party":"R","number":"18","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/18/cosponsors?format=json","sponsors.0.bioguideId":"M001156","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/18/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/18/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/18/actions?format=json","latestAction.actionDate":"2023-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/18/relatedbills?format=json","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/18?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"9951","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/19/text?format=json","updateDate":"2024-07-24T15:23:53Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Williams","sponsors.0.isByRequest":"N","request.billNumber":"19","sponsors.0.url":"https://api.congress.gov/v3/member/W000788?format=json","latestAction_text":"Referred to the House Committee on Ethics.","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/19/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hconres/19/committees?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Prohibiting President Donald Trump and certain other individuals who attempted to undermine and overturn the 2020 presidential election from entering the United States Capitol.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"19","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/19/cosponsors?format=json","sponsors.0.bioguideId":"W000788","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/19/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/19/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/19/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Williams, Nikema [D-GA-5]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/19?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Nikema","updateDateIncludingText":"2024-07-24T15:23:53Z"}} +{"type":"node","id":"9952","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-05-22T17:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Environmental Protection","type":"SJRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"11","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/11/cosponsors?format=json","sponsors.0.bioguideId":"F000463","actions.url":"https://api.congress.gov/v3/bill/118/sjres/11/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/11/relatedbills?format=json","latestAction.actionDate":"2023-06-22","textVersions.count":3,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":2,"cosponsors.count":37,"request.contentType":"application/json","latestAction_actionTime":"16:53:20","textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/11/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":28,"request.billNumber":"11","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/11/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/11/committees?format=json","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 16, 2023\nhttps://rules.house.gov/bill/118/sj-res-11\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59194","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-01-04","summaries.count":3,"request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/11/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/11/summaries?format=json","cboCostEstimates.0.title":"S.J. Res. 11, a joint resolution providing for Congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to “Control of Air Pollution From New Motor Vehicles: Heavy-Duty","latestAction.actionTime":"16:53:20","introducedDate":"2023-02-09","subjects.count":9,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/11?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:17:39Z"}} +{"type":"node","id":"9953","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2021-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","latestAction.actionDate":"2023-04-19","textVersions.count":2,"sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","latestAction.actionTime":"16:52:34","titles.count":2,"cosponsors.count":37,"introducedDate":"2023-02-07","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/10?format=json","updateDateIncludingText":"2025-03-07T19:16:21Z","sponsors.0.firstName":"Tommy","latestAction_actionTime":"16:52:34"}} +{"type":"node","id":"9954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/785/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"785","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S10099; text: 09/20/2022 CR S4864-4865)","subjects.url":"https://api.congress.gov/v3/bill/118/s/785/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/785/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Consumer and Fuel Retailer Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"785","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/785/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/785/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/785/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/785?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9955","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/877/text?format=json","relatedBills.count":1,"updateDate":"2024-12-05T20:17:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"877","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S9781-9782)","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/117/sres/877/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/877/subjects?format=json","type":"SRES","title":"A resolution designating the week of October 6, 2024, through October 12, 2024, as \"National Community Policing Week\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6457)","sponsors.0.party":"D","number":"877","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/877/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/877/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/877/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/877/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/877/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/877?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-12-05T20:17:49Z"}} +{"type":"node","id":"9956","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/472/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"472","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and with a preamble by Unanimous Consent. (text of amendment in the nature of a substitute: CR S9754)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/472/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/472/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution expressing the sense of the Senate that the 90th anniversary of the Ukrainian Famine of 1932-1933, known as the Holodomor, should serve as a reminder of repressive Soviet policies against the people of Ukraine, and that Vladimir Putin's brutal and unprovoked war against Ukraine once again threatens the existence of the Ukrainian people, while exacerbating the problems of global hunger.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S5599-5600)","sponsors.0.party":"D","number":"472","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-21","summaries.count":1,"amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/472/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/472/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/472/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/472/actions?format=json","latestAction.actionDate":"2023-11-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/472/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/472/amendments?format=json","titles.count":2,"introducedDate":"2023-11-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/472?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9957","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/876/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lesko","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S9755)","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/876/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"876","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 22 (Friday, February 5, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GONZALEZ of Ohio:\nH.R. 876.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution stating\nthat Congress has the authority to ``make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by\nConstitution.''\n[Page H470]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/876/cosponsors?format=json","sponsors.0.bioguideId":"L000589","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/876/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/876/relatedbills?format=json","latestAction.actionDate":"2023-02-08","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","bill.sponsors.0.bioguideId":"G000588","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/876/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Anthony [R-OH-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/876/text?format=json","bill.updateDate":"2025-01-03T04:45:23Z","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/876/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","request.billNumber":"876","committees.url":"https://api.congress.gov/v3/bill/118/hr/876/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/876/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:23Z","title":"Border Crisis Prevention Act of 2023","bill.title":"Improving Housing Outcomes for Veterans Act of 2021","bill.number":"876","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/876/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/876/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/876/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000588?format=json","introducedDate":"2023-02-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/876/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/876/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/876?format=json","bill.introducedDate":"2021-02-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 876.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nBorder Security\n[Page H781]\n","sponsors.0.district":8,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":16,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/876/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}} +{"type":"node","id":"9958","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/865/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T16:11:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"865","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Star Print ordered on the agreed to resolution.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hr/865/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/865/subjects?format=json","type":"HR","title":"United States Colored Troops Congressional Gold Medal Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"865","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/865/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/865/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/865/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/865/actions?format=json","latestAction.actionDate":"2023-02-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/865/relatedbills?format=json","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":8,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/865?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 865.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nTo posthumously award the Congressional Gold Medal to the\nAfrican Americans who served with Union forces during the\nCivil War.\n[Page H738]\n","sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2024-06-11T16:11:11Z"}} +{"type":"node","id":"9959","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/875/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"ADERHOLT","sponsors.0.isByRequest":"N","request.billNumber":"875","sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S9627-9629)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/875/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/875/committees?format=json","policyArea.name":"Families","type":"HRES","title":"Expressing support for the goals of National Adoption Day and National Adoption Month by promoting national awareness of adoption and the children awaiting families, celebrating children and families involved in adoption, and encouraging the people of the United States to secure safety, permanency, and well-being for all children.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"875","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/875/cosponsors?format=json","sponsors.0.bioguideId":"A000055","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/875/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/875/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/875/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/875/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-17","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":31,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/875?format=json","sponsors.0.district":4,"sponsors.0.firstName":"ROBERT","updateDateIncludingText":"2025-02-04T16:28:27Z"}} +{"type":"node","id":"9960","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/874/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T16:59:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"874","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7305; text: CR S7312-7313)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/874/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/874/committees?format=json","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","latestAction.text":"Sponsor introductory remarks on measure. (CR H5940-5941)","sponsors.0.party":"D","number":"874","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/874/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/874/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/874/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/874/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/874/relatedbills?format=json","latestAction.actionDate":"2023-11-29","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":37,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/874?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-06T16:59:43Z"}} +{"type":"node","id":"9961","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/873/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"873","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7185-7186 text: CR S7202-7203)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/873/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/873/committees?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2024.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S6455-6456)","sponsors.0.party":"R","number":"873","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/873/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/873/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/873/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/873/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/873/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/873?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9962","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/872/text?format=json","relatedBills.count":3,"updateDate":"2025-01-17T03:11:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"872","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7185; text: CR S7202)","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/872/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/872/committees?format=json","title":"SAFETY on Social Media Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"872","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/872/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/872/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/872/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-03-16","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/872?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-17T03:11:17Z"}} +{"type":"node","id":"9963","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/871/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"871","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7202)","committees.url":"https://api.congress.gov/v3/bill/118/s/871/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/871/subjects?format=json","policyArea.name":"Education","type":"S","title":"A bill to amend section 7014 of the Elementary and Secondary Education Act of 1965 to advance toward full Federal funding for impact aid, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"871","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/871/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/871/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/871/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/871/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/871/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":2,"introducedDate":"2023-03-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/871?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9964","labels":["Bill"],"properties":{"relatedBills.count":5,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (Consideration: CR S7150; text: CR S7136)","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-07-09","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}} +{"type":"node","id":"9965","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/869/text?format=json","relatedBills.count":1,"updateDate":"2025-01-30T13:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"869","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7150; text: CR S7135-7136)","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/869/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/869/committees?format=json","type":"S","title":"CDFI Bond Guarantee Program Improvement Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"869","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/869/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/869/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/869/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/869/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/869/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":10,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/869?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-30T13:23:50Z"}} +{"type":"node","id":"9966","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/867/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"867","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/867/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/867/committees?format=json","type":"HR","title":"National Commission on Renaming the J. Edgar Hoover FBI Headquarters Building Act of 2023","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"867","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/867/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/867/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":1,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/867?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 867.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo establish a commission to redesignate the J. Edgar\nHoover F.B.I. Building.\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-07-24T15:23:44Z"}} +{"type":"node","id":"9967","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/868/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"868","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7084; text: CR S7074-7075)","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/868/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/868/committees?format=json","title":"Defending Our Defenders Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"868","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/868/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/868/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/868/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/868/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/868/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":13,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/868?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:18Z"}} +{"type":"node","id":"9968","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/866/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"866","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7083-7084; text: CR S7073-7074)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/866/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/866/committees?format=json","title":"Equal COLA Act","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"866","cosponsors.countIncludingWithdrawnCosponsors":95,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/866/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/866/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/866/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/866/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/866/relatedbills?format=json","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":95,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/866?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 866.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFederal retirement benefits\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"9969","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (consideration: CR S7082-7083; text of amendment in the nature of a substitute: CR S7082-7083)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"9970","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/864/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"864","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7072)","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/864/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/864/committees?format=json","title":"TASK Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"864","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/864/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/864/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/864/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/864/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/864/relatedbills?format=json","latestAction.actionDate":"2023-03-16","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-03-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/864?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:20:21Z"}} +{"type":"node","id":"9971","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/730/text?format=json","updateDate":"2025-02-03T21:55:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"730","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 611.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/sres/730/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/730/subjects?format=json","type":"SRES","title":"A resolution designating June 23, 2024, as \"Social Media Harms Victim Remembrance Day\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4058)","sponsors.0.party":"D","number":"730","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/730/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/730/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/730/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/730/actions?format=json","latestAction.actionDate":"2024-06-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2024-06-12","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/730?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-02-03T21:55:23Z"}} +{"type":"node","id":"9972","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/713/text?format=json","relatedBills.count":2,"updateDate":"2024-11-25T20:30:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"713","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 610.","committees.url":"https://api.congress.gov/v3/bill/118/sres/713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/713/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution designating May 2024 as \"ALS Awareness Month\".","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S4023; text: 5/23/2024 CR S3893)","sponsors.0.party":"D","number":"713","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-07","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/713/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/713/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-06-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/713/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":7,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/713?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-25T20:30:46Z"}} +{"type":"node","id":"9973","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/650/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"650","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 609.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sres/650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/650/committees?format=json","type":"SRES","title":"A resolution recognizing the anniversary of the establishment of the United States Naval Construction Force, known as the \"Seabees\", and the tremendous sacrifices and contributions by the Seabees who have fought and served on behalf of our country.","latestAction.text":"Referred to the Committee on Armed Services. (text: CR S2888)","sponsors.0.party":"D","number":"650","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/650/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/650/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/650/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":2,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/650?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:07:58Z"}} +{"type":"node","id":"9974","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/645/text?format=json","relatedBills.count":1,"updateDate":"2024-12-12T20:36:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"645","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2630; text: CR S2624)","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/sres/645/subjects?format=json","type":"SRES","title":"A resolution designating the week of April 20 through April 28, 2024, as \"National Park Week\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2781; text: CR S2794)","sponsors.0.party":"I","number":"645","cosponsors.countIncludingWithdrawnCosponsors":63,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-05-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/645/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/645/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/645/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/645/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/645/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2024-04-16","cosponsors.count":63,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/645?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-12-12T20:36:14Z"}} +{"type":"node","id":"9975","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/644/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T22:37:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Boyle","sponsors.0.isByRequest":"N","request.billNumber":"644","sponsors.0.url":"https://api.congress.gov/v3/member/B001296?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S2624)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hres/644/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/644/committees?format=json","type":"HRES","title":"Calling on the Judicial Conference of the United States to authorize that the trial of former President Donald J. Trump for his alleged crimes related to his efforts to overturn the 2020 election and his role in the January 6, 2021, insurrection be broadcast to the American public.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"644","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-05-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/644/cosponsors?format=json","sponsors.0.bioguideId":"B001296","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/644/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/644/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/644/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/644/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-04","sponsors.0.fullName":"Rep. Boyle, Brendan F. [D-PA-2]","titles.count":2,"introducedDate":"2023-08-04","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/644?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Brendan","updateDateIncludingText":"2024-12-04T22:37:05Z"}} +{"type":"node","id":"9976","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/643/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2580-2581; text: CR S2591-2593)","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/643/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"643","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/643/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/643/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/643/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001297","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/643/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/643/text?format=json","bill.updateDate":"2025-01-03T04:43:42Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/643/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"643","subjects.url":"https://api.congress.gov/v3/bill/118/hr/643/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/643/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:42Z","title":"Equal Voices Act","bill.title":"Stop Greenlighting Driver Licenses for Illegal Immigrants Act","bill.number":"643","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/643/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/643/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/643/summaries?format=json","bill.cosponsors.count":18,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-01-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ken","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/643/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/643/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/643?format=json","bill.introducedDate":"2021-02-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 643.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Reform\n[Page H577]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":4,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2025-01-09T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/643/text?format=json","bill.sponsors.0.lastName":"Buck"}} +{"type":"node","id":"9977","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 612, the Downwinders Parity Act of 2021","sponsors.0.lastName":"Torres","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2022-02-23T21:00:00Z","policyArea.name":"International Affairs","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/612/summaries?format=json","type":"HR","bill.summaries.count":2,"number":"612","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"sponsors.0.bioguideId":"T000486","bill.subjects.count":11,"latestAction.actionDate":"2023-01-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/612/relatedbills?format=json","bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","bill.originChamber":"House","bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 158.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-02-23T21:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/612/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-220","updateDate":"2024-07-24T15:23:55Z","committees.count":1,"request.billNumber":"612","committees.url":"https://api.congress.gov/v3/bill/118/hr/612/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:40Z","bill.number":"612","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on the Judiciary on December 20, 2021\n","committeeReports":[],"latestAction_actionDate":"2022-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/612/summaries?format=json","cboCostEstimates.0.title":"H.R. 612, the Downwinders Parity Act of 2021","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","introducedDate":"2023-01-27","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Greg","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/612/actions?format=json","url":"https://api.congress.gov/v3/bill/117/sres/612?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 612.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H491]\n","bill.sponsors.0.district":9,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/612/cosponsors?format=json","bill.textVersions.count":2,"bill.latestAction.actionDate":"2021-12-20","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S2580; text: 5/3/2022 CR S2281)","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-220","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 612.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/612/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/612/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"S001211","bill.cboCostEstimates.0.description":"As reported by the House Committee on the Judiciary on December 20, 2021\n","bill.actions.count":10,"titles.count":3,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/220?format=json","bill.sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/612/text?format=json","bill.updateDate":"2025-01-03T04:43:40Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/612/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/612/subjects?format=json","title":"Balkans Security Cooperation Act","bill.title":"Downwinders Parity Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57845","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/612/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/220?format=json","request.billType":"hr","bill.cosponsors.count":11,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/612/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-01-28","sponsors.0.district":15,"bill.sponsors.0.state":"AZ","sponsors.0.firstName":"Ritchie","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/612/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57845","bill.sponsors.0.lastName":"Stanton"}} +{"type":"node","id":"9978","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2535; text: CR S2550)","policyArea.name":"Law","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/642/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"642","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/642/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/642/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/642/relatedbills?format=json","latestAction.actionDate":"2023-01-31","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001304","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/642/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/642/text?format=json","bill.updateDate":"2025-01-03T04:43:51Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/642/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"642","committees.url":"https://api.congress.gov/v3/bill/118/hr/642/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/642/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:51Z","title":"Restoring Judicial Separation of Powers Act","bill.title":"Voter Information Hotline Act of 2021","bill.number":"642","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/642/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/642/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/642/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-01-31","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/642/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/642/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/642?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 20 (Tuesday, January 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 642.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nReforms the Supreme Court of the United States\n[Page H577]\n","bill.introducedDate":"2021-02-01","sponsors.0.district":6,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/642/text?format=json","bill.sponsors.0.lastName":"Brown"}} +{"type":"node","id":"9979","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/641/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DAVIS","sponsors.0.isByRequest":"N","request.billNumber":"641","sponsors.0.url":"https://api.congress.gov/v3/member/D000096?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2535; text: CR S2550)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/641/subjects?format=json","policyArea.name":"Private Legislation","committees.url":"https://api.congress.gov/v3/bill/118/hr/641/committees?format=json","type":"HR","title":"For the relief of Reverend Olusegun Samson Olaoye.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"641","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/641/cosponsors?format=json","sponsors.0.bioguideId":"D000096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/641/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/641/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/641/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/641/relatedbills?format=json","latestAction.actionDate":"2023-01-30","sponsors.0.fullName":"Rep. Davis, Danny K. [D-IL-7]","titles.count":2,"introducedDate":"2023-01-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/641?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIS of Illinois:\nH.R. 641.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the Constitution: To\nmake all laws which shall be necessary and proper for\ncarrying into Execution the powers enumerated under section 8\nand all other Powers vested by the Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nImmigration Private Bill\n[Page H511]\n","sponsors.0.district":7,"sponsors.0.firstName":"DANNY","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"9980","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2535; text: CR S2549-2550)","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"9981","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/639/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T16:02:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Crockett","sponsors.0.isByRequest":"N","request.billNumber":"639","sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S2535; text: CR S2549)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/639/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/639/committees?format=json","type":"HRES","title":"Supporting the goals and ideals of \"Minority Mental Health Awareness Month\" and recognizing the disproportionate impacts of mental health conditions and struggles on minority populations and communities.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"639","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/639/cosponsors?format=json","sponsors.0.bioguideId":"C001130","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/639/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/639/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/639/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/639/relatedbills?format=json","latestAction.actionDate":"2023-08-04","sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","titles.count":2,"introducedDate":"2023-08-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/639?format=json","sponsors.0.district":30,"sponsors.0.firstName":"Jasmine","updateDateIncludingText":"2024-12-19T16:02:23Z"}} +{"type":"node","id":"9982","labels":["Bill"],"properties":{"relatedBills.count":6,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/605/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hill","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S2535; text: 4/28/2022 CR S2224)","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/605/summaries?format=json","bill.relatedBills.count":6,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"605","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Missouri:\nH.R. 605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the Constitution of the\nUnited States.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/605/cosponsors?format=json","sponsors.0.bioguideId":"H001072","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/605/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/605/relatedbills?format=json","latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Hill, J. French [R-AR-2]","bill.sponsors.0.bioguideId":"S001195","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/605/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Jason [R-MO-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/605/text?format=json","bill.updateDate":"2025-01-03T04:43:25Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/605/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001072?format=json","request.billNumber":"605","committees.url":"https://api.congress.gov/v3/bill/118/hr/605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/605/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:25Z","title":"Special Drawing Rights Oversight Act of 2023","bill.title":"Student Empowerment Act","bill.number":"605","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/605/committees?format=json","request.format":"json","sponsors.0.middleName":"French","latestAction_actionDate":"2022-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/605/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/605/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001195?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"AR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/605/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/605/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/605?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HILL:\nH.R. 605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nSpecial Drawing Rights Act\n[Page H490]\n","sponsors.0.district":2,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":8,"sponsors.0.firstName":"J.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/605/text?format=json","bill.sponsors.0.lastName":"Smith"}} +{"type":"node","id":"9983","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2548)","policyArea.name":"Labor and Employment","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/637/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9984","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/635/text?format=json","relatedBills.count":1,"updateDate":"2024-11-19T12:54:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Green","sponsors.0.isByRequest":"N","request.billNumber":"635","sponsors.0.url":"https://api.congress.gov/v3/member/G000553?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2516; text: CR S2522-2523)","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/635/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/635/committees?format=json","type":"HRES","title":"Original Resolution Recognizing Islam as One of the Great Religions of the World","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"635","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/635/cosponsors?format=json","sponsors.0.bioguideId":"G000553","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/635/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/635/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/635/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/635/relatedbills?format=json","sponsors.0.fullName":"Rep. Green, Al [D-TX-9]","titles.count":3,"introducedDate":"2023-07-28","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/635?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Al","updateDateIncludingText":"2024-11-19T12:54:00Z"}} +{"type":"node","id":"9985","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/634/text?format=json","relatedBills.count":1,"updateDate":"2024-12-10T15:36:25Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schumer","sponsors.0.isByRequest":"N","request.billNumber":"634","sponsors.0.url":"https://api.congress.gov/v3/member/S000148?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2516; text: CR S2521-2522)","policyArea.name":"Arts, Culture, Religion","subjects.url":"https://api.congress.gov/v3/bill/118/sres/634/subjects?format=json","type":"SRES","title":"A resolution recognizing the cultural and educational contributions of the Youth America Grand Prix throughout its 25 years of service as the national youth dance competition of the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2703; text: CR S2712)","sponsors.0.party":"D","number":"634","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/634/cosponsors?format=json","sponsors.0.bioguideId":"S000148","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/634/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/634/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/634/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/634/relatedbills?format=json","sponsors.0.fullName":"Sen. Schumer, Charles E. [D-NY]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/634?format=json","sponsors.0.firstName":"Charles","updateDateIncludingText":"2024-12-10T15:36:25Z"}} +{"type":"node","id":"9986","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/633/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"633","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2516; text: CR S2521)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/633/subjects?format=json","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/sres/633/committees?format=json","type":"SRES","title":"A resolution reaffirming the United States' commitment to Taiwan and recognizing the 45th anniversary of the enactment of the Taiwan Relations Act.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S2711-2712)","sponsors.0.party":"R","number":"633","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/633/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/633/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sres/633/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/633/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/633/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/633?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"9987","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/636/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rosendale","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S2522-2523)","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/636/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"636","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/636/cosponsors?format=json","sponsors.0.bioguideId":"R000103","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/636/actions?format=json","latestAction.actionDate":"2023-02-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/636/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","bill.sponsors.0.bioguideId":"B001278","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/636/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/636/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/636/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","request.billNumber":"636","committees.url":"https://api.congress.gov/v3/bill/118/hr/636/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/636/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Forest Litigation Reform Act of 2023","bill.title":"PARTNERS Act","bill.number":"636","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/636/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/636/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/636/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzanne","sponsors.0.state":"MT","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/636/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/636/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/636?format=json","bill.introducedDate":"2021-02-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 636.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H511]\n","sponsors.0.district":2,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":1,"sponsors.0.firstName":"Matthew","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/636/text?format=json","bill.sponsors.0.lastName":"Bonamici"}} +{"type":"node","id":"9988","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/631/text?format=json","updateDate":"2024-07-24T15:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Veasey","sponsors.0.isByRequest":"N","request.billNumber":"631","sponsors.0.url":"https://api.congress.gov/v3/member/V000131?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S2495)","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/hres/631/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/631/subjects?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"D","number":"631","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","summaries.count":1,"sponsors.0.bioguideId":"V000131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/631/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/631/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/631/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-28","sponsors.0.fullName":"Rep. Veasey, Marc A. [D-TX-33]","titles.count":2,"introducedDate":"2023-07-27","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/631?format=json","sponsors.0.district":33,"sponsors.0.firstName":"Marc","updateDateIncludingText":"2024-07-24T15:21:20Z"}} +{"type":"node","id":"9989","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"427","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and with a preamble by Voice Vote. (consideration: CR S2459; text: CR S2459-2460)","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/427/committees?format=json","title":"Financial Freedom Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"427","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/427/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/427/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/427/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/427?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"9990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (consideration: CR S2455; text: CR S2457-2459)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/122?format=json","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}} +{"type":"node","id":"9991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/456/text?format=json","updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"456","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"The committee amendment to the preamble withdrawn by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sres/456/committees?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating November 2023 as \"National College Application Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5432; text: CR S5430-5431)","sponsors.0.party":"D","number":"456","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-11","summaries.count":2,"amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/456/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/456/actions?format=json","latestAction.actionDate":"2023-11-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/456/amendments?format=json","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/456?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-04-17T23:51:46Z"}} +{"type":"node","id":"9992","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/473/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","request.billNumber":"473","sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S2460; text: 12/8/2021 CR S9048)","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hr/473/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/473/subjects?format=json","title":"Parris Island Protection Act","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"473","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/473/cosponsors?format=json","sponsors.0.bioguideId":"M000194","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/473/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/473/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/473/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/473/relatedbills?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/473?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"9993","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/629/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"629","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: 5/10/2022 CR S2451-2452)","committees.url":"https://api.congress.gov/v3/bill/118/s/629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/629/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"UNITED Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"629","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-11","sponsors.0.middleName":"A.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/629/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/629/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/629/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2023-03-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/629?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:51Z"}} +{"type":"node","id":"9994","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/392/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T22:54:53Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"392","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6746; text: CR S6745)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/392/subjects?format=json","policyArea.name":"Emergency Management","type":"SRES","title":"A resolution recognizing and honoring the first responders and those who lost their lives in the Maui wildfires in August 2023 that affected thousands of people.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4895; text: CR S4893)","sponsors.0.party":"D","number":"392","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-28","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/392/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/392/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/392/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/392/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/392/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2023-09-30","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/392?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-12-19T22:54:53Z"}} +{"type":"node","id":"9995","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/391/text?format=json","updateDate":"2024-07-24T15:22:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"391","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6744-6745)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/391/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/391/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 2023 as \"Arthritis Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"391","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/391/cosponsors?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/391/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/391/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/391/actions?format=json","latestAction.actionDate":"2023-05-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":4,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/391?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-07-24T15:22:23Z"}} +{"type":"node","id":"9996","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/389/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schweikert","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S6743-6744)","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/389/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on the Judiciary, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"389","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 12 (Thursday, January 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASE:\nH.R. 389.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, Article I of the Constitution\n[Page H224]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/389/cosponsors?format=json","sponsors.0.bioguideId":"S001183","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/389/actions?format=json","latestAction.actionDate":"2023-01-17","textVersions.count":1,"bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Schweikert, David [R-AZ-1]","bill.sponsors.0.bioguideId":"C001055","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Case, Ed [D-HI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/389/text?format=json","bill.updateDate":"2025-01-03T04:42:05Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/389/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001183?format=json","request.billNumber":"389","committees.url":"https://api.congress.gov/v3/bill/118/hr/389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/389/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:05Z","title":"PORTFOLIO Act","bill.title":"Safe and Quiet Skies Act of 2021","bill.number":"389","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/389/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/389/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/389/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001055?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-17","bill.originChamberCode":"H","subjects.count":19,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/389/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/389/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/389?format=json","bill.introducedDate":"2021-01-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHWEIKERT:\nH.R. 389.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution:\nThe Congress shall have the Power to make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H244]\n","sponsors.0.district":1,"bill.sponsors.0.state":"HI","bill.sponsors.0.district":1,"sponsors.0.firstName":"David","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/389/text?format=json","bill.sponsors.0.lastName":"Case"}} +{"type":"node","id":"9997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/388/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","request.billNumber":"388","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6743)","committees.url":"https://api.congress.gov/v3/bill/118/sres/388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/388/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution designating the week of September 25 through September 29, 2023, as \"National Clean Energy Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4828)","sponsors.0.party":"R","number":"388","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/388/cosponsors?format=json","sponsors.0.bioguideId":"C001035","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/388/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/388/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":2,"introducedDate":"2023-09-29","cosponsors.count":18,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/388?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2024-11-09T01:57:27Z"}} +{"type":"node","id":"9998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/387/text?format=json","relatedBills.count":2,"updateDate":"2024-11-19T20:40:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"387","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6707)","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/sres/387/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/387/subjects?format=json","type":"SRES","title":"A resolution designating October 12, 2023, as \"National Loggers Day\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4828)","sponsors.0.party":"D","number":"387","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/387/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/387/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/387/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/387/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/387/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":2,"cosponsors.count":3,"introducedDate":"2023-09-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/387?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-11-19T20:40:20Z"}} +{"type":"node","id":"9999","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/386/text?format=json","updateDate":"2024-10-03T16:45:53Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"386","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sres/386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/386/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution designating October 4, 2023, as National Energy Appreciation Day to celebrate the people who work to power the United States and the economy of the United States and to build awareness of the important role that the energy producers of the United States play in reducing poverty, strengthening national security, and improving the quality of life for people around the world.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4827-4828)","sponsors.0.party":"R","number":"386","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/386/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/386/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/386/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":2,"introducedDate":"2023-09-29","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/386?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2024-10-03T16:45:53Z"}} +{"type":"node","id":"10000","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/385/text?format=json","relatedBills.count":3,"updateDate":"2024-08-15T13:52:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Chu","sponsors.0.isByRequest":"N","request.billNumber":"385","sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6680)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/385/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/385/committees?format=json","type":"HRES","title":"Supporting the designation of May 10, 2023, as \"National Asian American, Native Hawaiian, and Pacific Islander Mental Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"385","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/385/cosponsors?format=json","sponsors.0.bioguideId":"C001080","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/385/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/385/relatedbills?format=json","sponsors.0.fullName":"Rep. Chu, Judy [D-CA-28]","titles.count":2,"introducedDate":"2023-05-10","cosponsors.count":26,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/385?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Judy","updateDateIncludingText":"2024-08-15T13:52:41Z"}} +{"type":"node","id":"10001","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/384/text?format=json","relatedBills.count":3,"updateDate":"2024-11-18T15:42:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Burgess","sponsors.0.isByRequest":"N","request.billNumber":"384","sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6679-6680)","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hres/384/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/384/committees?format=json","type":"HRES","title":"Expressing support for the designation of May 2023 as Motorcycle Safety Awareness Month.","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"384","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/384/cosponsors?format=json","sponsors.0.bioguideId":"B001248","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/384/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/384/relatedbills?format=json","sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","titles.count":2,"introducedDate":"2023-05-10","cosponsors.count":23,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/384?format=json","sponsors.0.district":26,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-18T15:42:20Z"}} +{"type":"node","id":"10002","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/383/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"383","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6679)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/383/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/383/committees?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2023.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4765-4766)","sponsors.0.party":"R","number":"383","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/383/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/383/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/383/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/383?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}} +{"type":"node","id":"10003","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cantwell","cboCostEstimates.0.pubDate":"2023-10-25T18:37:01Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6679)","policyArea.name":"Native Americans","type":"S","latestAction.text":"Became Public Law No: 118-48.","sponsors.0.party":"D","number":"382","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/382/cosponsors?format=json","sponsors.0.bioguideId":"C000127","laws.0.number":"118-48","actions.url":"https://api.congress.gov/v3/bill/118/s/382/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/382/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-130","textVersions.url":"https://api.congress.gov/v3/bill/118/s/382/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":26,"request.billNumber":"382","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/382/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/382/committees?format=json","title":"Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on July 19, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59705","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/130?format=json","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/382/summaries?format=json","cboCostEstimates.0.title":"S. 382, Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","introducedDate":"2023-02-09","subjects.count":5,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/382?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:14:49Z","laws.0.type":"Public Law"}} +{"type":"node","id":"10004","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S6666; text: CR S6678-6679)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","policyArea.name":"Taxation","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","title":"PISTOL Act","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/381/relatedbills?format=json","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}} +{"type":"node","id":"10005","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/379/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"PASCRELL","sponsors.0.isByRequest":"N","request.billNumber":"379","sponsors.0.url":"https://api.congress.gov/v3/member/P000096?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6630; text: CR S6629)","committees.url":"https://api.congress.gov/v3/bill/118/hres/379/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/379/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 6, 2023, as \"National Sport Brain Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"379","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/379/cosponsors?format=json","sponsors.0.bioguideId":"P000096","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/379/actions?format=json","latestAction.actionDate":"2023-05-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/379/relatedbills?format=json","sponsors.0.fullName":"Rep. Pascrell, Bill, Jr. [D-NJ-9]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/379?format=json","sponsors.0.district":9,"sponsors.0.firstName":"WILLIAM","updateDateIncludingText":"2024-07-24T15:22:26Z"}} +{"type":"node","id":"10006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/378/text?format=json","relatedBills.count":3,"updateDate":"2024-11-25T13:02:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"378","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S6630; text: CR S6628-6629)","committees.url":"https://api.congress.gov/v3/bill/118/sres/378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/378/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution expressing support for the recognition of the week of September 25 through October 1, 2023, as \"Asian American and Native American Pacific Islander-Serving Institutions Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4763)","sponsors.0.party":"D","number":"378","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/378/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/378/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/378/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/378?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-25T13:02:29Z"}} +{"type":"node","id":"10007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"377","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6627-6628)","committees.url":"https://api.congress.gov/v3/bill/118/s/377/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/377/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Domestic Reinvestment Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/377/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/377/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/377/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/377?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:47Z"}} +{"type":"node","id":"10008","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6593; text: CR S6592)","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}} +{"type":"node","id":"10009","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"375","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6591-6592)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/375/committees?format=json","title":"Simplifying Grants Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"375","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/375/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/375/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/375/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":7,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/375?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"10010","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6590-6591)","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}} +{"type":"node","id":"10011","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/373/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"373","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Referred to the Committee on Energy and Natural Resources. (text: CR S6590)","subjects.url":"https://api.congress.gov/v3/bill/118/s/373/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/373/committees?format=json","policyArea.name":"Energy","title":"RISEE Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 576.","sponsors.0.party":"D","number":"373","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/373/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/373/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/373/relatedbills?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":6,"introducedDate":"2023-02-09","cosponsors.count":26,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/373?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:11:28Z"}} +{"type":"node","id":"10012","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/371/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"371","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sres/371/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/371/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the designation of the week of September 18 through September 22, 2023, as \"Malnutrition Awareness Week\".","latestAction.text":"Referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S4724)","sponsors.0.party":"D","number":"371","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/371/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/371/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/371/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/371/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/371/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":2,"introducedDate":"2023-09-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/371?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"10013","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/370/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"370","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/370/subjects?format=json","policyArea.name":"Immigration","title":"Protecting America From Spies Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"370","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2021-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/370/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/370/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/370/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/370?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:48Z"}} +{"type":"node","id":"10014","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1845; text: 3/23/2021 CR S1713)","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}} +{"type":"node","id":"10015","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/109/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T19:34:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"109","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (text: 3/15/2021 CR S1527-1528)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/109/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/109/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow an above-the-line deduction for health insurance premiums.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"109","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/109/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/109/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/109/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/109/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/109?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 109.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-14T19:34:50Z"}} +{"type":"node","id":"10016","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/147/text?format=json","relatedBills.count":1,"updateDate":"2024-08-05T14:58:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"147","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S1838)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/147/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/147/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"SRES","title":"A resolution designating April 2023 as \"Preserving and Protecting Local News Month\" and recognizing the importance and significance of local news.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S1101)","sponsors.0.party":"D","number":"147","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/147/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/147/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/147/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/147/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/147/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/147?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-08-05T14:58:18Z"}} +{"type":"node","id":"10017","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crow","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1835-1836)","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/142/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"142","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 2 (Monday, January 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. JACKSON LEE:\nH.R. 142.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1 and 18 of the\nUnited States Constitution.\n[Page H54]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/142/cosponsors?format=json","sponsors.0.bioguideId":"C001121","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/142/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","bill.sponsors.0.bioguideId":"J000032","bill.actions.count":8,"bill.originChamber":"House","titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson Lee, Sheila [D-TX-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/142/text?format=json","bill.updateDate":"2025-01-03T03:44:21Z","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/142/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","request.billNumber":"142","subjects.url":"https://api.congress.gov/v3/bill/118/hr/142/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/142/committees?format=json","bill.updateDateIncludingText":"2025-01-03T03:44:21Z","title":"End Dark Money Act","bill.title":"Infant Protection and Baby Switching Prevention Act of 2021","bill.number":"142","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/142/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/142/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/142/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000032?format=json","introducedDate":"2023-01-09","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":3,"bill.sponsors.0.firstName":"SHEILA","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/142/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/142/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/142?format=json","bill.introducedDate":"2021-01-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 142.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\n[Page H110]\n","sponsors.0.district":6,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":18,"sponsors.0.firstName":"Jason","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/142/text?format=json","bill.sponsors.0.lastName":"JACKSON LEE"}} +{"type":"node","id":"10018","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Committee on Indian Affairs. (text: CR S1834-1835)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","policyArea.name":"Congress","title":"No Pay for Disarray Act","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/141/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"10019","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Comer","cboCostEstimates.0.pubDate":"2023-03-02T20:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1834)","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"140","amendments.count":10,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/140/cosponsors?format=json","sponsors.0.bioguideId":"C001108","actions.url":"https://api.congress.gov/v3/bill/118/hr/140/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/140/relatedbills?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":4,"sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/140/amendments?format=json","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-5","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/140/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":48,"request.billNumber":"140","sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/140/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/140/committees?format=json","title":"Protecting Speech from Government Interference Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58971","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-03-25","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/5?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/140/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/140/summaries?format=json","cboCostEstimates.0.title":"H.R. 140, Protecting Speech from Government Interference Act","introducedDate":"2023-01-09","subjects.count":5,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/140?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 140.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution, in that\nthe legislation regulates forms of commerce specified in that\nclause; and, Article I, Section 8, clause 18 of the\nConstitution, in that the legislation ``is necessary and\nproper for carrying into Execution the foregoing Powers'' and\n``other Powers vested by this Constitution in the Government\nof the United States, or in any Department or Officer\nthereof,'' including the powers of the President specified in\nArticle II of the Constitution.\n[Page H110]\n","sponsors.0.district":1,"sponsors.0.firstName":"James","updateDateIncludingText":"2025-02-04T16:54:13Z"}} +{"type":"node","id":"10020","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/138/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","request.billNumber":"138","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1833)","committees.url":"https://api.congress.gov/v3/bill/118/hres/138/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/138/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing amounts for the expenses of the Committee on Financial Services in the One Hundred Eighteenth Congress.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"138","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/138/cosponsors?format=json","sponsors.0.bioguideId":"M001156","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/138/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/138/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/138/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/138/relatedbills?format=json","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":2,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/138?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:23:54Z"}} +{"type":"node","id":"10021","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/137/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","request.billNumber":"137","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1832-1833)","committees.url":"https://api.congress.gov/v3/bill/118/hres/137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/137/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing amounts for the expenses of the Committee on Foreign Affairs in the One Hundred Eighteenth Congress.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"137","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/137/cosponsors?format=json","sponsors.0.bioguideId":"M001157","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/137/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/137/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/137/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/137/relatedbills?format=json","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/137?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:23:54Z"}} +{"type":"node","id":"10022","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/136/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"136","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1831-1832)","subjects.url":"https://api.congress.gov/v3/bill/118/s/136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/136/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"ISA Student Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"136","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/136/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/136/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/136/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/136?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2024-11-09T01:28:24Z"}} +{"type":"node","id":"10023","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/44/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:49:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"44","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 27.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/44/subjects?format=json","type":"SCONRES","title":"A concurrent resolution directing the Clerk of the House of Representatives to make a correction in the enrollment of the bill H.R. 5009.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"D","number":"44","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-24","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/44/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/44/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/44/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/44/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/44/relatedbills?format=json","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","latestAction.actionTime":"18:04:09","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":4,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/44?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-31T18:49:07Z"}} +{"type":"node","id":"10024","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1776-1777)","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}} +{"type":"node","id":"10025","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/99/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"99","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/99/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/99/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","latestAction.text":"Star Print ordered on the reported resolution.","sponsors.0.party":"D","number":"99","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/99/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/99/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/99/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/99/actions?format=json","latestAction.actionDate":"2023-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/99/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":6,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/99?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}} +{"type":"node","id":"10026","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1775-1776; text: CR S1775)","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":44,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-24","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}} +{"type":"node","id":"10027","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2023-04-17T17:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1775)","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Committee on Veterans' Affairs. Ordered to be reported with an amendment in the nature of a substitute favorably.","sponsors.0.party":"D","number":"132","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/132/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/132/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/132/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/132/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"132","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/132/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/132/committees?format=json","title":"Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59068","request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/132/summaries?format=json","cboCostEstimates.0.title":"S. 132, Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","introducedDate":"2023-01-30","subjects.count":15,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/132?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-01-14T17:05:14Z"}} +{"type":"node","id":"10028","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1717; text: 3/18/2021 CR S1654-1655)","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}} +{"type":"node","id":"10029","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1717; text: 3/18/2021 CR S1653)","committees.url":"https://api.congress.gov/v3/bill/117/s/123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}} +{"type":"node","id":"10030","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1713-1714)","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2021-03-23","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}} +{"type":"node","id":"10031","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}} +{"type":"node","id":"10032","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","policyArea.name":"Health","title":"Defund Planned Parenthood Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}} +{"type":"node","id":"10033","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","policyArea.name":"Health","title":"Pharmacy Benefit Manager Transparency Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/127/relatedbills?format=json","latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}} +{"type":"node","id":"10034","labels":["Order"],"properties":{"date_enacted":"2025-02-26","date_repealed":"None","description":"nan","id":"EO 14222","title":"Implementing the Presidents \"Department of Government Efficiency\" Cost Efficiency Initiative","url":"https://www.federalregister.gov/d/2025-03527"}} +{"type":"node","id":"10035","labels":["Order"],"properties":{"date_enacted":"2025-02-25","date_repealed":"None","description":"nan","id":"EO 14221","title":"Making America Healthy Again by Empowering Patients With Clear, Accurate, and Actionable Healthcare Pricing Information","url":"https://www.federalregister.gov/d/2025-03440"}} +{"type":"node","id":"10036","labels":["Order"],"properties":{"date_enacted":"2025-02-25","date_repealed":"None","description":"nan","id":"EO 14220","title":"Addressing the Threat to National Security From Imports of Copper","url":"https://www.federalregister.gov/d/2025-03439"}} +{"type":"node","id":"10037","labels":["Order"],"properties":{"date_enacted":"2025-02-19","date_repealed":"None","description":"nan","id":"EO 14219","title":"Ensuring Lawful Governance and Implementing the Presidents \"Department of Government Efficiency\" Deregulatory Initiative","url":"https://www.federalregister.gov/d/2025-03138"}} +{"type":"node","id":"10038","labels":["Order"],"properties":{"date_enacted":"2025-02-19","date_repealed":"None","description":"nan","id":"EO 14218","title":"Ending Taxpayer Subsidization of Open Borders","url":"https://www.federalregister.gov/d/2025-03137"}} +{"type":"node","id":"10039","labels":["Order"],"properties":{"date_enacted":"2025-02-18","date_repealed":"None","description":"nan","id":"EO 14216","title":"Expanding Access to In Vitro Fertilization","url":"https://www.federalregister.gov/d/2025-03064"}} +{"type":"node","id":"10040","labels":["Order"],"properties":{"date_enacted":"2025-02-18","date_repealed":"None","description":"nan","id":"EO 14215","title":"Ensuring Accountability for All Agencies","url":"https://www.federalregister.gov/d/2025-03063"}} +{"type":"node","id":"10041","labels":["Order"],"properties":{"date_enacted":"2025-02-14","date_repealed":"None","description":"nan","id":"EO 14214","title":"Keeping Education Accessible and Ending COVID-19 Vaccine Mandates in Schools","url":"https://www.federalregister.gov/d/2025-02931"}} +{"type":"node","id":"10042","labels":["Order"],"properties":{"date_enacted":"2025-02-14","date_repealed":"None","description":"nan","id":"EO 14213","title":"Establishing the National Energy Dominance Council","url":"https://www.federalregister.gov/d/2025-02928"}} +{"type":"node","id":"10043","labels":["Order"],"properties":{"date_enacted":"2025-02-13","date_repealed":"None","description":"nan","id":"EO 14212","title":"Establishing the Presidents Make America Healthy Again Commission","url":"https://www.federalregister.gov/d/2025-02871"}} +{"type":"node","id":"10044","labels":["Order"],"properties":{"date_enacted":"2025-02-12","date_repealed":"None","description":"nan","id":"EO 14211","title":"One Voice for Americas Foreign Relations","url":"https://www.federalregister.gov/d/2025-02841"}} +{"type":"node","id":"10045","labels":["Order"],"properties":{"date_enacted":"2025-02-11","date_repealed":"None","description":"nan","id":"EO 14210","title":"Implementing the Presidents \"Department of Government Efficiency\" Workforce Optimization Initiative","url":"https://www.federalregister.gov/d/2025-02762"}} +{"type":"node","id":"10046","labels":["Order"],"properties":{"date_enacted":"2025-02-10","date_repealed":"None","description":"nan","id":"EO 14209","title":"Pausing Foreign Corrupt Practices Act Enforcement To Further American Economic and National Security","url":"https://www.federalregister.gov/d/2025-02736"}} +{"type":"node","id":"10047","labels":["Order"],"properties":{"date_enacted":"2025-02-10","date_repealed":"None","description":"nan","id":"EO 14208","title":"Ending Procurement and Forced Use of Paper Straws","url":"https://www.federalregister.gov/d/2025-02735"}} +{"type":"node","id":"10048","labels":["Order"],"properties":{"date_enacted":"2025-02-10","date_repealed":"None","description":"nan","id":"EO 14207","title":"Eliminating the Federal Executive Institute ","url":"https://www.federalregister.gov/d/2025-02734"}} +{"type":"node","id":"10049","labels":["Order"],"properties":{"date_enacted":"2025-02-07","date_repealed":"None","description":"nan","id":"EO 14206","title":"Protecting Second Amendment Rights","url":"https://www.federalregister.gov/d/2025-02636"}} +{"type":"node","id":"10050","labels":["Order"],"properties":{"date_enacted":"2025-02-07","date_repealed":"None","description":"nan","id":"EO 14205","title":"Establishment of the White House Faith Office","url":"https://www.federalregister.gov/d/2025-02635"}} +{"type":"node","id":"10051","labels":["Order"],"properties":{"date_enacted":"2025-02-07","date_repealed":"None","description":"nan","id":"EO 14204","title":"Addressing Egregious Actions of the Republic of South Africa","url":"https://www.federalregister.gov/d/2025-02630"}} +{"type":"node","id":"10052","labels":["Order"],"properties":{"date_enacted":"2025-02-06","date_repealed":"None","description":"nan","id":"EO 14203","title":"Imposing Sanctions on the International Criminal Court","url":"https://www.federalregister.gov/d/2025-02612"}} +{"type":"node","id":"10053","labels":["Order"],"properties":{"date_enacted":"2025-02-06","date_repealed":"None","description":"nan","id":"EO 14202","title":"Eradicating Anti-Christian Bias","url":"https://www.federalregister.gov/d/2025-02611"}} +{"type":"node","id":"10054","labels":["Order"],"properties":{"date_enacted":"2025-02-05","date_repealed":"None","description":"nan","id":"EO 14201","title":"Keeping Men Out of Womens Sports ","url":"https://www.federalregister.gov/d/2025-02513"}} +{"type":"node","id":"10055","labels":["Order"],"properties":{"date_enacted":"2025-02-05","date_repealed":"None","description":"nan","id":"EO 14200","title":"Amendment to Duties Addressing the Synthetic Opioid Supply Chain in the Peoples Republic of China","url":"https://www.federalregister.gov/d/2025-02512"}} +{"type":"node","id":"10056","labels":["Order"],"properties":{"date_enacted":"2025-02-04","date_repealed":"None","description":"nan","id":"EO 14199","title":"Withdrawing the United States From and Ending Funding to Certain United Nations Organizations and Reviewing United States Support to All International Organizations","url":"https://www.federalregister.gov/d/2025-02504"}} +{"type":"node","id":"10057","labels":["Order"],"properties":{"date_enacted":"2025-02-03","date_repealed":"None","description":"nan","id":"EO 14198","title":"Progress on the Situation at Our Southern Border","url":"https://www.federalregister.gov/d/2025-02479"}} +{"type":"node","id":"10058","labels":["Order"],"properties":{"date_enacted":"2025-02-03","date_repealed":"None","description":"nan","id":"EO 14197","title":"Progress on the Situation at Our Northern Border","url":"https://www.federalregister.gov/d/2025-02478"}} +{"type":"node","id":"10059","labels":["Order"],"properties":{"date_enacted":"2025-02-03","date_repealed":"None","description":"nan","id":"EO 14196","title":"A Plan for Establishing a United States Sovereign Wealth Fund","url":"https://www.federalregister.gov/d/2025-02477"}} +{"type":"node","id":"10060","labels":["Order"],"properties":{"date_enacted":"2025-02-01","date_repealed":"None","description":"nan","id":"EO 14195","title":"Imposing Duties To Address the Synthetic Opioid Supply Chain in the Peoples Republic of China","url":"https://www.federalregister.gov/d/2025-02408"}} +{"type":"node","id":"10061","labels":["Order"],"properties":{"date_enacted":"2025-02-01","date_repealed":"None","description":"nan","id":"EO 14194","title":"Imposing Duties To Address the Situation at Our Southern Border","url":"https://www.federalregister.gov/d/2025-02407"}} +{"type":"node","id":"10062","labels":["Order"],"properties":{"date_enacted":"2025-02-01","date_repealed":"None","description":"nan","id":"EO 14193","title":"Imposing Duties To Address the Flow of Illicit Drugs Across Our Northern Border","url":"https://www.federalregister.gov/d/2025-02406"}} +{"type":"node","id":"10063","labels":["Order"],"properties":{"date_enacted":"2025-01-31","date_repealed":"None","description":"nan","id":"EO 14192","title":"Unleashing Prosperity Through Deregulation ","url":"https://www.federalregister.gov/d/2025-02345"}} +{"type":"node","id":"10064","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14191","title":"Expanding Educational Freedom and Opportunity for Families","url":"https://www.federalregister.gov/d/2025-02233"}} +{"type":"node","id":"10065","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14190","title":"Ending Radical Indoctrination in K-12 Schooling ","url":"https://www.federalregister.gov/d/2025-02232"}} +{"type":"node","id":"10066","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14189","title":"Celebrating Americas 250th Birthday","url":"https://www.federalregister.gov/d/2025-02231"}} +{"type":"node","id":"10067","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14188","title":"Additional Measures To Combat Anti-Semitism","url":"https://www.federalregister.gov/d/2025-02230"}} +{"type":"node","id":"10068","labels":["Order"],"properties":{"date_enacted":"2025-01-28","date_repealed":"None","description":"nan","id":"EO 14187","title":"Protecting Children From Chemical and Surgical Mutilation","url":"https://www.federalregister.gov/d/2025-02194"}} +{"type":"node","id":"10069","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14186","title":"The Iron Dome for America ","url":"https://www.federalregister.gov/d/2025-02182"}} +{"type":"node","id":"10070","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14185","title":"Restoring Americas Fighting Force","url":"https://www.federalregister.gov/d/2025-02181"}} +{"type":"node","id":"10071","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14184","title":"Reinstating Service Members Discharged Under the Militarys COVID-19 Vaccination Mandate","url":"https://www.federalregister.gov/d/2025-02180"}} +{"type":"node","id":"10072","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14183","title":"Prioritizing Military Excellence and Readiness","url":"https://www.federalregister.gov/d/2025-02178"}} +{"type":"node","id":"10073","labels":["Order"],"properties":{"date_enacted":"2025-01-24","date_repealed":"None","description":"nan","id":"EO 14182","title":"Enforcing the Hyde Amendment","url":"https://www.federalregister.gov/d/2025-02175"}} +{"type":"node","id":"10074","labels":["Order"],"properties":{"date_enacted":"2025-01-24","date_repealed":"None","description":"nan","id":"EO 14181","title":"Emergency Measures To Provide Water Resources in California and Improve Disaster Response in Certain Areas","url":"https://www.federalregister.gov/d/2025-02174"}} +{"type":"node","id":"10075","labels":["Order"],"properties":{"date_enacted":"2025-01-24","date_repealed":"None","description":"nan","id":"EO 14180","title":"Council To Assess the Federal Emergency Management Agency","url":"https://www.federalregister.gov/d/2025-02173"}} +{"type":"node","id":"10076","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14179","title":"Removing Barriers to American Leadership in Artificial Intelligence","url":"https://www.federalregister.gov/d/2025-02172"}} +{"type":"node","id":"10077","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14178","title":"Strengthening American Leadership in Digital Financial Technology","url":"https://www.federalregister.gov/d/2025-02123"}} +{"type":"node","id":"10078","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14177","title":"Presidents Council of Advisors on Science and Technology","url":"https://www.federalregister.gov/d/2025-02121"}} +{"type":"node","id":"10079","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14176","title":"Declassification of Records Concerning the Assassinations of President John F. Kennedy, Senator Robert F. Kennedy, and the Reverend Dr. Martin Luther King, Jr.","url":"https://www.federalregister.gov/d/2025-02116"}} +{"type":"node","id":"10080","labels":["Order"],"properties":{"date_enacted":"2025-01-22","date_repealed":"None","description":"nan","id":"EO 14175","title":"Designation of Ansar Allah as a Foreign Terrorist Organization","url":"https://www.federalregister.gov/d/2025-02103"}} +{"type":"node","id":"10081","labels":["Order"],"properties":{"date_enacted":"2025-01-21","date_repealed":"None","description":"nan","id":"EO 14174","title":"Revocation of Certain Executive Orders ","url":"https://www.federalregister.gov/d/2025-02098"}} +{"type":"node","id":"10082","labels":["Order"],"properties":{"date_enacted":"2025-01-21","date_repealed":"None","description":"nan","id":"EO 14173","title":"Ending Illegal Discrimination and Restoring Merit-Based Opportunity","url":"https://www.federalregister.gov/d/2025-02097"}} +{"type":"node","id":"10083","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14172","title":"Restoring Names That Honor American Greatness","url":"https://www.federalregister.gov/d/2025-02096"}} +{"type":"node","id":"10084","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14171","title":"Restoring Accountability to Policy-Influencing Positions Within the Federal Workforce","url":"https://www.federalregister.gov/d/2025-02095"}} +{"type":"node","id":"10085","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14170","title":"Reforming the Federal Hiring Process and Restoring Merit to Government Service","url":"https://www.federalregister.gov/d/2025-02094"}} +{"type":"node","id":"10086","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14169","title":"Reevaluating and Realigning United States Foreign Aid","url":"https://www.federalregister.gov/d/2025-02091"}} +{"type":"node","id":"10087","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14168","title":"Defending Women From Gender Ideology Extremism and Restoring Biological Truth to the Federal Government","url":"https://www.federalregister.gov/d/2025-02090"}} +{"type":"node","id":"10088","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14167","title":"Clarifying the Militarys Role in Protecting the Territorial Integrity of the United States","url":"https://www.federalregister.gov/d/2025-02089"}} +{"type":"node","id":"10089","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14166","title":"Application of Protecting Americans From Foreign Adversary Controlled Applications Act to TikTok","url":"https://www.federalregister.gov/d/2025-02087"}} +{"type":"node","id":"10090","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14165","title":"Securing Our Borders","url":"https://www.federalregister.gov/d/2025-02015"}} +{"type":"node","id":"10091","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14164","title":"Restoring the Death Penalty and Protecting Public Safety","url":"https://www.federalregister.gov/d/2025-02012"}} +{"type":"node","id":"10092","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14163","title":"Realigning the United States Refugee Admissions Program","url":"https://www.federalregister.gov/d/2025-02011"}} +{"type":"node","id":"10093","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14162","title":"Putting America First in International Environmental Agreements","url":"https://www.federalregister.gov/d/2025-02010"}} +{"type":"node","id":"10094","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14161","title":"Protecting the United States From Foreign Terrorists and Other National Security and Public Safety Threats","url":"https://www.federalregister.gov/d/2025-02009"}} +{"type":"node","id":"10095","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14160","title":"Protecting the Meaning and Value of American Citizenship","url":"https://www.federalregister.gov/d/2025-02007"}} +{"type":"node","id":"10096","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14159","title":"Protecting the American People Against Invasion","url":"https://www.federalregister.gov/d/2025-02006"}} +{"type":"node","id":"10097","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14158","title":"Establishing and Implementing the Presidents \"Department of Government Efficiency\"","url":"https://www.federalregister.gov/d/2025-02005"}} +{"type":"node","id":"10098","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14157","title":"Designating Cartels and Other Organizations as Foreign Terrorist Organizations and Specially Designated Global Terrorists","url":"https://www.federalregister.gov/d/2025-02004"}} +{"type":"node","id":"10099","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14156","title":"Declaring a National Energy Emergency","url":"https://www.federalregister.gov/d/2025-02003"}} +{"type":"node","id":"10100","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14155","title":"Withdrawing the United States From the World Health Organization ","url":"https://www.federalregister.gov/d/2025-01957"}} +{"type":"node","id":"10101","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14154","title":"Unleashing American Energy","url":"https://www.federalregister.gov/d/2025-01956"}} +{"type":"node","id":"10102","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14153","title":"Unleashing Alaskas Extraordinary Resource Potential","url":"https://www.federalregister.gov/d/2025-01955"}} +{"type":"node","id":"10103","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14152","title":"Holding Former Government Officials Accountable for Election Interference and Improper Disclosure of Sensitive Governmental Information","url":"https://www.federalregister.gov/d/2025-01954"}} +{"type":"node","id":"10104","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14151","title":"Ending Radical and Wasteful Government DEI Programs and Preferencing","url":"https://www.federalregister.gov/d/2025-01953"}} +{"type":"node","id":"10105","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14150","title":"America First Policy Directive to the Secretary of State","url":"https://www.federalregister.gov/d/2025-01952"}} +{"type":"node","id":"10106","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14149","title":"Restoring Freedom of Speech and Ending Federal Censorship","url":"https://www.federalregister.gov/d/2025-01902"}} +{"type":"node","id":"10107","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14148","title":"Initial Rescissions of Harmful Executive Orders and Actions","url":"https://www.federalregister.gov/d/2025-01901"}} +{"type":"node","id":"10108","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14147","title":"Ending the Weaponization of the Federal Government","url":"https://www.federalregister.gov/d/2025-01900"}} +{"type":"node","id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}} +{"type":"relationship","id":"0","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4170","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"STRATEGIC Minerals Act","url":"https://api.congress.gov/v3/bill/119/s/429?format=json","number":"429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4173","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Technological Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/305?format=json","number":"305","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"6","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4174","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Heartland Visa Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5644?format=json","number":"5644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4175","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-18","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"FINISH Act","url":"https://api.congress.gov/v3/bill/118/s/5594?format=json","number":"5594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"8","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4176","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Technological Advancement Act","url":"https://api.congress.gov/v3/bill/118/s/2330?format=json","number":"2330","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"9","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4177","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"VETS Safe Travel Act","url":"https://api.congress.gov/v3/bill/118/s/5487?format=json","number":"5487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"10","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4178","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Social Determinants Accelerator Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5474?format=json","number":"5474","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"11","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4179","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-09","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 119 North Anderson Street in Elwood, Indiana, as the \"Officer Noah Jacob Shahnavaz Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/s/5452?format=json","number":"5452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"12","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4180","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"STRATEGIC Minerals Act","url":"https://api.congress.gov/v3/bill/118/s/5451?format=json","number":"5451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"13","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4181","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6855; text: 11/21/2024 CR S6728)","type":"SRES","title":"A resolution expressing support for the goals of Stomach Cancer Awareness Month.","url":"https://api.congress.gov/v3/bill/118/sres/908?format=json","number":"908","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"14","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4182","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Ensuring Patient Access to Critical Breakthrough Products Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5349?format=json","number":"5349","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"15","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"16","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4184","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3264?format=json","number":"","amendmentNumber":"3264","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"17","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4185","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3240?format=json","number":"","amendmentNumber":"3240","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"18","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4186","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-02-02","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Early Educators Apprenticeship Act","url":"https://api.congress.gov/v3/bill/118/s/236?format=json","number":"236","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"19","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4187","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3170?format=json","number":"","amendmentNumber":"3170","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"20","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4188","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate certain land administered by the Bureau of Land Management and the Forest Service in the State of Oregon as wilderness and national recreation areas, to withdraw certain land located in Curry County and Josephine County, Oregon, from all forms of entry, appropriation, or disposal under the public land laws, location, entry, and patent under the mining laws, and operation under the mineral leasing and geothermal leasing laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"21","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4189","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend expiring health provisions and improve health care delivery.","url":"https://api.congress.gov/v3/bill/119/s/891?format=json","number":"891","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"22","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"23","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4191","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 1156 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1156?format=json","number":"","amendmentNumber":"1156","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"24","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4192","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/974?format=json","number":"","amendmentNumber":"974","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"25","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4193","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/976?format=json","number":"","amendmentNumber":"976","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"26","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4194","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/975?format=json","number":"","amendmentNumber":"975","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"27","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4195","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/308?format=json","number":"","amendmentNumber":"308","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"28","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4196","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/310?format=json","number":"","amendmentNumber":"310","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"29","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4197","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/306?format=json","number":"","amendmentNumber":"306","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"30","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4198","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/305?format=json","number":"","amendmentNumber":"305","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"31","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4199","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/307?format=json","number":"","amendmentNumber":"307","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"32","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4200","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/304?format=json","number":"","amendmentNumber":"304","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"33","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4201","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/309?format=json","number":"","amendmentNumber":"309","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"34","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4202","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/303?format=json","number":"","amendmentNumber":"303","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"35","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4203","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for examination and disclosure with respect to Presidential income tax returns, to amend the chapter 131 of title 5, United States Code, to require the disclosure of certain tax returns by Presidents and certain candidates for the office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/588?format=json","number":"588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"36","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4204","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act relating to grants for beach monitoring, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/508?format=json","number":"508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"37","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4205","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Build Housing with Care Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/310?format=json","number":"310","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"38","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4206","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"108","introducedDate":"2003-06-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to provide for a public response to the public health crisis of pain, and for other purposes","url":"https://api.congress.gov/v3/bill/108/s/1278?format=json","number":"1278","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2003-06-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"39","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4207","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"United States-Cuba Trade Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"40","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4208","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1157?format=json","number":"","amendmentNumber":"1157","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"41","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4209","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1011?format=json","number":"","amendmentNumber":"1011","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"42","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4210","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1012?format=json","number":"","amendmentNumber":"1012","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"43","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4211","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/762?format=json","number":"","amendmentNumber":"762","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"44","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4212","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/566?format=json","number":"","amendmentNumber":"566","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"45","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4213","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/512?format=json","number":"","amendmentNumber":"512","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"46","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4214","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/513?format=json","number":"","amendmentNumber":"513","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"47","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4215","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/297?format=json","number":"","amendmentNumber":"297","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"48","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4216","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/298?format=json","number":"","amendmentNumber":"298","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"49","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4217","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/230?format=json","number":"","amendmentNumber":"230","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"50","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4218","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/229?format=json","number":"","amendmentNumber":"229","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"51","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4219","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/227?format=json","number":"","amendmentNumber":"227","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"52","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4220","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/228?format=json","number":"","amendmentNumber":"228","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"53","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4221","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to limit cost-sharing for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/529?format=json","number":"529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"54","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4222","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S76; text: CR S81)","type":"SRES","title":"A resolution honoring the life and legacy of President Jimmy Carter and commending President Jimmy Carter for his life-long career of public service, humanitarian leadership, diplomacy, and courageous advocacy.","url":"https://api.congress.gov/v3/bill/119/sres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"55","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4223","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6729)","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/911?format=json","number":"911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"56","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4224","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689)","type":"SRES","title":"A resolution expressing support for the designation of November 8, 2024, as \"National First-Generation College Celebration Day\".","url":"https://api.congress.gov/v3/bill/118/sres/903?format=json","number":"903","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"57","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"58","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4226","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-14","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Secretary of Commerce to submit to Congress a report containing an assessment of the value, cost, and feasibility of a trans-Atlantic submarine fiber optic cable connecting the contiguous United States, the United States Virgin Islands, Ghana, and Nigeria.","url":"https://api.congress.gov/v3/bill/118/s/5328?format=json","number":"5328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"59","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4227","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-09-12","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3266?format=json","number":"","amendmentNumber":"3266","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"60","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4228","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1610)","type":"SRES","title":"A resolution memorializing those lost to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/119/sres/119?format=json","number":"119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"61","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4229","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1211?format=json","number":"","amendmentNumber":"1211","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"62","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4230","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1080?format=json","number":"","amendmentNumber":"1080","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"63","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4231","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1076?format=json","number":"","amendmentNumber":"1076","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"64","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4232","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1078?format=json","number":"","amendmentNumber":"1078","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"65","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4233","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1081?format=json","number":"","amendmentNumber":"1081","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"66","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4234","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1075?format=json","number":"","amendmentNumber":"1075","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"67","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4235","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1071?format=json","number":"","amendmentNumber":"1071","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"68","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4236","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1074?format=json","number":"","amendmentNumber":"1074","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"69","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4237","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1073?format=json","number":"","amendmentNumber":"1073","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"70","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4238","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1077?format=json","number":"","amendmentNumber":"1077","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"71","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4239","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1072?format=json","number":"","amendmentNumber":"1072","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"72","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4240","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1079?format=json","number":"","amendmentNumber":"1079","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"73","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4241","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1069?format=json","number":"","amendmentNumber":"1069","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"74","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4242","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1065?format=json","number":"","amendmentNumber":"1065","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"75","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4243","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1066?format=json","number":"","amendmentNumber":"1066","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"76","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4244","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1070?format=json","number":"","amendmentNumber":"1070","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"77","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4245","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1068?format=json","number":"","amendmentNumber":"1068","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"78","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4246","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1064?format=json","number":"","amendmentNumber":"1064","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"79","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4247","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1067?format=json","number":"","amendmentNumber":"1067","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"80","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4248","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1129?format=json","number":"","amendmentNumber":"1129","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"81","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4249","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/980?format=json","number":"","amendmentNumber":"980","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"82","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4250","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/979?format=json","number":"","amendmentNumber":"979","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"83","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4251","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/266?format=json","number":"","amendmentNumber":"266","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"84","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4252","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/265?format=json","number":"","amendmentNumber":"265","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"85","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4253","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/267?format=json","number":"","amendmentNumber":"267","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"86","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4254","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/98?format=json","number":"","amendmentNumber":"98","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"87","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"88","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4256","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Tax Breaks for Outsourcing Act","url":"https://api.congress.gov/v3/bill/119/s/409?format=json","number":"409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"89","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4257","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S599-600; text: CR S598-599)","type":"SRES","title":"A resolution recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/sres/55?format=json","number":"55","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"90","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4258","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Prior Authorization Relief Act","url":"https://api.congress.gov/v3/bill/118/s/5612?format=json","number":"5612","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"91","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4259","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"COLLABORATE Act","url":"https://api.congress.gov/v3/bill/118/s/5441?format=json","number":"5441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"92","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4260","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Medical Bankruptcy Fairness Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5399?format=json","number":"5399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"93","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4261","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Supreme Court Review Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5220?format=json","number":"5220","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"94","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4262","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Juvenile Justice and Delinquency Prevention Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5250?format=json","number":"5250","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"95","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4263","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6455)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Youth Justice Action Month\".","url":"https://api.congress.gov/v3/bill/118/sres/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"96","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4264","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Affordable Housing Construction Act","url":"https://api.congress.gov/v3/bill/118/s/5156?format=json","number":"5156","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"97","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4265","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-16","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6068; text: CR S6055-6056)","type":"SRES","title":"A resolution expressing support for the designation of the week of September 21 through September 28, 2024, as \"National Estuaries Week\".","url":"https://api.congress.gov/v3/bill/118/sres/820?format=json","number":"820","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"98","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4266","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-09-12","latestAction_text":"Read twice and referred to the Committee on the Budget.","type":"S","title":"Carbon Scoring Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5047?format=json","number":"5047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"99","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4267","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3261?format=json","number":"","amendmentNumber":"3261","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"100","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4268","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the \"Rick Boucher Amphitheater\".","url":"https://api.congress.gov/v3/bill/119/s/815?format=json","number":"815","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"101","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4269","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make the exclusion for certain employer payments of student loans under educational assistance programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/772?format=json","number":"772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"102","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4270","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend the Commander John Scott Hannon Veterans Mental Health Care Improvement Act of 2019 to modify and reauthorize the Staff Sergeant Parker Gordon Fox Suicide Prevention Grant Program of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/793?format=json","number":"793","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"103","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4271","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/906?format=json","number":"","amendmentNumber":"906","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"104","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4272","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/129?format=json","number":"","amendmentNumber":"129","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"105","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4273","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/128?format=json","number":"","amendmentNumber":"128","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"106","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4274","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"Amendment SA 130 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/130?format=json","number":"","amendmentNumber":"130","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"107","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4275","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/125?format=json","number":"","amendmentNumber":"125","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"108","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4276","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/131?format=json","number":"","amendmentNumber":"131","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"109","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4277","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/126?format=json","number":"","amendmentNumber":"126","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"110","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4278","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/127?format=json","number":"","amendmentNumber":"127","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"111","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4279","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/123?format=json","number":"","amendmentNumber":"123","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"112","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4280","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/119?format=json","number":"","amendmentNumber":"119","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"113","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4281","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/124?format=json","number":"","amendmentNumber":"124","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"114","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4282","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/120?format=json","number":"","amendmentNumber":"120","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"115","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4283","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/122?format=json","number":"","amendmentNumber":"122","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"116","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4284","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/121?format=json","number":"","amendmentNumber":"121","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"117","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4285","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/111?format=json","number":"","amendmentNumber":"111","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"118","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4286","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/113?format=json","number":"","amendmentNumber":"113","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"119","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4287","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/114?format=json","number":"","amendmentNumber":"114","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"120","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4288","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1231?format=json","number":"","amendmentNumber":"1231","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"121","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"122","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4290","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution reaffirming the fundamental principle prohibiting any state from forcibly acquiring the territory of another state.","url":"https://api.congress.gov/v3/bill/119/sres/113?format=json","number":"113","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"123","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4291","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to hold accountable operators of social media platforms that intentionally or knowingly host false election administration information.","url":"https://api.congress.gov/v3/bill/119/s/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"124","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4292","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1030?format=json","number":"","amendmentNumber":"1030","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"125","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4293","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1002?format=json","number":"","amendmentNumber":"1002","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"126","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4294","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/854?format=json","number":"","amendmentNumber":"854","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"127","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4295","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/823?format=json","number":"","amendmentNumber":"823","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"128","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4296","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/824?format=json","number":"","amendmentNumber":"824","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"129","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4297","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/822?format=json","number":"","amendmentNumber":"822","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"130","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4298","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/656?format=json","number":"","amendmentNumber":"656","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"131","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4299","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/657?format=json","number":"","amendmentNumber":"657","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"132","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4300","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/658?format=json","number":"","amendmentNumber":"658","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"133","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4301","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/654?format=json","number":"","amendmentNumber":"654","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"134","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4302","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/655?format=json","number":"","amendmentNumber":"655","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"135","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4303","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/651?format=json","number":"","amendmentNumber":"651","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"136","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4304","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/649?format=json","number":"","amendmentNumber":"649","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"137","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4305","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/650?format=json","number":"","amendmentNumber":"650","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"138","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4306","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/652?format=json","number":"","amendmentNumber":"652","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"139","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4307","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/646?format=json","number":"","amendmentNumber":"646","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"140","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4308","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to facilitate the development of treatments for cancers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/755?format=json","number":"755","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"141","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4309","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038 ; text: CR S1043)","type":"SRES","title":"A resolution congratulating the Jackson State University Tigers for winning the 2024 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/119/sres/85?format=json","number":"85","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"142","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"143","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"144","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4312","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to prohibit the application of certain private land use restrictions to amateur station antennas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/459?format=json","number":"459","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"145","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4313","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"PLAN for Broadband Act","url":"https://api.congress.gov/v3/bill/119/s/323?format=json","number":"323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"146","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4314","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-27","policyArea_name":"NONE","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported with an amendment favorably.","type":"S","title":"TORNADO Act","url":"https://api.congress.gov/v3/bill/119/s/258?format=json","number":"258","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"147","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"148","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4316","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"FoRGED Act","url":"https://api.congress.gov/v3/bill/118/s/5618?format=json","number":"5618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"149","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4317","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6457)","type":"SRES","title":"A resolution honoring the life, legacy, and contributions of James Earl Jones.","url":"https://api.congress.gov/v3/bill/118/sres/878?format=json","number":"878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"150","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4318","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-09","latestAction_text":"Held at the desk.","type":"S","title":"Vicksburg National Military Park Boundary Modification Act","url":"https://api.congress.gov/v3/bill/118/s/4994?format=json","number":"4994","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:06:17"}}} +{"type":"relationship","id":"151","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"152","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4320","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-11","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 719.","type":"S","title":"PLAN for Broadband Act","url":"https://api.congress.gov/v3/bill/118/s/2238?format=json","number":"2238","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"153","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4321","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-31","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5677; text: CR S5689-5690)","type":"SRES","title":"A resolution designating August 1, 2024, as \"Gold Star Children's Day\".","url":"https://api.congress.gov/v3/bill/118/sres/791?format=json","number":"791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"154","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4322","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2023-05-04","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"LOCAL Infrastructure Act","url":"https://api.congress.gov/v3/bill/118/s/1453?format=json","number":"1453","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"155","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4323","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3000?format=json","number":"","amendmentNumber":"3000","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"156","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4324","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2980?format=json","number":"","amendmentNumber":"2980","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"157","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4325","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2979?format=json","number":"","amendmentNumber":"2979","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"158","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4326","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2023-12-12","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Energizing American Shipbuilding Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3467?format=json","number":"3467","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"159","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4327","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-01-26","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution honoring the lives of 2 fallen Mississippi police officers, Sergeant Steven Robin and Officer Branden Estorffe, and expressing condolences to their families.","url":"https://api.congress.gov/v3/bill/118/sres/15?format=json","number":"15","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-01-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"160","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"161","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4329","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution condemning the Armed Forces of the Russian Federation and officials of the Government of the Russian Federation for committing crimes against humanity and war crimes in Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/111?format=json","number":"111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"162","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4330","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Justice Thurgood Marshall National Historic Site in the State of Maryland as an affiliated area of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/791?format=json","number":"791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"163","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4331","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1108?format=json","number":"","amendmentNumber":"1108","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"164","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4332","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1109?format=json","number":"","amendmentNumber":"1109","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"165","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4333","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1107?format=json","number":"","amendmentNumber":"1107","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"166","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4334","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/981?format=json","number":"","amendmentNumber":"981","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"167","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4335","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/490?format=json","number":"","amendmentNumber":"490","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"168","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4336","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/247?format=json","number":"","amendmentNumber":"247","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"169","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4337","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/249?format=json","number":"","amendmentNumber":"249","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"170","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4338","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/248?format=json","number":"","amendmentNumber":"248","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"171","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4339","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/235?format=json","number":"","amendmentNumber":"235","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"172","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4340","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/240?format=json","number":"","amendmentNumber":"240","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"173","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4341","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/236?format=json","number":"","amendmentNumber":"236","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"174","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4342","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/237?format=json","number":"","amendmentNumber":"237","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"175","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4343","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/243?format=json","number":"","amendmentNumber":"243","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"176","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4344","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/244?format=json","number":"","amendmentNumber":"244","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"177","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4345","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/238?format=json","number":"","amendmentNumber":"238","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"178","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4346","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/246?format=json","number":"","amendmentNumber":"246","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"179","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4347","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/241?format=json","number":"","amendmentNumber":"241","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"180","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4348","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to furnish hyperbaric oxygen therapy to certain veterans with traumatic brain injury or post-traumatic stress disorder.","url":"https://api.congress.gov/v3/bill/119/s/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"181","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4349","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to recognize nurse registries for purposes of the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/635?format=json","number":"635","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"182","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4350","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to prohibit the purchase or lease of agricultural land in the United States by persons associated with certain foreign governments, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/618?format=json","number":"618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"183","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4351","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the consideration of continuity of health care in determining best medical interest under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/540?format=json","number":"540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"184","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4352","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to modify eligibility requirements for amateur sports governing organizations.","url":"https://api.congress.gov/v3/bill/119/s/405?format=json","number":"405","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"185","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4353","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the inclusion in gross income of Social Security benefits.","url":"https://api.congress.gov/v3/bill/119/s/458?format=json","number":"458","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"186","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4354","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Graduate Opportunity and Affordable Loans Act","url":"https://api.congress.gov/v3/bill/119/s/308?format=json","number":"308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"187","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4355","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"FARM Act","url":"https://api.congress.gov/v3/bill/119/s/179?format=json","number":"179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"188","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"189","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4357","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/6?format=json","number":"","amendmentNumber":"6","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"190","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"191","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"192","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4360","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-25","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Alabama Underwater Forest National Marine Sanctuary and Protection Act","url":"https://api.congress.gov/v3/bill/118/s/4816?format=json","number":"4816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"193","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4361","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-18","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"CHIPS Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/4568?format=json","number":"4568","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"194","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4362","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Workforce DATA Act","url":"https://api.congress.gov/v3/bill/118/s/4506?format=json","number":"4506","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"195","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4363","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-09","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/118/s/4297?format=json","number":"4297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"196","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4364","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-01","latestAction_text":"Referred to the Committee on Veterans' Affairs. (text: CR S3138-3139)","type":"SRES","title":"A resolution expressing support for the designation of May as \"Fallen Heroes Memorial Month\".","url":"https://api.congress.gov/v3/bill/118/sres/667?format=json","number":"667","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"197","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4365","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1719?format=json","number":"","amendmentNumber":"1719","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"198","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4366","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"VA Abortion Transparency Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4128?format=json","number":"4128","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"199","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4367","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"118","introducedDate":"2024-03-22","policyArea_name":"","latestAction_text":"Amendment SA 1781 proposed by Senator Tuberville. (consideration: CR S2580-2581) To prohibit funding for entities that permit certain students to participate in girls' or women's athletics.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1781?format=json","number":"","amendmentNumber":"1781","latestAction":"","latestAction_actionDate":"2024-03-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"200","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4368","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/317?format=json","number":"","amendmentNumber":"317","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"201","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4369","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/318?format=json","number":"","amendmentNumber":"318","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"202","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4370","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish limitations on advanced payments for bus rolling stock, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/660?format=json","number":"660","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"203","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4371","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Act of June 22, 1948.","url":"https://api.congress.gov/v3/bill/119/s/638?format=json","number":"638","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"204","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4372","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to accept the request to revoke the charter of incorporation of the Lower Sioux Indian Community in the State of Minnesota at the request of that Community, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/621?format=json","number":"621","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"205","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4373","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Leech Lake Reservation Restoration Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/622?format=json","number":"622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"206","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4374","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to expand employees eligible for leave and employers subject to leave requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/408?format=json","number":"408","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"207","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4375","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Investments in Rural Transit Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5626?format=json","number":"5626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"208","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4376","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-19","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Childcare Supply Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5621?format=json","number":"5621","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"209","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4377","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Held at the desk.","type":"S","title":"A bill to amend the Act of June 22, 1948.","url":"https://api.congress.gov/v3/bill/118/s/5595?format=json","number":"5595","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:06:33"}}} +{"type":"relationship","id":"210","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4378","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-12-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Mapping Housing Discrimination Act","url":"https://api.congress.gov/v3/bill/118/s/5534?format=json","number":"5534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"211","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4379","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-09","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Rural Residency Planning and Development Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5456?format=json","number":"5456","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"212","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4380","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-12-05","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6489-6850)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Co-Op Month\" and commending the cooperative business model and the member-owners, businesses, employees, farmers, ranchers, and practitioners who use the cooperative business model to positively impact the economy and society.","url":"https://api.congress.gov/v3/bill/118/sres/922?format=json","number":"922","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"213","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4381","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Katherine’s Lung Cancer Early Detection and Survival Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5367?format=json","number":"5367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"214","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4382","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6729-6730)","type":"SRES","title":"A resolution designating November 2024 as \"National Lung Cancer Awareness Month\" and expressing support for early detection and treatment of lung cancer.","url":"https://api.congress.gov/v3/bill/118/sres/912?format=json","number":"912","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"215","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4383","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Employee and Retiree Access to Justice Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5169?format=json","number":"5169","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"216","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4384","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"No Shame at School Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5200?format=json","number":"5200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"217","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4385","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6456-6457)","type":"SRES","title":"A resolution designating October 2024 as \"National Principals Month\".","url":"https://api.congress.gov/v3/bill/118/sres/876?format=json","number":"876","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"218","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4386","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution supporting afterschool programs and Lights On Afterschool, a national celebration of afterschool programs held on October 24, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/880?format=json","number":"880","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"219","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4387","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Homes Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5078?format=json","number":"5078","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"220","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4388","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Small Business Act and the Small Business Investment Act of 1958 to increase the maximum loan amount for certain loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/901?format=json","number":"901","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"221","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4389","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Camp Lejeune Justice Act of 2022 to make technical corrections.","url":"https://api.congress.gov/v3/bill/119/s/907?format=json","number":"907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"222","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4390","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XI of the Social Security Act to equalize the negotiation period between small-molecule and biologic candidates under the Drug Price Negotiation Program.","url":"https://api.congress.gov/v3/bill/119/s/832?format=json","number":"832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"223","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4391","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide a phase-in for plasma-derived products under the manufacturer discount program.","url":"https://api.congress.gov/v3/bill/119/s/694?format=json","number":"694","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"224","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4392","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S931)","type":"SRES","title":"A resolution expressing the sense of the Senate that member countries of NATO must commit at least 2 percent of their national gross domestic product to national defense spending to hold leadership or benefit at the expense of those countries who meet their obligations.","url":"https://api.congress.gov/v3/bill/119/sres/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"225","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4393","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/s/475?format=json","number":"475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"226","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4394","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Disaster Mitigation and Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/336?format=json","number":"336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"227","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4395","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Victims of Sanctuary Cities Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/185?format=json","number":"185","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"228","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"229","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"230","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"231","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4399","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Biodiesel Tax Credit Extension Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5582?format=json","number":"5582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"232","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4400","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to rescind funds for green energy loans.","url":"https://api.congress.gov/v3/bill/118/s/5383?format=json","number":"5383","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"233","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4401","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-11-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill making supplemental appropriations for small business disaster relief for the fiscal year ending September 30, 2025.","url":"https://api.congress.gov/v3/bill/118/s/5341?format=json","number":"5341","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"234","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4402","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"RELIEF Act","url":"https://api.congress.gov/v3/bill/118/s/5332?format=json","number":"5332","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"235","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4403","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-02-16","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/521?format=json","number":"521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"236","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4404","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Ensuring Justice for Camp Lejeune Victims Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5257?format=json","number":"5257","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"237","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4405","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"SHIELD Act","url":"https://api.congress.gov/v3/bill/118/s/5166?format=json","number":"5166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"238","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4406","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","introducedDate":"2024-09-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"VETS Opportunity Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5138?format=json","number":"5138","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"239","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4407","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-06-22","latestAction_text":"Held at the desk.","type":"S","title":"TRACE Act","url":"https://api.congress.gov/v3/bill/118/s/2120?format=json","number":"2120","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":"16:03:02"}}} +{"type":"relationship","id":"240","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4408","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill making continuing appropriations for military pay in the event of a Government shutdown.","url":"https://api.congress.gov/v3/bill/119/s/876?format=json","number":"876","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"241","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4409","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the Secretary of Veterans Affairs to improve telephone communication by the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/831?format=json","number":"831","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"242","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4410","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to extend the Alaska Native Vietnam era Veterans Land Allotment Program.","url":"https://api.congress.gov/v3/bill/119/s/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"243","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4411","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to combat illegal, unreported, and unregulated fishing at its sources globally.","url":"https://api.congress.gov/v3/bill/119/s/688?format=json","number":"688","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"244","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4412","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1316; text: CR S1316)","type":"SRES","title":"A resolution designating February 16, 2025, as \"National Elizabeth Peratrovich Day\".","url":"https://api.congress.gov/v3/bill/119/sres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"245","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4413","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1221?format=json","number":"","amendmentNumber":"1221","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"246","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4414","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 1029 agreed to in Senate by Yea-Nay Vote. 51 - 49. Record Vote Number: 70.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1029?format=json","number":"","amendmentNumber":"1029","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"247","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4415","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide for the application of a cost-of-living adjustment to the non-labor related portion for hospital outpatient department services furnished in Alaska and Hawaii.","url":"https://api.congress.gov/v3/bill/119/s/551?format=json","number":"551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"248","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4416","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide for the treatment of critical access hospital services furnished by a critical access hospital located in a noncontiguous State.","url":"https://api.congress.gov/v3/bill/119/s/552?format=json","number":"552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"249","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4417","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to establish a floor on payments to sole community hospitals located in Alaska and Hawaii under the hospital outpatient prospective payment system.","url":"https://api.congress.gov/v3/bill/119/s/553?format=json","number":"553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"250","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"251","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"252","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4420","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit United States cooperation with the International Criminal Court, the use of the Economic Support Fund to support the Palestinian Authority, and any Federal funding for the ICC.","url":"https://api.congress.gov/v3/bill/119/s/493?format=json","number":"493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"253","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4421","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ADS for Mental Health Services Act","url":"https://api.congress.gov/v3/bill/119/s/414?format=json","number":"414","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"254","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4422","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"INFORM Act","url":"https://api.congress.gov/v3/bill/119/s/417?format=json","number":"417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"255","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4423","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to protect regular order for budgeting for the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/423?format=json","number":"423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"256","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4424","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to modify the organization and authorities of the Assistant Secretaries of Defense with duties relating to industrial base policy and homeland defense.","url":"https://api.congress.gov/v3/bill/119/s/436?format=json","number":"436","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"257","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4425","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to improve the missile defense capabilities of the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/435?format=json","number":"435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"258","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4426","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Archie Cavanaugh Migratory Bird Treaty Amendment Act","url":"https://api.congress.gov/v3/bill/119/s/255?format=json","number":"255","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"259","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4427","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ARTIST Act","url":"https://api.congress.gov/v3/bill/119/s/254?format=json","number":"254","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"260","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4428","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1607-1609)","type":"S","title":"A bill to improve disaster assistance programs of the Department of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/904?format=json","number":"904","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"261","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4429","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1581)","type":"S","title":"A bill to require executive agencies to take steps to better meet the statutory deadline for processing communications use applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/866?format=json","number":"866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"262","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4430","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Trust Land Homeownership Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/723?format=json","number":"723","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"263","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"264","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4432","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S861-862)","type":"S","title":"A bill to enhance the participation of precision agriculture in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/507?format=json","number":"507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"265","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4433","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S668)","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 to establish country of origin labeling requirements for beef, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/421?format=json","number":"421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"266","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4434","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S794)","type":"S","title":"A bill to amend the Healthy Forests Restoration Act of 2003 to require the Secretary of Agriculture to expedite hazardous fuel or insect and disease risk reduction projects on certain National Forest System land, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/449?format=json","number":"449","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"267","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"268","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4436","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S136; text: CR S140-141)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/26?format=json","number":"26","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"269","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"270","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4438","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution informing the House of Representatives that a quorum of the Senate is assembled.","url":"https://api.congress.gov/v3/bill/119/sres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"271","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4439","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution to elect Charles E. Grassley, a Senator from the State of Iowa, to be President pro tempore of the Senate of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"272","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4440","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution notifying the House of Representatives of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"273","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"274","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4442","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SCONRES","title":"A concurrent resolution extending the life of the Joint Congressional Committee on Inaugural Ceremonies.","url":"https://api.congress.gov/v3/bill/119/sconres/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:21:55"}}} +{"type":"relationship","id":"275","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"276","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"277","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4445","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7-8; text: CR S8)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/9?format=json","number":"9","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"278","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4446","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SCONRES","title":"A concurrent resolution to provide for the counting on January 6, 2025, of the electoral votes for President and Vice President of the United States.","url":"https://api.congress.gov/v3/bill/119/sconres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:23:19"}}} +{"type":"relationship","id":"279","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"280","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4448","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture and the Secretary of the Interior to establish a standard for the response time to wildfire incidents, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"281","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"282","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4450","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture and the Secretary of the Interior to develop a plan to reorganize Federal wildland fire response, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/441?format=json","number":"441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"283","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4451","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Homeowner Energy Freedom Act","url":"https://api.congress.gov/v3/bill/119/s/333?format=json","number":"333","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"284","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4452","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"No Tax Dollars for Terrorists Act","url":"https://api.congress.gov/v3/bill/119/s/226?format=json","number":"226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"285","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4453","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/160?format=json","number":"160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"286","label":"SPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4454","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"VA Home Loan Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/138?format=json","number":"138","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"287","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"288","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4456","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title VI of the Civil Rights Act of 1964 to prohibit discrimination under any program or activity receiving Federal financial assistance on the ground of religion, to amend the Higher Education Act of 1965 to provide for rigorous enforcement of prohibitions against discrimination by institutions of higher education on the basis of antisemitism, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/826?format=json","number":"826","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"289","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4457","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to call for the immediate extradition or return to the United States of convicted felon Joanne Chesimard, William \"Guillermo\" Morales, and all other fugitives who are receiving safe haven in Cuba to escape prosecution or confinement for criminal offenses committed in the United States.","url":"https://api.congress.gov/v3/bill/119/s/834?format=json","number":"834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"290","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"291","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4459","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies to repeal ten existing regulations before issuing a new regulation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/712?format=json","number":"712","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"292","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"293","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4461","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1358)","type":"SRES","title":"A resolution expressing support for the designation of February 23, 2025, to March 1, 2025, as \"National Fentanyl Awareness Week\" and raising awareness of the negative impacts of fentanyl in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"294","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4462","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to combat the fentanyl crisis.","url":"https://api.congress.gov/v3/bill/119/s/690?format=json","number":"690","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"295","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4463","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Miccosukee Reserved Area Amendments Act","url":"https://api.congress.gov/v3/bill/119/s/673?format=json","number":"673","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"296","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4464","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish the CCP Initiative program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/672?format=json","number":"672","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"297","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4465","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to require States to verify certain eligibility criteria for individuals enrolled for medical assistance quarterly, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/678?format=json","number":"678","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"298","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4466","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to improve the communications between social media platforms and law enforcement agencies, to establish the Federal Trade Commission Platform Safety Advisory Committee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/626?format=json","number":"626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"299","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4467","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to permit the Attorney General to award grants for accurate data on opioid-related overdoses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/617?format=json","number":"617","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"300","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4468","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to reform the Federal hiring process, to restore merit to Government service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"301","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4469","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-13","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981)","type":"SRES","title":"A resolution honoring the memories of the victims of the senseless attack at Marjory Stoneman Douglas High School on February 14, 2018.","url":"https://api.congress.gov/v3/bill/119/sres/79?format=json","number":"79","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"302","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4470","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Policy Reauthorization Act of 1998 to require a Caribbean border counternarcotics strategy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/548?format=json","number":"548","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"303","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4471","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S797-798)","type":"SRES","title":"An original resolution authorizing expenditures by the Special Committee on Aging.","url":"https://api.congress.gov/v3/bill/119/sres/62?format=json","number":"62","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"304","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4472","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the Secretary of Homeland Security from procuring certain foreign-made batteries, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/450?format=json","number":"450","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"305","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4473","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to prohibit Big Cypress National Preserve from being designated as wilderness or as a component of the National Wilderness Preservation System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/446?format=json","number":"446","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"306","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4474","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to include screening for loneliness and coordination of supportive services and health care to address the negative health effects of loneliness, to require a report on loneliness, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/473?format=json","number":"473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"307","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4475","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1181?format=json","number":"","amendmentNumber":"1181","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"308","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4476","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/670?format=json","number":"","amendmentNumber":"670","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"309","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4477","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/669?format=json","number":"","amendmentNumber":"669","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"310","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4478","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 664 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 78.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/664?format=json","number":"","amendmentNumber":"664","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"311","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4479","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/667?format=json","number":"","amendmentNumber":"667","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"312","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4480","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/665?format=json","number":"","amendmentNumber":"665","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"313","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4481","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/668?format=json","number":"","amendmentNumber":"668","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"314","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4482","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/666?format=json","number":"","amendmentNumber":"666","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"315","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4483","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Digital Citizenship and Media Literacy Act","url":"https://api.congress.gov/v3/bill/118/hr/9584?format=json","number":"9584","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"316","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4484","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"VOICE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9583?format=json","number":"9583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"317","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4485","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-03","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Protecting Military Bases from Connected Vehicles of Concern Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9454?format=json","number":"9454","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"318","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4486","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"American Made Pharmaceuticals Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9321?format=json","number":"9321","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"319","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4487","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of the Army to provide a briefing to Congress on the future role and structure of Multi-Domain Task Forces, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9292?format=json","number":"9292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"320","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4488","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Under Secretary of Defense for Intelligence and Security to provide to the congressional defense committees a briefing on challenges relating to information operations, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9293?format=json","number":"9293","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"321","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4489","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Chief Information Officer of the Department of Defense to provide a briefing to Congress on security options for the Joint Warfighter Cloud Capability program, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9295?format=json","number":"9295","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"322","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4490","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Prioritizing PFAS-Free Cleaning Products Act","url":"https://api.congress.gov/v3/bill/118/hr/9288?format=json","number":"9288","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"323","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4491","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to carry out a pilot program under which the Secretary shall use classified commercial shared spaces and professionalize industrial security protections for shared sensitive compartmented information facility and subject matter experts.","url":"https://api.congress.gov/v3/bill/118/hr/9287?format=json","number":"9287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"324","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4492","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of the Army to provide a briefing to Congress on the efforts of the Army to field passive multi-static radar detection technology for mobile counter-UAS systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9291?format=json","number":"9291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"325","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4493","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Next Generation Civilian Leaders Program Act","url":"https://api.congress.gov/v3/bill/118/hr/9296?format=json","number":"9296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"326","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4494","labels":["Legislation"],"properties":{"sponsored_by":"S001208","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Accelerating DoD PFAS Cleanups Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9286?format=json","number":"9286","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"327","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4495","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish a permanent rural housing preservation and revitalization program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/885?format=json","number":"885","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"328","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4496","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1581-1583)","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","url":"https://api.congress.gov/v3/bill/119/sres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"329","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4497","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to support democracy and the rule of law in Georgia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/868?format=json","number":"868","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"330","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4498","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Consolidated Farm and Rural Development Act to provide additional assistance to rural water, wastewater, and waste disposal systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/783?format=json","number":"783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"331","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4499","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1401-1402)","type":"SRES","title":"A resolution dissenting from the United States delegation's February 24, 2025, vote at the United Nations General Assembly.","url":"https://api.congress.gov/v3/bill/119/sres/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"332","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"333","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4501","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1026?format=json","number":"","amendmentNumber":"1026","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"334","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4502","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/989?format=json","number":"","amendmentNumber":"989","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"335","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4503","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/973?format=json","number":"","amendmentNumber":"973","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"336","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4504","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/965?format=json","number":"","amendmentNumber":"965","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"337","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4505","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/963?format=json","number":"","amendmentNumber":"963","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"338","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4506","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/964?format=json","number":"","amendmentNumber":"964","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"339","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4507","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/924?format=json","number":"","amendmentNumber":"924","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"340","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4508","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/447?format=json","number":"","amendmentNumber":"447","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"341","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4509","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/444?format=json","number":"","amendmentNumber":"444","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"342","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4510","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/445?format=json","number":"","amendmentNumber":"445","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"343","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4511","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/446?format=json","number":"","amendmentNumber":"446","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"344","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4512","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/440?format=json","number":"","amendmentNumber":"440","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"345","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4513","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/441?format=json","number":"","amendmentNumber":"441","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"346","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4514","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/442?format=json","number":"","amendmentNumber":"442","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"347","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4515","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Individuals with Disabilities Education Act to require notification with respect to individualized education program teams, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/745?format=json","number":"745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"348","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4516","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1130?format=json","number":"","amendmentNumber":"1130","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"349","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4517","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1131?format=json","number":"","amendmentNumber":"1131","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"350","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"351","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4519","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to establish a national plan to coordinate research on epilepsy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/494?format=json","number":"494","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"352","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4520","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Dismantle DEI Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/382?format=json","number":"382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"353","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4521","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S487-488; text: CR S486-487)","type":"SRES","title":"A resolution supporting the contributions of Catholic schools in the United States and celebrating the 51st annual National Catholic Schools Week.","url":"https://api.congress.gov/v3/bill/119/sres/45?format=json","number":"45","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"354","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4522","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported with an amendment favorably.","type":"S","title":"TICKET Act","url":"https://api.congress.gov/v3/bill/119/s/281?format=json","number":"281","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"355","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4523","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize the Stop, Observe, Ask, and Respond to Health and Wellness Training Program.","url":"https://api.congress.gov/v3/bill/119/s/208?format=json","number":"208","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"356","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4524","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-23","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S329; text: CR S341)","type":"SRES","title":"A resolution congratulating the Washington University in St. Louis Bears women's soccer team for winning the 2024 NCAA Division III Women's Soccer Championship.","url":"https://api.congress.gov/v3/bill/119/sres/34?format=json","number":"34","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"357","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"358","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4526","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Energy for America’s Economic Future Act","url":"https://api.congress.gov/v3/bill/119/s/168?format=json","number":"168","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"359","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4527","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/81?format=json","number":"","amendmentNumber":"81","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"360","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"361","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4529","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/77?format=json","number":"","amendmentNumber":"77","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"362","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4530","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/75?format=json","number":"","amendmentNumber":"75","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"363","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4531","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/76?format=json","number":"","amendmentNumber":"76","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"364","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"365","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4533","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"COLLUDE Act","url":"https://api.congress.gov/v3/bill/119/s/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"366","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4534","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Censorship Accountability Act","url":"https://api.congress.gov/v3/bill/119/s/67?format=json","number":"67","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"367","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4535","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 to require the Committee on Foreign Investment in the United States to review and prohibit certain transactions relating to agriculture.","url":"https://api.congress.gov/v3/bill/119/s/903?format=json","number":"903","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"368","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4536","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to require the Secretary of Agriculture, in consultation with the United States Trade Representative, to develop and finalize a vaccination strategy for poultry.","url":"https://api.congress.gov/v3/bill/119/s/908?format=json","number":"908","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"369","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"370","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"371","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4539","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require the United States Postal Service to apply certain requirements when closing a processing, shipping, delivery, or other facility supporting a post office.","url":"https://api.congress.gov/v3/bill/119/s/661?format=json","number":"661","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"372","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"373","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4541","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to require the Federal financial institutions regulatory agencies to take risk profiles and business models of institutions into account when taking regulatory actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/427?format=json","number":"427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"374","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4542","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend section 1030 of title 18, United States Code, to include conspiracy in the offenses and penalties relating to computer fraud.","url":"https://api.congress.gov/v3/bill/119/s/431?format=json","number":"431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"375","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4543","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend the Homeland Security Act of 2002 to provide for education and training programs and resources of the Cybersecurity and Infrastructure Security Agency of the Department of Homeland Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/438?format=json","number":"438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"376","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4544","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to require certain forest supervisors of units of the National Forest System to submit to the Chief of the Forest Service a harvesting improvement report, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/480?format=json","number":"480","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"377","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4545","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Marcella LeBeau Recognition Act","url":"https://api.congress.gov/v3/bill/119/s/287?format=json","number":"287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"378","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"379","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4547","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-10-17","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Artificial Intelligence Advancement Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3050?format=json","number":"3050","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"380","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4548","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend the Robert T. Stafford Disaster Relief and Emergency Assistance Act to adjust the definition of \"small impoverished community\".","url":"https://api.congress.gov/v3/bill/118/s/5489?format=json","number":"5489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"381","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4549","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Fence Line Fairness Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5496?format=json","number":"5496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"382","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4550","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Modernizing Law Enforcement Notification Act","url":"https://api.congress.gov/v3/bill/118/s/5450?format=json","number":"5450","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"383","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4551","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-07-19","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Food and Agriculture Industry Cybersecurity Support Act","url":"https://api.congress.gov/v3/bill/118/s/2393?format=json","number":"2393","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"384","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4552","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Returning Education to Our States Act","url":"https://api.congress.gov/v3/bill/118/s/5384?format=json","number":"5384","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"385","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4553","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-01-31","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"S","title":"PASS Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/168?format=json","number":"168","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"386","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4554","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"MedShield Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5222?format=json","number":"5222","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"387","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4555","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to establish a competitive grant program to support the conservation and recovery of native plant, fungi, and animal species in the State of Hawaii, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"388","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4556","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/713?format=json","number":"","amendmentNumber":"713","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"389","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4557","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/714?format=json","number":"","amendmentNumber":"714","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"390","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4558","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/715?format=json","number":"","amendmentNumber":"715","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"391","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4559","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/645?format=json","number":"","amendmentNumber":"645","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"392","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4560","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/644?format=json","number":"","amendmentNumber":"644","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"393","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4561","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/643?format=json","number":"","amendmentNumber":"643","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"394","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4562","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/642?format=json","number":"","amendmentNumber":"642","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"395","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4563","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/641?format=json","number":"","amendmentNumber":"641","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"396","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4564","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/640?format=json","number":"","amendmentNumber":"640","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"397","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4565","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/471?format=json","number":"","amendmentNumber":"471","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"398","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4566","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/472?format=json","number":"","amendmentNumber":"472","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"399","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4567","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/474?format=json","number":"","amendmentNumber":"474","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"400","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4568","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/470?format=json","number":"","amendmentNumber":"470","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"401","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4569","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1042)","type":"SRES","title":"A resolution designating February 2025 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/119/sres/83?format=json","number":"83","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"402","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4570","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Improving Flood and Agricultural Forecasts Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/613?format=json","number":"613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"403","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4571","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to amend the Native American Tourism and Improving Visitor Experience Act to authorize grants to Indian tribes, tribal organizations, and Native Hawaiian organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/612?format=json","number":"612","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"404","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4572","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require the Under Secretary of Commerce for Oceans and Atmosphere to maintain the National Mesonet Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/590?format=json","number":"590","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"405","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4573","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-28","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Kids Off Social Media Act","url":"https://api.congress.gov/v3/bill/119/s/278?format=json","number":"278","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"406","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4574","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S373)","type":"SRES","title":"A resolution expressing the sense of the Senate that the people of the United States should have continuous access to timely, up-to-date, and accurate health information.","url":"https://api.congress.gov/v3/bill/119/sres/37?format=json","number":"37","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"407","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4575","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Natural Gas Act to allow the Federal Energy Regulatory Commission to approve or deny applications for the siting, construction, expansion, or operation of facilities to export or import natural gas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/883?format=json","number":"883","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"408","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"409","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4577","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/s/735?format=json","number":"735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"410","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"411","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4579","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to suspend the entry of covered aliens in response to the fentanyl public health crisis.","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","number":"628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"412","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"413","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"414","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4582","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to modify the deadline for filing beneficial ownership information reports for reporting companies formed or registered before January 1, 2024.","url":"https://api.congress.gov/v3/bill/119/s/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"415","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4583","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Banking, Housing, and Urban Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/58?format=json","number":"58","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"416","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4584","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to reprogram all remaining unobligated funds from the IRS enforcement account.","url":"https://api.congress.gov/v3/bill/119/s/481?format=json","number":"481","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"417","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4585","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to expand opportunity through greater choice in education, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/487?format=json","number":"487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"418","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4586","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"STOP MADNESS Act","url":"https://api.congress.gov/v3/bill/119/s/363?format=json","number":"363","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"419","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4587","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 23.","type":"S","title":"SBA Disaster Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/371?format=json","number":"371","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"420","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4588","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S486)","type":"SRES","title":"A resolution designating the week of January 26 through February 1, 2025, as \"National School Choice Week\".","url":"https://api.congress.gov/v3/bill/119/sres/44?format=json","number":"44","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"421","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4589","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-28","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/95?format=json","number":"","amendmentNumber":"95","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"422","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4590","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Families’ Rights and Responsibilities Act","url":"https://api.congress.gov/v3/bill/119/s/204?format=json","number":"204","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"423","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4591","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"SBA Disaster Transparency Act","url":"https://api.congress.gov/v3/bill/118/s/5357?format=json","number":"5357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"424","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4592","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Blocking Bad Batteries Act","url":"https://api.congress.gov/v3/bill/118/s/5190?format=json","number":"5190","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"425","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4593","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6638-6639; text: 9/25/2024 CR S6450-6451)","type":"SRES","title":"A resolution expressing support for the designation of September 2024 as \"Sickle Cell Disease Awareness Month\" in order to educate communities across the United States about sickle cell disease and the need for research, early detection methods, effective treatments, and preventative care programs with respect to complications from sickle cell disease and conditions related to sickle cell disease.","url":"https://api.congress.gov/v3/bill/118/sres/861?format=json","number":"861","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"426","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4594","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-23","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Empowering Main Street in America Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5139?format=json","number":"5139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"427","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4595","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1605-1606)","type":"S","title":"A bill to require the Secretary of the Treasury to mint commemorative coins in recognition of the life and legacy of Roberto Clemente.","url":"https://api.congress.gov/v3/bill/119/s/877?format=json","number":"877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"428","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4596","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1166?format=json","number":"","amendmentNumber":"1166","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"429","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4597","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1167?format=json","number":"","amendmentNumber":"1167","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"430","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4598","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1168?format=json","number":"","amendmentNumber":"1168","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"431","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4599","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1169?format=json","number":"","amendmentNumber":"1169","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"432","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4600","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1170?format=json","number":"","amendmentNumber":"1170","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"433","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4601","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1043?format=json","number":"","amendmentNumber":"1043","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"434","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4602","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1042?format=json","number":"","amendmentNumber":"1042","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"435","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4603","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1040?format=json","number":"","amendmentNumber":"1040","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"436","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4604","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1039?format=json","number":"","amendmentNumber":"1039","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"437","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4605","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1041?format=json","number":"","amendmentNumber":"1041","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"438","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4606","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/777?format=json","number":"","amendmentNumber":"777","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"439","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4607","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 776 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/776?format=json","number":"","amendmentNumber":"776","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"440","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4608","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 454 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/454?format=json","number":"","amendmentNumber":"454","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"441","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4609","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S796-797)","type":"S","title":"A bill to provide that unauthorized access to the central payment systems of the Bureau of the Fiscal Service is unlawful.","url":"https://api.congress.gov/v3/bill/119/s/490?format=json","number":"490","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"442","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4610","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S43)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/17?format=json","number":"17","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"443","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"444","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4612","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Gary B. Myrick, of Virginia, as Secretary for the Minority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/15?format=json","number":"15","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"445","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4613","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"118","introducedDate":"2024-12-20","policyArea_name":"","latestAction_text":"SA 3358 fell when SA SA 3357 withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3358?format=json","number":"","amendmentNumber":"3358","latestAction":"","latestAction_actionDate":"2024-12-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"446","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4614","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"118","introducedDate":"2024-12-20","policyArea_name":"","latestAction_text":"SA 3356 fell when SA SA 3355 withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3356?format=json","number":"","amendmentNumber":"3356","latestAction":"","latestAction_actionDate":"2024-12-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"447","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"448","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4616","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1583)","type":"SRES","title":"A resolution expressing the sense of the Senate that Russian President Vladimir Putin should immediately withdraw Russian forces from Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/109?format=json","number":"109","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"449","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"450","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4618","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"451","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4619","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/26?format=json","number":"26","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"452","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4620","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"453","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4621","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1035?format=json","number":"","amendmentNumber":"1035","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"454","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4622","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/903?format=json","number":"","amendmentNumber":"903","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"455","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4623","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/478?format=json","number":"","amendmentNumber":"478","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"456","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"457","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"458","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4626","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"459","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"460","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4628","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"10 Percent Credit Card Interest Rate Cap Act","url":"https://api.congress.gov/v3/bill/119/s/381?format=json","number":"381","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"461","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4629","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/63?format=json","number":"","amendmentNumber":"63","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"462","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4630","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","introducedDate":"2024-12-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3334?format=json","number":"","amendmentNumber":"3334","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"463","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4631","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","introducedDate":"2024-12-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3333?format=json","number":"","amendmentNumber":"3333","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"464","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4632","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","introducedDate":"2024-12-10","policyArea_name":"","latestAction_text":"Amendment SA 3314 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3314?format=json","number":"","amendmentNumber":"3314","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"465","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4633","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/118/sjres/112?format=json","number":"112","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"466","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4634","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-25","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 18 - 79. Record Vote Number: 292. (consideration: CR S6653-6665)","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/118/sjres/111?format=json","number":"111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"467","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4635","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1089?format=json","number":"","amendmentNumber":"1089","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"468","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4636","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1034?format=json","number":"","amendmentNumber":"1034","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"469","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4637","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/948?format=json","number":"","amendmentNumber":"948","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"470","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4638","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/946?format=json","number":"","amendmentNumber":"946","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"471","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4639","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/947?format=json","number":"","amendmentNumber":"947","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"472","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4640","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/313?format=json","number":"","amendmentNumber":"313","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"473","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4641","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/315?format=json","number":"","amendmentNumber":"315","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"474","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4642","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/314?format=json","number":"","amendmentNumber":"314","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"475","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4643","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 316 not agreed to in Senate by Yea-Nay Vote. 48 - 52. Record Vote Number: 69.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/316?format=json","number":"","amendmentNumber":"316","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"476","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4644","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/312?format=json","number":"","amendmentNumber":"312","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"477","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4645","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-03-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Judicial Integrity Act","url":"https://api.congress.gov/v3/bill/118/hr/7676?format=json","number":"7676","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"478","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4646","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Investigative Integrity Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9884?format=json","number":"9884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"479","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4647","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CARE Act","url":"https://api.congress.gov/v3/bill/118/hr/9706?format=json","number":"9706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"480","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4648","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Transnational Repression Reporting Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9707?format=json","number":"9707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"481","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4649","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-09-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Artsakh Revenue Recovery Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9666?format=json","number":"9666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"482","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4650","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-17","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"AI Ads Act","url":"https://api.congress.gov/v3/bill/118/hr/9639?format=json","number":"9639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"483","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4651","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-08-06","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SCOPE Act","url":"https://api.congress.gov/v3/bill/118/hr/9319?format=json","number":"9319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"484","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4652","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"MAIL Act","url":"https://api.congress.gov/v3/bill/118/hr/9229?format=json","number":"9229","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"485","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4653","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Judicial FOIA Expansion Act","url":"https://api.congress.gov/v3/bill/118/hr/9108?format=json","number":"9108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"486","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4654","labels":["Legislation"],"properties":{"sponsored_by":"S001150","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-10","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"ATF DATA Act","url":"https://api.congress.gov/v3/bill/118/hr/8990?format=json","number":"8990","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"487","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4655","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/s/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"488","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"489","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4657","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to include information on improper payments under Federal programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/747?format=json","number":"747","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"490","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4658","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1359; text: CR S1358-1359)","type":"SRES","title":"A resolution honoring the life of Nebraska community leader Howard L. Hawks.","url":"https://api.congress.gov/v3/bill/119/sres/97?format=json","number":"97","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"491","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"492","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4660","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Dignity for Aborted Children Act","url":"https://api.congress.gov/v3/bill/119/s/242?format=json","number":"242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"493","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4661","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-12-17","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7068-7069; text: S7107)","type":"SRES","title":"A resolution honoring the life of Nebraska community leader John Edmund Gottschalk.","url":"https://api.congress.gov/v3/bill/118/sres/928?format=json","number":"928","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"494","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4662","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Capital Gains Allowance for American Adversaries Act","url":"https://api.congress.gov/v3/bill/118/s/5233?format=json","number":"5233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"495","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4663","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Protecting Endowments from Our Adversaries Act","url":"https://api.congress.gov/v3/bill/118/s/5234?format=json","number":"5234","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"496","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4664","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"No China in Index Funds Act","url":"https://api.congress.gov/v3/bill/118/s/5237?format=json","number":"5237","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"497","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4665","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"PRC Military and Human Rights Capital Markets Sanctions Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5244?format=json","number":"5244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"498","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4666","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Securing American Agriculture Act","url":"https://api.congress.gov/v3/bill/118/s/5277?format=json","number":"5277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"499","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"500","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4668","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3178?format=json","number":"","amendmentNumber":"3178","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"501","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4669","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2957?format=json","number":"","amendmentNumber":"2957","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"502","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4670","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2956?format=json","number":"","amendmentNumber":"2956","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"503","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4671","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2825?format=json","number":"","amendmentNumber":"2825","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"504","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4672","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2826?format=json","number":"","amendmentNumber":"2826","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"505","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4673","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2823?format=json","number":"","amendmentNumber":"2823","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"506","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4674","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2822?format=json","number":"","amendmentNumber":"2822","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"507","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4675","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/778?format=json","number":"778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"508","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4676","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"509","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4677","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1216?format=json","number":"","amendmentNumber":"1216","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"510","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4678","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1217?format=json","number":"","amendmentNumber":"1217","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"511","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4679","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1031?format=json","number":"","amendmentNumber":"1031","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"512","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4680","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1032?format=json","number":"","amendmentNumber":"1032","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"513","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4681","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1033?format=json","number":"","amendmentNumber":"1033","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"514","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4682","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/865?format=json","number":"","amendmentNumber":"865","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"515","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4683","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/863?format=json","number":"","amendmentNumber":"863","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"516","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4684","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/869?format=json","number":"","amendmentNumber":"869","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"517","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4685","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/867?format=json","number":"","amendmentNumber":"867","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"518","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4686","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/868?format=json","number":"","amendmentNumber":"868","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"519","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4687","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/864?format=json","number":"","amendmentNumber":"864","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"520","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4688","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/866?format=json","number":"","amendmentNumber":"866","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"521","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4689","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/870?format=json","number":"","amendmentNumber":"870","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"522","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4690","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/861?format=json","number":"","amendmentNumber":"861","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"523","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4691","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/862?format=json","number":"","amendmentNumber":"862","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"524","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4692","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/860?format=json","number":"","amendmentNumber":"860","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"525","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4693","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/857?format=json","number":"","amendmentNumber":"857","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"526","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4694","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/856?format=json","number":"","amendmentNumber":"856","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"527","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4695","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Assistance Simplification Act","url":"https://api.congress.gov/v3/bill/119/s/861?format=json","number":"861","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"528","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4696","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Lobbying Disclosure Improvement Act","url":"https://api.congress.gov/v3/bill/119/s/865?format=json","number":"865","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"529","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4697","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Expanding Whistleblower Protections for Contractors Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/874?format=json","number":"874","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"530","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4698","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to create intergovernmental coordination between State, local, Tribal, and territorial jurisdictions, and the Federal Government to combat United States reliance on the People's Republic of China and other covered countries for critical minerals and rare earth metals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/823?format=json","number":"823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"531","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4699","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"U.S. Customs and Border Protection Officer Retirement Technical Corrections Act","url":"https://api.congress.gov/v3/bill/119/s/727?format=json","number":"727","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"532","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4700","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to expand eligibility for incentives under the Medicare health professional shortage area bonus program to practitioners furnishing mental health and substance use disorder services.","url":"https://api.congress.gov/v3/bill/119/s/683?format=json","number":"683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"533","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4701","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve the effectiveness of body armor issued to female agents and officers of the Department of Homeland Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/693?format=json","number":"693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"534","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4702","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1186?format=json","number":"","amendmentNumber":"1186","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"535","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4703","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1184?format=json","number":"","amendmentNumber":"1184","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"536","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4704","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1185?format=json","number":"","amendmentNumber":"1185","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"537","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4705","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1183?format=json","number":"","amendmentNumber":"1183","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"538","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4706","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1182?format=json","number":"","amendmentNumber":"1182","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"539","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4707","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1009?format=json","number":"","amendmentNumber":"1009","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"540","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4708","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1010?format=json","number":"","amendmentNumber":"1010","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"541","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4709","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1003?format=json","number":"","amendmentNumber":"1003","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"542","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4710","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1004?format=json","number":"","amendmentNumber":"1004","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"543","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4711","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1008?format=json","number":"","amendmentNumber":"1008","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"544","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4712","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1005?format=json","number":"","amendmentNumber":"1005","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"545","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4713","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1007?format=json","number":"","amendmentNumber":"1007","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"546","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4714","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1006?format=json","number":"","amendmentNumber":"1006","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"547","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"548","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"549","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4717","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to modify the information about countries exporting methamphetamine that is included in the annual International Narcotics Control Strategy Report, to require a report to Congress on the seizure and production of certain illicit drugs, to impose sanctions with respect to the production and trafficking into the United States, of synthetic opioids, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/860?format=json","number":"860","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"550","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"551","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4719","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1400-1401)","type":"SRES","title":"A resolution condemning Beijing's destruction of Hong Kong's democracy and rule of law.","url":"https://api.congress.gov/v3/bill/119/sres/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"552","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"553","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4721","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S1314)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Foreign Relations.","url":"https://api.congress.gov/v3/bill/119/sres/90?format=json","number":"90","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"554","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"555","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4723","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill to amend the Small Business Act to require that plain writing statements regarding the solicitation of subcontractors be included in certain subcontracting plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"556","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4724","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to exempt certain 16- and 17-year-old individuals employed in logging operations from child labor laws.","url":"https://api.congress.gov/v3/bill/119/s/509?format=json","number":"509","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"557","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4725","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"American Values Act","url":"https://api.congress.gov/v3/bill/119/s/334?format=json","number":"334","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"558","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4726","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Freedom from Government Surveys Act","url":"https://api.congress.gov/v3/bill/119/s/265?format=json","number":"265","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"559","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4727","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"PEACE Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/227?format=json","number":"227","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"560","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"561","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4729","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Northwest Energy Security Act","url":"https://api.congress.gov/v3/bill/119/s/182?format=json","number":"182","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"562","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4730","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"No Retaining Every Gun In a System That Restricts Your Rights Act","url":"https://api.congress.gov/v3/bill/119/s/119?format=json","number":"119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"563","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4731","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Dismantle Iran’s Proxy Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/145?format=json","number":"145","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"564","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4732","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-14","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Sporting Firearms Access Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"565","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4733","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-08","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"VALOR Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/37?format=json","number":"37","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"566","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4734","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"118","introducedDate":"2023-09-07","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Cyber Resiliency Act","url":"https://api.congress.gov/v3/bill/118/s/2740?format=json","number":"2740","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"567","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4735","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1347)","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act with respect to molecularly targeted pediatric cancer investigations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/705?format=json","number":"705","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"568","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4736","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/742?format=json","number":"","amendmentNumber":"742","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"569","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4737","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/712?format=json","number":"","amendmentNumber":"712","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"570","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4738","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/710?format=json","number":"","amendmentNumber":"710","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"571","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4739","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/711?format=json","number":"","amendmentNumber":"711","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"572","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4740","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/709?format=json","number":"","amendmentNumber":"709","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"573","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4741","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 299 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 76.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/299?format=json","number":"","amendmentNumber":"299","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"574","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4742","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/300?format=json","number":"","amendmentNumber":"300","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"575","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4743","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/275?format=json","number":"","amendmentNumber":"275","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"576","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4744","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/253?format=json","number":"","amendmentNumber":"253","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"577","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4745","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/208?format=json","number":"","amendmentNumber":"208","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"578","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4746","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/209?format=json","number":"","amendmentNumber":"209","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"579","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4747","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/207?format=json","number":"","amendmentNumber":"207","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"580","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4748","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 172 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/172?format=json","number":"","amendmentNumber":"172","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"581","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4749","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/149?format=json","number":"","amendmentNumber":"149","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"582","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4750","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/151?format=json","number":"","amendmentNumber":"151","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"583","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4751","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/150?format=json","number":"","amendmentNumber":"150","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"584","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4752","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/152?format=json","number":"","amendmentNumber":"152","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"585","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4753","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/143?format=json","number":"","amendmentNumber":"143","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"586","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4754","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/145?format=json","number":"","amendmentNumber":"145","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"587","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"588","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4756","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1430-1431)","type":"S","title":"A bill to amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/779?format=json","number":"779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"589","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4757","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to reaffirm the applicability of the Indian Reorganization Act to the Lytton Rancheria of California, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/748?format=json","number":"748","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"590","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"591","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4759","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tule River Tribe Reserved Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"592","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4760","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1226?format=json","number":"","amendmentNumber":"1226","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"593","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4761","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1225?format=json","number":"","amendmentNumber":"1225","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"594","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4762","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1224?format=json","number":"","amendmentNumber":"1224","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"595","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4763","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1218?format=json","number":"","amendmentNumber":"1218","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"596","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4764","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1192?format=json","number":"","amendmentNumber":"1192","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"597","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4765","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1193?format=json","number":"","amendmentNumber":"1193","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"598","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4766","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1189?format=json","number":"","amendmentNumber":"1189","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"599","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4767","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1190?format=json","number":"","amendmentNumber":"1190","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"600","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4768","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1188?format=json","number":"","amendmentNumber":"1188","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"601","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4769","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1191?format=json","number":"","amendmentNumber":"1191","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"602","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4770","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1187?format=json","number":"","amendmentNumber":"1187","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"603","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4771","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1141?format=json","number":"","amendmentNumber":"1141","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"604","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4772","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1142?format=json","number":"","amendmentNumber":"1142","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"605","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4773","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1119?format=json","number":"","amendmentNumber":"1119","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"606","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4774","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1121?format=json","number":"","amendmentNumber":"1121","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"607","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4775","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand and modify the grant program of the Department of Veterans Affairs to provide innovative transportation options to veterans in highly rural areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/784?format=json","number":"784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"608","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4776","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to encourage States to report to the Attorney General certain information regarding inmates who give birth in the custody of law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/687?format=json","number":"687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"609","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4777","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 407 not agreed to in Senate by Yea-Nay Vote. 49 - 51. Record Vote Number: 72.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/407?format=json","number":"","amendmentNumber":"407","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"610","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4778","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/406?format=json","number":"","amendmentNumber":"406","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"611","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4779","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/405?format=json","number":"","amendmentNumber":"405","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"612","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4780","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Forest and Rangeland Renewable Resources Research Act of 1978 to modify the forest inventory and analysis program.","url":"https://api.congress.gov/v3/bill/119/s/517?format=json","number":"517","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"613","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4781","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Supporting Victims of Human Trafficking Act","url":"https://api.congress.gov/v3/bill/119/s/361?format=json","number":"361","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"614","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4782","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-12-19","policyArea_name":"","latestAction_text":"Amendment SA 3350 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3350?format=json","number":"","amendmentNumber":"3350","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"615","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4783","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Youth Sports Facilities Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5560?format=json","number":"5560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"616","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4784","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-17","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"BCRA","url":"https://api.congress.gov/v3/bill/118/s/5565?format=json","number":"5565","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"617","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4785","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Family Notification of Death, Injury, or Illness in Custody Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5477?format=json","number":"5477","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"618","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4786","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 119 Main Street in Plains, Georgia, as the \"Jimmy and Rosalynn Carter Post Office\".","url":"https://api.congress.gov/v3/bill/118/s/5345?format=json","number":"5345","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"619","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4787","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-11-14","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Border Smuggling Crackdown Act","url":"https://api.congress.gov/v3/bill/118/s/5322?format=json","number":"5322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"620","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4788","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-12","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Veterans Home Loan Fairness Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5301?format=json","number":"5301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"621","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4789","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Held at the desk.","type":"S","title":"Lieutenant Osvaldo Albarati Stopping Prison Contraband Act","url":"https://api.congress.gov/v3/bill/118/s/5284?format=json","number":"5284","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":"10:04:12"}}} +{"type":"relationship","id":"622","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4790","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Fresh Food Act","url":"https://api.congress.gov/v3/bill/118/s/5120?format=json","number":"5120","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"623","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4791","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Postmaster General Reform Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5080?format=json","number":"5080","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"624","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4792","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3255?format=json","number":"","amendmentNumber":"3255","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"625","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4793","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"VA Transportation Programs Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4922?format=json","number":"4922","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"626","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4794","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Access to Homeownership Act","url":"https://api.congress.gov/v3/bill/118/s/4944?format=json","number":"4944","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"627","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4795","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Risky Research Review Act","url":"https://api.congress.gov/v3/bill/119/s/854?format=json","number":"854","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"628","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4796","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Royalty Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/855?format=json","number":"855","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"629","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4797","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 999 not agreed to in Senate by Yea-Nay Vote. 24 - 76. Record Vote Number: 77.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/999?format=json","number":"","amendmentNumber":"999","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"630","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4798","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/515?format=json","number":"","amendmentNumber":"515","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"631","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4799","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to replace the National Institute of Allergy and Infectious Diseases with 3 separate national research institutes.","url":"https://api.congress.gov/v3/bill/119/s/664?format=json","number":"664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"632","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4800","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit assistance to foreign governments that violate human rights with respect to religious freedom.","url":"https://api.congress.gov/v3/bill/119/s/676?format=json","number":"676","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"633","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4801","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S979-980)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Homeland Security and Governmental Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/77?format=json","number":"77","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"634","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4802","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to remove restrictions from a parcel of land in Paducah, Kentucky.","url":"https://api.congress.gov/v3/bill/119/s/601?format=json","number":"601","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"635","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"636","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4804","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to amend title 31, United States Code, to provide for automatic continuing resolutions.","url":"https://api.congress.gov/v3/bill/119/s/499?format=json","number":"499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"637","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"638","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4806","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-28","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/97?format=json","number":"","amendmentNumber":"97","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"639","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4807","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-27","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"FAIR Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/263?format=json","number":"263","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"640","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4808","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution directing the removal of United States Armed Forces from hostilities in Syria that have not been authorized by Congress.","url":"https://api.congress.gov/v3/bill/119/sjres/6?format=json","number":"6","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"641","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"642","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4810","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution directing the removal of United States Armed Forces from hostilities in Ukraine that have not been authorized by Congress.","url":"https://api.congress.gov/v3/bill/119/sjres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"643","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4811","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Free Speech Protection Act","url":"https://api.congress.gov/v3/bill/119/s/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"644","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"645","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"646","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4814","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/94?format=json","number":"","amendmentNumber":"94","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"647","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4815","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to renew the application of the Medicare payment rate floor to primary care services furnished under the Medicaid program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/760?format=json","number":"760","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"648","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"649","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4817","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/895?format=json","number":"","amendmentNumber":"895","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"650","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4818","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/883?format=json","number":"","amendmentNumber":"883","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"651","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4819","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/885?format=json","number":"","amendmentNumber":"885","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"652","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4820","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/882?format=json","number":"","amendmentNumber":"882","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"653","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4821","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/890?format=json","number":"","amendmentNumber":"890","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"654","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4822","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/894?format=json","number":"","amendmentNumber":"894","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"655","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4823","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/888?format=json","number":"","amendmentNumber":"888","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"656","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4824","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/881?format=json","number":"","amendmentNumber":"881","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"657","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4825","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/887?format=json","number":"","amendmentNumber":"887","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"658","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4826","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/886?format=json","number":"","amendmentNumber":"886","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"659","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4827","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/893?format=json","number":"","amendmentNumber":"893","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"660","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4828","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/889?format=json","number":"","amendmentNumber":"889","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"661","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4829","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/884?format=json","number":"","amendmentNumber":"884","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"662","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4830","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/891?format=json","number":"","amendmentNumber":"891","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"663","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4831","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/892?format=json","number":"","amendmentNumber":"892","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"664","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4832","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/879?format=json","number":"","amendmentNumber":"879","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"665","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4833","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 878 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 66.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/878?format=json","number":"","amendmentNumber":"878","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"666","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4834","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 880 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/880?format=json","number":"","amendmentNumber":"880","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"667","label":"SPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4835","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit displaying the flag of a country other than the United States on Capitol Hill and to prohibit Members of Congress from using official funds to purchase the flag of a country other than the United States.","url":"https://api.congress.gov/v3/bill/119/s/849?format=json","number":"849","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"668","label":"SPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4836","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish an enhanced deduction for wages paid to automobile manufacturing workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/711?format=json","number":"711","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"669","label":"SPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4837","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to declare English as the official language of the United States, to establish a uniform English language rule for naturalization, and to avoid misconstructions of the English language texts of the laws of the United States, pursuant to Congress' powers to provide for the general welfare of the United States and to establish a uniform rule of naturalization under article I, section 8, of the Constitution.","url":"https://api.congress.gov/v3/bill/119/s/542?format=json","number":"542","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"670","label":"SPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4838","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S526-527; text: CR S525)","type":"SRES","title":"A resolution congratulating The Ohio State University football team for winning the 2025 College Football Playoff National Championship.","url":"https://api.congress.gov/v3/bill/119/sres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"671","label":"SPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4839","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"RULES Act","url":"https://api.congress.gov/v3/bill/119/s/200?format=json","number":"200","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"672","label":"SPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4840","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to rescind the unobligated balances of amounts appropriated for Internal Revenue Service enhancements and use such funding for an External Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/175?format=json","number":"175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"673","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"
Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4841","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to authorize the Secretary of the Treasury to make payments to the Quapaw Nation and certain members of the Quapaw Nation in accordance with the recommendation of the United States Court of Federal Claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/630?format=json","number":"630","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"674","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4842","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to provide for the equitable settlement of certain Indian land disputes regarding land in Illinois, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/550?format=json","number":"550","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"675","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4843","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Quapaw Tribal Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5619?format=json","number":"5619","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"676","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4844","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-29","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Small Businesses before Bureaucrats Act","url":"https://api.congress.gov/v3/bill/118/s/4823?format=json","number":"4823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"677","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4845","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3026?format=json","number":"","amendmentNumber":"3026","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"678","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4846","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2973?format=json","number":"","amendmentNumber":"2973","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"679","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4847","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2947?format=json","number":"","amendmentNumber":"2947","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"680","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4848","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 503.","type":"S","title":"Traumatic Brain Injury Program Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4755?format=json","number":"4755","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"681","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4849","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2880?format=json","number":"","amendmentNumber":"2880","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"682","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4850","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2582?format=json","number":"","amendmentNumber":"2582","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"683","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4851","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2583?format=json","number":"","amendmentNumber":"2583","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"684","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4852","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-05-31","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide for the equitable settlement of certain Indian land disputes regarding land in Illinois, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/1783?format=json","number":"1783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"685","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4853","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4308; text: CR S4271)","type":"SRES","title":"A resolution designating the week of May 5, 2024, through May 11, 2024, as \"Tardive Dyskinesia Awareness Week\".","url":"https://api.congress.gov/v3/bill/118/sres/757?format=json","number":"757","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"686","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4854","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"WIOA Planning Extension Act","url":"https://api.congress.gov/v3/bill/118/s/4498?format=json","number":"4498","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"687","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4855","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"WIOA Performance Accountability Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/4501?format=json","number":"4501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"688","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4856","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/sjres/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"689","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4857","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-05-02","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1944?format=json","number":"","amendmentNumber":"1944","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"690","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4858","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Behavioral Health Information Technology Coordination Act","url":"https://api.congress.gov/v3/bill/118/s/2688?format=json","number":"2688","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"691","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4859","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"MVP Act","url":"https://api.congress.gov/v3/bill/118/s/4204?format=json","number":"4204","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"692","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4860","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-11-15","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Lowering Broadband Costs for Consumers Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3321?format=json","number":"3321","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"693","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4861","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1037?format=json","number":"","amendmentNumber":"1037","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"694","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4862","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1038?format=json","number":"","amendmentNumber":"1038","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"695","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4863","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1036?format=json","number":"","amendmentNumber":"1036","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"696","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4864","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/966?format=json","number":"","amendmentNumber":"966","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"697","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4865","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/902?format=json","number":"","amendmentNumber":"902","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"698","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4866","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/901?format=json","number":"","amendmentNumber":"901","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"699","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4867","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/294?format=json","number":"","amendmentNumber":"294","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"700","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4868","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/296?format=json","number":"","amendmentNumber":"296","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"701","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4869","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/295?format=json","number":"","amendmentNumber":"295","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"702","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4870","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/226?format=json","number":"","amendmentNumber":"226","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"703","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4871","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/225?format=json","number":"","amendmentNumber":"225","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"704","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4872","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/222?format=json","number":"","amendmentNumber":"222","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"705","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4873","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/220?format=json","number":"","amendmentNumber":"220","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"706","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4874","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/224?format=json","number":"","amendmentNumber":"224","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"707","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4875","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/221?format=json","number":"","amendmentNumber":"221","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"708","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4876","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/223?format=json","number":"","amendmentNumber":"223","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"709","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4877","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish the Office of Gun Violence Prevention, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/595?format=json","number":"595","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"710","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4878","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to prohibit certain discrimination against athletes on the basis of sex by State athletic associations, intercollegiate athletic associations, and covered institutions of higher education, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/543?format=json","number":"543","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"711","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4879","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Stop Sports Blackouts Act","url":"https://api.congress.gov/v3/bill/119/s/328?format=json","number":"328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"712","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4880","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-01-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/84?format=json","number":"","amendmentNumber":"84","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"713","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"714","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"715","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4883","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to modify the Precision Medicine for Veterans Initiative of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/800?format=json","number":"800","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"716","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"717","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4885","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish an external provider scheduling program to assist the Department of Veterans Affairs in scheduling appointments for care and services under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/654?format=json","number":"654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"718","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"719","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4887","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to carry out a pilot program to coordinate, navigate, and manage care and benefits for veterans enrolled in both the Medicare program and the system of annual patient enrollment of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/506?format=json","number":"506","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"720","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4888","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the publicly traded partnership ownership structure to energy power generation projects and transportation fuels, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/510?format=json","number":"510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"721","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4889","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to transfer the functions, duties, responsibilities, assets, liabilities, orders, determinations, rules, regulations, permits, grants, loans, contracts, agreements, certificates, licenses, and privileges of the United States Agency for International Development relating to implementing and administering the Food for Peace Act to the Department of Agriculture.","url":"https://api.congress.gov/v3/bill/119/s/525?format=json","number":"525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"722","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"723","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"724","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4892","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 11, District of Columbia Official Code, to revise references in such title to individuals with intellectual disabilities.","url":"https://api.congress.gov/v3/bill/119/s/402?format=json","number":"402","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"725","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4893","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the advanced manufacturing production credit to include distribution transformers.","url":"https://api.congress.gov/v3/bill/119/s/448?format=json","number":"448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"726","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"727","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4895","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Stop GREED Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/396?format=json","number":"396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"728","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4896","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Veterans’ Assuring Critical Care Expansions to Support Servicemembers (ACCESS) Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/275?format=json","number":"275","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"729","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4897","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Fiscal Year 2025 Veterans Affairs Major Medical Facility Authorization Act","url":"https://api.congress.gov/v3/bill/119/s/183?format=json","number":"183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"730","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4898","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Restore VA Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/124?format=json","number":"124","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"731","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4899","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Farm to Fly Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/144?format=json","number":"144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"732","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4900","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"EMPSA","url":"https://api.congress.gov/v3/bill/119/s/73?format=json","number":"73","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"733","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4901","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to enhance the longevity, dignity, empowerment, and respect of older individuals who are Native Americans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/870?format=json","number":"870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"734","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"735","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"736","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4904","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Forest Protection Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"737","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4905","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1020?format=json","number":"","amendmentNumber":"1020","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"738","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4906","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1025?format=json","number":"","amendmentNumber":"1025","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"739","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4907","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1022?format=json","number":"","amendmentNumber":"1022","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"740","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4908","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1021?format=json","number":"","amendmentNumber":"1021","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"741","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4909","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1023?format=json","number":"","amendmentNumber":"1023","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"742","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4910","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1024?format=json","number":"","amendmentNumber":"1024","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"743","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4911","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1019?format=json","number":"","amendmentNumber":"1019","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"744","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4912","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1018?format=json","number":"","amendmentNumber":"1018","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"745","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4913","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-18","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Veterinary Services to Improve Public Health in Rural Communities Act","url":"https://api.congress.gov/v3/bill/119/s/620?format=json","number":"620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"746","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4914","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate a mountain in the State of Alaska as Denali.","url":"https://api.congress.gov/v3/bill/119/s/573?format=json","number":"573","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"747","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4915","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the exemption from the excise tax on alternative motorboat fuels sold as supplies for vessels or aircraft to include certain vessels serving only one coast.","url":"https://api.congress.gov/v3/bill/119/s/549?format=json","number":"549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"748","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4916","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672-673)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Indian Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/60?format=json","number":"60","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"749","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4917","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"FASD Respect Act","url":"https://api.congress.gov/v3/bill/119/s/139?format=json","number":"139","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"750","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4918","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-03-02","latestAction_text":"Held at the desk.","type":"S","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/623?format=json","number":"623","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":"17:03:55"}}} +{"type":"relationship","id":"751","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4919","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","introducedDate":"2023-04-20","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Bruce's Law","url":"https://api.congress.gov/v3/bill/118/s/1235?format=json","number":"1235","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"752","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"753","label":"SPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4921","labels":["Legislation"],"properties":{"sponsored_by":"M001244","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1017?format=json","number":"","amendmentNumber":"1017","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"754","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"755","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4923","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to provide a moratorium on all Federal research grants provided to any institution of higher education or other research institute that is conducting dangerous gain-of-function research.","url":"https://api.congress.gov/v3/bill/119/s/738?format=json","number":"738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"756","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4924","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/732?format=json","number":"732","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"757","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4925","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/994?format=json","number":"","amendmentNumber":"994","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"758","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"759","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4927","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-05","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Phasedown of Hydrofluorocarbons: Management of Certain Hydrofluorocarbons and Substitutes Under the American Innovation and Manufacturing Act of 2020\".","url":"https://api.congress.gov/v3/bill/119/sjres/14?format=json","number":"14","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"760","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4928","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Regulatory Reduction Act","url":"https://api.congress.gov/v3/bill/119/s/387?format=json","number":"387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"761","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4929","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Whole Milk for Healthy Kids Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/222?format=json","number":"222","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"762","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4930","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Increased TSP Access Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/156?format=json","number":"156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"763","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4931","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Animals","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to remove the lesser prairie-chicken from the lists of threatened species and endangered species published pursuant to the Endangered Species Act of 1973, to amend that Act to exclude the lesser prairie-chicken from the authority of that Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/171?format=json","number":"171","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"764","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4932","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/69?format=json","number":"","amendmentNumber":"69","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"765","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4933","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/70?format=json","number":"","amendmentNumber":"70","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"766","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4934","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-14","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/43?format=json","number":"","amendmentNumber":"43","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"767","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4935","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-01-14","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/42?format=json","number":"","amendmentNumber":"42","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"768","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4936","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-07-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require that information on spending associated with national emergencies be subject to the same reporting requirements as other Federal funds under the Federal Funding Accountability and Transparency Act of 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/2300?format=json","number":"2300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"769","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4937","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-12-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"No Surprises Act Enforcement Act","url":"https://api.congress.gov/v3/bill/118/s/5535?format=json","number":"5535","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"770","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4938","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"HELP Copays Act","url":"https://api.congress.gov/v3/bill/118/s/1375?format=json","number":"1375","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"771","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4939","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"STOP Act","url":"https://api.congress.gov/v3/bill/118/s/5424?format=json","number":"5424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"772","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4940","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Defining Male and Female Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5356?format=json","number":"5356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"773","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4941","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Small Energy Producers Performance Enhancement Act","url":"https://api.congress.gov/v3/bill/118/s/5198?format=json","number":"5198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"774","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4942","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/119/s/790?format=json","number":"790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"775","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"776","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4944","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1202?format=json","number":"","amendmentNumber":"1202","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"777","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4945","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1203?format=json","number":"","amendmentNumber":"1203","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"778","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4946","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1206?format=json","number":"","amendmentNumber":"1206","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"779","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4947","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1205?format=json","number":"","amendmentNumber":"1205","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"780","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4948","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1204?format=json","number":"","amendmentNumber":"1204","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"781","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4949","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1201?format=json","number":"","amendmentNumber":"1201","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"782","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4950","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1200?format=json","number":"","amendmentNumber":"1200","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"783","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"784","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4952","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-06","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Forest Service of the Department of Agriculture relating to \"Law Enforcement; Criminal Prohibitions\".","url":"https://api.congress.gov/v3/bill/119/sjres/17?format=json","number":"17","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"785","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4953","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Critical Water Resources Prioritization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/386?format=json","number":"386","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"786","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4954","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Emergency Fuel Reduction Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/395?format=json","number":"395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"787","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4955","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Grizzly Bear State Management Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/316?format=json","number":"316","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"788","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4956","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Congressional Award Program Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"789","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"790","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4958","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"FREE Act","url":"https://api.congress.gov/v3/bill/119/s/238?format=json","number":"238","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"791","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4959","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"LICENSE Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/191?format=json","number":"191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"792","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4960","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-08","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate the mountain at the Devils Tower National Monument, Wyoming, as Devils Tower, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"793","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4961","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"118","introducedDate":"2024-11-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/118/s/5307?format=json","number":"5307","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"794","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4962","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to prohibit institutions of higher education participating in Federal student assistance programs from giving preferential treatment in the admissions process to legacy students or donors.","url":"https://api.congress.gov/v3/bill/119/s/880?format=json","number":"880","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"795","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"796","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"797","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4965","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 1207 not agreed to in Senate by Yea-Nay Vote. 49 - 51. Record Vote Number: 86.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1207?format=json","number":"","amendmentNumber":"1207","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"798","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4966","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/877?format=json","number":"","amendmentNumber":"877","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"799","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4967","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/741?format=json","number":"","amendmentNumber":"741","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"800","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4968","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/633?format=json","number":"","amendmentNumber":"633","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"801","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4969","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/635?format=json","number":"","amendmentNumber":"635","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"802","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4970","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/637?format=json","number":"","amendmentNumber":"637","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"803","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4971","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/636?format=json","number":"","amendmentNumber":"636","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"804","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4972","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/634?format=json","number":"","amendmentNumber":"634","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"805","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4973","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/624?format=json","number":"","amendmentNumber":"624","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"806","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4974","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/632?format=json","number":"","amendmentNumber":"632","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"807","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4975","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/629?format=json","number":"","amendmentNumber":"629","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"808","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4976","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/628?format=json","number":"","amendmentNumber":"628","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"809","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4977","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/630?format=json","number":"","amendmentNumber":"630","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"810","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4978","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/626?format=json","number":"","amendmentNumber":"626","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"811","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4979","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/627?format=json","number":"","amendmentNumber":"627","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"812","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4980","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/625?format=json","number":"","amendmentNumber":"625","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"813","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4981","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/631?format=json","number":"","amendmentNumber":"631","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"814","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"815","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"816","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4984","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to ensure that there are no reductions in funding for critical education programs for fiscal years 2025, 2026, and 2027, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/810?format=json","number":"810","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"817","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4985","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1214?format=json","number":"","amendmentNumber":"1214","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"818","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4986","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1136?format=json","number":"","amendmentNumber":"1136","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"819","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4987","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1139?format=json","number":"","amendmentNumber":"1139","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"820","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4988","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1137?format=json","number":"","amendmentNumber":"1137","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"821","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4989","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1138?format=json","number":"","amendmentNumber":"1138","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"822","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4990","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1133?format=json","number":"","amendmentNumber":"1133","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"823","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4991","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1135?format=json","number":"","amendmentNumber":"1135","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"824","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4992","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1134?format=json","number":"","amendmentNumber":"1134","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"825","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4993","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/991?format=json","number":"","amendmentNumber":"991","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"826","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4994","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/993?format=json","number":"","amendmentNumber":"993","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"827","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4995","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/992?format=json","number":"","amendmentNumber":"992","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"828","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4996","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/990?format=json","number":"","amendmentNumber":"990","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"829","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4997","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/912?format=json","number":"","amendmentNumber":"912","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"830","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4998","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 911 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/911?format=json","number":"","amendmentNumber":"911","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"831","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4999","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/914?format=json","number":"","amendmentNumber":"914","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"832","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5000","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/913?format=json","number":"","amendmentNumber":"913","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"833","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"834","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5002","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1616; text: CR S1609)","type":"SRES","title":"A resolution providing for members on the part of the Senate of the Joint Committee on Printing and the Joint Committee of Congress on the Library.","url":"https://api.congress.gov/v3/bill/119/sres/117?format=json","number":"117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"835","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"836","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5004","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Director of the Bureau of Prisons to be appointed by and with the advice and consent of the Senate.","url":"https://api.congress.gov/v3/bill/119/s/698?format=json","number":"698","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"837","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5005","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize certain programs under the SUPPORT for Patients and Communities Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/500?format=json","number":"500","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"838","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5006","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture and the Secretary of the Interior to carry out activities to provide for white oak restoration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/476?format=json","number":"476","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"839","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5007","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-01-27","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S387-388; text: CR S398-399)","type":"SRES","title":"A resolution authorizing the Sergeant at Arms and Doorkeeper of the Senate to conduct quarterly blood donation drives during the 119th Congress.","url":"https://api.congress.gov/v3/bill/119/sres/41?format=json","number":"41","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"840","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5008","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-04-25","latestAction_text":"Held at the desk.","type":"S","title":"Mammoth Cave National Park Boundary Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1277?format=json","number":"1277","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":"18:25:35"}}} +{"type":"relationship","id":"841","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5009","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S6446-6447)","type":"S","title":"White Oak Resilience Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5289?format=json","number":"5289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"842","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5010","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-09-24","policyArea_name":"","latestAction_text":"Amendment SA 3297 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3297?format=json","number":"","amendmentNumber":"3297","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"843","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5011","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-09-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3281?format=json","number":"","amendmentNumber":"3281","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"844","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5012","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2534?format=json","number":"","amendmentNumber":"2534","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"845","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5013","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-08","latestAction_text":"Held at the desk.","type":"S","title":"A bill to designate the United States courthouse annex located at 310 South Main Street in London, Kentucky, as the \"Eugene E. Siler, Jr. United States Courthouse Annex\".","url":"https://api.congress.gov/v3/bill/118/s/4293?format=json","number":"4293","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":"10:04:07"}}} +{"type":"relationship","id":"846","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5014","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S2708-2709)","type":"S","title":"SHOP Act","url":"https://api.congress.gov/v3/bill/118/s/4095?format=json","number":"4095","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"847","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5015","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/754?format=json","number":"","amendmentNumber":"754","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"848","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5016","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-14","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","url":"https://api.congress.gov/v3/bill/118/sjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"849","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5017","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-04-05","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 553.","type":"S","title":"Land Between the Lakes Recreation and Heritage Act","url":"https://api.congress.gov/v3/bill/117/s/3997?format=json","number":"3997","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"850","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5018","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-12","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S2366)","type":"S","title":"Federal Prisons Accountability Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2284?format=json","number":"2284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"851","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5019","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2023-06-14","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2099)","type":"S","title":"CAREER Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1991?format=json","number":"1991","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"852","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5020","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-11-17","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","type":"S","title":"Mammoth Cave National Park Boundary Adjustment Act of 2022","url":"https://api.congress.gov/v3/bill/117/s/5129?format=json","number":"5129","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"853","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5021","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","introducedDate":"2023-02-02","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S240; text: CR S238-239)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Eighteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/118/sres/31?format=json","number":"31","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"854","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5022","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to increase the standard charitable mileage rate for delivery of meals to elderly, disabled, frail, and at-risk individuals.","url":"https://api.congress.gov/v3/bill/119/s/895?format=json","number":"895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"855","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5023","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Housing Act of 1949 to permit certain grants to be used for accessory dwelling units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/686?format=json","number":"686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"856","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5024","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1158?format=json","number":"","amendmentNumber":"1158","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"857","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5025","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/967?format=json","number":"","amendmentNumber":"967","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"858","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5026","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/968?format=json","number":"","amendmentNumber":"968","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"859","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5027","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/949?format=json","number":"","amendmentNumber":"949","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"860","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5028","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/950?format=json","number":"","amendmentNumber":"950","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"861","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5029","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/720?format=json","number":"","amendmentNumber":"720","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"862","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5030","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/716?format=json","number":"","amendmentNumber":"716","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"863","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5031","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/718?format=json","number":"","amendmentNumber":"718","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"864","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5032","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/719?format=json","number":"","amendmentNumber":"719","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"865","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5033","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/721?format=json","number":"","amendmentNumber":"721","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"866","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5034","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/717?format=json","number":"","amendmentNumber":"717","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"867","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5035","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/455?format=json","number":"","amendmentNumber":"455","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"868","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5036","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/452?format=json","number":"","amendmentNumber":"452","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"869","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5037","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/453?format=json","number":"","amendmentNumber":"453","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"870","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5038","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/364?format=json","number":"","amendmentNumber":"364","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"871","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5039","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/365?format=json","number":"","amendmentNumber":"365","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"872","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5040","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/363?format=json","number":"","amendmentNumber":"363","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"873","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5041","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/345?format=json","number":"","amendmentNumber":"345","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"874","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5042","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act to establish a process for science-focused drug development meetings led by the Reagan-Udall Foundation for the Food and Drug Administration with respect to drugs for rare diseases and conditions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"875","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"876","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5044","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to recognize Indian tribal governments for purposes of determining under the adoption credit whether a child has special needs.","url":"https://api.congress.gov/v3/bill/119/s/757?format=json","number":"757","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"877","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5045","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to support the establishment of an apprenticeship college consortium.","url":"https://api.congress.gov/v3/bill/119/s/758?format=json","number":"758","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"878","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"879","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5047","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide incentives to physicians to practice in rural and medically underserved communities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/709?format=json","number":"709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"880","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"881","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5049","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/507?format=json","number":"","amendmentNumber":"507","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"882","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5050","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/511?format=json","number":"","amendmentNumber":"511","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"883","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5051","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/506?format=json","number":"","amendmentNumber":"506","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"884","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5052","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/509?format=json","number":"","amendmentNumber":"509","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"885","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5053","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/505?format=json","number":"","amendmentNumber":"505","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"886","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5054","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/508?format=json","number":"","amendmentNumber":"508","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"887","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5055","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/510?format=json","number":"","amendmentNumber":"510","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"888","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5056","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/497?format=json","number":"","amendmentNumber":"497","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"889","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5057","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/500?format=json","number":"","amendmentNumber":"500","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"890","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5058","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/498?format=json","number":"","amendmentNumber":"498","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"891","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5059","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/501?format=json","number":"","amendmentNumber":"501","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"892","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5060","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/502?format=json","number":"","amendmentNumber":"502","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"893","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5061","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/495?format=json","number":"","amendmentNumber":"495","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"894","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5062","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to provide for a memorandum of understanding to address the impacts of a certain record of decision on the Upper Colorado River Basin Fund.","url":"https://api.congress.gov/v3/bill/119/s/887?format=json","number":"887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"895","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5063","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to abolish the Board of Governors of the Federal Reserve System and the Federal reserve banks, to repeal the Federal Reserve Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/869?format=json","number":"869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"896","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"897","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5065","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Government Spectrum Valuation Act","url":"https://api.congress.gov/v3/bill/119/s/792?format=json","number":"792","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"898","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5066","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require the Assistant Secretary of Commerce for Communications and Information to audit Federal spectrum.","url":"https://api.congress.gov/v3/bill/119/s/794?format=json","number":"794","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"899","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"900","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5068","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to provide for fiscal accountability, to require institutions of higher education to publish information regarding student success, to provide for school accountability for student loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"901","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5069","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Right to Financial Privacy Act of 1978 to preserve the confidentiality of certain records, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/809?format=json","number":"809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"902","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5070","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require certain interactive computer services to adopt and operate technology verification measures to ensure that users of the platform are not minors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/737?format=json","number":"737","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"903","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"904","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5072","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 922 agreed to in Senate by Yea-Nay Vote. 53 - 47. Record Vote Number: 85.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/922?format=json","number":"","amendmentNumber":"922","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"905","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5073","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/919?format=json","number":"","amendmentNumber":"919","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"906","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5074","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/921?format=json","number":"","amendmentNumber":"921","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"907","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5075","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/918?format=json","number":"","amendmentNumber":"918","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"908","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5076","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/920?format=json","number":"","amendmentNumber":"920","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"909","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5077","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/915?format=json","number":"","amendmentNumber":"915","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"910","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5078","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/917?format=json","number":"","amendmentNumber":"917","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"911","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5079","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/916?format=json","number":"","amendmentNumber":"916","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"912","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5080","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to terminate membership by the United States in the United Nations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"913","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5081","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve retrospective reviews of Federal regulations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/644?format=json","number":"644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"914","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"915","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5083","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to pilot the use of image technician positions in the U.S. Customs and Border Protection Office of Field Operations.","url":"https://api.congress.gov/v3/bill/119/s/578?format=json","number":"578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"916","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5084","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify the Methane Emissions Reduction Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/514?format=json","number":"514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"917","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5085","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for modifications to ending trafficking in government contracting, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/426?format=json","number":"426","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"918","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5086","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to maintain the prohibition on allowing any deduction or credit associated with a trade or business involved in trafficking marijuana.","url":"https://api.congress.gov/v3/bill/119/s/471?format=json","number":"471","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"919","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5087","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S596-597)","type":"SRES","title":"A resolution recognizing religious freedom as a fundamental right, expressing support for international religious freedom as a cornerstone of United States foreign policy, and expressing concern over increased threats to and attacks on religious freedom around the world.","url":"https://api.congress.gov/v3/bill/119/sres/52?format=json","number":"52","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"920","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5088","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Investing in Community Resilience Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/372?format=json","number":"372","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"921","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5089","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stopping Political Discrimination in Disaster Assistance Act","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"922","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5090","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Direct Property Acquisitions Act","url":"https://api.congress.gov/v3/bill/119/s/374?format=json","number":"374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"923","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5091","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Expediting Hazard Mitigation Assistance Projects Act","url":"https://api.congress.gov/v3/bill/119/s/378?format=json","number":"378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"924","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5092","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Charitable Act","url":"https://api.congress.gov/v3/bill/119/s/317?format=json","number":"317","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"925","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5093","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Emergency Management","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Natural Disaster Resilience and Recovery Accountability Act","url":"https://api.congress.gov/v3/bill/119/s/270?format=json","number":"270","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"926","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5094","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Budget.","type":"S","title":"Fairness for Crime Victims Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/285?format=json","number":"285","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"927","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5095","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Promoting Domestic Energy Production Act","url":"https://api.congress.gov/v3/bill/119/s/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"928","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"929","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"930","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5098","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-15","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 52 - 47. Record Vote Number: 11. (CR S294-295)","type":"S","title":"Born-Alive Abortion Survivors Protection Act","url":"https://api.congress.gov/v3/bill/119/s/6?format=json","number":"6","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"931","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5099","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Telework Reform Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/82?format=json","number":"82","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"932","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5100","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SMART Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/76?format=json","number":"76","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"933","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5101","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Improving Federal Financial Management Act","url":"https://api.congress.gov/v3/bill/119/s/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"934","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"935","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"936","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5104","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Infrastructure Investment and Jobs Act to require the Secretary of Energy to establish an abandoned wells research, development, and demonstration program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/818?format=json","number":"818","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"937","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5105","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to amend regulations to allow for certain packers to have an interest in market agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"938","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5106","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to increase the accountability of the Office of Special Counsel in enforcing certain provisions of that title vigorously, consistently, and without regard to the political affiliation, career status, or personal characteristics of individuals subject to those provisions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/806?format=json","number":"806","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"939","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5107","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/996?format=json","number":"","amendmentNumber":"996","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"940","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5108","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/997?format=json","number":"","amendmentNumber":"997","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"941","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5109","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/998?format=json","number":"","amendmentNumber":"998","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"942","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5110","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 957 not agreed to in Senate by Yea-Nay Vote. 47 - 53. Record Vote Number: 84.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/957?format=json","number":"","amendmentNumber":"957","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"943","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5111","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/697?format=json","number":"","amendmentNumber":"697","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"944","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5112","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 699 not agreed to in Senate by Yea-Nay Vote. 48 - 52. Record Vote Number: 81.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/699?format=json","number":"","amendmentNumber":"699","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"945","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5113","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/700?format=json","number":"","amendmentNumber":"700","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"946","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5114","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/698?format=json","number":"","amendmentNumber":"698","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"947","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5115","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/695?format=json","number":"","amendmentNumber":"695","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"948","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5116","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/696?format=json","number":"","amendmentNumber":"696","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"949","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5117","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/688?format=json","number":"","amendmentNumber":"688","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"950","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5118","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/694?format=json","number":"","amendmentNumber":"694","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"951","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5119","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/692?format=json","number":"","amendmentNumber":"692","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"952","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5120","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/689?format=json","number":"","amendmentNumber":"689","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"953","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5121","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/690?format=json","number":"","amendmentNumber":"690","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"954","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"955","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5123","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture to convey the Pleasant Valley Ranger District Administrative Site to Gila County, Arizona.","url":"https://api.congress.gov/v3/bill/119/s/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"956","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5124","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1126?format=json","number":"","amendmentNumber":"1126","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"957","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5125","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1125?format=json","number":"","amendmentNumber":"1125","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"958","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5126","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/985?format=json","number":"","amendmentNumber":"985","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"959","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5127","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 984 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/984?format=json","number":"","amendmentNumber":"984","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"960","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5128","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/986?format=json","number":"","amendmentNumber":"986","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"961","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5129","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/489?format=json","number":"","amendmentNumber":"489","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"962","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5130","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/488?format=json","number":"","amendmentNumber":"488","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"963","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5131","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/324?format=json","number":"","amendmentNumber":"324","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"964","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5132","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/329?format=json","number":"","amendmentNumber":"329","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"965","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5133","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/326?format=json","number":"","amendmentNumber":"326","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"966","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5134","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/327?format=json","number":"","amendmentNumber":"327","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"967","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5135","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/330?format=json","number":"","amendmentNumber":"330","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"968","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5136","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/331?format=json","number":"","amendmentNumber":"331","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"969","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5137","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/323?format=json","number":"","amendmentNumber":"323","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"970","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5138","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/332?format=json","number":"","amendmentNumber":"332","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"971","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5139","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/328?format=json","number":"","amendmentNumber":"328","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"972","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5140","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/322?format=json","number":"","amendmentNumber":"322","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"973","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5141","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/325?format=json","number":"","amendmentNumber":"325","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"974","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5142","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1000?format=json","number":"","amendmentNumber":"1000","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"975","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5143","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/969?format=json","number":"","amendmentNumber":"969","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"976","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5144","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/905?format=json","number":"","amendmentNumber":"905","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"977","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5145","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/904?format=json","number":"","amendmentNumber":"904","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"978","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5146","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/528?format=json","number":"","amendmentNumber":"528","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"979","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5147","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/529?format=json","number":"","amendmentNumber":"529","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"980","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5148","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/527?format=json","number":"","amendmentNumber":"527","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"981","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5149","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution supporting the goals and ideals of Korean American Day.","url":"https://api.congress.gov/v3/bill/119/sres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"982","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5150","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-21","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Foreign Affairs, Financial Services, Ways and Means, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"National Security Officials’ Foreign Employment Disclosure Act","url":"https://api.congress.gov/v3/bill/118/hr/10224?format=json","number":"10224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"983","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5151","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stop Militarizing Our Streets Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9266?format=json","number":"9266","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"984","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5152","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","introducedDate":"2024-06-28","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide that certain payments to foreign related parties subject to sufficient foreign tax are not treated as base erosion payments.","url":"https://api.congress.gov/v3/bill/118/hr/8895?format=json","number":"8895","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"985","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5153","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-05-10","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"BUILD Veterans Businesses Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8357?format=json","number":"8357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"986","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5154","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-07","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Enhanced Cybersecurity for SNAP Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7585?format=json","number":"7585","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"987","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5155","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-09","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Protecting our Veterans’ Memories Act","url":"https://api.congress.gov/v3/bill/118/hr/6343?format=json","number":"6343","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"988","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5156","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Responsible Gun Ownership Licensing Act","url":"https://api.congress.gov/v3/bill/118/hr/6154?format=json","number":"6154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"989","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5157","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-22","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"American Volunteering Corporation Act","url":"https://api.congress.gov/v3/bill/118/hr/5680?format=json","number":"5680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"990","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5158","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-22","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"A Chance To Serve Act","url":"https://api.congress.gov/v3/bill/118/hr/5682?format=json","number":"5682","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"991","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5159","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-22","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To expand opportunities for employment of recent graduates in Federal Government positions, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5681?format=json","number":"5681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"992","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5160","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","introducedDate":"2023-09-22","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Learn and Serve America Reinvestment Act","url":"https://api.congress.gov/v3/bill/118/hr/5679?format=json","number":"5679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"993","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5161","labels":["Legislation"],"properties":{"sponsored_by":"K000394","congress":"118","introducedDate":"2023-09-22","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Service Starts At Home Act","url":"https://api.congress.gov/v3/bill/118/hr/5678?format=json","number":"5678","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"994","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5162","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize the National Flood Insurance Program.","url":"https://api.congress.gov/v3/bill/119/s/824?format=json","number":"824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"995","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5163","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to enhance compliance with hospital price transparency requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"996","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5164","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1222?format=json","number":"","amendmentNumber":"1222","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"997","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5165","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1162?format=json","number":"","amendmentNumber":"1162","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"998","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5166","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1163?format=json","number":"","amendmentNumber":"1163","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"999","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5167","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1164?format=json","number":"","amendmentNumber":"1164","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1000","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5168","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1165?format=json","number":"","amendmentNumber":"1165","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1001","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1002","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1003","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5171","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the independent and objective conduct and supervision of audits and investigations relating to the programs and operations funded with amounts appropriated or otherwise made available to Ukraine for military, economic, and humanitarian aid.","url":"https://api.congress.gov/v3/bill/119/s/682?format=json","number":"682","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1004","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5172","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 36, United States Code, to revise the Federal charter for the Foundation of the Federal Bar Association.","url":"https://api.congress.gov/v3/bill/119/s/616?format=json","number":"616","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1005","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5173","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Environmental Protection Agency from using assessments generated by the Integrated Risk Information System as a tier 1 data source in rulemakings and other regulatory, enforcement, or permitting actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/623?format=json","number":"623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1006","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5174","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Trichloroethylene (TCE); Regulation Under the Toxic Substances Control Act (TSCA)\".","url":"https://api.congress.gov/v3/bill/119/sjres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1007","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5175","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Securities Exchange Act of 1934 to expand access to capital for rural-area small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/577?format=json","number":"577","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1008","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1009","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5177","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to prohibit Federal funding for the Corporation for Public Broadcasting, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/519?format=json","number":"519","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1010","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5178","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to implement a minimum work requirement for able-bodied adults enrolled in State Medicaid programs.","url":"https://api.congress.gov/v3/bill/119/s/447?format=json","number":"447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1011","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1012","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5180","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Controlled Substances Act and the Controlled Substances Import and Export Act to modify the offenses relating to fentanyl, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/477?format=json","number":"477","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1013","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5181","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-04","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Ocean Energy Management relating to \"Protection of Marine Archaeological Resources\".","url":"https://api.congress.gov/v3/bill/119/sjres/11?format=json","number":"11","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:21:55"}}} +{"type":"relationship","id":"1014","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5182","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to authorize the Caribbean Basin Security Initiative, to enhance the United States-Caribbean security partnership, to prioritize natural disaster resilience, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/820?format=json","number":"820","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1015","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5183","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1213?format=json","number":"","amendmentNumber":"1213","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1016","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5184","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/982?format=json","number":"","amendmentNumber":"982","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1017","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5185","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/983?format=json","number":"","amendmentNumber":"983","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1018","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5186","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/978?format=json","number":"","amendmentNumber":"978","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1019","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5187","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/909?format=json","number":"","amendmentNumber":"909","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1020","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5188","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/639?format=json","number":"","amendmentNumber":"639","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1021","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5189","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/638?format=json","number":"","amendmentNumber":"638","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1022","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5190","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/412?format=json","number":"","amendmentNumber":"412","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1023","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5191","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/403?format=json","number":"","amendmentNumber":"403","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1024","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5192","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/398?format=json","number":"","amendmentNumber":"398","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1025","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5193","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/400?format=json","number":"","amendmentNumber":"400","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1026","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5194","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/399?format=json","number":"","amendmentNumber":"399","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1027","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5195","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/401?format=json","number":"","amendmentNumber":"401","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1028","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5196","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/396?format=json","number":"","amendmentNumber":"396","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1029","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5197","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/402?format=json","number":"","amendmentNumber":"402","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1030","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5198","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/397?format=json","number":"","amendmentNumber":"397","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1031","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5199","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/395?format=json","number":"","amendmentNumber":"395","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1032","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5200","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/394?format=json","number":"","amendmentNumber":"394","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1033","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5201","labels":["Legislation"],"properties":{"sponsored_by":"K000384","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/393?format=json","number":"","amendmentNumber":"393","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1034","label":"SPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5202","labels":["Legislation"],"properties":{"sponsored_by":"H001104","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-03-03","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Air Plan Approval; Ohio; Withdrawal of Technical Amendment\".","url":"https://api.congress.gov/v3/bill/119/sjres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1035","label":"SPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1036","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5204","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act to provide for the inspection of foreign facilities that manufacture, process, pack, or hold shrimp for consumption in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/667?format=json","number":"667","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1037","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5205","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to direct the Secretary of Health and Human Services to establish an Office of Rural Health, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/403?format=json","number":"403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1038","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5206","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the CARES Act to remove a requirement on lessors to provide notice to vacate, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/470?format=json","number":"470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1039","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5207","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Saving American Workers’ Benefits Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/268?format=json","number":"268","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1040","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1041","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5209","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Promoting New Bank Formation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/113?format=json","number":"113","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1042","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5210","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-01-26","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"SAVE Moms and Babies Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/95?format=json","number":"95","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1043","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5211","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6459)","type":"SRES","title":"A resolution designating the week of September 22 through September 28, 2024, as \"Gold Star Families Remembrance Week\".","url":"https://api.congress.gov/v3/bill/118/sres/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1044","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5212","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S5946; text: 08/01/2024 CR S5786-5787)","type":"SRES","title":"A resolution designating September 25, 2024, as \"National Ataxia Awareness Day\", and raising awareness of ataxia, ataxia research, and the search for a cure.","url":"https://api.congress.gov/v3/bill/118/sres/794?format=json","number":"794","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1045","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5213","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"IDeA Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4968?format=json","number":"4968","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1046","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5214","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2310?format=json","number":"","amendmentNumber":"2310","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1047","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5215","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-13","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","type":"SRES","title":"A resolution honoring the life and legacy of Patrick Gottsch.","url":"https://api.congress.gov/v3/bill/118/sres/733?format=json","number":"733","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1048","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5216","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-13","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"RESTORE Act","url":"https://api.congress.gov/v3/bill/118/s/4533?format=json","number":"4533","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1049","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1050","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5218","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"SERVE Act","url":"https://api.congress.gov/v3/bill/118/s/2076?format=json","number":"2076","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1051","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5219","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-07","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 597.","type":"S","title":"Grand Village of the Natchez Indians and Jefferson College Affiliated Areas Establishment Act","url":"https://api.congress.gov/v3/bill/118/s/3241?format=json","number":"3241","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1052","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5220","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Health Sustainability Act","url":"https://api.congress.gov/v3/bill/118/s/4201?format=json","number":"4201","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1053","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5221","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-07-26","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1064?format=json","number":"","amendmentNumber":"1064","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1054","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5222","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/369?format=json","number":"","amendmentNumber":"369","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1055","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5223","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-18","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Gun Owner Registration Information Protection Act","url":"https://api.congress.gov/v3/bill/118/s/1680?format=json","number":"1680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1056","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5224","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Reducing the Federal Workforce Through Attrition Act","url":"https://api.congress.gov/v3/bill/119/s/295?format=json","number":"295","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1057","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5225","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"GOOD Act","url":"https://api.congress.gov/v3/bill/119/s/252?format=json","number":"252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1058","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5226","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"CURD Act","url":"https://api.congress.gov/v3/bill/119/s/184?format=json","number":"184","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1059","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5227","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Midnight Rules Relief Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/164?format=json","number":"164","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1060","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5228","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Stopping Overdoses of Fentanyl Analogues Act","url":"https://api.congress.gov/v3/bill/119/s/165?format=json","number":"165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1061","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5229","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Reducing the Size of the Federal Government Through Attrition Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5608?format=json","number":"5608","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1062","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5230","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Treat Act","url":"https://api.congress.gov/v3/bill/118/s/5481?format=json","number":"5481","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1063","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5231","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Interstate Commerce Simplification Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5158?format=json","number":"5158","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1064","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5232","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3141?format=json","number":"","amendmentNumber":"3141","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1065","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5233","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2819?format=json","number":"","amendmentNumber":"2819","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1066","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5234","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2820?format=json","number":"","amendmentNumber":"2820","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1067","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5235","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2821?format=json","number":"","amendmentNumber":"2821","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1068","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5236","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2817?format=json","number":"","amendmentNumber":"2817","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1069","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5237","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2818?format=json","number":"","amendmentNumber":"2818","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1070","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5238","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2339?format=json","number":"","amendmentNumber":"2339","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1071","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5239","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4564)","type":"SRES","title":"A resolution expressing support for the designation of July 2024 as \"National Sarcoma Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/sres/764?format=json","number":"764","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1072","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5240","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Midnight Rules Relief Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4485?format=json","number":"4485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1073","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5241","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-05-02","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1947?format=json","number":"","amendmentNumber":"1947","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1074","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5242","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"Amendment SA 1706 proposed by Senator Johnson. (consideration: CR S2582) To prohibit the disbursement of certain Federal funding to local jurisdictions that refuse to provide advance notice to the Department of Homeland Security regarding the release of illegal aliens from local custody.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1706?format=json","number":"","amendmentNumber":"1706","latestAction":"","latestAction_actionDate":"2024-03-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1075","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5243","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1705?format=json","number":"","amendmentNumber":"1705","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1076","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5244","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Consolidated Farm and Rural Development Act to modify limitations on amounts of farm ownership loans and operating loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/899?format=json","number":"899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1077","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1078","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5246","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend title 49, United States Code, to provide for air traffic control training improvements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/697?format=json","number":"697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1079","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5247","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to contribute funds and artifacts to the Theodore Roosevelt Presidential Library in Medora, North Dakota.","url":"https://api.congress.gov/v3/bill/119/s/675?format=json","number":"675","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1080","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1081","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5249","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the Secretary of the Air Force to establish a permanent program to provide tuition assistance to members of the Air National Guard.","url":"https://api.congress.gov/v3/bill/119/s/489?format=json","number":"489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1082","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1083","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5251","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-15","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S196; text: CR S186-187)","type":"SRES","title":"A resolution congratulating the North Dakota State University Bison football team for winning the 2024 National Collegiate Athletic Association Division I Football Championship Subdivision title.","url":"https://api.congress.gov/v3/bill/119/sres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1084","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5252","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-03-30","latestAction_text":"Held at the desk.","type":"S","title":"North Dakota Trust Lands Completion Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1088?format=json","number":"1088","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:04:56"}}} +{"type":"relationship","id":"1085","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5253","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-12-17","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/118/sjres/122?format=json","number":"122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1086","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5254","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating October 26, 2024, as the \"Day of the Deployed\".","url":"https://api.congress.gov/v3/bill/118/sres/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1087","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5255","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Animals","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6382; text: CR S6375)","type":"SRES","title":"A resolution designating November 2, 2024, as \"National Bison Day\".","url":"https://api.congress.gov/v3/bill/118/sres/851?format=json","number":"851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1088","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5256","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2024-09-09","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 637.","type":"S","title":"Dakota Water Resources Act Amendments of 2024","url":"https://api.congress.gov/v3/bill/118/s/4996?format=json","number":"4996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1089","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5257","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3132?format=json","number":"","amendmentNumber":"3132","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1090","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5258","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2234?format=json","number":"","amendmentNumber":"2234","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1091","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5259","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2236?format=json","number":"","amendmentNumber":"2236","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1092","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5260","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2235?format=json","number":"","amendmentNumber":"2235","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1093","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5261","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-13","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"United States-Israel Agriculture Cooperation Improvement and Expansion Act","url":"https://api.congress.gov/v3/bill/118/s/4551?format=json","number":"4551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1094","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5262","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-21","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Livestock Disaster Relief Act","url":"https://api.congress.gov/v3/bill/118/s/2097?format=json","number":"2097","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1095","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1096","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5264","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to improve the repayment by the Secretary of Veterans Affairs of benefits misused by a fiduciary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1097","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1098","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5266","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill for the relief of Vichai Sae Tung (also known as Chai Chaowasaree).","url":"https://api.congress.gov/v3/bill/119/s/716?format=json","number":"716","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1099","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5267","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the clean fuel production credit to provide a special rate for sustainable vessel fuel.","url":"https://api.congress.gov/v3/bill/119/s/692?format=json","number":"692","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1100","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5268","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/977?format=json","number":"","amendmentNumber":"977","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1101","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5269","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/825?format=json","number":"","amendmentNumber":"825","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1102","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5270","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/475?format=json","number":"","amendmentNumber":"475","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1103","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5271","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/259?format=json","number":"","amendmentNumber":"259","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1104","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5272","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/258?format=json","number":"","amendmentNumber":"258","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1105","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5273","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/254?format=json","number":"","amendmentNumber":"254","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1106","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5274","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/159?format=json","number":"","amendmentNumber":"159","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1107","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5275","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/158?format=json","number":"","amendmentNumber":"158","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1108","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5276","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/153?format=json","number":"","amendmentNumber":"153","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1109","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5277","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/154?format=json","number":"","amendmentNumber":"154","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1110","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5278","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/156?format=json","number":"","amendmentNumber":"156","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1111","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5279","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/157?format=json","number":"","amendmentNumber":"157","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1112","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5280","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/155?format=json","number":"","amendmentNumber":"155","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1113","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5281","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/141?format=json","number":"","amendmentNumber":"141","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1114","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5282","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/135?format=json","number":"","amendmentNumber":"135","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1115","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5283","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/140?format=json","number":"","amendmentNumber":"140","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1116","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5284","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to require the Secretary of Health and Human Services to carry out a pilot program to support evidence-based mental health peer support activities for students.","url":"https://api.congress.gov/v3/bill/119/s/906?format=json","number":"906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1117","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5285","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1140?format=json","number":"","amendmentNumber":"1140","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1118","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5286","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1044?format=json","number":"","amendmentNumber":"1044","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1119","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5287","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/945?format=json","number":"","amendmentNumber":"945","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1120","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5288","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/944?format=json","number":"","amendmentNumber":"944","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1121","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5289","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/939?format=json","number":"","amendmentNumber":"939","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1122","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5290","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/943?format=json","number":"","amendmentNumber":"943","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1123","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5291","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/937?format=json","number":"","amendmentNumber":"937","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1124","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5292","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/942?format=json","number":"","amendmentNumber":"942","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1125","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5293","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/936?format=json","number":"","amendmentNumber":"936","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1126","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5294","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/938?format=json","number":"","amendmentNumber":"938","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1127","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5295","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/940?format=json","number":"","amendmentNumber":"940","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1128","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5296","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/941?format=json","number":"","amendmentNumber":"941","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1129","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5297","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/932?format=json","number":"","amendmentNumber":"932","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1130","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5298","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/930?format=json","number":"","amendmentNumber":"930","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1131","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5299","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/933?format=json","number":"","amendmentNumber":"933","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1132","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5300","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/931?format=json","number":"","amendmentNumber":"931","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1133","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5301","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/927?format=json","number":"","amendmentNumber":"927","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1134","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5302","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/929?format=json","number":"","amendmentNumber":"929","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1135","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5303","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/928?format=json","number":"","amendmentNumber":"928","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1136","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1137","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5305","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify eligibility for 501(c)(3) status.","url":"https://api.congress.gov/v3/bill/119/s/497?format=json","number":"497","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1138","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5306","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"GENIUS Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/394?format=json","number":"394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1139","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5307","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of Federal funds to remove the border wall or to dispose of materials previously acquired by the Federal Government to construct the border wall.","url":"https://api.congress.gov/v3/bill/118/s/5542?format=json","number":"5542","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1140","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5308","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"Amendment SA 3299, not withstanding passage of the bill S.91, agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3299?format=json","number":"","amendmentNumber":"3299","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1141","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5309","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-09-24","policyArea_name":"","latestAction_text":"Amendment SA 3295 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3295?format=json","number":"","amendmentNumber":"3295","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1142","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5310","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-09-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Defending American Property Abroad Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5137?format=json","number":"5137","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1143","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5311","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-19","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Accredited Investor Definition Review Act","url":"https://api.congress.gov/v3/bill/118/s/5121?format=json","number":"5121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1144","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5312","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2769?format=json","number":"","amendmentNumber":"2769","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1145","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5313","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2358?format=json","number":"","amendmentNumber":"2358","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1146","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5314","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2338?format=json","number":"","amendmentNumber":"2338","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1147","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5315","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2166?format=json","number":"","amendmentNumber":"2166","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1148","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5316","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-12","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Consumer Financial Protection Bureau Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4521?format=json","number":"4521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1149","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1150","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5318","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-03","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Transparency in Debt Issuance Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4439?format=json","number":"4439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1151","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5319","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reshape Alternatives to Detention Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4364?format=json","number":"4364","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1152","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5320","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-02","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require the head of each agency to submit to Congress and make publicly available information relating to the implementation of Executive Order 14019.","url":"https://api.congress.gov/v3/bill/118/s/4239?format=json","number":"4239","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"1153","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5321","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-05-01","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1929?format=json","number":"","amendmentNumber":"1929","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1154","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5322","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-04-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1864?format=json","number":"","amendmentNumber":"1864","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1155","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5323","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","introducedDate":"2024-04-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1865?format=json","number":"","amendmentNumber":"1865","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1156","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5324","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to accelerate workplace time-to-contract under the National Labor Relations Act.","url":"https://api.congress.gov/v3/bill/119/s/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1157","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5325","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit conflicts of interest among consulting firms that simultaneously contract with China or other covered foreign entities and the United States Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/731?format=json","number":"731","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1158","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5326","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/739?format=json","number":"","amendmentNumber":"739","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1159","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5327","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/516?format=json","number":"","amendmentNumber":"516","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1160","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5328","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/517?format=json","number":"","amendmentNumber":"517","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1161","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5329","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/518?format=json","number":"","amendmentNumber":"518","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1162","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5330","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate America's National Churchill Museum National Historic Landmark, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/650?format=json","number":"650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1163","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5331","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish the Office of the Inspector General for Ukraine, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/671?format=json","number":"671","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1164","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5332","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reauthorizing Support and Treatment for Officers in Crisis Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/419?format=json","number":"419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1165","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5333","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Jamie Reed Protecting Our Kids from Child Abuse Act","url":"https://api.congress.gov/v3/bill/119/s/312?format=json","number":"312","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1166","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5334","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Decoupling America's Artificial Intelligence Capabilities from China Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/321?format=json","number":"321","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1167","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5335","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","policyArea_name":"Labor and Employment","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Radiation Exposure Compensation Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/243?format=json","number":"243","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1168","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5336","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/91?format=json","number":"","amendmentNumber":"91","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1169","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5337","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"End Taxpayer Funding for Abortion Providers Act","url":"https://api.congress.gov/v3/bill/119/s/125?format=json","number":"125","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1170","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5338","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/52?format=json","number":"","amendmentNumber":"52","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1171","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5339","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defense of Conscience in Health Care Act","url":"https://api.congress.gov/v3/bill/119/s/47?format=json","number":"47","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1172","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5340","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (consideration: CR S7335-7336)","type":"SRES","title":"A resolution honoring the lives and service of Natalie and Davy Lloyd and expressing condolences to the family of Natalie and Davy Lloyd.","url":"https://api.congress.gov/v3/bill/118/sres/940?format=json","number":"940","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1173","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5341","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"End Airline Extortion Act","url":"https://api.congress.gov/v3/bill/118/s/5470?format=json","number":"5470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1174","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5342","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 743.","type":"S","title":"A bill to require a report by the Secretary of Homeland Security regarding the failed assassination attempt on the life of Donald J. Trump in Butler, Pennsylvania, on July 13, 2024.","url":"https://api.congress.gov/v3/bill/118/s/5105?format=json","number":"5105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1175","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5343","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Broadband Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/4930?format=json","number":"4930","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1176","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5344","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1232?format=json","number":"","amendmentNumber":"1232","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1177","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5345","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"REPORT Act","url":"https://api.congress.gov/v3/bill/119/s/848?format=json","number":"848","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1178","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5346","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/119/s/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1179","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5347","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend section 324 of the Robert T. Stafford Disaster Relief and Emergency Assistance Act to incentivize States, Indian Tribes, and Territories to close disaster recovery projects by authorizing the use of excess funds for management costs for other disaster recovery projects.","url":"https://api.congress.gov/v3/bill/119/s/773?format=json","number":"773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1180","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5348","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1215?format=json","number":"","amendmentNumber":"1215","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1181","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5349","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish an integrated project team to improve the process for scheduling appointments for health care from the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/607?format=json","number":"607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1182","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5350","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Fair Credit Reporting Act to address the placement of security freezes for protected consumers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/619?format=json","number":"619","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1183","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5351","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Rural Obstetrics Readiness Act","url":"https://api.congress.gov/v3/bill/119/s/380?format=json","number":"380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1184","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5352","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Improving Veteran Access to Care Act","url":"https://api.congress.gov/v3/bill/118/s/5624?format=json","number":"5624","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1185","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5353","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-12-12","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Multigenerational Care and Support Act","url":"https://api.congress.gov/v3/bill/118/s/5511?format=json","number":"5511","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1186","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5354","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Closing the Contraception Coverage Gap Act","url":"https://api.congress.gov/v3/bill/118/s/5445?format=json","number":"5445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1187","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5355","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-20","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Coin Metal Modification Authorization and Cost Savings Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1228?format=json","number":"1228","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1188","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5356","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Held at the desk.","title":"DETERRENCE Act","type":"S","url":"https://api.congress.gov/v3/bill/118/s/5398?format=json","number":"5398","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":"18:26:49"}}} +{"type":"relationship","id":"1189","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5357","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-11-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Hospital Flexibility Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5308?format=json","number":"5308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1190","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5358","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Government Service Delivery Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/5077?format=json","number":"5077","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1191","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5359","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-09-18","policyArea_name":"Immigration","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 684.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/118/s/5092?format=json","number":"5092","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1192","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5360","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6382; text: 09/12/2024 CR S6022)","type":"SRES","title":"A resolution supporting the designation of September 20, 2024, as \"National Concussion Awareness Day\".","url":"https://api.congress.gov/v3/bill/118/sres/812?format=json","number":"812","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1193","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5361","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-07-31","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Credit Freeze for Newborns Act","url":"https://api.congress.gov/v3/bill/118/s/4916?format=json","number":"4916","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1194","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5362","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-25","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Flowers for Fallen Heroes Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4787?format=json","number":"4787","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1195","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5363","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3007?format=json","number":"","amendmentNumber":"3007","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1196","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5364","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1127?format=json","number":"","amendmentNumber":"1127","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1197","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5365","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1128?format=json","number":"","amendmentNumber":"1128","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1198","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5366","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/900?format=json","number":"","amendmentNumber":"900","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1199","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5367","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/897?format=json","number":"","amendmentNumber":"897","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1200","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5368","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/899?format=json","number":"","amendmentNumber":"899","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1201","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5369","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/898?format=json","number":"","amendmentNumber":"898","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1202","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5370","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/896?format=json","number":"","amendmentNumber":"896","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1203","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5371","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/411?format=json","number":"","amendmentNumber":"411","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1204","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5372","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/302?format=json","number":"","amendmentNumber":"302","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1205","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5373","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/301?format=json","number":"","amendmentNumber":"301","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1206","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5374","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/103?format=json","number":"","amendmentNumber":"103","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1207","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5375","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/102?format=json","number":"","amendmentNumber":"102","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1208","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5376","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"Amendment SA 101 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/101?format=json","number":"","amendmentNumber":"101","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1209","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5377","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/99?format=json","number":"","amendmentNumber":"99","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1210","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5378","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/100?format=json","number":"","amendmentNumber":"100","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1211","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5379","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-13","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Rio San José and Rio Jemez Water Settlements Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/562?format=json","number":"562","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1212","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5380","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Ohkay Owingeh Rio Chama Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/563?format=json","number":"563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1213","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5381","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Zuni Indian Tribe Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/564?format=json","number":"564","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1214","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5382","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Navajo Nation Rio San José Stream System Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/565?format=json","number":"565","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1215","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5383","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S527; text: CR S525-526)","type":"SRES","title":"A resolution designating the week beginning February 3, 2025, as \"National Tribal Colleges and Universities Week\".","url":"https://api.congress.gov/v3/bill/119/sres/49?format=json","number":"49","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1216","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5384","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"","latestAction_text":"Referred to the Committee on the Judiciary.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1229?format=json","number":"","amendmentNumber":"1229","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1217","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5385","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"","latestAction_text":"Referred to the Committee on the Judiciary.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1230?format=json","number":"","amendmentNumber":"1230","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1218","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1219","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1220","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1221","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1222","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5390","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136)","type":"SRES","title":"A resolution designating March 7, 2025, as \"National Speech and Debate Education Day\".","url":"https://api.congress.gov/v3/bill/119/sres/88?format=json","number":"88","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1223","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5391","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to reauthorize and expand the National Threat Assessment Center of the Department of Homeland Security.","url":"https://api.congress.gov/v3/bill/119/s/560?format=json","number":"560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1224","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5392","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"OPTN Fee Collection Authority Act","url":"https://api.congress.gov/v3/bill/119/s/532?format=json","number":"532","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1225","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5393","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prevent unfair and deceptive acts or practices and the dissemination of false information related to pharmacy benefit management services for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/526?format=json","number":"526","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1226","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5394","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Federal Trade Commission to study the role of intermediaries in the pharmaceutical supply chain and provide Congress with appropriate policy recommendations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/527?format=json","number":"527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1227","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5395","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S799)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on the Judiciary.","url":"https://api.congress.gov/v3/bill/119/sres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1228","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5396","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Hospital Support Act","url":"https://api.congress.gov/v3/bill/119/s/335?format=json","number":"335","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1229","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5397","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-27","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S387-388; text: CR S397-398)","type":"SRES","title":"A resolution supporting the observation of National Trafficking and Modern Slavery Prevention Month during the period beginning on January 1, 2025, and ending on February 1, 2025, to raise awareness of, and opposition to, human trafficking and modern slavery.","url":"https://api.congress.gov/v3/bill/119/sres/39?format=json","number":"39","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1230","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5398","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting First Responders from Secondary Exposure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/180?format=json","number":"180","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1231","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5399","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/162?format=json","number":"162","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1232","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5400","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-02-01","latestAction_text":"Became Public Law No: 118-189.","type":"S","title":"A bill to amend the Controlled Substances Act to fix a technical error in the definitions.","url":"https://api.congress.gov/v3/bill/118/s/223?format=json","number":"223","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1233","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5401","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"DUE PROCESS Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5578?format=json","number":"5578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1234","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5402","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","introducedDate":"2024-12-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3335?format=json","number":"","amendmentNumber":"3335","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1235","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5403","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Open Payments Expansion Act","url":"https://api.congress.gov/v3/bill/118/s/5510?format=json","number":"5510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1236","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5404","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 28 East Airy Street in Norristown, Pennsylvania, as the \"Charles L. Blockson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/s/814?format=json","number":"814","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1237","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5405","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Federal Crop Insurance Act to require research and development regarding a policy to insure the production of mushrooms.","url":"https://api.congress.gov/v3/bill/119/s/741?format=json","number":"741","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1238","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5406","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038; text: CR S1042-1043)","type":"SRES","title":"A resolution congratulating the Philadelphia Eagles on their victory in Super Bowl LIX in the successful 105th season of the National Football League.","url":"https://api.congress.gov/v3/bill/119/sres/84?format=json","number":"84","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1239","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5407","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Banning SPR Oil Exports to Foreign Adversaries Act","url":"https://api.congress.gov/v3/bill/119/s/393?format=json","number":"393","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1240","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5408","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Whole-Home Repairs Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/127?format=json","number":"127","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1241","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5409","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-03","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to provide rules for payments to Havlish Settling Judgment Creditors.","url":"https://api.congress.gov/v3/bill/118/s/5413?format=json","number":"5413","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1242","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5410","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Affordable Mental Health Care for Selected Reserve Act","url":"https://api.congress.gov/v3/bill/118/s/5217?format=json","number":"5217","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1243","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5411","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Dennis and Lois Krisfalusy Act","url":"https://api.congress.gov/v3/bill/118/s/5221?format=json","number":"5221","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1244","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5412","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-26","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to name the community-based outpatient clinic of the Department of Veterans Affairs in Monroeville, Pennsylvania, as the \"Henry Parham VA Clinic\".","url":"https://api.congress.gov/v3/bill/118/s/2549?format=json","number":"2549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1245","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5413","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-09-18","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Tenants’ Right to Organize Act","url":"https://api.congress.gov/v3/bill/118/s/5087?format=json","number":"5087","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1246","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5414","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-12","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Washington’s Trail—1753 National Historic Trail Feasibility Study Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5051?format=json","number":"5051","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1247","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5415","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-03-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Railway Accountability Act","url":"https://api.congress.gov/v3/bill/118/s/1044?format=json","number":"1044","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1248","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5416","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2023-11-02","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration.","type":"SRES","title":"A resolution prohibiting Senators charged with certain criminal offenses from receiving classified information, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/sres/446?format=json","number":"446","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"1249","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5417","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2623?format=json","number":"","amendmentNumber":"2623","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1250","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5418","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2624?format=json","number":"","amendmentNumber":"2624","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1251","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5419","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-06-12","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Nutrition Red Tape Reduction Act","url":"https://api.congress.gov/v3/bill/118/s/4523?format=json","number":"4523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1252","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5420","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Reducing Regulatory Barriers to Housing Act","url":"https://api.congress.gov/v3/bill/118/s/4460?format=json","number":"4460","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1253","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5421","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2024-05-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"United States Senate Commission on Mental Health Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4312?format=json","number":"4312","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1254","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5422","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Promoting Affordable Connectivity Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4208?format=json","number":"4208","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1255","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5423","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/969?format=json","number":"","amendmentNumber":"969","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1256","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5424","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1433)","type":"SRES","title":"A resolution condemning the rejection by the United States of a United Nations resolution condemning the illegal invasion of Ukraine by the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/sres/103?format=json","number":"103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1257","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5425","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/293?format=json","number":"","amendmentNumber":"293","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1258","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5426","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/189?format=json","number":"","amendmentNumber":"189","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1259","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5427","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/188?format=json","number":"","amendmentNumber":"188","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1260","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5428","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/186?format=json","number":"","amendmentNumber":"186","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1261","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5429","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/183?format=json","number":"","amendmentNumber":"183","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1262","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5430","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/187?format=json","number":"","amendmentNumber":"187","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1263","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5431","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/184?format=json","number":"","amendmentNumber":"184","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1264","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5432","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/185?format=json","number":"","amendmentNumber":"185","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1265","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5433","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/182?format=json","number":"","amendmentNumber":"182","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1266","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5434","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/181?format=json","number":"","amendmentNumber":"181","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1267","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5435","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Shadow Wolves Improvement Act","url":"https://api.congress.gov/v3/bill/119/s/572?format=json","number":"572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1268","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5436","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Water Cybersecurity Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/10483?format=json","number":"10483","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1269","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5437","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Dads Matter Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10214?format=json","number":"10214","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1270","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5438","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To direct the heads of certain agencies to review and submit to Congress a report on public-private partnerships for combating the illicit fentanyl trade, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9434?format=json","number":"9434","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1271","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5439","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Foreign Affairs, Intelligence (Permanent Select), the Judiciary, and Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To establish a National Security Council Fentanyl Disruption Steering Group, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9435?format=json","number":"9435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1272","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5440","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to conduct a threat analysis of any potential threats the illicit fentanyl drug trade poses to the defense interests of the United States.","url":"https://api.congress.gov/v3/bill/118/hr/9433?format=json","number":"9433","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1273","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5441","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Keeping our Students in School Act","url":"https://api.congress.gov/v3/bill/118/hr/9307?format=json","number":"9307","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1274","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5442","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-07-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to include room air conditioners as qualified energy property for purposes of the energy efficient home improvement credit.","url":"https://api.congress.gov/v3/bill/118/hr/9065?format=json","number":"9065","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1275","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5443","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"118","introducedDate":"2024-06-28","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Voting Clarity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8888?format=json","number":"8888","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1276","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5444","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1399-1400)","type":"S","title":"A bill to prohibit the Secretary of Health and Human Services from implementing, enforcing, or otherwise giving effect to a final rule regarding minimum staffing for nursing facilities, and to establish an advisory panel on the nursing home workforce.","url":"https://api.congress.gov/v3/bill/119/s/750?format=json","number":"750","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1277","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1278","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5446","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Credit Act of 1978 to remove barriers to agricultural producers in accessing funds to carry out emergency measures under the emergency conservation program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/629?format=json","number":"629","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1279","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1280","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5448","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish a tax on the sale of electric vehicles and batteries.","url":"https://api.congress.gov/v3/bill/119/s/536?format=json","number":"536","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1281","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5449","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to waive certain distance requirements for certain hospitals electing to be designated as critical access hospitals.","url":"https://api.congress.gov/v3/bill/119/s/521?format=json","number":"521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1282","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5450","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/400?format=json","number":"400","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1283","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5451","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Household Goods Shipping Consumer Protection Act","url":"https://api.congress.gov/v3/bill/119/s/337?format=json","number":"337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1284","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5452","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-27","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Foreign Adversary Communications Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/259?format=json","number":"259","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1285","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5453","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-21","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported with an amendment in the nature of a substitute favorably.","type":"S","title":"She DRIVES Act","url":"https://api.congress.gov/v3/bill/119/s/161?format=json","number":"161","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1286","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5454","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Amtrak Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/174?format=json","number":"174","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1287","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5455","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-11-20","latestAction_text":"Became Public Law No: 118-209.","type":"S","title":"NACIE Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/5355?format=json","number":"5355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1288","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5456","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-03-08","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Precision Agriculture Loan Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"1289","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5457","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Supporting Access to Rural Community Hospitals Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5189?format=json","number":"5189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1290","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5458","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-09-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3279?format=json","number":"","amendmentNumber":"3279","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1291","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5459","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"ATTAIN Mental Health Act","url":"https://api.congress.gov/v3/bill/118/s/2444?format=json","number":"2444","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1292","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5460","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-26","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"LAST ACRE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2542?format=json","number":"2542","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1293","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5461","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Child Care and Development Block Grant Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4967?format=json","number":"4967","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1294","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5462","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3018?format=json","number":"","amendmentNumber":"3018","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1295","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5463","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-03-06","latestAction_text":"Became Public Law No: 118-95.","type":"S","title":"Veteran Improvement Commercial Driver License Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/656?format=json","number":"656","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1296","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5464","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to reauthorize Long Island Sound programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1297","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5465","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXXIII of the Public Health Service Act with respect to flexibility and funding for the World Trade Center Health Program.","url":"https://api.congress.gov/v3/bill/119/s/739?format=json","number":"739","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1298","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5466","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to direct the Secretary of the Interior to conduct a study to assess the suitability and feasibility of establishing the African Burial Ground International Memorial Museum and Educational Center at the African Burial Ground National Monument, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/730?format=json","number":"730","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1299","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5467","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the African Burial Ground International Memorial Museum and Educational Center in New York, New York, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/728?format=json","number":"728","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1300","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5468","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/319?format=json","number":"","amendmentNumber":"319","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1301","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5469","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to increase access to mental health, substance use, and counseling services for first responders, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/666?format=json","number":"666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1302","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5470","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income any judgements, awards, and settlements with respect to sexual assault or sexual harassment claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/584?format=json","number":"584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1303","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5471","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 with respect to mandatory reporting of dairy products processing costs.","url":"https://api.congress.gov/v3/bill/119/s/581?format=json","number":"581","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1304","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5472","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Fort Ontario Holocaust Refugee Shelter National Historical Park in the State of New York as a unit of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/432?format=json","number":"432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1305","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5473","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to facilitate the implementation of security measures undertaken by the United States Postal Service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/463?format=json","number":"463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1306","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5474","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Setting Consumer Standards for Lithium-Ion Batteries Act","url":"https://api.congress.gov/v3/bill/119/s/389?format=json","number":"389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1307","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5475","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Postal Banking Act","url":"https://api.congress.gov/v3/bill/118/s/5627?format=json","number":"5627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1308","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5476","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Holcombe Rucker Park National Commemorative Site Act","url":"https://api.congress.gov/v3/bill/118/s/5591?format=json","number":"5591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1309","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5477","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"9/11 Memorial and Museum Act","url":"https://api.congress.gov/v3/bill/118/s/5589?format=json","number":"5589","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1310","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5478","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Strengthening America’s Turning Point Act","url":"https://api.congress.gov/v3/bill/118/s/5590?format=json","number":"5590","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1311","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5479","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Tax Fairness for Survivors Act","url":"https://api.congress.gov/v3/bill/118/s/5566?format=json","number":"5566","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1312","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5480","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"COVID–19 Commuter Benefits Distribution Act","url":"https://api.congress.gov/v3/bill/118/s/5525?format=json","number":"5525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1313","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5481","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689-6690)","type":"SRES","title":"A resolution recognizing the 75th anniversary of the Antiquarian Booksellers' Association of America.","url":"https://api.congress.gov/v3/bill/118/sres/904?format=json","number":"904","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1314","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5482","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Data Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5170?format=json","number":"5170","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1315","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5483","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"HOPE Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5171?format=json","number":"5171","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1316","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5484","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agriculture Improvement Act of 2018 to prohibit the slaughter of equines for human consumption.","url":"https://api.congress.gov/v3/bill/119/s/775?format=json","number":"775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1317","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5485","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1431-1433)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1318","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5486","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S980-981)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on the Budget.","url":"https://api.congress.gov/v3/bill/119/sres/78?format=json","number":"78","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1319","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5487","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-02-13","latestAction_text":"Resolution agreed to in Senate with amendments by Yea-Nay Vote. 52 - 48. Record Vote Number: 87. (text: CR S1119-1125)","type":"SCONRES","title":"An original concurrent resolution setting forth the congressional budget for the United States Government for fiscal year 2025 and setting forth the appropriate budgetary levels for fiscal years 2026 through 2034.","url":"https://api.congress.gov/v3/bill/119/sconres/7?format=json","number":"7","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1320","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5488","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-11","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S863)","type":"SRES","title":"A resolution affirming that Hamas cannot retain any political or military control in the Gaza Strip.","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","number":"72","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1321","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5489","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Birthright Citizenship Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/304?format=json","number":"304","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1322","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5490","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-29","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S485-486)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/43?format=json","number":"43","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1323","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5491","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Parris Island Protection Act","url":"https://api.congress.gov/v3/bill/119/s/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1324","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5492","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Countering Turkish Aggression Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5643?format=json","number":"5643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1325","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5493","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7109)","type":"SRES","title":"A resolution recognizing the exceptional service of Ambassador Michael Herzog during his tenure as Ambassador of Israel to the United States.","url":"https://api.congress.gov/v3/bill/118/sres/931?format=json","number":"931","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1326","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5494","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-12-09","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Disaster Relief and Resilience Act","url":"https://api.congress.gov/v3/bill/118/s/5457?format=json","number":"5457","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1327","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5495","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6450)","type":"SRES","title":"A resolution designating the week of October 6, 2024, through October 12, 2024, as \"Religious Education Week\" to celebrate religious education in the United States.","url":"https://api.congress.gov/v3/bill/118/sres/860?format=json","number":"860","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1328","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5496","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Birthright Citizenship Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5223?format=json","number":"5223","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1329","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5497","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Federal Firearms Licensee Protection Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1907?format=json","number":"1907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"1330","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5498","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-19","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6226)","type":"SRES","title":"A resolution reaffirming the Republic of the Philippines' claim over Second Thomas Shoal and supporting the Filipino people in their efforts to combat aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/834?format=json","number":"834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1331","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5499","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting American Industry and Labor from International Trade Crimes Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4955?format=json","number":"4955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1332","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5500","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-08-01","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution to authorize the use of military force against the Islamic Republic of Iran if the President determines that the Islamic Republic of Iran is planning or conducts an attack against any former, current, or incoming United States Government official or senior military personnel.","url":"https://api.congress.gov/v3/bill/118/sjres/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1333","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5501","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-31","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","url":"https://api.congress.gov/v3/bill/118/sjres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1334","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5502","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-31","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S5686-5687)","type":"SRES","title":"A resolution deterring Hezbollah and the Islamic Republic of Iran for their repeated and continued acts of terrorism against the State of Israel and the United States and urging the United States to use all diplomatic tools available to hold them accountable for such actions.","url":"https://api.congress.gov/v3/bill/118/sres/784?format=json","number":"784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1335","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5503","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Tariffs for Terrorism Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4761?format=json","number":"4761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1336","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5504","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Review of Final Rule Reclassification of Major Sources as Area Sources Under Section 112 of the Clean Air Act\".","url":"https://api.congress.gov/v3/bill/119/sjres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1337","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5505","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to authorize the Secretary of the Interior to co-locate renewable energy projects on certain existing Federal leased areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/896?format=json","number":"896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1338","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5506","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the exclusion for certain conservation subsidies to include subsidies for water conservation or efficiency measures, storm water management measures, and wastewater management measures.","url":"https://api.congress.gov/v3/bill/119/s/857?format=json","number":"857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1339","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1340","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5508","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Glen Canyon National Recreation Area; Motor Vehicles\".","url":"https://api.congress.gov/v3/bill/119/sjres/30?format=json","number":"30","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1341","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5509","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"CCP IP Act","url":"https://api.congress.gov/v3/bill/119/s/330?format=json","number":"330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1342","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5510","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Federal Wildfire Relief Act of 2024.","url":"https://api.congress.gov/v3/bill/118/hr/10523?format=json","number":"10523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1343","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5511","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-12-19","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Co-Location Energy Act","url":"https://api.congress.gov/v3/bill/118/hr/10513?format=json","number":"10513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1344","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5512","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-11-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Cleaner Biofuels Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10252?format=json","number":"10252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1345","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5513","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-11-21","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SCAM Platform Act","url":"https://api.congress.gov/v3/bill/118/hr/10212?format=json","number":"10212","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1346","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5514","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-11-19","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Expressing support for the designation of November 20, 2024, as \"National GIS Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1583?format=json","number":"1583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1347","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5515","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-10-11","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Western Refined Fuel Reserve Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9957?format=json","number":"9957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1348","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5516","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-10-11","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"HOMES Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9958?format=json","number":"9958","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1349","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5517","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To permanently extend the first right of refusal for the purchase of Tribal assets, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9915?format=json","number":"9915","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1350","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5518","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Combating Human Rights Abuses Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9772?format=json","number":"9772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1351","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5519","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Star-Spangled Summit Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9095?format=json","number":"9095","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1352","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5520","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Interior relating to \"Conservation and Landscape Health\".","url":"https://api.congress.gov/v3/bill/118/hjres/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1353","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5521","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-18","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Operational Flexibility Grazing Management Program Act","url":"https://api.congress.gov/v3/bill/118/hr/9062?format=json","number":"9062","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1354","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5522","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"PROVE IT Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8957?format=json","number":"8957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1355","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5523","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-04-11","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Water Systems PFAS Liability Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7944?format=json","number":"7944","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1356","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5524","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/886?format=json","number":"886","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1357","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5525","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","type":"S","title":"A bill to improve the SBIR and STTR programs under the Small Business Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/853?format=json","number":"853","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1358","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5526","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stop Secret Spending Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1359","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5527","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Billion Dollar Boondoggle Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/766?format=json","number":"766","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1360","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5528","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the establishment of a process for the review of rules and sets of rules, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/648?format=json","number":"648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1361","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5529","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to repeal programs relating to funding for electric vehicle charging infrastructure, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/651?format=json","number":"651","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1362","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5530","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Presidential Allowance Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/534?format=json","number":"534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1363","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5531","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to reduce Federal spending and the deficit by terminating taxpayer financing of Presidential election campaigns.","url":"https://api.congress.gov/v3/bill/119/s/538?format=json","number":"538","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1364","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1365","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1366","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5534","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to require greater transparency for Federal regulatory decisions that impact small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/495?format=json","number":"495","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1367","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5535","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to restore the exemption of family farms and small businesses from the definition of assets under title IV of the Higher Education Act of 1965.","url":"https://api.congress.gov/v3/bill/119/s/469?format=json","number":"469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1368","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5536","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 21.","type":"S","title":"Returning SBA to Main Street Act","url":"https://api.congress.gov/v3/bill/119/s/298?format=json","number":"298","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1369","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5537","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Snap Back Inaccurate SNAP Payments Act","url":"https://api.congress.gov/v3/bill/119/s/302?format=json","number":"302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1370","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5538","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SWAG Act","url":"https://api.congress.gov/v3/bill/119/s/210?format=json","number":"210","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1371","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5539","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Ensuring Accurate and Complete Abortion Data Reporting Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/178?format=json","number":"178","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1372","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5540","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protect Funding for Women's Health Care Act","url":"https://api.congress.gov/v3/bill/119/s/177?format=json","number":"177","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1373","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5541","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-17","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"RED TAPE Act","url":"https://api.congress.gov/v3/bill/119/s/148?format=json","number":"148","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1374","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5542","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Sarah's Law","url":"https://api.congress.gov/v3/bill/119/s/84?format=json","number":"84","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"1375","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5543","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"Amendment SA 8, as amended, agreed to in Senate by Yea-Nay Vote. 75 - 24. Record Vote Number: 6.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/8?format=json","number":"","amendmentNumber":"8","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1376","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5544","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/900?format=json","number":"900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1377","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5545","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of funds to implement, administer, or enforce measures requiring certain employees to refer to an individual by the preferred pronouns of such individual or a name other than the legal name of such individual, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/839?format=json","number":"839","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1378","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5546","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for the imposition of sanctions with respect to forced organ harvesting within the People's Republic of China, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/817?format=json","number":"817","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1379","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5547","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the indexing of certain assets for purposes of determining gain or loss.","url":"https://api.congress.gov/v3/bill/119/s/798?format=json","number":"798","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1380","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5548","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to amend title 14, United States Code, to make appropriations for Coast Guard pay in the event an appropriations Act expires before the enactment of a new appropriations Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1381","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5549","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Modernizing Access to Our Public Oceans Act","url":"https://api.congress.gov/v3/bill/119/s/759?format=json","number":"759","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1382","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5550","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to require the impaneling of a new jury if a jury fails to recommend by unanimous vote a sentence for conviction of a crime punishable by death.","url":"https://api.congress.gov/v3/bill/119/s/718?format=json","number":"718","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1383","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1384","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5552","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1013?format=json","number":"","amendmentNumber":"1013","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1385","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5553","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/951?format=json","number":"","amendmentNumber":"951","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1386","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5554","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/952?format=json","number":"","amendmentNumber":"952","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1387","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5555","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/954?format=json","number":"","amendmentNumber":"954","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1388","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5556","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/955?format=json","number":"","amendmentNumber":"955","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1389","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5557","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/956?format=json","number":"","amendmentNumber":"956","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1390","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5558","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/953?format=json","number":"","amendmentNumber":"953","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1391","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5559","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the designation of certain airports as ports of entry.","url":"https://api.congress.gov/v3/bill/119/s/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1392","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5560","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (consideration: CR S1041-1042)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Commerce, Science, and Transportation.","url":"https://api.congress.gov/v3/bill/119/sres/82?format=json","number":"82","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1393","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5561","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the excise taxes on taxable chemicals and taxable substances.","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","number":"615","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1394","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5562","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require benefit eligibility determination to be made within a certain period of time.","url":"https://api.congress.gov/v3/bill/119/s/571?format=json","number":"571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1395","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5563","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Astronaut Ground Travel Support Act","url":"https://api.congress.gov/v3/bill/119/s/582?format=json","number":"582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1396","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5564","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the exemption for telehealth services from certain high deductible health plan rules.","url":"https://api.congress.gov/v3/bill/119/s/763?format=json","number":"763","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1397","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5565","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/s/808?format=json","number":"808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1398","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5566","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Food Security Act of 1985 to reauthorize the voluntary public access and habitat incentive program.","url":"https://api.congress.gov/v3/bill/119/s/704?format=json","number":"704","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1399","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5567","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1154?format=json","number":"","amendmentNumber":"1154","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1400","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5568","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1152?format=json","number":"","amendmentNumber":"1152","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1401","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5569","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1153?format=json","number":"","amendmentNumber":"1153","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1402","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5570","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1155?format=json","number":"","amendmentNumber":"1155","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1403","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5571","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1149?format=json","number":"","amendmentNumber":"1149","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1404","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5572","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1150?format=json","number":"","amendmentNumber":"1150","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1405","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5573","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1151?format=json","number":"","amendmentNumber":"1151","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1406","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5574","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1148?format=json","number":"","amendmentNumber":"1148","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1407","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5575","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1147?format=json","number":"","amendmentNumber":"1147","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1408","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1409","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5577","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Mineral Leasing Act to eliminate an administrative fee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/451?format=json","number":"451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1410","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5578","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to promote domestic energy production, to require onshore and offshore oil and natural gas lease sales, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/460?format=json","number":"460","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1411","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1412","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5580","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/362?format=json","number":"362","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1413","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1414","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5582","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Next of Kin Collections Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/274?format=json","number":"274","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1415","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5583","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Crow Tribe Water Rights Settlement Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/240?format=json","number":"240","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1416","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5584","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Secretary of Transportation to issue rules requiring the inclusion of new safety equipment in school buses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/828?format=json","number":"828","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1417","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1418","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5586","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1001?format=json","number":"","amendmentNumber":"1001","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1419","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5587","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 971 not agreed to in Senate by Yea-Nay Vote. 49 - 51. Record Vote Number: 82.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/971?format=json","number":"","amendmentNumber":"971","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1420","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5588","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/970?format=json","number":"","amendmentNumber":"970","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1421","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5589","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/972?format=json","number":"","amendmentNumber":"972","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1422","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5590","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/392?format=json","number":"","amendmentNumber":"392","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1423","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5591","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/210?format=json","number":"","amendmentNumber":"210","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1424","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5592","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/180?format=json","number":"","amendmentNumber":"180","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1425","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5593","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/179?format=json","number":"","amendmentNumber":"179","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1426","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5594","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure due process protections of individuals in the United States against unlawful detention based solely on a protected characteristic.","url":"https://api.congress.gov/v3/bill/119/s/634?format=json","number":"634","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1427","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5595","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Youth Poisoning Protection Act","url":"https://api.congress.gov/v3/bill/119/s/289?format=json","number":"289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1428","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5596","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-27","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Bottles and Breastfeeding Equipment Screening Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/260?format=json","number":"260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1429","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5597","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/5?format=json","number":"","amendmentNumber":"5","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1430","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5598","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/2?format=json","number":"","amendmentNumber":"2","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1431","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5599","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/4?format=json","number":"","amendmentNumber":"4","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1432","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5600","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/3?format=json","number":"","amendmentNumber":"3","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1433","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5601","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Uniformed Services Leave Parity Act","url":"https://api.congress.gov/v3/bill/118/s/5348?format=json","number":"5348","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1434","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5602","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-14","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Improving Access to Prenatal Care for Military Families Act","url":"https://api.congress.gov/v3/bill/118/s/5330?format=json","number":"5330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"1435","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5603","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-15","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Maternal Health for Veterans Act","url":"https://api.congress.gov/v3/bill/118/s/2026?format=json","number":"2026","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1436","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5604","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/905?format=json","number":"905","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1437","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5605","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1583)","type":"SRES","title":"A resolution expressing support for the designation of the week of March 3 through March 7, 2025, as \"National Social and Emotional Learning Week\" to recognize the critical role social and emotional learning plays in supporting the academic success and overall well-being of students, educators, and families.","url":"https://api.congress.gov/v3/bill/119/sres/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1438","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5606","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1583)","type":"SRES","title":"A resolution affirming the rule of law and the legitimacy of judicial review.","url":"https://api.congress.gov/v3/bill/119/sres/108?format=json","number":"108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1439","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5607","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1583-1584)","type":"SRES","title":"A resolution condemning Russia's illegal abduction of Ukrainian children.","url":"https://api.congress.gov/v3/bill/119/sres/110?format=json","number":"110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1440","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5608","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1498-1499)","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 to establish a voluntary program to reduce food loss and waste, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/835?format=json","number":"835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1441","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5609","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1461-1462)","type":"S","title":"A bill to increase United States jobs through greater United States exports to Africa and Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1442","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1443","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5611","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1431)","type":"S","title":"A bill to terminate authorizations for the use of military force and declarations of war no later than 10 years after the enactment of such authorizations or declarations.","url":"https://api.congress.gov/v3/bill/119/s/804?format=json","number":"804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1444","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1445","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5613","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S1347-1348; text: CR S1348-1350)","type":"S","title":"A bill to amend title 31, United States Code, to prevent fraudulent transactions at virtual currency kiosks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1446","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5614","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1352)","type":"SRES","title":"A resolution expressing the sense of the Senate that the operations of the National Institutes of Health should not experience any interruption, delay, or funding disruption in violation of the law and that the workforce of the National Institutes of Health is essential to sustaining medical progress.","url":"https://api.congress.gov/v3/bill/119/sres/93?format=json","number":"93","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1447","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1448","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5616","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1212?format=json","number":"","amendmentNumber":"1212","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1449","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5617","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/876?format=json","number":"","amendmentNumber":"876","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1450","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5618","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/525?format=json","number":"","amendmentNumber":"525","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1451","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5619","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/521?format=json","number":"","amendmentNumber":"521","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1452","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5620","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/520?format=json","number":"","amendmentNumber":"520","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1453","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5621","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/526?format=json","number":"","amendmentNumber":"526","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1454","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5622","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/522?format=json","number":"","amendmentNumber":"522","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1455","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5623","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/519?format=json","number":"","amendmentNumber":"519","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1456","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1457","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1458","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5626","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Secure Rural Schools Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/356?format=json","number":"356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1459","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1460","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1461","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5629","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Finance. (text: CR S374)","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that tax-exempt fraternal benefit societies have historically provided and continue to provide critical benefits to the people and communities of the United States.","url":"https://api.congress.gov/v3/bill/119/sconres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1462","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1463","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5631","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"MAILS Act","url":"https://api.congress.gov/v3/bill/119/s/155?format=json","number":"155","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1464","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5632","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to authorize an additional district judgeship for the district of Idaho.","url":"https://api.congress.gov/v3/bill/119/s/54?format=json","number":"54","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1465","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5633","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-07","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 154 First Avenue East in Jerome, Idaho, as the \"Representative Maxine Bell Post Office\".","url":"https://api.congress.gov/v3/bill/119/s/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"1466","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5634","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-12-16","policyArea_name":"","latestAction_text":"Amendment SA 3331, under the order of 12/20/2024, not having achieved 60 votes in the affirmative, not agreed to in Senate by Yea-Nay Vote. 34 - 62. Record Vote Number: 336.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3331?format=json","number":"","amendmentNumber":"3331","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1467","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5635","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6730-6731)","type":"SRES","title":"A resolution designating September 2024 as \"National Prostate Cancer Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/sres/915?format=json","number":"915","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1468","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5636","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-23","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6337; text: CR S6336)","type":"SRES","title":"A resolution recognizing and supporting the goals and ideals of National Forensic Science Week.","url":"https://api.congress.gov/v3/bill/118/sres/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1469","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5637","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-17","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3283?format=json","number":"","amendmentNumber":"3283","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1470","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5638","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-07-13","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 730.","type":"S","title":"Bring Our Heroes Home Act","url":"https://api.congress.gov/v3/bill/118/s/2315?format=json","number":"2315","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1471","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5639","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of Steven D. Symms, former United States Senator for the State of Idaho.","url":"https://api.congress.gov/v3/bill/118/sres/813?format=json","number":"813","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1472","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5640","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3172?format=json","number":"","amendmentNumber":"3172","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1473","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5641","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/118/s/2085?format=json","number":"2085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1474","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5642","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2361?format=json","number":"","amendmentNumber":"2361","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1475","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5643","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2359?format=json","number":"","amendmentNumber":"2359","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1476","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1477","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5645","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Export-Import Bank Act of 1945 to exclude certain financing from the calculation of the default rate for purposes of determining when the lending cap under such Act applies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/753?format=json","number":"753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1478","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5646","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1178?format=json","number":"","amendmentNumber":"1178","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1479","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5647","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1180?format=json","number":"","amendmentNumber":"1180","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1480","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5648","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1179?format=json","number":"","amendmentNumber":"1179","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1481","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5649","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1177?format=json","number":"","amendmentNumber":"1177","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1482","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5650","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1176?format=json","number":"","amendmentNumber":"1176","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1483","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5651","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1173?format=json","number":"","amendmentNumber":"1173","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1484","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5652","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1174?format=json","number":"","amendmentNumber":"1174","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1485","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5653","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1175?format=json","number":"","amendmentNumber":"1175","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1486","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5654","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1172?format=json","number":"","amendmentNumber":"1172","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1487","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5655","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1171?format=json","number":"","amendmentNumber":"1171","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1488","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5656","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/493?format=json","number":"","amendmentNumber":"493","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1489","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5657","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/383?format=json","number":"","amendmentNumber":"383","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1490","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5658","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/385?format=json","number":"","amendmentNumber":"385","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1491","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5659","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/384?format=json","number":"","amendmentNumber":"384","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1492","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5660","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/381?format=json","number":"","amendmentNumber":"381","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1493","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5661","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/375?format=json","number":"","amendmentNumber":"375","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1494","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5662","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/380?format=json","number":"","amendmentNumber":"380","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1495","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5663","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/377?format=json","number":"","amendmentNumber":"377","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1496","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5664","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/119/s/829?format=json","number":"829","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1497","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5665","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to extend and modify the transportation grant program of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/827?format=json","number":"827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1498","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1499","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5667","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Unborn Child Support Act","url":"https://api.congress.gov/v3/bill/119/s/230?format=json","number":"230","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1500","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5668","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Chiropractic Medicare Coverage Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/106?format=json","number":"106","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1501","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5669","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Miracle on Ice Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/94?format=json","number":"94","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1502","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5670","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Homeward Bound Act","url":"https://api.congress.gov/v3/bill/118/s/5113?format=json","number":"5113","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1503","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5671","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-05-09","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Bank Service Company Examination Coordination Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1501?format=json","number":"1501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1504","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5672","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3094?format=json","number":"","amendmentNumber":"3094","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1505","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5673","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-07-24","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3072?format=json","number":"","amendmentNumber":"3072","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1506","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5674","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2362?format=json","number":"","amendmentNumber":"2362","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1507","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5675","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-10","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Firearms Interstate Commerce Reform Act","url":"https://api.congress.gov/v3/bill/118/s/4652?format=json","number":"4652","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1508","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5676","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Unlocking Capital for Small Businesses Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4493?format=json","number":"4493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1509","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5677","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-23","latestAction_text":"Held at the desk.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/118/s/4404?format=json","number":"4404","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":"17:04:32"}}} +{"type":"relationship","id":"1510","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5678","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2024-02-09","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1532?format=json","number":"","amendmentNumber":"1532","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1511","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5679","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2023-07-12","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/212?format=json","number":"","amendmentNumber":"212","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1512","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5680","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-19","latestAction_text":"Referred to the Committee on Foreign Relations.","type":"SRES","title":"A resolution reaffirming the deep and steadfast partnership between, and the ties that bind, the United States and Canada in support of economic and national security.","url":"https://api.congress.gov/v3/bill/118/sres/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1513","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5681","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2023-11-13","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"EAGLE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/3291?format=json","number":"3291","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1514","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5682","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"118","introducedDate":"2023-10-31","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to include certain over-the-counter dietary supplement products and foods for special dietary uses as qualified medical expenses.","url":"https://api.congress.gov/v3/bill/118/s/3172?format=json","number":"3172","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1515","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5683","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2022-03-24","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"S","title":"Dodd-Frank Material Disclosure Improvement Act","url":"https://api.congress.gov/v3/bill/117/s/3923?format=json","number":"3923","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-04-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1516","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1517","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5685","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to authorize the Secretary of Homeland Security or the Attorney General to deputize a State or local law enforcement officer to protect certain events with temporary flight restrictions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/663?format=json","number":"663","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1518","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5686","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863-864)","type":"SRES","title":"An original resolution authorizing expenditures by the Select Committee on Intelligence.","url":"https://api.congress.gov/v3/bill/119/sres/73?format=json","number":"73","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1519","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5687","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Focus on Learning Act","url":"https://api.congress.gov/v3/bill/119/s/404?format=json","number":"404","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1520","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5688","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/119/s/384?format=json","number":"384","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1521","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5689","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Restoring Trade Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/206?format=json","number":"206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1522","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5690","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Minors from Medical Malpractice Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/209?format=json","number":"209","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1523","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5691","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Not One More Inch or Acre Act","url":"https://api.congress.gov/v3/bill/119/s/176?format=json","number":"176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1524","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5692","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"PLO and PA Terror Payments Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/198?format=json","number":"198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1525","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5693","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S140)","type":"SRES","title":"A resolution condemning the commutation of the death sentence of Marvin Charles Gabrion II granted by President Biden on December 23, 2024.","url":"https://api.congress.gov/v3/bill/119/sres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"1526","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5694","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S140)","type":"SRES","title":"A resolution condemning the commutation of the death sentence of Anthony George Battle granted by President Biden on December 23, 2024.","url":"https://api.congress.gov/v3/bill/119/sres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"1527","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5695","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Expel Illegal Chinese Police Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/49?format=json","number":"49","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1528","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5696","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-08","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Justice for 9/11 Act","url":"https://api.congress.gov/v3/bill/119/s/34?format=json","number":"34","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"1529","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5697","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-19","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S7242)","type":"SRES","title":"A resolution condemning the commutation of Michael Conahan granted by President Biden on December 12, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/935?format=json","number":"935","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1530","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5698","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/118/s/5431?format=json","number":"5431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1531","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5699","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-05","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","url":"https://api.congress.gov/v3/bill/118/sjres/119?format=json","number":"119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1532","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5700","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protecting Our Essential Medicines Act","url":"https://api.congress.gov/v3/bill/118/s/5419?format=json","number":"5419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1533","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5701","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Expel Illegal Chinese Police Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5410?format=json","number":"5410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1534","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5702","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-02-01","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Illegitimate Court Counteraction Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1535","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5703","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Anti-BDS Labeling Act","url":"https://api.congress.gov/v3/bill/118/s/5371?format=json","number":"5371","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1536","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5704","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Food, Conservation, and Energy Act of 2008 to provide families year-round access to nutrition incentives under the Gus Schumacher Nutrition Incentive Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/813?format=json","number":"813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1537","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5705","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for increased reporting regarding Department of State Taiwan guidelines.","url":"https://api.congress.gov/v3/bill/119/s/821?format=json","number":"821","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1538","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5706","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Research and Development, Competition, and Innovation Act to clarify the definition of foreign country for purposes of malign foreign talent recruitment restriction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1539","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1540","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5708","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish and implement a multi-year Legal Gold and Mining Partnership Strategy to reduce the negative environmental and social impacts of illicit gold mining in the Western Hemisphere, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/799?format=json","number":"799","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1541","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1542","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1543","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5711","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1544","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5712","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the exclusion for gain from qualified small business stock.","url":"https://api.congress.gov/v3/bill/119/s/695?format=json","number":"695","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1545","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1546","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5714","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"SAFE Orbit Act","url":"https://api.congress.gov/v3/bill/119/s/428?format=json","number":"428","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1547","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5715","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Fairness for Servicemembers and their Families Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/385?format=json","number":"385","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1548","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5716","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Promoting Resilient Buildings Act","url":"https://api.congress.gov/v3/bill/119/s/388?format=json","number":"388","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1549","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5717","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Cattle Fever Tick Eradication Program Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/319?format=json","number":"319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1550","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5718","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-17","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Public Safety First Act","url":"https://api.congress.gov/v3/bill/119/s/149?format=json","number":"149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1551","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5719","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to rename the medical center of the Department of Veterans Affairs in Dallas, Texas, as the \"Eddie Bernice Johnson VA Medical Center\".","url":"https://api.congress.gov/v3/bill/119/s/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1552","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5720","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"Amendment SA 14 agreed to in Senate by Yea-Nay Vote. 70 - 25. Record Vote Number: 3.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/14?format=json","number":"","amendmentNumber":"14","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1553","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5721","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Constitutional Concealed Carry Reciprocity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1554","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5722","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"118","introducedDate":"2024-12-21","policyArea_name":"","latestAction_text":"Amendment SA 3362 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3362?format=json","number":"","amendmentNumber":"3362","latestAction":"","latestAction_actionDate":"2024-12-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1555","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5723","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"COINS Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5648?format=json","number":"5648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1556","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1557","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5725","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to provide the President with authority to enter into a comprehensive trade agreement with the United Kingdom, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/776?format=json","number":"776","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1558","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5726","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/708?format=json","number":"708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1559","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5727","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"Amendment SA 1223 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1223?format=json","number":"","amendmentNumber":"1223","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1560","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5728","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1208?format=json","number":"","amendmentNumber":"1208","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1561","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5729","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1209?format=json","number":"","amendmentNumber":"1209","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1562","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5730","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1210?format=json","number":"","amendmentNumber":"1210","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1563","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5731","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/988?format=json","number":"","amendmentNumber":"988","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1564","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5732","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/987?format=json","number":"","amendmentNumber":"987","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1565","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5733","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/199?format=json","number":"","amendmentNumber":"199","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1566","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5734","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/200?format=json","number":"","amendmentNumber":"200","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1567","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5735","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/204?format=json","number":"","amendmentNumber":"204","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1568","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5736","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/202?format=json","number":"","amendmentNumber":"202","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1569","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5737","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/201?format=json","number":"","amendmentNumber":"201","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1570","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5738","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/203?format=json","number":"","amendmentNumber":"203","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1571","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5739","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/196?format=json","number":"","amendmentNumber":"196","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1572","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5740","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/193?format=json","number":"","amendmentNumber":"193","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1573","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5741","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/194?format=json","number":"","amendmentNumber":"194","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1574","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5742","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/195?format=json","number":"","amendmentNumber":"195","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1575","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5743","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/190?format=json","number":"","amendmentNumber":"190","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1576","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5744","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Combat-Injured Veterans Tax Fairness Act of 2016 to apply to members of the Coast Guard when the Coast Guard is not operating as a service in the Department of the Navy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/878?format=json","number":"878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1577","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5745","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to provide consumers with the right to delete their genomic data, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/863?format=json","number":"863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1578","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5746","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish a commission to review operations at the Veterans Health Administration and submit to Congress reports with respect to that review, and for other programs.","url":"https://api.congress.gov/v3/bill/119/s/787?format=json","number":"787","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1579","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1580","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1581","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5749","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/250?format=json","number":"","amendmentNumber":"250","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1582","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5750","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/251?format=json","number":"","amendmentNumber":"251","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1583","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5751","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/252?format=json","number":"","amendmentNumber":"252","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1584","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5752","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide an advance refundable credit to offset certain flood insurance premiums, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/586?format=json","number":"586","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1585","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5753","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S931-932)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Health, Education, Labor and Pensions.","url":"https://api.congress.gov/v3/bill/119/sres/76?format=json","number":"76","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1586","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5754","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to prohibit Federal Medicaid funding for the administrative costs of providing health benefits to individuals who are unauthorized immigrants.","url":"https://api.congress.gov/v3/bill/119/s/523?format=json","number":"523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1587","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1588","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5756","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title II of the Social Security Act to increase the age threshold for eligibility for child's insurance benefits on the basis of disability.","url":"https://api.congress.gov/v3/bill/119/s/466?format=json","number":"466","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1589","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1590","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1591","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5759","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protecting Students on Campus Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/163?format=json","number":"163","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1592","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5760","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Offshore Energy Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/109?format=json","number":"109","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1593","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5761","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Housing Reform for American Families Act","url":"https://api.congress.gov/v3/bill/119/s/120?format=json","number":"120","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1594","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5762","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Connected MOM Act","url":"https://api.congress.gov/v3/bill/119/s/141?format=json","number":"141","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1595","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5763","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-15","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/65?format=json","number":"","amendmentNumber":"65","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1596","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5764","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1498)","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize the program relating to lifespan respite care, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/830?format=json","number":"830","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1597","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5765","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1359; text: CR S1358)","type":"SRES","title":"A resolution designating the week of February 24 through February 28, 2025, as \"Public Schools Week\".","url":"https://api.congress.gov/v3/bill/119/sres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1598","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5766","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-12-10","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6936; text: CR S6914-6915)","type":"SRES","title":"A resolution designating December 14, 2024, as \"National Wreaths Across America Day\".","url":"https://api.congress.gov/v3/bill/118/sres/924?format=json","number":"924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1599","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5767","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2023-05-02","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1465)","type":"S","title":"Educational Opportunity and Success Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1397?format=json","number":"1397","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"1600","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5768","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2023-06-07","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 184.","type":"S","title":"Special Diabetes Program Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1855?format=json","number":"1855","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1601","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1602","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5770","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S6371; Sponsor introductory remarks on measure: CR S6371)","type":"S","title":"Catching Up Family Caregivers Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5149?format=json","number":"5149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1603","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5771","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S6371)","type":"S","title":"Improving Retirement Security for Family Caregivers Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5148?format=json","number":"5148","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1604","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5772","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-16","latestAction_text":"Read twice and referred to the Committee on Armed Services. (Sponsor introductory remarks on measure: CR S6053-6054)","type":"S","title":"Armed Forces Crisis Intervention Notification Act","url":"https://api.congress.gov/v3/bill/118/s/5055?format=json","number":"5055","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1605","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5773","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3242?format=json","number":"","amendmentNumber":"3242","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1606","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5774","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-30","policyArea_name":"","latestAction_text":"Amendment SA 3201 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3201?format=json","number":"","amendmentNumber":"3201","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1607","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5775","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2885?format=json","number":"","amendmentNumber":"2885","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1608","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5776","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2884?format=json","number":"","amendmentNumber":"2884","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1609","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5777","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2580?format=json","number":"","amendmentNumber":"2580","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1610","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5778","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"117","introducedDate":"2022-05-12","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"NAPA Reauthorization Act","url":"https://api.congress.gov/v3/bill/117/s/4203?format=json","number":"4203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-05-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1611","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5779","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-05-31","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S1846)","type":"S","title":"Comprehensive National Mercury Monitoring Act","url":"https://api.congress.gov/v3/bill/118/s/1772?format=json","number":"1772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1612","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5780","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-22","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S3857)","type":"S","title":"Investing in Digital Skills Act","url":"https://api.congress.gov/v3/bill/118/s/4391?format=json","number":"4391","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1613","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5781","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3719)","type":"SRES","title":"A resolution supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/sres/690?format=json","number":"690","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1614","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5782","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-05-14","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 427.","type":"S","title":"Lifespan Respite Care Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4325?format=json","number":"4325","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1615","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5783","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-05-02","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3319)","type":"S","title":"Loggers Economic Assistance and Relief Act","url":"https://api.congress.gov/v3/bill/118/s/4251?format=json","number":"4251","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"1616","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5784","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to expand and expedite access to cardiac rehabilitation programs and pulmonary rehabilitation programs under the Medicare program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/717?format=json","number":"717","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1617","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5785","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to enhance the rehabilitation credit for buildings in rural areas.","url":"https://api.congress.gov/v3/bill/119/s/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1618","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5786","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the allowance for depreciation, amortization, or depletion for purposes of determining the income limitation on the deduction for business interest.","url":"https://api.congress.gov/v3/bill/119/s/559?format=json","number":"559","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1619","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5787","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Environment and Public Works.","url":"https://api.congress.gov/v3/bill/119/sres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1620","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5788","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 6.","type":"S","title":"Brownfields Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/347?format=json","number":"347","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1621","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5789","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 7.","type":"S","title":"STEWARD Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/351?format=json","number":"351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1622","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5790","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Stop Funding Global Terrorists Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/313?format=json","number":"313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1623","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5791","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-15","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Rural Broadband Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1624","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5792","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Historic Tax Credit Improvement Act","url":"https://api.congress.gov/v3/bill/118/s/5607?format=json","number":"5607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1625","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5793","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Fiscally Responsible Highway Funding Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5235?format=json","number":"5235","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1626","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5794","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-02-07","latestAction_text":"Held at the desk.","type":"S","title":"Rural Broadband Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/275?format=json","number":"275","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":"10:03:42"}}} +{"type":"relationship","id":"1627","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5795","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"CHANGE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2379?format=json","number":"2379","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1628","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5796","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2865?format=json","number":"","amendmentNumber":"2865","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1629","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5797","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-07-10","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2206?format=json","number":"","amendmentNumber":"2206","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1630","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5798","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Energy","latestAction_text":"By Senator Carper from Committee on Environment and Public Works filed written report. Report No. 118-182.","type":"S","title":"ADVANCE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1111?format=json","number":"1111","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1631","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5799","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Preserving JROTC Programs Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4513?format=json","number":"4513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1632","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5800","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"New Source Performance Standards for Greenhouse Gas Emissions From New, Modified, and Reconstructed Fossil Fuel-Fired Electric Generating Units; Emission Guidelines for Greenhouse Gas Emissions From Existing Fossil Fuel-Fired Electric Generating Units; and Repeal of the Affordable Clean Energy Rule\".","url":"https://api.congress.gov/v3/bill/118/sjres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1633","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5801","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Held at the desk.","type":"S","title":"Second Chance Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4477?format=json","number":"4477","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":"10:41:56"}}} +{"type":"relationship","id":"1634","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5802","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2024-05-01","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1924?format=json","number":"","amendmentNumber":"1924","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1635","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5803","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Ally’s Act","url":"https://api.congress.gov/v3/bill/118/s/1135?format=json","number":"1135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1636","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5804","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1219?format=json","number":"","amendmentNumber":"1219","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1637","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5805","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/923?format=json","number":"","amendmentNumber":"923","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1638","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5806","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/404?format=json","number":"","amendmentNumber":"404","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1639","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5807","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/341?format=json","number":"","amendmentNumber":"341","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1640","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5808","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/336?format=json","number":"","amendmentNumber":"336","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1641","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5809","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/338?format=json","number":"","amendmentNumber":"338","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1642","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5810","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/340?format=json","number":"","amendmentNumber":"340","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1643","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5811","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/339?format=json","number":"","amendmentNumber":"339","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1644","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5812","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/337?format=json","number":"","amendmentNumber":"337","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1645","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5813","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish the Health Engagement Hub Demonstration Program to increase access to treatment for opioid use disorder and other substance use disorders, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/665?format=json","number":"665","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1646","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5814","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Fire Ready Nation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/306?format=json","number":"306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1647","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5815","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-01-27","policyArea_name":"Commerce","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","type":"S","title":"Promoting Resilient Supply Chains Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/257?format=json","number":"257","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1648","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5816","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Weather Act Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5601?format=json","number":"5601","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1649","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5817","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-12-18","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"NASA Transition Authorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5600?format=json","number":"5600","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1650","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5818","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Coast Guard Authorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5468?format=json","number":"5468","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1651","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5819","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"National Quantum Initiative Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5411?format=json","number":"5411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1652","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5820","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6451-6452)","type":"SRES","title":"A resolution expressing support for the designation of the week of September 23 through September 29, 2024, as \"Rail Safety Week\" and supporting the goals and ideals of Rail Safety Week to reduce highway-rail grade crossing and trespasser-related incidents, fatalities, injuries, and derailments, improve the safe transportation of hazardous materials by rail, and prevent rail worker fatalities.","url":"https://api.congress.gov/v3/bill/118/sres/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1653","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5821","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Quinault Indian Nation Land Transfer Act","url":"https://api.congress.gov/v3/bill/118/s/5273?format=json","number":"5273","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1654","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5822","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lower Elwha Klallam Tribe Project Lands Restoration Act","url":"https://api.congress.gov/v3/bill/118/s/5287?format=json","number":"5287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1655","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5823","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Stop Smuggling Illicit Synthetic Drugs on U.S. Transportation Networks Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5285?format=json","number":"5285","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1656","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1657","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1658","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5826","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to allow a period in which members of the clergy may revoke their exemption from Social Security coverage, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/639?format=json","number":"639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1659","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1660","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5828","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"WALL Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/293?format=json","number":"293","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1661","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5829","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-15","latestAction_text":"Referred to the Committee on Finance. (text: CR S187)","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that the proposed \"joint interpretation\" of Annex 14-C of the United States-Mexico-Canada Agreement prepared by United States Trade Representative Katherine Tai is of no legal effect with respect to the United States or any United States person unless it is approved by Congress.","url":"https://api.congress.gov/v3/bill/119/sconres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1662","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5830","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-01-06","policyArea_name":"Immigration","latestAction_text":"Became Public Law No: 119-1.","type":"S","title":"Laken Riley Act","url":"https://api.congress.gov/v3/bill/119/s/5?format=json","number":"5","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1663","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5831","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S6371-6372)","type":"S","title":"Stop the Scroll Act","url":"https://api.congress.gov/v3/bill/118/s/5150?format=json","number":"5150","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1664","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5832","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-12-12","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","type":"S","title":"Citizen Ballot Protection Act","url":"https://api.congress.gov/v3/bill/118/s/3470?format=json","number":"3470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1665","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5833","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5789-5790)","type":"SRES","title":"A resolution honoring the life and enduring legacy of William \"Willie\" Howard Mays, Jr.","url":"https://api.congress.gov/v3/bill/118/sres/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1666","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5834","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-31","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Retirement Fairness for Charities and Educational Institutions Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4917?format=json","number":"4917","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1667","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5835","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-30","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Lulu’s Law","url":"https://api.congress.gov/v3/bill/118/s/4832?format=json","number":"4832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1668","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5836","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/2605?format=json","number":"","amendmentNumber":"2605","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1669","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5837","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-11-09","latestAction_text":"Committee on Indian Affairs. Hearings held.","type":"S","title":"Poarch Band of Creek Indians Parity Act","url":"https://api.congress.gov/v3/bill/118/s/3263?format=json","number":"3263","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1670","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5838","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-11","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Water Research Optimization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4500?format=json","number":"4500","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1671","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5839","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-06-11","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4023; text: CR S4022-4023)","type":"SRES","title":"A resolution commending the University of South Alabama on the occasion of its 60th anniversary and its years of service to the State of Alabama and the United States.","url":"https://api.congress.gov/v3/bill/118/sres/728?format=json","number":"728","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1672","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5840","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-23","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small Entity Update Act","url":"https://api.congress.gov/v3/bill/118/s/4400?format=json","number":"4400","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1673","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5841","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-05-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"MOMS Act","url":"https://api.congress.gov/v3/bill/118/s/4296?format=json","number":"4296","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1674","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5842","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2024-04-16","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Clergy Act","url":"https://api.congress.gov/v3/bill/118/s/4126?format=json","number":"4126","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1675","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5843","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/752?format=json","number":"","amendmentNumber":"752","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1676","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5844","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to require the Secretary of Defense and the Secretary of State to monitor efforts by the People's Republic of China to build or buy strategic foreign ports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/777?format=json","number":"777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1677","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5845","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat membership in a health care sharing ministry as a medical expense, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/653?format=json","number":"653","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1678","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5846","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to require the Secretary of Health and Human Services to develop a strategy for public health preparedness and response to artificial intelligence threats, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/501?format=json","number":"501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1679","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5847","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income gain from the sale of qualified real property interests acquired under the authority of the Readiness and Environmental Protection Integration (REPI) program administered by the Department of Defense pursuant to section 2684a of title 10, United States Code, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/439?format=json","number":"439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1680","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5848","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Assistance Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/352?format=json","number":"352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1681","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1682","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5850","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Restoring Access to Mountain Homes Act","url":"https://api.congress.gov/v3/bill/119/s/267?format=json","number":"267","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1683","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5851","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-24","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Interstate Transport Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/246?format=json","number":"246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1684","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5852","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"POLICE Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/212?format=json","number":"212","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1685","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5853","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-14","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/46?format=json","number":"","amendmentNumber":"46","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1686","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5854","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-11-06","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit Federal agencies from restricting the use of convertible virtual currency by a person to purchase goods or services for the person's own use, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/3229?format=json","number":"3229","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1687","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5855","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Assistance Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/5514?format=json","number":"5514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1688","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5856","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-12","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Interstate Transport Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5513?format=json","number":"5513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1689","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5857","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-12","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"United States-Abraham Accords Cooperation and Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5517?format=json","number":"5517","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1690","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5858","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Flexible Compliance for Emergencies and Natural Disasters Act","url":"https://api.congress.gov/v3/bill/118/s/5518?format=json","number":"5518","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1691","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5859","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Incentivizing Readiness and Environmental Protection Integration Sales Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5409?format=json","number":"5409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1692","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5860","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Food and Drug Administration Foods Accountability Act","url":"https://api.congress.gov/v3/bill/118/s/5103?format=json","number":"5103","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1693","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5861","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3260?format=json","number":"","amendmentNumber":"3260","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1694","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5862","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-18","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6029; text: CR S6024)","type":"SRES","title":"A resolution recognizing December 17 as \"Wright Brothers Day\" and commemorating the 120th anniversary of the first powered flight.","url":"https://api.congress.gov/v3/bill/118/sres/513?format=json","number":"513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1695","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5863","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Families Care Act","url":"https://api.congress.gov/v3/bill/118/s/4831?format=json","number":"4831","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1696","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5864","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1132?format=json","number":"","amendmentNumber":"1132","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1697","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5865","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/740?format=json","number":"","amendmentNumber":"740","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1698","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5866","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 311 not agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/311?format=json","number":"","amendmentNumber":"311","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1699","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5867","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/274?format=json","number":"","amendmentNumber":"274","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1700","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5868","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/273?format=json","number":"","amendmentNumber":"273","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1701","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5869","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/272?format=json","number":"","amendmentNumber":"272","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1702","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5870","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/270?format=json","number":"","amendmentNumber":"270","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1703","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5871","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/268?format=json","number":"","amendmentNumber":"268","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1704","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5872","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/269?format=json","number":"","amendmentNumber":"269","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1705","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5873","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/271?format=json","number":"","amendmentNumber":"271","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1706","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5874","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on the Judiciary, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Know Who Owns Your Home Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10465?format=json","number":"10465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1707","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5875","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-19","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Consumers LEARN AI Act","url":"https://api.congress.gov/v3/bill/118/hr/9673?format=json","number":"9673","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"1708","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5876","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Diaz Bonville.","url":"https://api.congress.gov/v3/bill/118/hres/1465?format=json","number":"1465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1709","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5877","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-04","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Reducing Regulatory Barriers to Housing Act","url":"https://api.congress.gov/v3/bill/118/hr/8604?format=json","number":"8604","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1710","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5878","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Advancing Menopause Care and Mid-Life Women’s Health Act","url":"https://api.congress.gov/v3/bill/118/hr/8223?format=json","number":"8223","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1711","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5879","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-01-30","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Housing Supply and Affordability Act","url":"https://api.congress.gov/v3/bill/118/hr/7132?format=json","number":"7132","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1712","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5880","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Artificial Intelligence Literacy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6791?format=json","number":"6791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1713","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5881","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2023-12-13","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"WARM Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6743?format=json","number":"6743","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1714","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5882","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","introducedDate":"2023-10-24","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the recognition of October 2023, as \"World Menopause Awareness Month\" and expressing the sense of the House of Representatives regarding global awareness and access to care during the menopausal transition and post-menopause.","url":"https://api.congress.gov/v3/bill/118/hres/806?format=json","number":"806","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1715","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5883","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-09-28","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Blue Collar and Green Collar Jobs Development Act","url":"https://api.congress.gov/v3/bill/118/hr/5783?format=json","number":"5783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1716","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5884","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1235?format=json","number":"","amendmentNumber":"1235","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1717","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5885","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1233?format=json","number":"","amendmentNumber":"1233","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1718","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5886","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1236?format=json","number":"","amendmentNumber":"1236","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1719","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5887","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1234?format=json","number":"","amendmentNumber":"1234","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1720","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5888","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Religious Freedom Restoration Act of 1993 to protect civil rights and otherwise prevent meaningful harm to third parties, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1721","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1722","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5890","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit discrimination based on an individual's texture or style of hair.","url":"https://api.congress.gov/v3/bill/119/s/751?format=json","number":"751","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1723","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1724","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5892","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish a demonstration project to improve outpatient clinical care for individuals with sickle cell disease.","url":"https://api.congress.gov/v3/bill/119/s/721?format=json","number":"721","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1725","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5893","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to extend the temporary scheduling order for fentanyl-related substances for 6 months.","url":"https://api.congress.gov/v3/bill/119/s/724?format=json","number":"724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1726","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5894","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1196?format=json","number":"","amendmentNumber":"1196","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1727","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5895","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1197?format=json","number":"","amendmentNumber":"1197","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1728","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5896","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1195?format=json","number":"","amendmentNumber":"1195","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1729","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5897","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1198?format=json","number":"","amendmentNumber":"1198","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1730","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5898","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1199?format=json","number":"","amendmentNumber":"1199","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1731","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5899","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1194?format=json","number":"","amendmentNumber":"1194","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1732","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5900","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1161?format=json","number":"","amendmentNumber":"1161","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1733","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5901","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1160?format=json","number":"","amendmentNumber":"1160","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1734","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5902","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1159?format=json","number":"","amendmentNumber":"1159","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1735","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5903","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1093?format=json","number":"","amendmentNumber":"1093","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1736","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1737","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5905","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution recognizing the partnership between the United States and Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/112?format=json","number":"112","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1738","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5906","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Veterans' Affairs. (text: CR S1500)","type":"SRES","title":"A resolution condemning the mass terminations of employees of the Department of Veterans Affairs carried out with no justification or analysis of the impact on veterans and their families.","url":"https://api.congress.gov/v3/bill/119/sres/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1739","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1740","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1741","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5909","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1228?format=json","number":"","amendmentNumber":"1228","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1742","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5910","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1227?format=json","number":"","amendmentNumber":"1227","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1743","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5911","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1085?format=json","number":"","amendmentNumber":"1085","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1744","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5912","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1087?format=json","number":"","amendmentNumber":"1087","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1745","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5913","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1084?format=json","number":"","amendmentNumber":"1084","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1746","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5914","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1086?format=json","number":"","amendmentNumber":"1086","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1747","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5915","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1088?format=json","number":"","amendmentNumber":"1088","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1748","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5916","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/662?format=json","number":"","amendmentNumber":"662","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1749","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5917","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/661?format=json","number":"","amendmentNumber":"661","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1750","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5918","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/663?format=json","number":"","amendmentNumber":"663","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1751","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5919","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/660?format=json","number":"","amendmentNumber":"660","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1752","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5920","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 659 not agreed to in Senate by Yea-Nay Vote. 47 - 52. Record Vote Number: 83.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/659?format=json","number":"","amendmentNumber":"659","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1753","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5921","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/170?format=json","number":"","amendmentNumber":"170","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1754","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5922","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/171?format=json","number":"","amendmentNumber":"171","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1755","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5923","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to improve mental health services of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/609?format=json","number":"609","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1756","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5924","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S671)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Agriculture, Nutrition, and Forestry.","url":"https://api.congress.gov/v3/bill/119/sres/57?format=json","number":"57","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1757","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5925","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"PSA Screening for HIM Act","url":"https://api.congress.gov/v3/bill/119/s/297?format=json","number":"297","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1758","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5926","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Medicare Access to Radiology Care Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5492?format=json","number":"5492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1759","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5927","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6690-6691)","type":"SRES","title":"A resolution commending and congratulating the United States Team for winning the 2024 Solheim Cup.","url":"https://api.congress.gov/v3/bill/118/sres/906?format=json","number":"906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1760","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5928","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6460)","type":"SRES","title":"A resolution expressing support for the designation of October 7 through October 12, 2024, as \"National 4-H Week\".","url":"https://api.congress.gov/v3/bill/118/sres/887?format=json","number":"887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1761","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5929","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-18","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6149)","type":"SRES","title":"A resolution designating the week of September 15 through September 21, 2024, as \"National Truck Driver Appreciation Week\".","url":"https://api.congress.gov/v3/bill/118/sres/827?format=json","number":"827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1762","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5930","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2024-08-01","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Physician Fee Stabilization Act","url":"https://api.congress.gov/v3/bill/118/s/4935?format=json","number":"4935","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1763","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5931","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-09-28","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Targeting Emotional and Mental Stability Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2966?format=json","number":"2966","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1764","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1765","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5933","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small LENDER Act","url":"https://api.congress.gov/v3/bill/118/s/1159?format=json","number":"1159","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1766","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5934","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3961; text: CR S3958-3959)","type":"SRES","title":"A resolution expressing the gratitude and appreciation of the Senate for the acts of heroism and valor by the members of the United States Armed Forces who participated in the June 6, 1944, amphibious landing at Normandy, France, and commending those individuals for leadership and bravery in an operation that helped bring an end to World War II.","url":"https://api.congress.gov/v3/bill/118/sres/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1767","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5935","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of David Hampton Pryor, former United States Senator for the State of Arkansas.","url":"https://api.congress.gov/v3/bill/118/sres/673?format=json","number":"673","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1768","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5936","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-27","policyArea_name":"","latestAction_text":"Amendment SA 1089 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1089?format=json","number":"","amendmentNumber":"1089","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1769","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5937","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/778?format=json","number":"","amendmentNumber":"778","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1770","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5938","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/750?format=json","number":"","amendmentNumber":"750","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1771","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5939","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-07-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/749?format=json","number":"","amendmentNumber":"749","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1772","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5940","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-03-22","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Sultana Steamboat Disaster Commemorative Coin Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/4059?format=json","number":"4059","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1773","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5941","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4958; text: CR S4957)","type":"SRES","title":"A resolution recognizing the 10th anniversary of the USA Rice-Ducks Unlimited Rice Stewardship Partnership.","url":"https://api.congress.gov/v3/bill/118/sres/403?format=json","number":"403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1774","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5942","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4958; text: CR S4955)","type":"SRES","title":"A resolution expressing support for the designation of October 1 through October 7, 2023, as \"National 4-H Week\".","url":"https://api.congress.gov/v3/bill/118/sres/399?format=json","number":"399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1775","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5943","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-27","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: S4717; text: CR S4726)","type":"SRES","title":"A resolution supporting the designation of September 21, 2023, as \"National Teach Ag Day\" and celebrating 75 years of the National Association of Agricultural Educators.","url":"https://api.congress.gov/v3/bill/118/sres/375?format=json","number":"375","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1776","label":"SPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5944","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-21","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1220?format=json","number":"","amendmentNumber":"1220","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1777","label":"SPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5945","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1014?format=json","number":"","amendmentNumber":"1014","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1778","label":"SPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5946","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1015?format=json","number":"","amendmentNumber":"1015","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1779","label":"SPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5947","labels":["Legislation"],"properties":{"sponsored_by":"A000382","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1016?format=json","number":"","amendmentNumber":"1016","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1780","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5948","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/s/851?format=json","number":"851","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1781","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5949","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Export Control Reform Act of 2018 relating to licensing transparency.","url":"https://api.congress.gov/v3/bill/119/s/744?format=json","number":"744","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1782","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5950","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit Federal funding for National Public Radio, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/746?format=json","number":"746","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1783","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5951","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Respect Parents’ Childcare Choices Act","url":"https://api.congress.gov/v3/bill/119/s/535?format=json","number":"535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1784","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5952","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Defending Defense Research from Chinese Communist Party Espionage Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/418?format=json","number":"418","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1785","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5953","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Border Security is National Security Act","url":"https://api.congress.gov/v3/bill/119/s/301?format=json","number":"301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1786","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5954","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"End Unaccountable Amnesty Act","url":"https://api.congress.gov/v3/bill/119/s/225?format=json","number":"225","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1787","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5955","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Qualified Immunity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/122?format=json","number":"122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1788","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5956","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"CBW Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/63?format=json","number":"63","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1789","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5957","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Leadership in CET Act","url":"https://api.congress.gov/v3/bill/118/hr/10416?format=json","number":"10416","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1790","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5958","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"End Executive Branch Amnesty Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10061?format=json","number":"10061","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1791","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5959","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-08-20","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"SENIOR Act","url":"https://api.congress.gov/v3/bill/118/hr/9383?format=json","number":"9383","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1792","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5960","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Visas for Violent Criminals Act","url":"https://api.congress.gov/v3/bill/118/hr/9117?format=json","number":"9117","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1793","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5961","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-07-10","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HJRES","title":"Disapproving the rule submitted by the Department of Health and Human Services relating to \"Designated Placement Requirements for LGBTQI plus Children\".","url":"https://api.congress.gov/v3/bill/118/hjres/182?format=json","number":"182","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1794","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5962","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-06-28","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"No Tax Dollars for College Encampments Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8883?format=json","number":"8883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1795","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5963","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Conscience Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8857?format=json","number":"8857","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1796","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5964","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-06-13","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Head Start Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/8723?format=json","number":"8723","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1797","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5965","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-01","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Financial Services, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"CBW Fentanyl Act","url":"https://api.congress.gov/v3/bill/118/hr/8197?format=json","number":"8197","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1798","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5966","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-19","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Defund NPR Act","url":"https://api.congress.gov/v3/bill/118/hr/8083?format=json","number":"8083","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1799","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5967","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"118","introducedDate":"2024-04-17","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"American Students First Act","url":"https://api.congress.gov/v3/bill/118/hr/8039?format=json","number":"8039","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1800","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5968","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-03-03","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S1463)","type":"SCONRES","title":"A concurrent resolution supporting the Local Radio Freedom Act.","url":"https://api.congress.gov/v3/bill/119/sconres/8?format=json","number":"8","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1801","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1802","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1803","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1804","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5972","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S1131-1135)","type":"S","title":"A bill to redesignate land within certain wilderness study areas in the State of Wyoming, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/681?format=json","number":"681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1805","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5973","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/541?format=json","number":"541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1806","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5974","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S862)","type":"S","title":"A bill to repeal a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/s/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1807","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1808","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5976","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S795-796)","type":"S","title":"A bill to amend the Omnibus Parks and Public Lands Management Act of 1996 to provide for the establishment of a Ski Area Fee Retention Account, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/472?format=json","number":"472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1809","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5977","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S796)","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish a minimum Medicaid disproportionate share hospital allotment for States.","url":"https://api.congress.gov/v3/bill/119/s/474?format=json","number":"474","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1810","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5978","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S481-482)","type":"S","title":"Making National Parks Safer Act","url":"https://api.congress.gov/v3/bill/119/s/290?format=json","number":"290","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1811","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5979","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S336-337)","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","url":"https://api.congress.gov/v3/bill/119/s/211?format=json","number":"211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1812","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5980","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S228-231)","type":"S","title":"Wildfire Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/140?format=json","number":"140","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1813","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5981","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S231-232)","type":"S","title":"Wildland Firefighters Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/142?format=json","number":"142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1814","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5982","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-14","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S140)","type":"S","title":"Defending American Sovereignty in Global Pandemics Act","url":"https://api.congress.gov/v3/bill/119/s/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"1815","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5983","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-13","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1?format=json","number":"","amendmentNumber":"1","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1816","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5984","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1817","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5985","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-06-15","latestAction_text":"Held at the desk.","title":"Connect Our Parks Act","type":"S","url":"https://api.congress.gov/v3/bill/118/s/2018?format=json","number":"2018","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":"18:05:04"}}} +{"type":"relationship","id":"1818","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5986","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"118","introducedDate":"2023-02-01","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Health Clinic Burden Reduction Act","url":"https://api.congress.gov/v3/bill/118/s/198?format=json","number":"198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1819","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5987","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Combating Global Poverty Through Energy Development Act","url":"https://api.congress.gov/v3/bill/118/s/5374?format=json","number":"5374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1820","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5988","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution expressing the sense of the Senate that the Russian Federation started the war against Ukraine by launching an unprovoked full-scale invasion of Ukraine on February 24, 2022.","url":"https://api.congress.gov/v3/bill/119/sres/114?format=json","number":"114","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1821","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5989","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to provide for the designation of certain wilderness areas, recreation management areas, and conservation areas in the State of Colorado, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/764?format=json","number":"764","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1822","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5990","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-27","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S1433)","type":"SRES","title":"A resolution to recognize and celebrate the 30th anniversary of the Denver International Airport.","url":"https://api.congress.gov/v3/bill/119/sres/102?format=json","number":"102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1823","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5991","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal to Edward J. Dwight, Jr., the first African American astronaut candidate in the United States.","url":"https://api.congress.gov/v3/bill/119/s/734?format=json","number":"734","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1824","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5992","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1143?format=json","number":"","amendmentNumber":"1143","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1825","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5993","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1145?format=json","number":"","amendmentNumber":"1145","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1826","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5994","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1146?format=json","number":"","amendmentNumber":"1146","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1827","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5995","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1144?format=json","number":"","amendmentNumber":"1144","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1828","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5996","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1050?format=json","number":"","amendmentNumber":"1050","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1829","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5997","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1049?format=json","number":"","amendmentNumber":"1049","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1830","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5998","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1048?format=json","number":"","amendmentNumber":"1048","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1831","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5999","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1047?format=json","number":"","amendmentNumber":"1047","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1832","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6000","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1045?format=json","number":"","amendmentNumber":"1045","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1833","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6001","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1046?format=json","number":"","amendmentNumber":"1046","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1834","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6002","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1027?format=json","number":"","amendmentNumber":"1027","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1835","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6003","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/1028?format=json","number":"","amendmentNumber":"1028","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1836","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6004","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/961?format=json","number":"","amendmentNumber":"961","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1837","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6005","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/962?format=json","number":"","amendmentNumber":"962","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1838","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6006","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/960?format=json","number":"","amendmentNumber":"960","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1839","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"6007","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/958?format=json","number":"","amendmentNumber":"958","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1840","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6008","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to remove the limitation on the amount of a civil penalty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/845?format=json","number":"845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1841","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6009","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/995?format=json","number":"","amendmentNumber":"995","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1842","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6010","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"Amendment SA 276 ruled out of order by the chair.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/276?format=json","number":"","amendmentNumber":"276","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1843","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6011","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/279?format=json","number":"","amendmentNumber":"279","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1844","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6012","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/277?format=json","number":"","amendmentNumber":"277","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1845","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6013","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/278?format=json","number":"","amendmentNumber":"278","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1846","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6014","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/280?format=json","number":"","amendmentNumber":"280","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1847","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6015","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/205?format=json","number":"","amendmentNumber":"205","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1848","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6016","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-20","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/samdt/206?format=json","number":"","amendmentNumber":"206","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1849","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6017","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Dairy Business Innovation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/420?format=json","number":"420","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1850","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6018","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the proper tax treatment of personal service income earned in pass-thru entities.","url":"https://api.congress.gov/v3/bill/119/s/445?format=json","number":"445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1851","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6019","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"COOL Online Act","url":"https://api.congress.gov/v3/bill/119/s/294?format=json","number":"294","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1852","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6020","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2023-07-11","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Palliative Care and Hospice Education and Training Act","url":"https://api.congress.gov/v3/bill/118/s/2243?format=json","number":"2243","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1853","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6021","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2024-12-16","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3332?format=json","number":"","amendmentNumber":"3332","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"1854","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6022","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2024-12-04","policyArea_name":"","latestAction_text":"Amendment SA 3311 agreed to in Senate by Unanimous Consent.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/3311?format=json","number":"","amendmentNumber":"3311","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1855","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6023","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-11-07","latestAction_text":"Held at the desk.","title":"ACCESS Rural America Act","type":"S","url":"https://api.congress.gov/v3/bill/118/s/3242?format=json","number":"3242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":"10:41:40"}}} +{"type":"relationship","id":"1856","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6024","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6451)","type":"SRES","title":"A resolution designating October 23, 2024, as \"National Marine Sanctuary Day\".","url":"https://api.congress.gov/v3/bill/118/sres/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1857","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6025","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6451)","type":"SRES","title":"A resolution designating October 12, 2024, as \"National Loggers Day\".","url":"https://api.congress.gov/v3/bill/118/sres/863?format=json","number":"863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1858","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6026","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2023-02-28","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"DAIRY PRIDE Act","url":"https://api.congress.gov/v3/bill/118/s/549?format=json","number":"549","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1859","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6027","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Winter Recreation Small Business Recovery Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/5049?format=json","number":"5049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1860","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6028","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to assure pharmacy access and choice for beneficiaries under prescription drug plans and MA-PD plans and to establish requirements of pharmacy benefit managers under Medicare part D.","url":"https://api.congress.gov/v3/bill/119/s/882?format=json","number":"882","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1861","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6029","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Romance Scam Prevention Act","url":"https://api.congress.gov/v3/bill/119/s/841?format=json","number":"841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1862","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6030","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Immigration and Nationality Act to deny immigration benefits to aliens who carried out, participated in, planned, financed, supported, or otherwise facilitated the October 2023 attacks against Israel.","url":"https://api.congress.gov/v3/bill/119/s/762?format=json","number":"762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1863","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6031","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization until certain conditions have been met.","url":"https://api.congress.gov/v3/bill/119/s/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1864","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6032","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to improve the cooperation between the United States and the authorities of Taiwan with respect to travel and tourism.","url":"https://api.congress.gov/v3/bill/119/s/733?format=json","number":"733","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1865","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6033","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the period of time for making S corporation elections, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/684?format=json","number":"684","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1866","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6034","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program within the Office of Juvenile Justice and Delinquency Prevention to award grants to States that require the recording of all child welfare interviews with children and adults, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/659?format=json","number":"659","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1867","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6035","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Omnibus Crime Control and Safe Streets Act of 1968 to increase grants to combat domestic violence for States that implement domestic violence prevention training for cosmetologists and barbers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/520?format=json","number":"520","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1868","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6036","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Our Supreme Court Justices Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/399?format=json","number":"399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1869","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6037","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Federal Employee Performance and Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/359?format=json","number":"359","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1870","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6038","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SHOW UP Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/354?format=json","number":"354","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1871","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6039","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Federal Freeze Act","url":"https://api.congress.gov/v3/bill/119/s/357?format=json","number":"357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1872","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6040","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"RETIREES FIRST Act","url":"https://api.congress.gov/v3/bill/119/s/358?format=json","number":"358","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1873","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6041","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to provide for across-the-board rescissions of nonsecurity discretionary spending.","url":"https://api.congress.gov/v3/bill/119/s/360?format=json","number":"360","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1874","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6042","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a commission to study the relocation of certain agencies outside of the Washington, D.C. metropolitan area, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/353?format=json","number":"353","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1875","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6043","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"American Music Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/326?format=json","number":"326","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1876","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6044","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Prison Staff Safety Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/307?format=json","number":"307","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1877","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6045","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to release a Federal reversionary interest and convey mineral interests in Chester County, Tennessee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/277?format=json","number":"277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1878","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6046","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Master Sergeant Roddie Edmonds Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/262?format=json","number":"262","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1879","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"6047","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/119/s/244?format=json","number":"244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1880","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6048","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","policyArea_name":"International Affairs","introducedDate":"2006-04-27","latestAction_text":"On motion to suspend the rules and pass the bill Failed by the Yeas and Nays: (2/3 required): 263 - 159 (Roll no. 294). (text: CR H4234)","type":"HR","title":"To require representatives of governments designated as State Sponsors of Terrorism to disclose to the Attorney General lobbying contacts with legislative branch officials, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hr/5228?format=json","number":"5228","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2006-06-20","latestAction_actionTime":"14:32:07"}}} +{"type":"relationship","id":"1881","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6049","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-04-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on 21st Century Competitiveness.","type":"HR","title":"To amend the Illegal Immigration Reform and Immigrant Responsibility Act of 1996 to permit States to determine State residency for higher education purposes and to authorize the cancellation of removal and adjustment of status of certain alien students who are long-term United States residents and who entered the United States as children, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hr/5131?format=json","number":"5131","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1882","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6050","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-03-10","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Immigration, Border Security, and Claims.","type":"HR","title":"To amend titles XIX and XXI of the Social Security Act to permit States the option of coverage of legal immigrants under the Medicaid Program and the State children's health insurance program (SCHIP).","url":"https://api.congress.gov/v3/bill/109/hr/1233?format=json","number":"1233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-04-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1883","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6051","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-09-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 503) to amend the Horse Protection Act to prohibit the shipping, transporting, moving, delivering, receiving, possessing, purchasing, selling, or donation of horses and other equines to be slaughtered for human consumption, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/981?format=json","number":"981","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-09-07","latestAction_actionTime":"11:14:11"}}} +{"type":"relationship","id":"1884","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6052","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-07-26","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4157) to amend the Social Security Act to encourage the dissemination, security, confidentiality, and usefulness of health information technology.","url":"https://api.congress.gov/v3/bill/109/hres/952?format=json","number":"952","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-07-27","latestAction_actionTime":"12:38:04"}}} +{"type":"relationship","id":"1885","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6053","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-07-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 9) to amend the Voting Rights Act of 1965.","url":"https://api.congress.gov/v3/bill/109/hres/910?format=json","number":"910","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-07-13","latestAction_actionTime":"11:30:49"}}} +{"type":"relationship","id":"1886","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6054","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-20","policyArea_name":"Congress","latestAction_text":"Pursuant to the provisions of H. Res. 890, H. Res. 878 is laid on the table.","type":"HRES","title":"Providing for consideration of the bill (H.R. 9) to amend the Voting Rights Act of 1965.","url":"https://api.congress.gov/v3/bill/109/hres/878?format=json","number":"878","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-27","latestAction_actionTime":"13:20:59"}}} +{"type":"relationship","id":"1887","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6055","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-05-25","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5254) to set schedules for the consideration of permits for refineries.","url":"https://api.congress.gov/v3/bill/109/hres/842?format=json","number":"842","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-07","latestAction_actionTime":"16:54:04"}}} +{"type":"relationship","id":"1888","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6056","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5252) to promote the deployment of broadband networks and services.","url":"https://api.congress.gov/v3/bill/109/hres/850?format=json","number":"850","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-08","latestAction_actionTime":"17:55:37"}}} +{"type":"relationship","id":"1889","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6057","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-13","policyArea_name":"Congress","latestAction_text":"On agreeing to the resolution Agreed to by recorded vote: 221 - 194 (Roll no. 262). (text: CR H3818)","type":"HRES","title":"Providing for consideration of the bill (H.R. 5576) making appropriations for the Departments of Transportation, Treasury, and Housing and Urban Development, the Judiciary, District of Columbia, and independent agencies for the fiscal year ending September 30, 2007, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/865?format=json","number":"865","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-13","latestAction_actionTime":"16:14:54"}}} +{"type":"relationship","id":"1890","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6058","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5522) making appropriations for foreign operations, export financing, and related programs for the fiscal year ending September 30, 2007, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/851?format=json","number":"851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-08","latestAction_actionTime":"11:13:00"}}} +{"type":"relationship","id":"1891","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6059","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2006-06-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving a requirement of clause 6(a) of rule XIII with respect to consideration of certain resolutions reported from the Committee on Rules.","url":"https://api.congress.gov/v3/bill/109/hres/862?format=json","number":"862","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2006-06-13","latestAction_actionTime":"14:41:33"}}} +{"type":"relationship","id":"1892","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6060","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-11-17","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving points of order against the conference report to accompany the bill (H.R. 3058) making appropriations for the Departments of Transportation, Treasury, and Housing and Urban Development, the Judiciary, District of Columbia, and independent agencies for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/565?format=json","number":"565","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-11-18","latestAction_actionTime":"09:29:51"}}} +{"type":"relationship","id":"1893","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6061","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-11-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1065) to establish the United States Boxing Commission to protect the general welfare of boxers and to ensure fairness in the sport of professional boxing.","url":"https://api.congress.gov/v3/bill/109/hres/553?format=json","number":"553","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-11-16","latestAction_actionTime":"15:16:57"}}} +{"type":"relationship","id":"1894","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6062","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-11-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving points of order against the conference report to accompany the bill (H.R. 3057) making appropriations for foreign operations, export financing, and related programs for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/532?format=json","number":"532","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-11-04","latestAction_actionTime":"09:57:56"}}} +{"type":"relationship","id":"1895","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6063","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-10-06","policyArea_name":"Congress","latestAction_text":"The title of the measure was amended. Agreed to without objection.","type":"HRES","title":"Providing for the consideration of the bill (H.R. 3893) to expedite the construction of new refining capacity in the United States, to provide reliable and affordable energy for the American people, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/481?format=json","number":"481","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-10-07","latestAction_actionTime":"10:56:59"}}} +{"type":"relationship","id":"1896","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6064","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-09-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of motions to suspend the rules.","url":"https://api.congress.gov/v3/bill/109/hres/426?format=json","number":"426","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-09-08","latestAction_actionTime":"11:55:09"}}} +{"type":"relationship","id":"1897","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6065","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","policyArea_name":"International Affairs","introducedDate":"2005-07-26","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Expressing the sense of the House of Representatives regarding the July, 2005, measures of extreme repression on the part of the Cuban Government against members of Cuba's prodemocracy movement, calling for the immediate release of all political prisoners, the legalization of political parties and free elections in Cuba, urging the European Union to reexamine its policy toward Cuba, and calling on the representative of the United States to the 62d session of the United Nations Commission on Human Rights to ensure a resolution calling upon the Cuban regime to end its human rights violations, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/388?format=json","number":"388","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2005-09-29","latestAction_actionTime":"12:20:37"}}} +{"type":"relationship","id":"1898","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6066","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-07-27","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Waiving points of order against the conference report to accompany the bill (H.R. 2985) making appropriations for the Legislative Branch for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/396?format=json","number":"396","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-07-28","latestAction_actionTime":"13:24:48"}}} +{"type":"relationship","id":"1899","label":"SPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"6067","labels":["Legislation"],"properties":{"sponsored_by":"D000299","congress":"109","introducedDate":"2005-06-27","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3058) making appropriations for the Departments of Transportation, Treasury, and Housing and Urban Development, the Judiciary, District of Columbia, and independent agencies for the fiscal year ending September 30, 2006, and for other purposes.","url":"https://api.congress.gov/v3/bill/109/hres/342?format=json","number":"342","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2005-06-28","latestAction_actionTime":"16:30:20"}}} +{"type":"relationship","id":"1900","label":"SPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"6068","labels":["Legislation"],"properties":{"sponsored_by":"T000489","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Social Security Act to remove the Medicaid coverage exclusion for inmates in custody pending disposition of charges, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1510?format=json","number":"1510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1901","label":"SPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"6069","labels":["Legislation"],"properties":{"sponsored_by":"T000489","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","type":"HR","title":"DHS Cybersecurity On-the-Job Training Program Act","url":"https://api.congress.gov/v3/bill/119/hr/1034?format=json","number":"1034","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1902","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6070","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1962?format=json","number":"1962","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1903","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6071","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude from gross income certain federally subsidized loan repayments for dental school faculty.","url":"https://api.congress.gov/v3/bill/119/hr/1758?format=json","number":"1758","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1904","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6072","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Ways and Means, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Secretary of Homeland Security to notify the Commissioner of Social Security when there is a change to the citizenship status, status under the immigration laws, or work authorization status of an individual to whom a social security account number has been issued, and to require that an individual be a citizen or national of the United States to receive benefits under the Social Security Act.","url":"https://api.congress.gov/v3/bill/119/hr/1547?format=json","number":"1547","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1905","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6073","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To ensure the ability of public safety officers to retain their right to free speech on matters related to public safety, working conditions, and other matters.","url":"https://api.congress.gov/v3/bill/119/hr/1443?format=json","number":"1443","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1906","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6074","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to codify patients rights to hospital visitation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1358?format=json","number":"1358","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1907","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6075","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide that it is unlawful to knowingly distribute private intimate visual depictions with reckless disregard for the individual's lack of consent to the distribution, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1218?format=json","number":"1218","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1908","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6076","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to include over-the-counter oral healthcare products as qualified medical expenses which can be purchased with HSA and FSA funds.","url":"https://api.congress.gov/v3/bill/119/hr/1219?format=json","number":"1219","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1909","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6077","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to add alpha-gal to the definition of \"major food allergen\".","url":"https://api.congress.gov/v3/bill/119/hr/1178?format=json","number":"1178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1910","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6078","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To require retail electric utilities to notify electric consumers of rate increases, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1149?format=json","number":"1149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"1911","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6079","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to require States to consider prohibiting cost recovery related to smart grid projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1148?format=json","number":"1148","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"1912","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6080","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"No Tax on Social Security","url":"https://api.congress.gov/v3/bill/119/hr/904?format=json","number":"904","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1913","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6081","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"POST IT Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1914","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6082","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Heroes’ Tax Exemption Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/823?format=json","number":"823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1915","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6083","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Child and Animal Abuse Detection and Reporting Act","url":"https://api.congress.gov/v3/bill/119/hr/712?format=json","number":"712","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1916","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6084","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Doctor Knows Best Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/639?format=json","number":"639","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1917","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6085","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Detain and Deport Illegal Aliens Who Assault Cops Act","url":"https://api.congress.gov/v3/bill/119/hr/594?format=json","number":"594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1918","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6086","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"No Child Tax Credit for Illegals Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/547?format=json","number":"547","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"1919","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6087","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Foreign Medical Program Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/467?format=json","number":"467","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1920","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6088","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"SHIELD Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10329?format=json","number":"10329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1921","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6089","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"118","introducedDate":"2024-10-18","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to require States to consider prohibiting cost recovery related to smart grid projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10019?format=json","number":"10019","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"1922","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6090","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Crime and Law Enforcement","introducedDate":"1980-02-05","latestAction_text":"Referred to House Committee on the Judiciary.","type":"HR","title":"A bill to amend title 18, United States Code, to provide increased penalties for using a firearm to commit a felony or carrying a firearm unlawfully during the commission of a felony, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/hr/6411?format=json","number":"6411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1923","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6091","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-11-28","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend section 2040 of the Internal Revenue Code of 1954 to provide that a spouse's services shall be taken into account in determining whether that spouse furnished adequate consideration for jointly held property for purposes of qualifying for an exclusion from the Federal estate tax.","url":"https://api.congress.gov/v3/bill/96/hr/5974?format=json","number":"5974","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-11-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1924","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6092","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-11-09","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide, for purposes of the deduction for real property taxes, that certain assessments on real property which are used to provide certain facilities and services of the type which might otherwise be provided by a municipal government shall be treated as real property taxes.","url":"https://api.congress.gov/v3/bill/96/hr/5854?format=json","number":"5854","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-11-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1925","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6093","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-10-11","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide a basic $5,000 exemption from income tax for amounts received as annuities, pensions, or other retirement benefits.","url":"https://api.congress.gov/v3/bill/96/hr/5547?format=json","number":"5547","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1926","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6094","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-10-10","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to exclude from gross income the interest on deposits in certain savings institutions.","url":"https://api.congress.gov/v3/bill/96/hr/5524?format=json","number":"5524","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-10-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1927","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6095","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-09-28","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to allow a deduction of not more than $1,500 for amounts paid or incurred for maintaining a household a member of which is a dependent of the taxpayer who has attained the age of 65.","url":"https://api.congress.gov/v3/bill/96/hr/5459?format=json","number":"5459","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-09-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1928","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6096","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Private Legislation","introducedDate":"1979-08-02","latestAction_text":"Reported to House from the Committee on the Judiciary with amendment, H. Rept. 96-1211.","type":"HR","title":"A bill to amend the Act entitled \"An Act for the relief of Alice W. Olson, Lisa Olson Hayward, Eric Olson, and Nils Olson\".","url":"https://api.congress.gov/v3/bill/96/hr/5160?format=json","number":"5160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1929","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6097","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","introducedDate":"1979-02-26","policyArea_name":"Energy","latestAction_text":"Referred to House Committee on Interstate and Foreign Commerce.","type":"HR","title":"A bill to prohibit fuel adjustment clauses in electric utility rate schedules.","url":"https://api.congress.gov/v3/bill/96/hr/2368?format=json","number":"2368","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1930","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6098","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Transportation and Public Works","introducedDate":"1980-05-21","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HJRES","title":"A joint resolution to authorize and request the President to designate May 24, 1980 as \"Railroad Passenger Services Day\".","url":"https://api.congress.gov/v3/bill/96/hjres/553?format=json","number":"553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-05-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1931","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6099","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Economics and Public Finance","introducedDate":"1979-02-26","latestAction_text":"Referred to House Committee on the Judiciary.","type":"HJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to provide that appropriations made by the United States shall not exceed its revenues, except in national emergency.","url":"https://api.congress.gov/v3/bill/96/hjres/225?format=json","number":"225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1932","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6100","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Sports and Recreation","introducedDate":"1980-07-28","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HRES","title":"A resolution to designate October 11, 1980, as \"National Jogging Day\".","url":"https://api.congress.gov/v3/bill/96/hres/755?format=json","number":"755","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1933","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6101","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"96","policyArea_name":"Public Lands and Natural Resources","introducedDate":"1980-07-28","latestAction_text":"Referred to House Committee on Interior and Insular Affairs.","type":"HCONRES","title":"A concurrent resolution expressing the sense of the Congress that the President should establish a long-range plan for the acquisition of essential minerals from foreign sources and report to the Congress with respect to such plan.","url":"https://api.congress.gov/v3/bill/96/hconres/392?format=json","number":"392","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1934","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6102","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1982-12-03","policyArea_name":"Energy","latestAction_text":"Referred to Subcommittee on Fossil and Synthetic Fuels.","type":"HR","title":"A bill to ensure that rates charged by natural gas companies are market sensitive.","url":"https://api.congress.gov/v3/bill/97/hr/7358?format=json","number":"7358","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1982-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"1935","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6103","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1982-09-30","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to permit the rollover of gain from the sale (under a farmland preservation program) of farmland development rights to any State or political subdivision thereof or to certain charitable organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/97/hr/7226?format=json","number":"7226","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1982-09-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"1936","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6104","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1982-07-28","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to Subcommittee on International Economic Policy and Trade.","type":"HR","title":"A bill to improve the efficiency and strategic effectiveness of export regulation of strategic trade, to revise the Export Administration Act of 1979, and for other purposes.","url":"https://api.congress.gov/v3/bill/97/hr/6880?format=json","number":"6880","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1982-08-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1937","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6105","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1981-06-18","policyArea_name":"Taxation","latestAction_text":"See H.R.4242.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide individuals a limited exclusion from gross income for interest on deposits in certain savings institutions.","url":"https://api.congress.gov/v3/bill/97/hr/3959?format=json","number":"3959","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1981-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1938","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6106","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1981-06-04","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to allow a deduction of not more than $1,500 for amounts paid or incurred for maintaining a household a member of which is a dependent of the taxpayer who has attained the age of 65.","url":"https://api.congress.gov/v3/bill/97/hr/3819?format=json","number":"3819","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1981-06-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1939","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6107","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","introducedDate":"1981-06-04","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide a basic $7,500 exemption from income tax for amounts received as annuities, pensions, or other retirement benefits.","url":"https://api.congress.gov/v3/bill/97/hr/3818?format=json","number":"3818","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1981-06-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1940","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6108","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","policyArea_name":"Sports and Recreation","introducedDate":"1982-02-24","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HJRES","title":"A joint resolution to authorize and request the President to designate the week of May 2 through May 8, 1982 as \"National Physical Fitness and Sports for All Week\".","url":"https://api.congress.gov/v3/bill/97/hjres/411?format=json","number":"411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1982-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"1941","label":"SPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6109","labels":["Legislation"],"properties":{"sponsored_by":"B001220","congress":"97","policyArea_name":"Sports and Recreation","introducedDate":"1981-07-09","latestAction_text":"Referred to Subcommittee on Census and Population.","type":"HJRES","title":"A joint resolution to designate October 10, 1981 as \"National Jogging Day\".","url":"https://api.congress.gov/v3/bill/97/hjres/303?format=json","number":"303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1981-07-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1942","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6110","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"102","introducedDate":"1991-03-19","policyArea_name":"Education","latestAction_text":"Referred to Subcommittee on Education, Arts, Humanities.","type":"S","title":"A bill to establish a National Foundation for Excellence for outstanding students who are committed to careers in teaching in public education and for other purposes.","url":"https://api.congress.gov/v3/bill/102/s/691?format=json","number":"691","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1991-04-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1943","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6111","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"102","introducedDate":"1991-09-13","policyArea_name":"","latestAction_text":"Amendment SP 1135 agreed to in Senate by Voice Vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/102/samdt/1135?format=json","number":"","amendmentNumber":"1135","latestAction":"","latestAction_actionDate":"1991-09-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1944","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6112","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-11-12","policyArea_name":"Education","latestAction_text":"Referred to Senate Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to authorize funds for the Carl Albert Congressional Research Studies Center.","url":"https://api.congress.gov/v3/bill/96/s/3192?format=json","number":"3192","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-11-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1945","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6113","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Government Operations and Politics","introducedDate":"1980-07-29","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"S","title":"A bill granting the consent of Congress to the Southern States Energy Compact, and for related purposes.","url":"https://api.congress.gov/v3/bill/96/s/2987?format=json","number":"2987","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-07-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1946","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6114","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Labor and Employment","introducedDate":"1980-06-25","latestAction_text":"Referred to Senate Committee on Labor and Human Resources.","type":"S","title":"A bill to amend the Farm Labor Contractor Registration Act of 1963, as amended, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/2875?format=json","number":"2875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-06-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"1947","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6115","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-06-09","policyArea_name":"Health","latestAction_text":"Public Law 96-415.","type":"S","title":"A bill to designate the Indian Health Facility in Ada, Oklahoma the \"Carl Albert Indian Health Facility.","url":"https://api.congress.gov/v3/bill/96/s/2801?format=json","number":"2801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-10-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1948","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6116","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Native Americans","introducedDate":"1980-06-03","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"S","title":"A bill conferring jurisdiction on the Court of Claims to hear, determine, and render judgement on a claim of the Seminole Nation of Oklahoma.","url":"https://api.congress.gov/v3/bill/96/s/2778?format=json","number":"2778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-06-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"1949","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6117","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Private Legislation","introducedDate":"1980-05-05","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"S","title":"A bill for the relief of the Tonkawa Indians of Oklahoma.","url":"https://api.congress.gov/v3/bill/96/s/2654?format=json","number":"2654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-05-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1950","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6118","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-05-02","policyArea_name":"Taxation","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1954 to provide for the exclusion from income of interest on certain savings.","url":"https://api.congress.gov/v3/bill/96/s/2646?format=json","number":"2646","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-05-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"1951","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6119","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-02-28","policyArea_name":"Taxation","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1954 with respect to the treatment of gain on the sale or exchange of foreign investment company stock.","url":"https://api.congress.gov/v3/bill/96/s/2367?format=json","number":"2367","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-02-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"1952","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6120","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-02-26","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Powerplant and Industrial Fuel Use Act to alter certain provisions relating to natural gas.","url":"https://api.congress.gov/v3/bill/96/s/2335?format=json","number":"2335","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1953","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6121","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1980-02-26","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend title V of the Powerplant and Industrial Fuel Use Act relating to electric utility compliance options.","url":"https://api.congress.gov/v3/bill/96/s/2336?format=json","number":"2336","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1980-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1954","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6122","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Government Operations and Politics","introducedDate":"1979-11-26","latestAction_text":"Referred to Senate Committee on Governmental Affairs.","type":"S","title":"A bill to establish a procedure for Congressional review of all proposed agency rules, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/2042?format=json","number":"2042","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-11-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1955","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6123","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-26","policyArea_name":"Social Welfare","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend title IV of the Social Security Act to provide for a demonstration program of block grants to States in lieu of Federal matching for aid to families with dependent children.","url":"https://api.congress.gov/v3/bill/96/s/1579?format=json","number":"1579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"1956","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6124","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-20","policyArea_name":"Taxation","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1954 to change the period for the payment of taxes under section 4161 (a) of such Code.","url":"https://api.congress.gov/v3/bill/96/s/1549?format=json","number":"1549","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1957","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6125","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-13","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Council for Energy Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/1513?format=json","number":"1513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1958","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6126","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Transportation and Public Works","introducedDate":"1980-01-31","latestAction_text":"Referred to Senate Committee on Commerce, Science, and Transportation.","type":"SJRES","title":"A joint resolution to require continuation of rail service by the Chicago, Rock Island, and Pacific Railroad through August 31, 1980.","url":"https://api.congress.gov/v3/bill/96/sjres/139?format=json","number":"139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"1959","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6127","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-10-12","policyArea_name":"NONE","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to establish a ten year term of office for Federal judges.","url":"https://api.congress.gov/v3/bill/96/sjres/110?format=json","number":"110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-10-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1960","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6128","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","policyArea_name":"Private Legislation","introducedDate":"1980-05-05","latestAction_text":"Referred to Senate Committee on the Judiciary.","type":"SRES","title":"A resolution to refer the bill (S. 2654) entitled \"A bill for the relief of the Tonkawa Indians of Oklahoma\" to the Chief Commissioner of the United States Court of Claims for a report thereon.","url":"https://api.congress.gov/v3/bill/96/sres/420?format=json","number":"420","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1980-05-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1961","label":"SPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6129","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-03-05","policyArea_name":"Congress","latestAction_text":"Measure passed Senate.","type":"SRES","title":"A resolution relative to the death of the Honorable Dewey F. Bartlett, formerly a Senator from Oklahoma.","url":"https://api.congress.gov/v3/bill/96/sres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1979-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1962","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6130","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-09-11","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend sections 170, 2055, and 2522 of the Internal Revenue Code of 1954 to provide a deduction for income, estate, and gift tax purposes for contributions to a section 501(c)(10) organization for the purpose of building or maintaining a building.","url":"https://api.congress.gov/v3/bill/95/hr/14049?format=json","number":"14049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1963","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6131","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Government Operations and Politics","introducedDate":"1978-04-12","latestAction_text":"Referred to House Committee on Post Office and Civil Service.","type":"HR","title":"A bill to include civilian security police of the Department of Defense within the civil service retirement provisions applicable to law enforcement officers and firefighters.","url":"https://api.congress.gov/v3/bill/95/hr/12103?format=json","number":"12103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-04-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1964","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6132","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-04-05","policyArea_name":"Social Welfare","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend section 218 of the Social Security Act to require that States having agreements entered into thereunder will continue to make social security payments and reports on a calendar-quarter basis.","url":"https://api.congress.gov/v3/bill/95/hr/11914?format=json","number":"11914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-04-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1965","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6133","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-03-20","policyArea_name":"NONE","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to insure price and market protection for domestic tomato producers and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/11670?format=json","number":"11670","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-03-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1966","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6134","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-03-14","policyArea_name":"NONE","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to provide price and income protection for agricultural producers by assuring such producers a price for their agricultural commodities of not less than the cost of producing such commodities; to assure consumers and adequate supply of food and fiber at reasonable prices; and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/11547?format=json","number":"11547","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-03-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"1967","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6135","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Agriculture and Food","introducedDate":"1978-02-22","latestAction_text":"Referred to House Committee on Agriculture.","type":"HR","title":"A bill to require that imported meat and meat food products made in whole or in part of imported meat be subjected to certain tests and that such meat or products be identified as having been imported; to require the inspection of imported dairy products and that such products comply with certain minimum standards of sanitation; to require that the cost of conducting such tests, inspections, and identification procedures on imported meat and meat food products and on dairy products, as the case may be, be borne by the exporters of such articles, and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/11091?format=json","number":"11091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-02-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1968","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6136","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-02-23","policyArea_name":"Income tax","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to provide for automatic cost-of-living adjustments in the income tax and withholding rates.","url":"https://api.congress.gov/v3/bill/95/hr/11138?format=json","number":"11138","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"1969","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6137","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-02-15","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to increase the initial amount and the adjusted gross income limitation applicable to the credit for the elderly.","url":"https://api.congress.gov/v3/bill/95/hr/10972?format=json","number":"10972","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1978-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1970","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6138","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Agriculture and Food","introducedDate":"1978-02-08","latestAction_text":"Referred to House Committee on Agriculture.","type":"HR","title":"A bill to require that imported meat and meat food products made in whole or in part of imported meat be subjected to certain tests and that such meat or products be identified as having been imported; to require the inspection of imported dairy products and that such products comply with certain minimum standards of sanitation; to require that the cost of conducting such tests, inspections, and identification procedures on imported meat and meat food products and on dairy products, as the case may be, be borne by the exporters of such articles, and for other purposes.","url":"https://api.congress.gov/v3/bill/95/hr/10860?format=json","number":"10860","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-02-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"1971","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6139","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-11-29","policyArea_name":"Health","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to provide that reimbursements shall not be required of any provider of medical services with respect to payments made under the medicare program to such provider, if such payments were certified as correct by an agent of the Federal Government and the provider acted in good faith in applying for such payments.","url":"https://api.congress.gov/v3/bill/95/hr/10154?format=json","number":"10154","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-11-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"1972","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6140","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Economics and Public Finance","introducedDate":"1977-06-22","latestAction_text":"Referred to House Committee on Government Operations.","type":"HR","title":"A bill to amend section 109 of the State and Local Fiscal Assistance Act of 1972 to provide that user fees and service charges collected by States and local governments for public services be counted as taxes for purposes of allocating funds under that act.","url":"https://api.congress.gov/v3/bill/95/hr/7969?format=json","number":"7969","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1977-06-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"1973","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6141","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-03-21","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend the Internal Revenue Code of 1954 to exempt certain agricultural aircraft from the aircraft use tax, to provide for the refund of the gasoline tax to the agricultural aircraft operator.","url":"https://api.congress.gov/v3/bill/95/hr/5272?format=json","number":"5272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1974","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6142","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Agriculture and Food","introducedDate":"1977-03-21","latestAction_text":"Referred to House Committee on Interstate and Foreign Commerce.","type":"HR","title":"A bill to amend the Federal Food, Drug and Cosmetic Act to authorize the Secretary increased flexibility in issuing regulations regarding food additives.","url":"https://api.congress.gov/v3/bill/95/hr/5271?format=json","number":"5271","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1977-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1975","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6143","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-03-04","policyArea_name":"Social Welfare","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to amend title II of the Social Security Act to increase to $4,800 the amount of outside earnings permitted without deductions from benefits thereunder.","url":"https://api.congress.gov/v3/bill/95/hr/4527?format=json","number":"4527","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1976","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6144","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1977-03-04","policyArea_name":"Taxation","latestAction_text":"Referred to House Committee on Ways and Means.","type":"HR","title":"A bill to provide for the recognition of nonprofit health maintenance organizations as charitable organizations.","url":"https://api.congress.gov/v3/bill/95/hr/4528?format=json","number":"4528","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1977-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"1977","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6145","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","policyArea_name":"Constitutional amendments","introducedDate":"1977-10-12","latestAction_text":"Referred to House Committee on the Judiciary.","type":"HJRES","title":"Joint resolution proposing an amendment to the Constitution of the United States to provide that aggregate expenditures of the Government of the United States may not exceed its net revenues during any fiscal year except in time of way or economic emergency declared by the Congress.","url":"https://api.congress.gov/v3/bill/95/hjres/623?format=json","number":"623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1977-10-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1978","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6146","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-05-01","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1157?format=json","number":"1157","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"1979","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6147","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-04-05","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1116?format=json","number":"1116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-04-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"1980","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6148","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-03-20","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1096?format=json","number":"1096","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-03-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"1981","label":"SPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6149","labels":["Legislation"],"properties":{"sponsored_by":"T000400","congress":"95","introducedDate":"1978-04-12","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to House Committee on International Relations.","type":"HRES","title":"A resolution expressing the sense of the House of Representatives that the study provided for by section 4(d) of the International Investment Survey Act of 1976 be completed not later than December 31, 1978.","url":"https://api.congress.gov/v3/bill/95/hres/1130?format=json","number":"1130","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1978-04-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1982","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6150","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit the continuing availability of any portion of a Federal payment to the District of Columbia for a program of District of Columbia resident tuition support for a fiscal year which remains unobligated as of the end of the fiscal year, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1686?format=json","number":"1686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1983","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6151","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HJRES","title":"Disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/hjres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"1984","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6152","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To direct the Secretary of Health and Human Services to establish a working group to formulate recommendations for standardizing the measurements of loneliness and isolation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1305?format=json","number":"1305","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"1985","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6153","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to waive certain distance requirements for certain hospitals electing to be designated as critical access hospitals.","url":"https://api.congress.gov/v3/bill/119/hr/1191?format=json","number":"1191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1986","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6154","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Ending Green Giveaways Act","url":"https://api.congress.gov/v3/bill/119/hr/1066?format=json","number":"1066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1987","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6155","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Ranking a Member on a certain standing committee of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/39?format=json","number":"39","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":"12:12:10"}}} +{"type":"relationship","id":"1988","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6156","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":"12:11:51"}}} +{"type":"relationship","id":"1989","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6157","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Ending Green Giveaways Act","url":"https://api.congress.gov/v3/bill/118/hr/10454?format=json","number":"10454","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1990","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6158","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"No More D.C. Waste Act","url":"https://api.congress.gov/v3/bill/118/hr/10391?format=json","number":"10391","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"1991","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6159","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Housing Supply and Innovation Frameworks Act","url":"https://api.congress.gov/v3/bill/118/hr/10351?format=json","number":"10351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"1992","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6160","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-12-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"BONUS Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/10319?format=json","number":"10319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"1993","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6161","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Whole-Home Repairs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10213?format=json","number":"10213","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"1994","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6162","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Supporting Access to Rural Community Hospitals Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9823?format=json","number":"9823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"1995","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6163","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-08-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Sustainable Aviation Fuel Information Act","url":"https://api.congress.gov/v3/bill/118/hr/9327?format=json","number":"9327","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"1996","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6164","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Flood amendment (A003) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1089?format=json","number":"","amendmentNumber":"1089","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:00:56"}}} +{"type":"relationship","id":"1997","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6165","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2024-04-15","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Name, Image, and Likeness for International Collegiate Athletes Act","url":"https://api.congress.gov/v3/bill/118/hr/7982?format=json","number":"7982","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"1998","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6166","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-02-01","latestAction_text":"The Chair directed the Clerk to notify the Senate of the action of the House.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Staff Accounting Bulletin No. 121\".","url":"https://api.congress.gov/v3/bill/118/hjres/109?format=json","number":"109","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"11:35:56"}}} +{"type":"relationship","id":"1999","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6167","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-12-11","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Disapproving of recommendations by the United Nations to reduce meat consumption in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/920?format=json","number":"920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2000","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6168","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2023-11-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Improving Measurements for Loneliness and Isolation Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6284?format=json","number":"6284","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2001","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6169","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"118","introducedDate":"2023-10-03","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of October as \"Manufacturing Month\".","url":"https://api.congress.gov/v3/bill/118/hres/759?format=json","number":"759","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2002","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6170","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-29","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"JAIL for Alien Voters Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10066?format=json","number":"10066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2003","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6171","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"HARRIS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10067?format=json","number":"10067","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2004","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6172","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-22","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Expressing the sense of the House of Representatives on contract breaches and other failures under the F-35 aircraft program.","url":"https://api.congress.gov/v3/bill/118/hres/1549?format=json","number":"1549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2005","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6173","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-18","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"National Motor Voter Clarification Act","url":"https://api.congress.gov/v3/bill/118/hr/10003?format=json","number":"10003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2006","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6174","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-10-01","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BARRIER Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9895?format=json","number":"9895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2007","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6175","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-08-20","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"ALIEN Act","url":"https://api.congress.gov/v3/bill/118/hr/9387?format=json","number":"9387","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2008","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6176","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Prevention of Election Interference Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9147?format=json","number":"9147","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2009","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6177","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Resentencing Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9100?format=json","number":"9100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2010","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6178","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-06-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow the payment of certain Federal taxes with bitcoin.","url":"https://api.congress.gov/v3/bill/118/hr/8822?format=json","number":"8822","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2011","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6179","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Gaetz amendment (A016) Failed by recorded vote: 134 - 286 (Roll no. 264).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/974?format=json","number":"","amendmentNumber":"974","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"17:19:52"}}} +{"type":"relationship","id":"2012","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6180","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-06-05","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"GAZA Act","url":"https://api.congress.gov/v3/bill/118/hr/8629?format=json","number":"8629","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2013","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6181","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-03-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act with respect to certain victims.","url":"https://api.congress.gov/v3/bill/118/hr/7564?format=json","number":"7564","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2014","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6182","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-02-13","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"State Border Security Act","url":"https://api.congress.gov/v3/bill/118/hr/7330?format=json","number":"7330","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2015","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6183","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Expressing the sense of the House of Representatives that former President Donald J. Trump did not engage in insurrection or rebellion against the United States, or give aid or comfort to the enemies thereof.","url":"https://api.congress.gov/v3/bill/118/hres/1001?format=json","number":"1001","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2016","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6184","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Saudi Arabia December 6, 2019, Anti-Terror and Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/6626?format=json","number":"6626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2017","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6185","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2023-11-14","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Parents’ Right to Know Act","url":"https://api.congress.gov/v3/bill/118/hr/6403?format=json","number":"6403","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2018","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6186","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-10-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Security Clearance Revolving Door Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5900?format=json","number":"5900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2019","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6187","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2023-10-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Declaring the office of Speaker of the House of Representatives to be vacant.","url":"https://api.congress.gov/v3/bill/118/hres/757?format=json","number":"757","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":"16:45:35"}}} +{"type":"relationship","id":"2020","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6188","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2023-08-18","policyArea_name":"Law","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Censuring and condemning United States District Court Judge Tanya Chutkan.","url":"https://api.congress.gov/v3/bill/118/hres/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2021","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6189","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-08-15","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"USPIS Surveillance Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5211?format=json","number":"5211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2022","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6190","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-20","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Lifesaving Gear for Police Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9745?format=json","number":"9745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2023","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6191","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-06-27","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A037) Agreed to by recorded vote: 209 - 200 (Roll no. 321).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1065?format=json","number":"","amendmentNumber":"1065","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"16:11:43"}}} +{"type":"relationship","id":"2024","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6192","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A026) Failed by recorded vote: 205 - 216 (Roll no. 274).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/984?format=json","number":"","amendmentNumber":"984","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"18:02:32"}}} +{"type":"relationship","id":"2025","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6193","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-06-12","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A013) Agreed to by recorded vote: 238 - 187 (Roll no. 258).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/971?format=json","number":"","amendmentNumber":"971","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":"16:33:32"}}} +{"type":"relationship","id":"2026","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6194","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Maritime Advantage Results In National Economic Resiliency and Security Act","url":"https://api.congress.gov/v3/bill/118/hr/8515?format=json","number":"8515","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2027","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6195","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-04-15","latestAction_text":"Became Public Law No: 118-247.","type":"HR","title":"Jackie Robinson Ballpark National Commemorative Site Act","url":"https://api.congress.gov/v3/bill/118/hr/8012?format=json","number":"8012","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2028","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6196","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-04-12","policyArea_name":"","latestAction_text":"On agreeing to the Waltz amendment (A005) Agreed to by recorded vote: 227 - 193 (Roll no. 117).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/880?format=json","number":"","amendmentNumber":"880","latestAction":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":"12:44:55"}}} +{"type":"relationship","id":"2029","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6197","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-12","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Preserving JROTC Programs Act","url":"https://api.congress.gov/v3/bill/118/hr/7977?format=json","number":"7977","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2030","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6198","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-04-05","policyArea_name":"Health","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 37 - 6.","type":"HR","title":"FEHB Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7868?format=json","number":"7868","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2031","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6199","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Contract Our Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7401?format=json","number":"7401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2032","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6200","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2024-02-07","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"Protecting the Families of Our Fallen Patriots Act","url":"https://api.congress.gov/v3/bill/118/hr/7304?format=json","number":"7304","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2033","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6201","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"CONVENE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6846?format=json","number":"6846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2034","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6202","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-05","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","type":"HR","title":"TIGER Act","url":"https://api.congress.gov/v3/bill/118/hr/6609?format=json","number":"6609","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2035","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6203","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2023-11-13","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Sturgeon Conservation and Sustainability Act","url":"https://api.congress.gov/v3/bill/118/hr/6393?format=json","number":"6393","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2036","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6204","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2023-10-26","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Further Strengthening America’s Supply Chain and National Security Act","url":"https://api.congress.gov/v3/bill/118/hr/6112?format=json","number":"6112","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2037","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6205","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-10-06","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"PUNISH Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5912?format=json","number":"5912","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2038","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6206","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-09-26","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Abbey Gate Gold Star Families Dignified Transport Act","url":"https://api.congress.gov/v3/bill/118/hr/5738?format=json","number":"5738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2039","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6207","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-20","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 518.","type":"HR","title":"Sanctions Lists Harmonization Act","url":"https://api.congress.gov/v3/bill/118/hr/5613?format=json","number":"5613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2040","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6208","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"PAINTER Act","url":"https://api.congress.gov/v3/bill/118/hr/5164?format=json","number":"5164","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2041","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6209","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","introducedDate":"2023-07-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"PAATCH Act","url":"https://api.congress.gov/v3/bill/118/hr/5093?format=json","number":"5093","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2042","label":"SPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6210","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on actions taken by the Department of Government Efficiency.","url":"https://api.congress.gov/v3/bill/119/hr/1545?format=json","number":"1545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2043","label":"SPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6211","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the head of the Department of Government Efficiency to submit a report to Congress on the personnel of the Department and present information to Congress on the activities carried out by the Department, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1544?format=json","number":"1544","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2044","label":"SPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6212","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To designate the General George C. Marshall House, in the Commonwealth of Virginia, as an affiliated area of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1352?format=json","number":"1352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2045","label":"SPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6213","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To direct the Secretary of State to establish a national registry of Korean American divided families, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1273?format=json","number":"1273","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2046","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6214","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Blue Ridge Fire Safety Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10306?format=json","number":"10306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2047","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6215","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"No Discrimination in Housing Act","url":"https://api.congress.gov/v3/bill/118/hr/10195?format=json","number":"10195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2048","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6216","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Flexibility in Housing Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10194?format=json","number":"10194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2049","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6217","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-11-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Developing America’s Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/10122?format=json","number":"10122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2050","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6218","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week beginning November 11, 2024, as \"National Pregnancy Center Week\" to recognize the vital role that community-supported pregnancy centers play in saving lives and serving women and men faced with difficult pregnancy decisions.","url":"https://api.congress.gov/v3/bill/118/hres/1509?format=json","number":"1509","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2051","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6219","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-27","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title 18, United States Code, to protect unborn children.","url":"https://api.congress.gov/v3/bill/118/hr/8855?format=json","number":"8855","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2052","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6220","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-05-23","latestAction_text":"Placed on the Union Calendar, Calendar No. 474.","type":"HR","title":"Protecting Student Athletes’ Economic Freedom Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8534?format=json","number":"8534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2053","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6221","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protect Our Police Act","url":"https://api.congress.gov/v3/bill/118/hr/8432?format=json","number":"8432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2054","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6222","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-08","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SHUSH Act","url":"https://api.congress.gov/v3/bill/118/hr/8306?format=json","number":"8306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2055","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6223","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Apprenticeship Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/8178?format=json","number":"8178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2056","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6224","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-19","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"To prohibit Federal funding of National Public Radio and the use of Federal funds to acquire radio content.","url":"https://api.congress.gov/v3/bill/118/hr/8091?format=json","number":"8091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2057","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6225","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Iran China Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7950?format=json","number":"7950","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2058","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6226","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-04-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Every Town A Border Town Act","url":"https://api.congress.gov/v3/bill/118/hr/7875?format=json","number":"7875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2059","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6227","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-05","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Denouncing calls for a cease-fire in Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1057?format=json","number":"1057","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2060","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6228","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-01-12","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Blue Ridge Fire Safety Act","url":"https://api.congress.gov/v3/bill/118/hr/6989?format=json","number":"6989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2061","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6229","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"To prohibit the Administrator of the Environmental Protection Agency from finalizing, implementing, or enforcing the proposed rule related to revisions to the air emissions reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6813?format=json","number":"6813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2062","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6230","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Regulation Through Litigation Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6667?format=json","number":"6667","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2063","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6231","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-08","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Veterans Education is Timeless Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6300?format=json","number":"6300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2064","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6232","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-11-03","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"No American Climate Corps Act","url":"https://api.congress.gov/v3/bill/118/hr/6215?format=json","number":"6215","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2065","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6233","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-10-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of October 12, 2023, as \"National Loggers Day\".","url":"https://api.congress.gov/v3/bill/118/hres/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2066","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6234","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"Held at the desk.","type":"S","title":"International Trafficking Victims Protection Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/920?format=json","number":"920","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":"14:40:39"}}} +{"type":"relationship","id":"2067","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6235","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-04-19","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 150.","type":"S","title":"Peace Corps Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1203?format=json","number":"1203","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2068","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6236","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"No Stolen Trademarks Honored in America Act","url":"https://api.congress.gov/v3/bill/118/s/746?format=json","number":"746","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2069","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6237","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-02-07","latestAction_text":"Held at the desk.","type":"S","title":"End Tuberculosis Now Act of 2024","url":"https://api.congress.gov/v3/bill/118/s/288?format=json","number":"288","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":"16:28:07"}}} +{"type":"relationship","id":"2070","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6238","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Tech to Save Moms Act","url":"https://api.congress.gov/v3/bill/118/s/1699?format=json","number":"1699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2071","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6239","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-02-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Maintaining Investments in New Innovation Act","url":"https://api.congress.gov/v3/bill/118/s/476?format=json","number":"476","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2072","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6240","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-03-30","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-160.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to update the payment system of the Department of Veterans Affairs to allow for electronic fund transfer of educational assistance, administered by the Secretary, to a foreign institution of higher education, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/1090?format=json","number":"1090","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2073","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6241","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Firefighter Cancer Registry Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/2119?format=json","number":"2119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2074","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6242","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-07-18","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 372.","type":"S","title":"MISSILES Act","url":"https://api.congress.gov/v3/bill/118/s/2336?format=json","number":"2336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2075","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6243","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Education","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Economic Policy. Hearings held.","type":"S","title":"PSLF Payment Completion Fairness Act","url":"https://api.congress.gov/v3/bill/118/s/1331?format=json","number":"1331","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2076","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6244","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Autism Family Caregivers Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1333?format=json","number":"1333","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2077","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6245","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-25","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/1024?format=json","number":"","amendmentNumber":"1024","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2078","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6246","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/966?format=json","number":"","amendmentNumber":"966","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2079","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6247","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/967?format=json","number":"","amendmentNumber":"967","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2080","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6248","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/965?format=json","number":"","amendmentNumber":"965","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2081","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6249","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-19","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/962?format=json","number":"","amendmentNumber":"962","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2082","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6250","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/932?format=json","number":"","amendmentNumber":"932","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2083","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6251","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/933?format=json","number":"","amendmentNumber":"933","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2084","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6252","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/808?format=json","number":"","amendmentNumber":"808","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2085","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6253","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-07-18","policyArea_name":"","latestAction_text":"","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/samdt/807?format=json","number":"","amendmentNumber":"807","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"2086","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6254","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the need for enhanced public awareness of Huntington's Disease and support for the designation of a \"National Huntington's Disease Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1257?format=json","number":"1257","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2087","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6255","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-05-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Bring Jobs Home Act","url":"https://api.congress.gov/v3/bill/118/hr/8506?format=json","number":"8506","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2088","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6256","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-04-26","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"High Rise Fire Sprinkler Incentive Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8135?format=json","number":"8135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2089","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6257","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-03-01","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the need for enhanced public awareness of traumatic brain injury and support for the designation of a National Brain Injury Awareness Month.","url":"https://api.congress.gov/v3/bill/118/hres/1049?format=json","number":"1049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2090","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6258","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HCONRES","title":"Authorizing the use of Emancipation Hall in the Capitol Visitor Center for the 12th Annual Fallen Firefighters Congressional Flag Presentation Ceremony.","url":"https://api.congress.gov/v3/bill/118/hconres/91?format=json","number":"91","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2091","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6259","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-02-01","policyArea_name":"Health","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 516.","type":"HR","title":"Dennis John Benigno Traumatic Brain Injury Program Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7208?format=json","number":"7208","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2092","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6260","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-11-30","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Renewable Chemicals Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6532?format=json","number":"6532","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2093","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6261","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2023-10-06","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Urging the people of the United States to observe the month of October 2023 as Italian and Italian-American Heritage Month.","url":"https://api.congress.gov/v3/bill/118/hres/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2094","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6262","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"HOPE Act","url":"https://api.congress.gov/v3/bill/118/hr/4747?format=json","number":"4747","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2095","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6263","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-07","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Reduce Excessive Decibels and Unwanted Commotion and Emissions to Heighten Enforcement and Limitation of Intrusive Chopper Operations to Protect Towns and Enhance Residents from Noise Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3921?format=json","number":"3921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2096","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6264","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-06-05","policyArea_name":"Health","latestAction_text":"Became Public Law No: 118-147.","type":"HR","title":"Firefighter Cancer Registry Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3821?format=json","number":"3821","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2097","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6265","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-05-25","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"BOSS and SWIFT ACT of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3660?format=json","number":"3660","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2098","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6266","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-05-18","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"STOP NJ CONGESTION Act","url":"https://api.congress.gov/v3/bill/118/hr/3531?format=json","number":"3531","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2099","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6267","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-05-09","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of May 6, 2023, as \"National Sport Brain Health Day\".","url":"https://api.congress.gov/v3/bill/118/hres/379?format=json","number":"379","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2100","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6268","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2023-04-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Ending Wall Street Tax Giveaway Act","url":"https://api.congress.gov/v3/bill/118/hr/2686?format=json","number":"2686","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2101","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6269","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-03-27","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"FIRE STATION Act","url":"https://api.congress.gov/v3/bill/118/hr/1814?format=json","number":"1814","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2102","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"2103","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6271","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-01","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Law Enforcement Officers Equity Act","url":"https://api.congress.gov/v3/bill/118/hr/1322?format=json","number":"1322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2104","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6272","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-01","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"LEO Fair Retirement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1323?format=json","number":"1323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2105","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6273","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-02-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Crime Gun Tracing Modernization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/730?format=json","number":"730","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2106","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6274","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-11-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Weldon Angelos Presidential Pardon Expungements Act","url":"https://api.congress.gov/v3/bill/118/hr/10248?format=json","number":"10248","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2107","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6275","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Homeward Bound Act","url":"https://api.congress.gov/v3/bill/118/hr/9675?format=json","number":"9675","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2108","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6276","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Dakota Water Resources Act Amendments of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9554?format=json","number":"9554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2109","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6277","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Right to Trial Act","url":"https://api.congress.gov/v3/bill/118/hr/8856?format=json","number":"8856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2110","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6278","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Armstrong amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/999?format=json","number":"","amendmentNumber":"999","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":"12:03:45"}}} +{"type":"relationship","id":"2111","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6279","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-23","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"To designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/8516?format=json","number":"8516","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2112","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6280","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-17","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/hjres/150?format=json","number":"150","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2113","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6281","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Improving Protections for Workers in Temporary Agricultural Employment in the United States\".","url":"https://api.congress.gov/v3/bill/118/hjres/134?format=json","number":"134","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2114","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6282","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-04-15","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Theodore Roosevelt Presidential Library Act","url":"https://api.congress.gov/v3/bill/118/hr/7992?format=json","number":"7992","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2115","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6283","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"FTC REDO Act","url":"https://api.congress.gov/v3/bill/118/hr/7101?format=json","number":"7101","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2116","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6284","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-12-07","policyArea_name":"Congress","latestAction_text":"Pursuant to the provisions of H. Res. 918, H. Res. 917 is considered passed House. (consideration: CR H6924; text: CR H6924)","type":"HRES","title":"Authorizing the enforcement of subpoenas issued by the Chairs of the Committees on Oversight and Accountability, Ways and Means, or the Judiciary as part of the inquiry into whether sufficient grounds exist for the House of Representatives to exercise its Constitutional power to impeach Joseph Biden, President of the United States of America, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/917?format=json","number":"917","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":"18:00:00"}}} +{"type":"relationship","id":"2117","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6285","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-12-07","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Directing certain committees to continue their ongoing investigations as part of the existing House of Representatives inquiry into whether sufficient grounds exist for the House of Representatives to exercise its Constitutional power to impeach Joseph Biden, President of the United States of America, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/918?format=json","number":"918","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":"17:50:55"}}} +{"type":"relationship","id":"2118","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6286","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-12-04","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"STOP Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6568?format=json","number":"6568","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2119","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6287","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-28","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to permit payments to be made to the law firms of court-appointed attorneys, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5781?format=json","number":"5781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2120","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6288","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-13","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 23 - 0.","type":"HR","title":"Prohibiting Punishment of Acquitted Conduct Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5430?format=json","number":"5430","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2121","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6289","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-07-06","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Speech Privacy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4471?format=json","number":"4471","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2122","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6290","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To require ports of entry along the northern border to remain open as many hours per day as they were open prior to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/118/hr/4961?format=json","number":"4961","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2123","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6291","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-07-20","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Honey Identification Verification and Enforcement Act","url":"https://api.congress.gov/v3/bill/118/hr/4764?format=json","number":"4764","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2124","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6292","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-07-06","latestAction_text":"Referred to the Subcommittee on Elections.","type":"HR","title":"First Amendment Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/4472?format=json","number":"4472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2125","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6293","labels":["Legislation"],"properties":{"sponsored_by":"A000377","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Promoting Rural Exports Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4271?format=json","number":"4271","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2126","label":"SPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2127","label":"SPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"6295","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"United States Reciprocal Trade Act","url":"https://api.congress.gov/v3/bill/119/hr/735?format=json","number":"735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2128","label":"SPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"6296","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit proposition bets made with respect to the performance of a student athlete, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1552?format=json","number":"1552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2129","label":"SPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"6297","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 20 - 14.","type":"HR","title":"DETERRENT Act","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","number":"1048","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2130","label":"SPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"6298","labels":["Legislation"],"properties":{"sponsored_by":"W000829","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To repeal programs relating to funding for electric vehicle charging infrastructure, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1513?format=json","number":"1513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2131","label":"SPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"6299","labels":["Legislation"],"properties":{"sponsored_by":"W000829","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Endangered Species Act of 1973 to exclude certain populations of the lake sturgeon from the authority of such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1150?format=json","number":"1150","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2132","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6300","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1866?format=json","number":"1866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2133","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6301","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/119/hr/1693?format=json","number":"1693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2134","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6302","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To redesignate land within certain wilderness study areas in the State of Wyoming, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1472?format=json","number":"1472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2135","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6303","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To require the United States Postal Service to apply certain requirements when closing a processing, shipping, delivery, or other facility supporting a post office, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1473?format=json","number":"1473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2136","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6304","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the General Education Provisions Act to require parental notification and consent with respect to certain activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1416?format=json","number":"1416","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2137","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6305","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1310?format=json","number":"1310","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2138","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6306","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To require the United States Postal Service to post notices of changes that will affect nationwide postal services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1249?format=json","number":"1249","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2139","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6307","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"PLCAA Federal Jurisdiction Act","url":"https://api.congress.gov/v3/bill/119/hr/1068?format=json","number":"1068","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2140","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6308","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported by Unanimous Consent.","type":"HR","title":"To provide for a memorandum of understanding to address the impacts of a certain record of decision on the Upper Colorado River Basin Fund.","url":"https://api.congress.gov/v3/bill/119/hr/1001?format=json","number":"1001","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2141","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6309","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Food Security Act of 1985 to repeal certain provisions relating to the acceptance and use of contributions for public-private partnerships, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/773?format=json","number":"773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2142","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6310","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No Net Gain in Federal Lands Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/775?format=json","number":"775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2143","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6311","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PASTURES Act","url":"https://api.congress.gov/v3/bill/119/hr/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2144","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6312","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To exempt Federal actions related to energy and mineral activities on certain Federal lands from the requirements of the National Environmental Policy Act of 1969.","url":"https://api.congress.gov/v3/bill/119/hr/676?format=json","number":"676","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2145","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6313","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Expression of Interest Sensibility Act","url":"https://api.congress.gov/v3/bill/119/hr/678?format=json","number":"678","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2146","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6314","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"EARA","url":"https://api.congress.gov/v3/bill/119/hr/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2147","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6315","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Regulatory Cooling Off Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/510?format=json","number":"510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2148","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6316","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Seventh Amendment Restoration Act","url":"https://api.congress.gov/v3/bill/119/hr/432?format=json","number":"432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2149","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6317","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Grizzly Bear State Management Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/281?format=json","number":"281","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2150","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6318","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"COAL Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/280?format=json","number":"280","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2151","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6319","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Water Resources Development","introducedDate":"2025-01-07","latestAction_text":"Ordered to be Reported (Amended) by Unanimous Consent.","type":"HR","title":"Colorado River Basin System Conservation Extension Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/231?format=json","number":"231","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2152","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6320","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to authorize the Secretary of Health and Human Services, acting through the Assistant Secretary for Mental Health and Substance Use, to award grants for peer mental health first aid, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1448?format=json","number":"1448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2153","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6321","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Marsh-Billings-Rockefeller National Historical Park Establishment Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/986?format=json","number":"986","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2154","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6322","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Congratulating the University of Vermont men's soccer team on winning the 2024 National Collegiate Athletic Association Division I men's soccer national championship.","url":"https://api.congress.gov/v3/bill/119/hres/58?format=json","number":"58","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2155","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6323","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-12-17","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Financial Services, Education and the Workforce, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Combating Loneliness Act","url":"https://api.congress.gov/v3/bill/118/hr/10448?format=json","number":"10448","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2156","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6324","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-10-25","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing support for the recognition of October 26, 2024, as Intersex Awareness Day, and supporting the goals and ideals of Intersex Awareness Day.","url":"https://api.congress.gov/v3/bill/118/hres/1552?format=json","number":"1552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2157","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6325","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HRES","title":"Expressing support for the designation of the week of October 24, 2024, to October 31, 2024, as \"Bat Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1501?format=json","number":"1501","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2158","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6326","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-09-19","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Marsh-Billings-Rockefeller National Historical Park Establishment Act Amendments Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9683?format=json","number":"9683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2159","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6327","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-23","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Lake Champlain Basin Program Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9097?format=json","number":"9097","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2160","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6328","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-10","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Small Dollar Donor Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/8975?format=json","number":"8975","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2161","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6329","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-21","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Stop Comstock Act.","url":"https://api.congress.gov/v3/bill/118/hr/8796?format=json","number":"8796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2162","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6330","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Juror Non-Discrimination Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8707?format=json","number":"8707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2163","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6331","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-05","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Preventing the Algorithmic Facilitation of Rental Housing Cartels Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8622?format=json","number":"8622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2164","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6332","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-05-16","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Mental Health Emergency Needs in Disasters Act","url":"https://api.congress.gov/v3/bill/118/hr/8422?format=json","number":"8422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2165","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6333","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-02-13","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Community Housing Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7325?format=json","number":"7325","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2166","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6334","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-13","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"To make improvements in the enactment of title 41, United States Code, into a positive law title and to improve the Code.","url":"https://api.congress.gov/v3/bill/118/hr/7324?format=json","number":"7324","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2167","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6335","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2023-11-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Emergency Medical Services Reimbursement for On-Scene and Support Act","url":"https://api.congress.gov/v3/bill/118/hr/6257?format=json","number":"6257","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2168","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6336","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-10-30","latestAction_text":"Sponsor introductory remarks on measure. (CR E1112-1113)","type":"HRES","title":"Commemorating the 80th anniversary of the establishment of the Missisquoi National Wildlife Refuge.","url":"https://api.congress.gov/v3/bill/118/hres/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2169","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6337","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2023-10-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the recognition of October 26, 2023, as \"Intersex Awareness Day\", and supporting the goals and ideals of Intersex Awareness Day.","url":"https://api.congress.gov/v3/bill/118/hres/815?format=json","number":"815","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2170","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6338","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","introducedDate":"2023-10-24","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HRES","title":"Expressing support for the designation of the week of October 24, 2023, to October 31, 2023, as \"BatWeek\".","url":"https://api.congress.gov/v3/bill/118/hres/805?format=json","number":"805","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2171","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6339","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-09-21","latestAction_text":"Placed on the Union Calendar, Calendar No. 658.","type":"HR","title":"Addressing Addiction After Disasters Act","url":"https://api.congress.gov/v3/bill/118/hr/5623?format=json","number":"5623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2172","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2173","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6341","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Older Americans Act of 1965 to establish a grant program for multigenerational activities for long-term care facilities.","url":"https://api.congress.gov/v3/bill/119/hr/1812?format=json","number":"1812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2174","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6342","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Public Health Service Act to provide for greater investments in research on rare diseases and conditions disproportionately affecting minority populations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1750?format=json","number":"1750","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2175","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6343","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 10, United States Code, to prohibit discrimination in the Armed Forces.","url":"https://api.congress.gov/v3/bill/119/hr/1543?format=json","number":"1543","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2176","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6344","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To award a Congressional Gold Medal collectively to the Buffalo Soldier regiments, authorized by Congress in 1866 to serve in the United States Armed Forces, in recognition of their superior, dedicated, and vital service to our Nation.","url":"https://api.congress.gov/v3/bill/119/hr/1437?format=json","number":"1437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2177","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6345","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To develop a database of members of the Armed Forces who died in non-combat military plane crashes and to provide support to the families of such members, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1030?format=json","number":"1030","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2178","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6346","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Fairness for Servicemembers and their Families Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/970?format=json","number":"970","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2179","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6347","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Colonel Young Oak Kim Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/hr/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2180","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6348","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to establish a compensation fund for military firefighters exposed to PFAS.","url":"https://api.congress.gov/v3/bill/119/hr/705?format=json","number":"705","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2181","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6349","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-06-03","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Capital for Beginning Farmers and Ranchers Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8598?format=json","number":"8598","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2182","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6350","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Enhancing Oversight to End Discrimination in Policing Act","url":"https://api.congress.gov/v3/bill/118/hr/8509?format=json","number":"8509","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2183","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6351","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-03-21","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Women and Underrepresented Minorities in STEM Booster Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7790?format=json","number":"7790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2184","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6352","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-01-10","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to establish a compensation fund for military firefighters exposed to PFAS.","url":"https://api.congress.gov/v3/bill/118/hr/6946?format=json","number":"6946","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2185","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6353","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Care Across Generations Act","url":"https://api.congress.gov/v3/bill/118/hr/6835?format=json","number":"6835","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2186","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6354","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"REWARD Experience Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6537?format=json","number":"6537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2187","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6355","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-09-21","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"To establish an Office of Public Engagement within the Pipeline and Hazardous Materials Safety Administration.","url":"https://api.congress.gov/v3/bill/118/hr/5666?format=json","number":"5666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2188","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6356","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Equal and Uniform Treatment in the Military Act","url":"https://api.congress.gov/v3/bill/118/hr/5054?format=json","number":"5054","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2189","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6357","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Reproductive Health Travel Fund Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4268?format=json","number":"4268","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2190","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6358","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-06","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Office of Small Farms Establishment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3877?format=json","number":"3877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2191","label":"SPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6359","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"118","introducedDate":"2023-05-11","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ensuring Security for Military Spouses Act","url":"https://api.congress.gov/v3/bill/118/hr/3274?format=json","number":"3274","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2192","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6360","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 5, United States Code, to clarify the nature of judicial review of agency interpretations of statutory and regulatory provisions.","url":"https://api.congress.gov/v3/bill/119/hr/1605?format=json","number":"1605","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2193","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6361","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Small Business, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose additional requirements for covered agencies in regulatory flexibility analysis.","url":"https://api.congress.gov/v3/bill/119/hr/1606?format=json","number":"1606","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2194","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6362","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Trade Commission relating to \"Premerger Notification; Reporting and Waiting Period Requirements\".","url":"https://api.congress.gov/v3/bill/119/hjres/39?format=json","number":"39","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2195","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6363","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stopping Overdoses of Fentanyl Analogues Act","url":"https://api.congress.gov/v3/bill/119/hr/1064?format=json","number":"1064","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2196","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6364","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Interstate Commerce Simplification Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/427?format=json","number":"427","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2197","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6365","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"On agreeing to the Fitzgerald amendment (A002) Agreed to without objection.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1225?format=json","number":"","amendmentNumber":"1225","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:22"}}} +{"type":"relationship","id":"2198","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6366","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Ensuring State Attorney General Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/9143?format=json","number":"9143","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2199","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6367","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-01","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"Keeping Violent Offenders Off Our Streets Act","url":"https://api.congress.gov/v3/bill/118/hr/8205?format=json","number":"8205","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2200","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6368","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-04-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Interstate Commerce Simplification Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8021?format=json","number":"8021","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2201","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6369","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2024-04-11","policyArea_name":"Law","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Restoring Court Authority Over Litigation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7947?format=json","number":"7947","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2202","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6370","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-04-05","latestAction_text":"Placed on the Union Calendar, Calendar No. 548.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Board of Governors of the Federal Reserve System relating to \"Principles for Climate-Related Financial Risk Management for Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/118/hjres/125?format=json","number":"125","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2203","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6371","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-04-02","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Accurate Credit Reporting for Homebuyers Act","url":"https://api.congress.gov/v3/bill/118/hr/7857?format=json","number":"7857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2204","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6372","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-01","latestAction_text":"Became Public Law No: 118-127.","type":"HR","title":"To designate the facility of the United States Postal Service located at S74w16860 Janesville Road, in Muskego, Wisconsin, as the \"Colonel Hans Christian Heg Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/7199?format=json","number":"7199","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2205","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6373","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-01-31","latestAction_text":"Placed on the Union Calendar, Calendar No. 490.","type":"HR","title":"Combating Money Laundering in Cyber Crime Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7156?format=json","number":"7156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2206","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6374","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-01-10","latestAction_text":"Sponsor introductory remarks on measure. (CR H67-68)","type":"HR","title":"Expanding Access to Lending Options Act","url":"https://api.congress.gov/v3/bill/118/hr/6933?format=json","number":"6933","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2207","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6375","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-21","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the victims of the devastating attack that took place at the Waukesha, Wisconsin, Christmas parade on November 21, 2021.","url":"https://api.congress.gov/v3/bill/118/hres/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2208","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6376","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-21","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Thwarting Regional Adversary Investments Now Act","url":"https://api.congress.gov/v3/bill/118/hr/5632?format=json","number":"5632","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2209","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6377","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-19","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"BRIDGE Act","url":"https://api.congress.gov/v3/bill/118/hr/5565?format=json","number":"5565","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2210","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6378","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-09-18","latestAction_text":"Placed on the Union Calendar, Calendar No. 787.","type":"HR","title":"Insurance Data Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5535?format=json","number":"5535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2211","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6379","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"118","introducedDate":"2023-09-14","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Prohibiting Adversarial Patents Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5475?format=json","number":"5475","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2212","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6380","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to Rules for Supervisory Approval of Penalties.","url":"https://api.congress.gov/v3/bill/119/hjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2213","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6381","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow unreimbursed employee expenses to be taken into account as miscellaneous itemized deductions.","url":"https://api.congress.gov/v3/bill/119/hr/1691?format=json","number":"1691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2214","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6382","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Agriculture, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Environmental Protection Agency from using assessments generated by the Integrated Risk Information System for rulemakings and other regulatory actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1415?format=json","number":"1415","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2215","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6383","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Protecting Taxpayers from Student Loan Bailouts Act","url":"https://api.congress.gov/v3/bill/119/hr/937?format=json","number":"937","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2216","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6384","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Continuing Opportunities for People with Disabilities to Excel Act","url":"https://api.congress.gov/v3/bill/118/hr/10427?format=json","number":"10427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2217","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6385","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Ending Racism in Government Contracting Act","url":"https://api.congress.gov/v3/bill/118/hr/10216?format=json","number":"10216","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2218","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6386","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-11-19","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/118/hjres/223?format=json","number":"223","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2219","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6387","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Grothman amendment (A011) Failed by recorded vote: 193 - 218 (Roll no. 288).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1008?format=json","number":"","amendmentNumber":"1008","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":"16:07:30"}}} +{"type":"relationship","id":"2220","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6388","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Grothman amendment (A017) Agreed to by recorded vote: 216 - 206 (Roll no. 265).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/975?format=json","number":"","amendmentNumber":"975","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"17:23:28"}}} +{"type":"relationship","id":"2221","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6389","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-05","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"BIOSAFE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8632?format=json","number":"8632","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2222","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6390","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-22","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Clean Elections in America Act","url":"https://api.congress.gov/v3/bill/118/hr/8499?format=json","number":"8499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2223","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6391","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HRES","title":"Expressing the sense of the House of Representatives that certain welfare programs discourage marriage and hurt the institution of the family in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1235?format=json","number":"1235","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2224","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6392","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-04-18","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 20 - 13.","type":"HR","title":"Stop the Baseline Bloat Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8068?format=json","number":"8068","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2225","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6393","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-03-21","policyArea_name":"Social Welfare","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Safeguarding Benefits for Americans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7772?format=json","number":"7772","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2226","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6394","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-03-07","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Appropriations Transparency Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7584?format=json","number":"7584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2227","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6395","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-02-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Empowering Learners through Competency-Based Education Act","url":"https://api.congress.gov/v3/bill/118/hr/7495?format=json","number":"7495","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2228","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6396","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-02-07","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"No IRIS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7284?format=json","number":"7284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2229","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6397","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-02-01","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 41 - 0.","type":"HR","title":"Congressional Budget Office Data Access Act","url":"https://api.congress.gov/v3/bill/118/hr/7184?format=json","number":"7184","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2230","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6398","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BOP Direct-Hire Authority Act","url":"https://api.congress.gov/v3/bill/118/hr/6628?format=json","number":"6628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2231","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6399","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2023-11-08","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Cancer Drug Parity Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6301?format=json","number":"6301","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2232","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"2233","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2234","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2235","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6403","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture Export Promotion Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2236","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6404","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on Armed Services, and Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/956?format=json","number":"956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2237","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6405","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"To provide for operations of the Federal Columbia River Power System pursuant to a certain operation plan for a specified period of time, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/626?format=json","number":"626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2238","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6406","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-07","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Federal Employee Return to Work Act","url":"https://api.congress.gov/v3/bill/119/hr/236?format=json","number":"236","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2239","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6407","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-17","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Foreign Affairs, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Joint Task Force to Counter Illicit Synthetic Narcotics Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10459?format=json","number":"10459","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2240","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6408","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-10-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Federal Employee Return to Work Act","url":"https://api.congress.gov/v3/bill/118/hr/10014?format=json","number":"10014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2241","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6409","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Upholding USPS Delivery Standards and Election Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9932?format=json","number":"9932","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2242","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6410","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing support for the designation of the week of September 22 through September 28, 2024, as \"Gold Star Families Remembrance Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1447?format=json","number":"1447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2243","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6411","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-09-06","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9456?format=json","number":"9456","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2244","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6412","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Foreign Affairs, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9442?format=json","number":"9442","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2245","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6413","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-08-02","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"REG Act","url":"https://api.congress.gov/v3/bill/118/hr/9277?format=json","number":"9277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2246","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6414","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Patrick Gottsch.","url":"https://api.congress.gov/v3/bill/118/hres/1363?format=json","number":"1363","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2247","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6415","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-09","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Uniform Credentials for IHS Providers Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8956?format=json","number":"8956","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2248","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6416","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-06-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"No American Land for Communist China Act","url":"https://api.congress.gov/v3/bill/118/hr/8693?format=json","number":"8693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2249","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2250","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6418","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Establishment of a Nonessential Experimental Population of Grizzly Bear in the North Cascades Ecosystem, Washington State\".","url":"https://api.congress.gov/v3/bill/118/hjres/149?format=json","number":"149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2251","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6419","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HRES","title":"Designating the month of May as \"National First Responder Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1185?format=json","number":"1185","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2252","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6420","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To require income from the first year of an apprenticeship to be disregarded in determining eligibility for assistance under the program of block grants to States for temporary assistance for needy families.","url":"https://api.congress.gov/v3/bill/119/hr/1859?format=json","number":"1859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2253","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6421","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Prevent Tariff Abuse Act","url":"https://api.congress.gov/v3/bill/119/hr/407?format=json","number":"407","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2254","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6422","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"United States Leadership in Immersive Technology Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10359?format=json","number":"10359","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2255","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6423","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"DAMS for Beavers Act","url":"https://api.congress.gov/v3/bill/118/hr/10303?format=json","number":"10303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2256","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6424","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Expanding Support for Living Donors Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10282?format=json","number":"10282","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2257","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6425","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Prevent Tariff Abuse Act","url":"https://api.congress.gov/v3/bill/118/hr/10181?format=json","number":"10181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2258","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6426","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-10-01","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Science, Space, and Technology, Education and the Workforce, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Smart Cities and Communities Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9892?format=json","number":"9892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2259","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6427","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Preventing Unnecessary Deaths During Life-Threatening Events Act","url":"https://api.congress.gov/v3/bill/118/hr/9122?format=json","number":"9122","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2260","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6428","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Apprenticeship Opportunity Act","url":"https://api.congress.gov/v3/bill/118/hr/8225?format=json","number":"8225","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2261","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6429","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-07","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Manufacturing Jobs for Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7583?format=json","number":"7583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2262","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6430","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-01-17","latestAction_text":"Placed on the Union Calendar, Calendar No. 745.","type":"HR","title":"National Landslide Preparedness Act Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7003?format=json","number":"7003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2263","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6431","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Clean Competition Act","url":"https://api.congress.gov/v3/bill/118/hr/6622?format=json","number":"6622","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2264","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6432","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2023-11-08","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Remote Seafood Employee Meals Tax Parity Act","url":"https://api.congress.gov/v3/bill/118/hr/6295?format=json","number":"6295","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2265","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6433","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-08","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"SNAP E&T Enhancements Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5362?format=json","number":"5362","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2266","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6434","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","number":"646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2267","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6435","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","introducedDate":"2023-06-27","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Expressing support for the designation of June 26 as \"LGBTQI+ Equality Day\".","url":"https://api.congress.gov/v3/bill/118/hres/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2268","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6436","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-09","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Hydrogen Aviation Development Act","url":"https://api.congress.gov/v3/bill/118/hr/3960?format=json","number":"3960","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2269","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6437","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-05-18","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Portable Benefits for Independent Workers Pilot Program Act","url":"https://api.congress.gov/v3/bill/118/hr/3482?format=json","number":"3482","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2270","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6438","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-04-18","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Transportation Innovation Coordination Act","url":"https://api.congress.gov/v3/bill/118/hr/2664?format=json","number":"2664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2271","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6439","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-02-21","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Freedom to Invest in a Sustainable Future Act","url":"https://api.congress.gov/v3/bill/118/hr/1119?format=json","number":"1119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2272","label":"SPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"6440","labels":["Legislation"],"properties":{"sponsored_by":"V000138","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Support Military Families Act","url":"https://api.congress.gov/v3/bill/119/hr/977?format=json","number":"977","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2273","label":"SPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"6441","labels":["Legislation"],"properties":{"sponsored_by":"M001239","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To provide for the inclusion of uranium on the list of critical minerals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1622?format=json","number":"1622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2274","label":"SPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"6442","labels":["Legislation"],"properties":{"sponsored_by":"M001239","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Sponsor introductory remarks on measure. (CR H845)","type":"HR","title":"To amend title 23, United States Code, to increase the maximum gross vehicle weight for certain agricultural vehicles operating on a segment of the Interstate System in the Commonwealth of Virginia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1487?format=json","number":"1487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2275","label":"SPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6443","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To amend the Research and Development, Competition, and Innovation Act to clarify the definition of foreign country for purposes of malign foreign talent recruitment restriction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1318?format=json","number":"1318","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2276","label":"SPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6444","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Food and Nutrition Act of 2008 to modify work requirements under the supplemental nutrition assistance program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1198?format=json","number":"1198","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2277","label":"SPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6445","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Utah Wildfire Research Institute Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1045?format=json","number":"1045","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2278","label":"SPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6446","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-14","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Historic Roadways Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/376?format=json","number":"376","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2279","label":"SPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"6447","labels":["Legislation"],"properties":{"sponsored_by":"J000310","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require an assessement of CBP and ICE staffing at the southern border, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1930?format=json","number":"1930","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2280","label":"SPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"6448","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To require $100 notes to include a portrait of Donald J. Trump, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1790?format=json","number":"1790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2281","label":"SPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"6449","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To abolish the John E. Fogarty International Center for Advanced Study in the Health Sciences.","url":"https://api.congress.gov/v3/bill/119/hr/1120?format=json","number":"1120","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2282","label":"SPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"6450","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"REMAIN in Mexico Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/273?format=json","number":"273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2283","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6451","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-21","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Glen Canyon National Recreation Area: Motor Vehicles\".","url":"https://api.congress.gov/v3/bill/119/hjres/60?format=json","number":"60","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2284","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6452","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To require the Director of the Bureau of Land Management to withdraw a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/hr/1206?format=json","number":"1206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2285","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6453","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-05","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Forest Service of the Department of Agriculture relating to \"Law Enforcement; Criminal Prohibitions\".","url":"https://api.congress.gov/v3/bill/119/hjres/36?format=json","number":"36","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2286","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6454","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"FREE Act","url":"https://api.congress.gov/v3/bill/119/hr/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2287","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6455","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Ending Presidential Overreach on Public Lands Act","url":"https://api.congress.gov/v3/bill/119/hr/521?format=json","number":"521","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2288","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6456","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Daylight Act","url":"https://api.congress.gov/v3/bill/119/hr/300?format=json","number":"300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2289","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6457","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"GEO Act","url":"https://api.congress.gov/v3/bill/119/hr/301?format=json","number":"301","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2290","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6458","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Water Rights Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/302?format=json","number":"302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2291","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6459","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-10-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To require the Secretary of Health and Human Services to conduct a study on pharmacy benefit manager audit practices.","url":"https://api.congress.gov/v3/bill/118/hr/10050?format=json","number":"10050","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2292","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6460","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-18","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title 38, United States Code, to include eyeglass lens fittings in the category of medical services authorized to be furnished to veterans under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10012?format=json","number":"10012","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2293","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6461","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-09-03","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Authorizing the use of Emancipation Hall in the Capitol Visitor Center for the unveiling of a statue of Martha Hughes Cannon.","url":"https://api.congress.gov/v3/bill/118/hconres/127?format=json","number":"127","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2294","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6462","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-07-25","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Public Land Search and Rescue Act","url":"https://api.congress.gov/v3/bill/118/hr/9165?format=json","number":"9165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2295","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6463","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-15","latestAction_text":"Reported by the Committee on Small Business. H. Rept. 118-854, Part I.","type":"HR","title":"Enhanced Regulatory Flexibility Assessment Act","url":"https://api.congress.gov/v3/bill/118/hr/9032?format=json","number":"9032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2296","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6464","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-18","latestAction_text":"Placed on the Union Calendar, Calendar No. 791.","type":"HR","title":"FREE Act","url":"https://api.congress.gov/v3/bill/118/hr/8784?format=json","number":"8784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2297","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6465","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Law","latestAction_text":"Became Public Law No: 118-250.","type":"HR","title":"To amend title 28, United States Code, to authorize holding court for the Central Division of Utah in Moab and Monticello.","url":"https://api.congress.gov/v3/bill/118/hr/8666?format=json","number":"8666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2298","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6466","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-04-19","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"RECA Extension Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8097?format=json","number":"8097","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2299","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6467","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-21","latestAction_text":"Placed on the Union Calendar, Calendar No. 703.","type":"HR","title":"Good Samaritan Remediation of Abandoned Hardrock Mines Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7779?format=json","number":"7779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2300","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6468","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-03-05","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Water Rights Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7544?format=json","number":"7544","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2301","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6469","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-02-13","latestAction_text":"Became Public Law No: 118-181.","type":"HR","title":"Utah State Parks Adjustment Act","url":"https://api.congress.gov/v3/bill/118/hr/7332?format=json","number":"7332","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2302","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6470","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"118","introducedDate":"2024-01-30","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"HR","title":"The WOSB Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7128?format=json","number":"7128","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2303","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2304","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6472","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Higher Education Act of 1965 to enhance teacher and school leader quality partnership grants.","url":"https://api.congress.gov/v3/bill/119/hr/1331?format=json","number":"1331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2305","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6473","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committees on Agriculture, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Coordination for Soil Carbon Research and Monitoring Act","url":"https://api.congress.gov/v3/bill/119/hr/641?format=json","number":"641","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2306","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6474","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To amend title 49, United States Code, to allow Amtrak to use grant funds to satisfy non-Federal share requirements of certain grant programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10382?format=json","number":"10382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2307","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6475","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-12-10","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Recognizing the importance of a continued commitment to ending pediatric HIV/AIDS worldwide.","url":"https://api.congress.gov/v3/bill/118/hres/1613?format=json","number":"1613","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2308","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6476","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-11-21","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Nottoway Indian Tribe of Virginia Federal Recognition Act","url":"https://api.congress.gov/v3/bill/118/hr/10191?format=json","number":"10191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2309","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6477","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-11-20","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Get Toxic Substances Out of Schools Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10173?format=json","number":"10173","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2310","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6478","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-11-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1581?format=json","number":"1581","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2311","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6479","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-24","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"BUILT Act","url":"https://api.congress.gov/v3/bill/118/hr/9771?format=json","number":"9771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2312","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6480","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-08-30","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Tobacco User Fee Modernization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9425?format=json","number":"9425","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2313","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6481","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Improving Mentorship in STEM Higher Education Act","url":"https://api.congress.gov/v3/bill/118/hr/9134?format=json","number":"9134","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2314","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6482","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing the threat of extreme weather to children's health and well-being, and expressing the sense of Congress that solutions must be rapidly and equitably developed and deployed to address the unique vulnerabilities and needs of children.","url":"https://api.congress.gov/v3/bill/118/hres/1375?format=json","number":"1375","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2315","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2316","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6484","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-26","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Celestial Time Standardization Act","url":"https://api.congress.gov/v3/bill/118/hr/8837?format=json","number":"8837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2317","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6485","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permit qualified distributions from section 529 plans for certain transportation and parking expenses.","url":"https://api.congress.gov/v3/bill/118/hr/8438?format=json","number":"8438","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2318","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6486","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-10","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 10, United States Code, to establish a counseling pathway in the Transition Assistance Program for members of the reserve components of the Armed Forces.","url":"https://api.congress.gov/v3/bill/118/hr/8336?format=json","number":"8336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2319","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6487","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-03-20","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"CONSENT Act","url":"https://api.congress.gov/v3/bill/118/hr/7736?format=json","number":"7736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2320","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6488","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-15","latestAction_text":"Became Public Law No: 118-239.","type":"HR","title":"To designate the facility of the United States Postal Service located at 29 Franklin Street in Petersburg, Virginia, as the \"John Mercer Langston Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/7385?format=json","number":"7385","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2321","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6489","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2023-11-17","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H5940-5941)","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/874?format=json","number":"874","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2322","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6490","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-13","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Military OneSource Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/6386?format=json","number":"6386","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2323","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6491","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to require the online publication of the docket of the Board of Veterans' Appeals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1741?format=json","number":"1741","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2324","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6492","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the name of military installation under jurisdiction of Secretary of the Army located in Fayetteville, North Carolina, to be known and designated as Fort Bragg, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1214?format=json","number":"1214","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2325","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6493","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 2600 Wesley Street in Greenville, Texas, as the \"Cooper Dawson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1025?format=json","number":"1025","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2326","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6494","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ensuring Justice for Victims of Partial-Birth Abortion Act","url":"https://api.congress.gov/v3/bill/119/hr/895?format=json","number":"895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2327","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6495","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Defund the CFPB Act","url":"https://api.congress.gov/v3/bill/119/hr/814?format=json","number":"814","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2328","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6496","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Funding is Zero for Zero Nutrition Options (FIZZ-NO) Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/813?format=json","number":"813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2329","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6497","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"MACARTHUR Act","url":"https://api.congress.gov/v3/bill/119/hr/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2330","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6498","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Venue Named Under Exception Act","url":"https://api.congress.gov/v3/bill/119/hr/194?format=json","number":"194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2331","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6499","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-03","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/119/hr/195?format=json","number":"195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2332","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6500","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/118/hr/10463?format=json","number":"10463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2333","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6501","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ensuring Justice for Victims of Partial-Birth Abortion Act","url":"https://api.congress.gov/v3/bill/118/hr/10349?format=json","number":"10349","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2334","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6502","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-10-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Federal Program Integrity and Fraud Prevention Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9992?format=json","number":"9992","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2335","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6503","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"VENUE Act","url":"https://api.congress.gov/v3/bill/118/hr/9582?format=json","number":"9582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2336","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6504","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-06","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Enhancing Faith-Based Support for Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9485?format=json","number":"9485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2337","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6505","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"On agreeing to the Self amendment (A003) Failed by recorded vote: 149 - 262 (Roll no. 349).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1085?format=json","number":"","amendmentNumber":"1085","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"10:50:24"}}} +{"type":"relationship","id":"2338","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6506","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"On agreeing to the Self amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1084?format=json","number":"","amendmentNumber":"1084","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"10:07:20"}}} +{"type":"relationship","id":"2339","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6507","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-06-28","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Consumer Financial Protection Bureau Withdrawal Cap Adjustment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8908?format=json","number":"8908","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2340","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6508","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-27","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"To rename the portion of United States Highway 75 between President George Bush Turnpike and United States Highway 380 as the \"U.S. Congressman and Prisoner of War Sam Johnson Memorial Highway\".","url":"https://api.congress.gov/v3/bill/118/hr/8870?format=json","number":"8870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2341","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6509","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Self amendment (A027) Agreed to by recorded vote: 206 - 200 (Roll no. 241).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/954?format=json","number":"","amendmentNumber":"954","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"16:25:23"}}} +{"type":"relationship","id":"2342","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6510","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Gaza Strip Travel Restriction Act","url":"https://api.congress.gov/v3/bill/118/hr/8558?format=json","number":"8558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2343","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6511","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit the use of funds supporting any activities within the Xinjiang Uyghur Autonomous Region of the People's Republic of China.","url":"https://api.congress.gov/v3/bill/119/hr/1724?format=json","number":"1724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2344","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6512","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1574?format=json","number":"1574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2345","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6513","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Border Security Investment Act","url":"https://api.congress.gov/v3/bill/119/hr/445?format=json","number":"445","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2346","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6514","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HRES","title":"Honoring the selfless acts of adoption, fostering, and unconditional love by Bishop W.C. Martin, First Lady Donna Martin, and the Bennett Chapel Missionary Baptist Church of Possum Trot, Texas, toward the children in their community, and recognizing families across America who strive to foster, adopt, and better the lives of vulnerable children in the foster care system.","url":"https://api.congress.gov/v3/bill/118/hres/1572?format=json","number":"1572","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2347","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6515","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-08-30","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"SEAS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9440?format=json","number":"9440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2348","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6516","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"RESTORE Patent Rights Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9221?format=json","number":"9221","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2349","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6517","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Condemning the pro-abortion policies of the Biden administration.","url":"https://api.congress.gov/v3/bill/118/hres/1285?format=json","number":"1285","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2350","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6518","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-04-17","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Supporting Parents in Education Act","url":"https://api.congress.gov/v3/bill/118/hr/8050?format=json","number":"8050","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2351","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6519","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-02-05","policyArea_name":"Families","latestAction_text":"Placed on the Union Calendar, Calendar No. 633.","type":"HR","title":"Jenna Quinn Law of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7233?format=json","number":"7233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2352","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6520","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-01-11","policyArea_name":"Immigration","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Denouncing the Biden administration's open-borders policies, condemning the national security and public safety crisis along the southwest border, and urging President Biden to end his administration's open-borders policies.","url":"https://api.congress.gov/v3/bill/118/hres/957?format=json","number":"957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-17","latestAction_actionTime":"17:18:59"}}} +{"type":"relationship","id":"2353","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6521","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-05","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"No Technology for Terror Act","url":"https://api.congress.gov/v3/bill/118/hr/6603?format=json","number":"6603","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2354","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6522","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-09-21","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Building Youth Workforce Skills Act","url":"https://api.congress.gov/v3/bill/118/hr/5649?format=json","number":"5649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2355","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6523","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Strong Communities Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5029?format=json","number":"5029","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2356","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6524","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-14","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Rural Weather Monitoring Systems Act","url":"https://api.congress.gov/v3/bill/118/hr/4654?format=json","number":"4654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2357","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6525","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-07-10","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"American Confidence in Elections: District of Columbia Ballot Security Act","url":"https://api.congress.gov/v3/bill/118/hr/4523?format=json","number":"4523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2358","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6526","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2023-07-06","latestAction_text":"Sponsor introductory remarks on measure. (CR H3601)","type":"HJRES","title":"Proposing a balanced budget amendment to the Constitution of the United States.","url":"https://api.congress.gov/v3/bill/118/hjres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2359","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6527","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-06-12","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","type":"HR","title":"No Dollars to Uyghur Forced Labor Act","url":"https://api.congress.gov/v3/bill/118/hr/4039?format=json","number":"4039","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2360","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6528","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Visa Overstays Penalties Act","url":"https://api.congress.gov/v3/bill/118/hr/2436?format=json","number":"2436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2361","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6529","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-24","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the President to impose sanctions against foreign persons determined to have knowingly engaged in significant corruption in Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/1779?format=json","number":"1779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2362","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6530","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2023-03-10","latestAction_text":"Referred to the Subcommittee on Water, Wildlife, and Fisheries.","type":"HR","title":"Public Water Supply Invasive Species Compliance Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1560?format=json","number":"1560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2363","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6531","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to provide that aliens who have been convicted of or who have committed an offense related to entering military, naval, or coast guard property, are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1935?format=json","number":"1935","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2364","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6532","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To direct the Secretary of Homeland Security to submit a report to Congress on crimes committed by individuals granted parole under the Immigration and Nationality Act.","url":"https://api.congress.gov/v3/bill/119/hr/1714?format=json","number":"1714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2365","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6533","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To direct the Secretary of Homeland Security to conduct a threat assessment of terrorist threats to the United States posed by individuals in Syria with an affiliation with a Foreign Terrorist Organization or a Specially Designated Global Terrorist Organization, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1327?format=json","number":"1327","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2366","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6534","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Sponsor introductory remarks on measure. (CR H668)","type":"HR","title":"To establish vetting standards for the placement of unaccompanied alien children with sponsors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1202?format=json","number":"1202","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2367","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6535","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To publicize U.S. Customs and Border Protection operational statistics and report on foreign terrorist organizations.","url":"https://api.congress.gov/v3/bill/119/hr/1079?format=json","number":"1079","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2368","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6536","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Specialist Joey Lenz Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1014?format=json","number":"1014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2369","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6537","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Empowering Law Enforcement To Fight Sex Trafficking Demand Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/520?format=json","number":"520","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2370","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6538","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-01","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Specialist Joey Lenz Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10093?format=json","number":"10093","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2371","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6539","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-10","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"SAVES Act","url":"https://api.congress.gov/v3/bill/118/hr/9525?format=json","number":"9525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2372","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6540","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protecting Military Assets Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8969?format=json","number":"8969","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2373","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6541","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","introducedDate":"2024-06-05","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Criminal Illegal Alien Report Act","url":"https://api.congress.gov/v3/bill/118/hr/8634?format=json","number":"8634","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2374","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6542","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-10","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","type":"HR","title":"Veterans Claims Quality Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7919?format=json","number":"7919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2375","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6543","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-21","latestAction_text":"Became Public Law No: 118-130.","type":"HR","title":"Veterans’ Compensation Cost-of-Living Adjustment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7777?format=json","number":"7777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2376","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6544","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-21","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"STOP Enemies Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7767?format=json","number":"7767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2377","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6545","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","introducedDate":"2024-03-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"CARTEL Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7566?format=json","number":"7566","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2378","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6546","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Empowering Law Enforcement To Fight Sex Trafficking Demand Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7382?format=json","number":"7382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2379","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6547","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Jalisco Cartel Neutralization Act","url":"https://api.congress.gov/v3/bill/118/hr/7313?format=json","number":"7313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2380","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6548","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-01","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Defend Our Borders From Armed Invaders Act","url":"https://api.congress.gov/v3/bill/118/hr/7182?format=json","number":"7182","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2381","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6549","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-29","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Mark Our Place Act","url":"https://api.congress.gov/v3/bill/118/hr/6507?format=json","number":"6507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2382","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6550","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-10-17","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"HR","title":"Improving Travel for Families Act","url":"https://api.congress.gov/v3/bill/118/hr/5969?format=json","number":"5969","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2383","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6551","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"Making continuing appropriations for military pay in the event of a Government shutdown.","url":"https://api.congress.gov/v3/bill/119/hr/1932?format=json","number":"1932","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2384","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6552","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Secretary of Education to award grants to local educational agencies to establish or improve world language or dual language programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1572?format=json","number":"1572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2385","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6553","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To authorize the Administrator of the National Aeronautics and Space Administration to reimburse the Town of Chincoteague, Virginia, for costs directly associated with the removal and replacement of certain drinking water wells.","url":"https://api.congress.gov/v3/bill/119/hr/1419?format=json","number":"1419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2386","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6554","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Representing our Seniors at VA Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2387","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6555","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"PRECEPT Nurses Act","url":"https://api.congress.gov/v3/bill/119/hr/392?format=json","number":"392","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2388","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6556","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"Pay Our Troops Act","url":"https://api.congress.gov/v3/bill/118/hr/9699?format=json","number":"9699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2389","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6557","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-09-17","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Cheroenhaka (Nottoway) Indian Tribe of Virginia Federal Recognition Act","url":"https://api.congress.gov/v3/bill/118/hr/9630?format=json","number":"9630","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2390","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6558","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-10","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To authorize NASA to reimburse Chincoteague for drinking water well replacement costs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8982?format=json","number":"8982","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2391","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6559","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To extend the authority of the Secretary of the Army to enter into a contract, partnership, or grant with a non-profit organization for the purpose of providing financial support for the maintenance and sustainment of infrastructure and facilities at military service memorials and museums that highlight the role of women in the military.","url":"https://api.congress.gov/v3/bill/118/hr/8967?format=json","number":"8967","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2392","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6560","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of June 12, 2024, as \"Women Veterans Appreciation Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2393","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6561","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A010) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/937?format=json","number":"","amendmentNumber":"937","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:49:19"}}} +{"type":"relationship","id":"2394","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6562","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A013) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/940?format=json","number":"","amendmentNumber":"940","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"14:03:07"}}} +{"type":"relationship","id":"2395","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6563","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A011) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/938?format=json","number":"","amendmentNumber":"938","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:54:24"}}} +{"type":"relationship","id":"2396","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6564","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the Kiggans (VA) amendment (A012) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/939?format=json","number":"","amendmentNumber":"939","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:58:39"}}} +{"type":"relationship","id":"2397","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6565","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"To amend title XIX of the Social Security Act to add a Medicaid State plan requirement with respect to the determination of residency of certain individuals serving in the Armed Forces.","url":"https://api.congress.gov/v3/bill/118/hr/8108?format=json","number":"8108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2398","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6566","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-11","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Servicemember Healthcare Freedom Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7953?format=json","number":"7953","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2399","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6567","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-20","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"FORCE Act","url":"https://api.congress.gov/v3/bill/118/hr/7419?format=json","number":"7419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2400","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6568","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-01-25","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Counting Veterans’ Cancer Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7091?format=json","number":"7091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2401","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6569","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-01-11","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 711.","type":"HR","title":"Securing Chain of Command Continuity Act","url":"https://api.congress.gov/v3/bill/118/hr/6972?format=json","number":"6972","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2402","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6570","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-09","latestAction_text":"Placed on the Union Calendar, Calendar No. 744.","type":"HR","title":"MVP Act","url":"https://api.congress.gov/v3/bill/118/hr/6342?format=json","number":"6342","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2403","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2404","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6572","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"American Energy Worker Opportunity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9557?format=json","number":"9557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2405","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6573","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-05-22","policyArea_name":"","latestAction_text":"On agreeing to the Casar amendment (A001) Failed by recorded vote: 204 - 209 (Roll no. 223).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/919?format=json","number":"","amendmentNumber":"919","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":"17:23:46"}}} +{"type":"relationship","id":"2406","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6574","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-02-14","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Connect the Grid Act","url":"https://api.congress.gov/v3/bill/118/hr/7348?format=json","number":"7348","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2407","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6575","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-26","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"No Photo for Food Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5701?format=json","number":"5701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2408","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6576","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-07-27","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Fairness for Small-Scale Farmers and Ranchers Act","url":"https://api.congress.gov/v3/bill/118/hr/4979?format=json","number":"4979","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2409","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6577","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-07-27","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Agricultural Worker Justice Act","url":"https://api.congress.gov/v3/bill/118/hr/4978?format=json","number":"4978","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2410","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"6578","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-04-25","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Child Labor Exploitation Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/2822?format=json","number":"2822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2411","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2412","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6580","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"To require the Secretary of Homeland Security to conduct annual assessments on terrorism threats to the United States posed by terrorist organizations utilizing generative artificial intelligence applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1736?format=json","number":"1736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2413","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6581","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1735?format=json","number":"1735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2414","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6582","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/hr/1579?format=json","number":"1579","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2415","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6583","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the National Telecommunications and Information Administration Organization Act to establish a Digital Economy and Cybersecurity Board of Advisors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1495?format=json","number":"1495","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2416","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6584","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To require the Assistant Secretary of Commerce for Communications and Information to submit to Congress a plan for the Assistant Secretary to track the acceptance, processing, and disposal of certain Form 299s, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1343?format=json","number":"1343","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2417","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6585","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To require the Secretary of Homeland Security to conduct annual assessments on terrorism threats to the United States posed by terrorist organizations utilizing foreign cloud-based mobile or desktop messaging applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1212?format=json","number":"1212","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2418","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6586","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Amateur Radio Emergency Preparedness Act","url":"https://api.congress.gov/v3/bill/119/hr/1094?format=json","number":"1094","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2419","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6587","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Presented to President.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/hjres/35?format=json","number":"35","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2420","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6588","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States to prohibit persons who are not citizens, nationals, or lawful permanent residents of the United States from voting in elections.","url":"https://api.congress.gov/v3/bill/119/hjres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2421","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6589","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"No Foreign Persons Administering Our Elections Act","url":"https://api.congress.gov/v3/bill/119/hr/882?format=json","number":"882","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2422","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6590","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Counter SNIPER Act","url":"https://api.congress.gov/v3/bill/119/hr/883?format=json","number":"883","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2423","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6591","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022.","url":"https://api.congress.gov/v3/bill/119/hr/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2424","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6592","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","url":"https://api.congress.gov/v3/bill/119/hr/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2425","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6593","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the definitions of firearm silencer and firearm muffler in section 921 of title 18, United States Code, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2426","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6594","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"ACES Act","url":"https://api.congress.gov/v3/bill/119/hr/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2427","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6595","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"RACE Act","url":"https://api.congress.gov/v3/bill/119/hr/529?format=json","number":"529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2428","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6596","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Natural Gas Tax Repeal Act","url":"https://api.congress.gov/v3/bill/119/hr/313?format=json","number":"313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2429","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6597","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Energy","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","type":"HR","title":"Protecting American Energy Production Act","url":"https://api.congress.gov/v3/bill/119/hr/26?format=json","number":"26","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2430","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6598","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"118","introducedDate":"2024-12-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/118/hjres/228?format=json","number":"228","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2431","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6599","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to ensure that the Secretary of Veterans Affairs repays members of the Armed Forces for certain contributions made by such members towards Post-9/11 Educational Assistance.","url":"https://api.congress.gov/v3/bill/119/hr/1872?format=json","number":"1872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2432","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2433","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6601","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To amend the Export Control Reform Act of 2018 relating to licensing transparency.","url":"https://api.congress.gov/v3/bill/119/hr/1316?format=json","number":"1316","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2434","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6602","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To direct the Secretary of State to submit to Congress a report on funding provided by the United States to the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1252?format=json","number":"1252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2435","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6603","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To exclude certain amounts relating to compensating victims of the Texas Panhandle fires, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1169?format=json","number":"1169","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2436","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6604","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"AIM HIGH Act","url":"https://api.congress.gov/v3/bill/119/hr/1072?format=json","number":"1072","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2437","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6605","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No User Fees for Gun Owners Act","url":"https://api.congress.gov/v3/bill/119/hr/943?format=json","number":"943","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2438","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6606","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"FARM Act","url":"https://api.congress.gov/v3/bill/119/hr/620?format=json","number":"620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2439","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6607","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HCONRES","title":"Expressing support for the Geneva Consensus Declaration on Promoting Women's Health and Strengthening the Family and urging that the United States rejoin this historic declaration.","url":"https://api.congress.gov/v3/bill/119/hconres/3?format=json","number":"3","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2440","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6608","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 107 North Hoyne Avenue in Fritch, Texas, as the \"Chief Zeb Smith Post Office\".","url":"https://api.congress.gov/v3/bill/119/hr/282?format=json","number":"282","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2441","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6609","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-10-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 505 East 9th Avenue in Amarillo, Texas, as the \"Mayor Jerry H. Hodge Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/9923?format=json","number":"9923","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2442","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6610","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Improving Military Recruitment at Senior Military Colleges Act","url":"https://api.congress.gov/v3/bill/118/hr/9208?format=json","number":"9208","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2443","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6611","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Wildfire Victim Tax Relief and Recovery Act","url":"https://api.congress.gov/v3/bill/118/hr/9155?format=json","number":"9155","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2444","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6612","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A009) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1095?format=json","number":"","amendmentNumber":"1095","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:46:23"}}} +{"type":"relationship","id":"2445","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6613","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A033) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1155?format=json","number":"","amendmentNumber":"1155","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"23:15:03"}}} +{"type":"relationship","id":"2446","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6614","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A032) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1154?format=json","number":"","amendmentNumber":"1154","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"23:09:33"}}} +{"type":"relationship","id":"2447","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6615","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Air Force Technical Training Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/9103?format=json","number":"9103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2448","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6616","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","introducedDate":"2024-07-11","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (TX) amendment (A004) Failed by recorded vote: 128 - 289 (Roll no. 350).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1086?format=json","number":"","amendmentNumber":"1086","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":"10:57:10"}}} +{"type":"relationship","id":"2449","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6617","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 107 North Hoyne Avenue in Fritch, Texas, as the \"Chief Zeb Smith Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/8434?format=json","number":"8434","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2450","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6618","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-02","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"LIP Enhancement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8229?format=json","number":"8229","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2451","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6619","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require renovation of certain U.S. Border Patrol checkpoints, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1861?format=json","number":"1861","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2452","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6620","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"Security First Act","url":"https://api.congress.gov/v3/bill/119/hr/506?format=json","number":"506","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2453","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6621","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-10-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"BE GONE Act","url":"https://api.congress.gov/v3/bill/118/hr/9920?format=json","number":"9920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2454","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6622","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Expressing the sense of the House of Representatives that the third Friday of September shall be recognized as \"National POW/MIA Recognition Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1485?format=json","number":"1485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2455","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6623","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protect the Permian Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9759?format=json","number":"9759","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2456","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6624","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Border Weather Resiliency Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9368?format=json","number":"9368","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2457","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6625","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-05-07","policyArea_name":"","latestAction_text":"On agreeing to the Gonzales, Tony amendment (A001) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/902?format=json","number":"","amendmentNumber":"902","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":"15:55:48"}}} +{"type":"relationship","id":"2458","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6626","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-29","policyArea_name":"Immigration","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 715.","type":"HR","title":"Reducing Excessive Vetting Authorities to Maintain our Ports Act","url":"https://api.congress.gov/v3/bill/118/hr/8150?format=json","number":"8150","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2459","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6627","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Immigration","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"PEARL Act","url":"https://api.congress.gov/v3/bill/118/hr/8119?format=json","number":"8119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2460","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6628","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-05","policyArea_name":"Immigration","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Denouncing the Biden administration's immigration policies.","url":"https://api.congress.gov/v3/bill/118/hres/1112?format=json","number":"1112","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":"17:24:58"}}} +{"type":"relationship","id":"2461","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6629","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-05","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To terminate the United States-People's Republic of China Income Tax Convention if the People's Liberation Army initiates an armed attack against Taiwan.","url":"https://api.congress.gov/v3/bill/118/hr/7874?format=json","number":"7874","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2462","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6630","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-03-26","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Visa Integrity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7822?format=json","number":"7822","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2463","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6631","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-02-20","latestAction_text":"Referred to the Subcommittee on Counterterrorism, Law Enforcement, and Intelligence.","type":"HR","title":"National Strategy for School Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7414?format=json","number":"7414","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2464","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6632","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"DIRE Act","url":"https://api.congress.gov/v3/bill/118/hr/7415?format=json","number":"7415","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2465","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6633","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 500 Sergeant Gonzales Drive in Fort Davis, Texas, as the \"Sergeant Manuel Sillas Gonzales Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/7374?format=json","number":"7374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2466","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6634","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-10-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To prohibit the use of Federal funds to be used to support drag theater performances.","url":"https://api.congress.gov/v3/bill/118/hr/5981?format=json","number":"5981","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2467","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6635","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2023-10-18","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Condemning foreign nationals in the United States who have endorsed and espoused the actions of foreign terrorist organizations (FTO) in Gaza who, on October 7, 2023, launched attacks against the State of Israel, and killed innocent Israeli and United States citizens.","url":"https://api.congress.gov/v3/bill/118/hres/796?format=json","number":"796","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2468","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6636","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2023-09-29","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SAFER Act","url":"https://api.congress.gov/v3/bill/118/hr/5838?format=json","number":"5838","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2469","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6637","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-28","latestAction_text":"Became Public Law No: 118-141.","type":"HR","title":"James R. Dominguez Memorial Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5799?format=json","number":"5799","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2470","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6638","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2023-09-21","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing Hispanic Restaurant Week and the contributions of Hispanic restaurant owners and employees to the restaurant industry.","url":"https://api.congress.gov/v3/bill/118/hres/714?format=json","number":"714","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2471","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6639","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Expressing the profound sorrow of the House of Representatives on the death of the Honorable Sylvester Turner.","url":"https://api.congress.gov/v3/bill/119/hres/191?format=json","number":"191","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":"16:01:11"}}} +{"type":"relationship","id":"2472","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6640","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To assist applicants for community development block grant recovery assistance not having traditionally accepted forms of documentation of ownership of property to prove such ownership, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1607?format=json","number":"1607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2473","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2474","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6642","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-04-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"HEIR Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8117?format=json","number":"8117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2475","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6643","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Pink Tariffs Study Act","url":"https://api.congress.gov/v3/bill/118/hr/7927?format=json","number":"7927","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2476","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6644","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"PFAS Risk-Communication Strategy Act","url":"https://api.congress.gov/v3/bill/118/hr/6808?format=json","number":"6808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2477","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6645","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-05-16","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"To amend the Middle Class Tax Relief and Job Creation Act of 2012 to reauthorize the First Responder Network Authority.","url":"https://api.congress.gov/v3/bill/118/hr/3366?format=json","number":"3366","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2478","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6646","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-05-10","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"CLEAR Act","url":"https://api.congress.gov/v3/bill/118/hr/3182?format=json","number":"3182","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2479","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6647","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-04-28","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"ACCESS Act","url":"https://api.congress.gov/v3/bill/118/hr/3004?format=json","number":"3004","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2480","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6648","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/118/hr/1497?format=json","number":"1497","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2481","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6649","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-02-28","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Broadband Incentives for Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/1241?format=json","number":"1241","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2482","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6650","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-02-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy and Mineral Resources.","type":"HR","title":"RISEE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/913?format=json","number":"913","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2483","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6651","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-02-02","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Ensuring Women’s Right to Reproductive Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2484","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6652","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-09-29","policyArea_name":"Energy","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"RISEE Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9049?format=json","number":"9049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2485","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6653","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-07-07","policyArea_name":"Health","latestAction_text":"Received in the Senate.","type":"HR","title":"Ensuring Women’s Right to Reproductive Freedom Act","url":"https://api.congress.gov/v3/bill/117/hr/8297?format=json","number":"8297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2486","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6654","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-05-06","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to reauthorize the authority to grant certain exemptions, and for other purposes.","url":"https://api.congress.gov/v3/bill/117/hr/7679?format=json","number":"7679","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-05-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2487","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6655","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","policyArea_name":"Environmental Protection","introducedDate":"2022-03-30","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","type":"HR","title":"Federal PFAS Research Evaluation Act","url":"https://api.congress.gov/v3/bill/117/hr/7289?format=json","number":"7289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2488","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6656","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-03-08","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/117/hr/6977?format=json","number":"6977","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-03-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2489","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6657","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2022-02-02","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy.","type":"HR","title":"CLEAR Act","url":"https://api.congress.gov/v3/bill/117/hr/6562?format=json","number":"6562","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2490","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6658","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"117","introducedDate":"2021-12-16","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Stopping Abortion Bounties Act","url":"https://api.congress.gov/v3/bill/117/hr/6300?format=json","number":"6300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2491","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6659","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committees on Financial Services, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1668?format=json","number":"1668","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2492","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6660","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to prohibit transactions involving certain financial instruments by senior Federal employees, their spouses, or dependent children, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1599?format=json","number":"1599","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2493","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6661","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PATROL Act","url":"https://api.congress.gov/v3/bill/119/hr/992?format=json","number":"992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2494","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6662","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cost Estimates Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/991?format=json","number":"991","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2495","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2496","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6664","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-31","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SHUSH Act","url":"https://api.congress.gov/v3/bill/119/hr/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2497","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6665","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Regulation Through Litigation Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/849?format=json","number":"849","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2498","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6666","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"SWAG Act","url":"https://api.congress.gov/v3/bill/119/hr/757?format=json","number":"757","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2499","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6667","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"287(g) Program Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/756?format=json","number":"756","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2500","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6668","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-20","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Retaining Every Gun In a System That Restricts Your Rights Act","url":"https://api.congress.gov/v3/bill/119/hr/563?format=json","number":"563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2501","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6669","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Federal Agency Sunset Commission Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/489?format=json","number":"489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2502","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6670","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-29","latestAction_text":"Became Public Law No: 118-270.","type":"HR","title":"To designate the facility of the United States Postal Service located at 802 North Tancahua Street in Corpus Christi, Texas, as the \"Captain Robert E. 'Bob' Batterson Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/10065?format=json","number":"10065","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2503","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6671","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 23 - 17.","type":"HR","title":"Dismantle DEI Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8706?format=json","number":"8706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2504","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6672","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-05-10","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 17 - 7.","type":"HR","title":"Cost Estimates Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/8341?format=json","number":"8341","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2505","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6673","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Preventing Aliens Through Rivers Or Land Act","url":"https://api.congress.gov/v3/bill/118/hr/6619?format=json","number":"6619","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2506","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6674","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2023-09-19","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Protecting the Right to Keep and Bear Arms Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5561?format=json","number":"5561","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2507","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6675","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-07-06","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Freeing Americans Detained Abroad Act","url":"https://api.congress.gov/v3/bill/118/hr/4478?format=json","number":"4478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2508","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6676","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2023-05-02","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"YODA","url":"https://api.congress.gov/v3/bill/118/hr/3045?format=json","number":"3045","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2509","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6677","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Retaining Every Gun In a System That Restricts Your Rights Act","url":"https://api.congress.gov/v3/bill/118/hr/1271?format=json","number":"1271","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2510","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"6678","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-02-27","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Federal Agency Sunset Commission Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1206?format=json","number":"1206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2511","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6679","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To revise the authority provided to the President to impose export licensing requirements or other restrictions on the export of crude oil from the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1850?format=json","number":"1850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2512","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6680","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to modify the criteria for designation of rural emergency hospitals.","url":"https://api.congress.gov/v3/bill/119/hr/1775?format=json","number":"1775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2513","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6681","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permanently extend the exemption for telehealth services from certain high deductible health plan rules.","url":"https://api.congress.gov/v3/bill/119/hr/1650?format=json","number":"1650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2514","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6682","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-24","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HCONRES","title":"Calling an Article V Convention for proposing a Fiscal Responsibility Amendment to the United States Constitution and stipulating ratification by a vote of We the People, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hconres/15?format=json","number":"15","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2515","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6683","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to maintain the prohibition on allowing any deduction or credit associated with a trade or business involved in trafficking marijuana.","url":"https://api.congress.gov/v3/bill/119/hr/1447?format=json","number":"1447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2516","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6684","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-02-18","latestAction_text":"On agreeing to the resolution, as amended Agreed to by the Yeas and Nays: 217 - 215 (Roll no. 50). (text: CR H818-823)","type":"HCONRES","title":"Establishing the congressional budget for the United States Government for fiscal year 2025 and setting forth the appropriate budgetary levels for fiscal years 2026 through 2034.","url":"https://api.congress.gov/v3/bill/119/hconres/14?format=json","number":"14","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":"20:22:05"}}} +{"type":"relationship","id":"2517","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6685","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1367?format=json","number":"1367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2518","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6686","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Providing amounts for the expenses of the Committee on the Budget in the One Hundred Nineteenth Congress.","url":"https://api.congress.gov/v3/bill/119/hres/91?format=json","number":"91","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2519","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6687","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To provide that the final rule of the United States Fish and Wildlife Service titled \"Endangered and Threatened Wildlife and Plants; Endangered Species Status With Critical Habitat for Guadalupe Fatmucket, Texas Fatmucket, Guadalupe Orb, Texas Pimpleback, Balcones Spike, and False Spike, and Threatened Species Status With Section 4(d) Rule and Critical Habitat for Texas Fawnsfoot\" shall have no force or effect.","url":"https://api.congress.gov/v3/bill/119/hr/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2520","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6688","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To prohibit the implementation of a Land Protection Plan for Muleshoe National Wildlife Refuge.","url":"https://api.congress.gov/v3/bill/119/hr/839?format=json","number":"839","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2521","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6689","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/hr/842?format=json","number":"842","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2522","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6690","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend title 54, United States Code, to prohibit the acquisition of land, water, or an interest in land or water from a private landowner using amounts made available under the Land and Water Conservation Fund.","url":"https://api.congress.gov/v3/bill/119/hr/841?format=json","number":"841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2523","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6691","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Education and Workforce, Financial Services, Transportation and Infrastructure, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"America First Act","url":"https://api.congress.gov/v3/bill/119/hr/746?format=json","number":"746","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2524","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6692","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Abundant American Resources Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/745?format=json","number":"745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2525","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6693","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Small Business Investor Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/652?format=json","number":"652","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2526","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6694","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-22","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"WHO is Accountable Act","url":"https://api.congress.gov/v3/bill/119/hr/600?format=json","number":"600","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2527","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6695","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Estate Tax Rate Reduction Act","url":"https://api.congress.gov/v3/bill/119/hr/601?format=json","number":"601","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2528","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6696","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/hr/574?format=json","number":"574","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2529","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6697","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Disapproving of the rule submitted by the Department of Homeland Security relating to \"Modernizing H-2 Program Requirements, Oversight, and Worker Protections\".","url":"https://api.congress.gov/v3/bill/119/hjres/21?format=json","number":"21","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2530","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6698","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Disapproving of the rule submitted by the Department of Homeland Security relating to \"Modernizing H-1B Requirements, Providing Flexibility in the F-1 Program, and Program Improvements Affecting Other Nonimmigrant Workers\".","url":"https://api.congress.gov/v3/bill/119/hjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2531","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6699","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Credit Union Act to provide more loan flexibility to credit unions, to amend the Federal Home Loan Bank Act to expand homeownership access, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1791?format=json","number":"1791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2532","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6700","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Veterans Member Business Loan Act","url":"https://api.congress.gov/v3/bill/119/hr/507?format=json","number":"507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2533","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6701","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-06","latestAction_text":"Became Public Law No: 118-220.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1535 East Los Ebanos Boulevard in Brownsville, Texas, as the \"1st Lieutenant Andres Zermeno Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/6244?format=json","number":"6244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2534","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6702","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-07-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Member Business Loan Expansion Act","url":"https://api.congress.gov/v3/bill/118/hr/4868?format=json","number":"4868","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2535","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6703","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-07-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Veterans Members Business Loan Act","url":"https://api.congress.gov/v3/bill/118/hr/4867?format=json","number":"4867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2536","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6704","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-04-27","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Safe Zones Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2946?format=json","number":"2946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2537","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6705","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-03-27","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Honest Runway Labeling Act","url":"https://api.congress.gov/v3/bill/118/hr/1804?format=json","number":"1804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2538","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6706","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-02-09","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Sgt. Fieldy Act","url":"https://api.congress.gov/v3/bill/118/hr/918?format=json","number":"918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2539","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6707","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-02-01","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Repatriate Our Patriots Act","url":"https://api.congress.gov/v3/bill/118/hr/717?format=json","number":"717","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2540","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6708","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-12-06","policyArea_name":"","latestAction_text":"On agreeing to the Gonzalez, Vicente amendment (A002) Agreed to by the Yeas and Nays: 213 - 207 (Roll no. 502).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/117/hamdt/331?format=json","number":"","amendmentNumber":"331","latestAction":"","latestAction_actionDate":"2022-12-06","latestAction_actionTime":"14:56:17"}}} +{"type":"relationship","id":"2541","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6709","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-10-07","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Sgt. Fieldy Act","url":"https://api.congress.gov/v3/bill/117/hr/9152?format=json","number":"9152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2542","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6710","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"Safe Zones Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8823?format=json","number":"8823","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2543","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6711","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-07-27","latestAction_text":"Referred to the House Committee on Oversight and Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 110 East Alexander Street in Three Rivers, Texas, as the \"Private Felix Z. Longoria Veterans' Memorial Post Office\".","url":"https://api.congress.gov/v3/bill/117/hr/8529?format=json","number":"8529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2544","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6712","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-06-15","policyArea_name":"","latestAction_text":"On agreeing to the Gonzalez, Vicente amendment (A004) Agreed to by the Yeas and Nays: 297 - 123 (Roll no. 272).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/117/hamdt/226?format=json","number":"","amendmentNumber":"226","latestAction":"","latestAction_actionDate":"2022-06-15","latestAction_actionTime":"15:22:43"}}} +{"type":"relationship","id":"2545","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6713","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-02-22","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Housing our Veterans Act","url":"https://api.congress.gov/v3/bill/117/hr/6810?format=json","number":"6810","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2546","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6714","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2022-02-11","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Student Loan Relief Act","url":"https://api.congress.gov/v3/bill/117/hr/6708?format=json","number":"6708","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2547","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6715","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","introducedDate":"2021-07-09","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"Repatriate Our Patriots Act","url":"https://api.congress.gov/v3/bill/117/hr/4382?format=json","number":"4382","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2548","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6716","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-09-07","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Member Business Loan Expansion Act","url":"https://api.congress.gov/v3/bill/117/hr/5189?format=json","number":"5189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-09-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2549","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6717","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-08-13","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Affordable Homeownership Access Act","url":"https://api.congress.gov/v3/bill/117/hr/5013?format=json","number":"5013","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-08-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2550","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6718","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-06-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"IMAGES Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/4088?format=json","number":"4088","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2551","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6719","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Trade Expansion Act of 1962 to impose limitations on the authority of the President to adjust imports that are determined to threaten to impair national security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1903?format=json","number":"1903","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2552","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2553","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6721","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HJRES","title":"Redesignating the Robert E. Lee Memorial as the \"Arlington House National Historic Site\".","url":"https://api.congress.gov/v3/bill/119/hjres/63?format=json","number":"63","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2554","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6722","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Intelligence Reform and Terrorism Prevention Act of 2004 to authorize the Director of the Federal Bureau of Investigation to make security clearance determinations and access determinations for political appointees and special Government employees in the Executive Office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1591?format=json","number":"1591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2555","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6723","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow the disclosure of certain business tax return information to the Bureau of Economic Analysis and the Bureau of Labor Statistics for certain statistical purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10546?format=json","number":"10546","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2556","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6724","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"PAID Act","url":"https://api.congress.gov/v3/bill/118/hr/10470?format=json","number":"10470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2557","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6725","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Healthy Climate and Family Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10418?format=json","number":"10418","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2558","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6726","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Veterans Transition Support Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10386?format=json","number":"10386","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2559","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6727","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Childhood Diabetes Reduction Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10199?format=json","number":"10199","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2560","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6728","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Security Clearance Review Act","url":"https://api.congress.gov/v3/bill/118/hr/10165?format=json","number":"10165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2561","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6729","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-11-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Improving Diagnosis in Medicine Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10135?format=json","number":"10135","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2562","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6730","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-10-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Facial Recognition Ban on Body Cameras Act","url":"https://api.congress.gov/v3/bill/118/hr/9954?format=json","number":"9954","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2563","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6731","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-24","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Wildlife Corridors and Habitat Connectivity Conservation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9776?format=json","number":"9776","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2564","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6732","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Peer-to-Peer Mental Health Support Act","url":"https://api.congress.gov/v3/bill/118/hr/9684?format=json","number":"9684","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2565","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6733","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-09-10","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Methane Monitoring Science Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9513?format=json","number":"9513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2566","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6734","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Older Workers’ Bureau Act","url":"https://api.congress.gov/v3/bill/118/hr/9190?format=json","number":"9190","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2567","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6735","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Beyer amendment (A004) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1090?format=json","number":"","amendmentNumber":"1090","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:06:36"}}} +{"type":"relationship","id":"2568","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6736","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Beyer amendment (A005) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1091?format=json","number":"","amendmentNumber":"1091","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:18:05"}}} +{"type":"relationship","id":"2569","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6737","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"NURSE Visa Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9079?format=json","number":"9079","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2570","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6738","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Airborne Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9000?format=json","number":"9000","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2571","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6739","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-08","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"320th Barrage Balloon Battalion Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/10110?format=json","number":"10110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2572","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6740","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-17","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on House Administration, Science, Space, and Technology, Oversight and Accountability, Financial Services, Ways and Means, Natural Resources, Homeland Security, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Supporting the designation of September 2024 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1461?format=json","number":"1461","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2573","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6741","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 4650 East Rosedale Street in Fort Worth, Texas, as the \"Dionne Phillips Bagsby Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/9112?format=json","number":"9112","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2574","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6742","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cybersecurity Clinics Grant Program Act","url":"https://api.congress.gov/v3/bill/118/hr/8770?format=json","number":"8770","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2575","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6743","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of May 2024 as \"National Physical Fitness and Sports Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1259?format=json","number":"1259","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2576","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6744","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2024-05-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Early Detection of Vision Impairments for Children Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8400?format=json","number":"8400","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2577","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6745","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-10-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the goals of \"World Sight Day\" by promoting the importance of accessible, affordable, and inclusive eye care.","url":"https://api.congress.gov/v3/bill/118/hres/780?format=json","number":"780","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2578","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6746","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-19","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Supporting the designation of September 2023 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/118/hres/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2579","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6747","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-27","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","url":"https://api.congress.gov/v3/bill/118/hres/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2580","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6748","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Recognizing the importance of diversity, equity, and inclusion efforts in higher education.","url":"https://api.congress.gov/v3/bill/118/hres/608?format=json","number":"608","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2581","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6749","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-13","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Condemning the horrific gun violence in Fort Worth, Texas, and acknowledging the human toll of gun violence in this country.","url":"https://api.congress.gov/v3/bill/118/hres/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2582","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6750","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-06-16","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the role of father engagement in improving overall health outcomes during pregnancy, birth, and postpartum, for both the mother and baby.","url":"https://api.congress.gov/v3/bill/118/hres/522?format=json","number":"522","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2583","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6751","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-05-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"High School Sports Injury Reporting Act","url":"https://api.congress.gov/v3/bill/118/hr/3737?format=json","number":"3737","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2584","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6752","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-05-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"COACHES Act","url":"https://api.congress.gov/v3/bill/118/hr/3351?format=json","number":"3351","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2585","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6753","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-05-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of May 2023 as \"National Physical Fitness and Sports Month\".","url":"https://api.congress.gov/v3/bill/118/hres/359?format=json","number":"359","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2586","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6754","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","introducedDate":"2022-10-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the goals of \"World Sight Day\" by promoting the importance of accessible, affordable, and inclusive eye care.","url":"https://api.congress.gov/v3/bill/117/hres/1437?format=json","number":"1437","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-10-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2587","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6755","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","introducedDate":"2022-09-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Cybersecurity Clinics Grant Program Act","url":"https://api.congress.gov/v3/bill/117/hr/9085?format=json","number":"9085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2588","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6756","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-09-22","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","type":"HRES","title":"Expressing support for the designation of September 2022 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/117/hres/1394?format=json","number":"1394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2589","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6757","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","introducedDate":"2022-08-26","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"High School Sports Injury Reporting","url":"https://api.congress.gov/v3/bill/117/hr/8751?format=json","number":"8751","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-08-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2590","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6758","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2021-09-30","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","type":"HRES","title":"Expressing support for the designation of September 2021 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/117/hres/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2591","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6759","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require executive branch employees to report certain royalties, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1863?format=json","number":"1863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2592","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6760","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 31, United States Code, to establish the Life Sciences Research Security Board, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1864?format=json","number":"1864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2593","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2594","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6762","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a Member to a certain standing committee of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/107?format=json","number":"107","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":"12:18:03"}}} +{"type":"relationship","id":"2595","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6763","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 27) to amend the Controlled Substances Act with respect to the scheduling of fentanyl-related substances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/93?format=json","number":"93","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":"16:59:54"}}} +{"type":"relationship","id":"2596","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6764","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Domestic SUPPLY Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/675?format=json","number":"675","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2597","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6765","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title II of the Social Security Act to means-test certain child's insurance benefits.","url":"https://api.congress.gov/v3/bill/119/hr/571?format=json","number":"571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2598","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6766","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow the child tax credit with respect to stillbirths.","url":"https://api.congress.gov/v3/bill/119/hr/570?format=json","number":"570","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2599","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6767","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"BROADBAND Leadership Act","url":"https://api.congress.gov/v3/bill/119/hr/278?format=json","number":"278","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2600","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6768","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the United States Postal Service to designate a single, unique ZIP Code for Fairlawn, Virginia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/279?format=json","number":"279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2601","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6769","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase and adjust for inflation the above-the-line deduction for teachers.","url":"https://api.congress.gov/v3/bill/119/hr/228?format=json","number":"228","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2602","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6770","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"New Source Review Permitting Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/161?format=json","number":"161","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2603","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6771","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HCONRES","title":"Reclaiming Congress’s Constitutional Mandate in Trade Resolution","url":"https://api.congress.gov/v3/bill/119/hconres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2604","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6772","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/hr/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2605","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6773","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-10-29","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Power Act to require generating facilities to provide advance notices for retiring electric generating units, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10068?format=json","number":"10068","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2606","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6774","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-10-01","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend section 3559 of title 18, United States Code, to provide that a misdemeanor for which no punishment or no maximum punishment is prescribed by statute shall be punishable as a Class A misdemeanor.","url":"https://api.congress.gov/v3/bill/118/hr/9897?format=json","number":"9897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2607","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6775","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase and adjust for inflation the above-the-line deduction for teachers.","url":"https://api.congress.gov/v3/bill/118/hr/9256?format=json","number":"9256","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2608","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6776","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Griffith amendment (A006) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1092?format=json","number":"","amendmentNumber":"1092","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"12:23:10"}}} +{"type":"relationship","id":"2609","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6777","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Griffith amendment (A025) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1147?format=json","number":"","amendmentNumber":"1147","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"22:19:56"}}} +{"type":"relationship","id":"2610","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2611","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6779","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"To establish the Land Port of Entry Modernization Trust Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1297?format=json","number":"1297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2612","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6780","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-07-11","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Hazardous Workplace Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9006?format=json","number":"9006","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2613","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6781","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-11-13","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"ARCC Act","url":"https://api.congress.gov/v3/bill/118/hr/6377?format=json","number":"6377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2614","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6782","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-11-06","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"To modify a certain commercial zone in Texas to include Zapata County, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6240?format=json","number":"6240","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2615","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6783","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-02","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Office of Colonias and Farmworker Initiatives Establishment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6183?format=json","number":"6183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2616","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6784","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-07-11","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Water Infrastructure Enhancement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4540?format=json","number":"4540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2617","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6785","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-05-22","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 46 - 0.","type":"HR","title":"Starr–Camargo Bridge Expansion Act","url":"https://api.congress.gov/v3/bill/118/hr/3569?format=json","number":"3569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2618","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6786","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","introducedDate":"2023-05-09","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"LPOE Modernization Trust Fund Act","url":"https://api.congress.gov/v3/bill/118/hr/3135?format=json","number":"3135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2619","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6787","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-04-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Highway Accident Fairness Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2936?format=json","number":"2936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2620","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6788","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-04-20","latestAction_text":"Became Public Law No: 118-55.","type":"HR","title":"To designate the facility of the United States Postal Service located at 2395 East Del Mar Boulevard in Laredo, Texas, as the \"Lance Corporal David Lee Espinoza, Lance Corporal Juan Rodrigo Rodriguez & Sergeant Roberto Arizola Jr. Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/2754?format=json","number":"2754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2621","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6789","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-07","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Identifying and Eliminating Wasteful Programs Act","url":"https://api.congress.gov/v3/bill/118/hr/1390?format=json","number":"1390","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2622","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6790","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-01-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"United States-Mexico Tourism Improvement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2623","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6791","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2022-07-20","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Worker Flexibility and Choice Act","url":"https://api.congress.gov/v3/bill/117/hr/8442?format=json","number":"8442","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2624","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6792","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2021-12-07","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","type":"HR","title":"Highway Accident Fairness Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/6151?format=json","number":"6151","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2625","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6793","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-10-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Choose Home Care Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5514?format=json","number":"5514","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2626","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6794","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-06-15","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"H–2B Returning Worker Exception Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/3897?format=json","number":"3897","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2627","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6795","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-05-28","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy.","type":"HR","title":"United States-Mexico Electricity Exchange Act","url":"https://api.congress.gov/v3/bill/117/hr/3578?format=json","number":"3578","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2628","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6796","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-05-07","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","type":"HR","title":"LPOE Modernization Trust Fund Act","url":"https://api.congress.gov/v3/bill/117/hr/3028?format=json","number":"3028","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2629","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6797","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","introducedDate":"2021-04-26","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","type":"HR","title":"Bipartisan Border Solutions Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/2839?format=json","number":"2839","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-10-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2630","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6798","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"117","policyArea_name":"International Affairs","introducedDate":"2021-04-21","latestAction_text":"Referred to the Subcommittee on Western Hemisphere, Civilian Security, Migration and International Economic Policy.","type":"HR","title":"United States-Mexico Tourism Improvement Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/2723?format=json","number":"2723","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2631","label":"SPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2632","label":"SPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"6800","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Regulation Decimation Act","url":"https://api.congress.gov/v3/bill/119/hr/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2633","label":"SPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"6801","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Financial Services, Ways and Means, the Judiciary, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To repeal the sunset provision of the Iran Sanctions Act of 1996, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1800?format=json","number":"1800","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2634","label":"SPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"6802","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the amount allowed as a credit under the expenses for household and dependent care services credit and teh employer-provided child care credit.","url":"https://api.congress.gov/v3/bill/119/hr/1426?format=json","number":"1426","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2635","label":"SPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"6803","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the employer tax credit for paid family and medical leave.","url":"https://api.congress.gov/v3/bill/119/hr/1424?format=json","number":"1424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2636","label":"SPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"6804","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the amount of the adoption credit and to establish the in vitro fertilization expenses credit.","url":"https://api.congress.gov/v3/bill/119/hr/1427?format=json","number":"1427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2637","label":"SPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"6805","labels":["Legislation"],"properties":{"sponsored_by":"M001230","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the amount of the child tax credit, to make such credit fully refundable, to remove income limitations from such credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1425?format=json","number":"1425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2638","label":"SPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"6806","labels":["Legislation"],"properties":{"sponsored_by":"H001103","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the definition of extremely low-income families under the United States Housing Act of 1937.","url":"https://api.congress.gov/v3/bill/119/hr/1696?format=json","number":"1696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2639","label":"SPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"6807","labels":["Legislation"],"properties":{"sponsored_by":"H001103","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"For the relief of Diego Montoya Bedoya.","url":"https://api.congress.gov/v3/bill/119/hr/1763?format=json","number":"1763","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2640","label":"SPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"6808","labels":["Legislation"],"properties":{"sponsored_by":"H001103","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide equitable treatment for residents of Puerto Rico with respect to the refundable portion of the child tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1697?format=json","number":"1697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2641","label":"SPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"6809","labels":["Legislation"],"properties":{"sponsored_by":"D000635","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Stop Musk Act","url":"https://api.congress.gov/v3/bill/119/hr/994?format=json","number":"994","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2642","label":"SPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"6810","labels":["Legislation"],"properties":{"sponsored_by":"B001327","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to require the impaneling of a new jury if a jury fails to recommend by unanimous vote a sentence for conviction of a crime punishable by death.","url":"https://api.congress.gov/v3/bill/119/hr/1556?format=json","number":"1556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2643","label":"SPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"6811","labels":["Legislation"],"properties":{"sponsored_by":"B001327","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To direct the Secretary of Veterans Affairs to seek to enter into an agreement with a federally funded research and development center for an assessment of forms that the Secretary sends to claimants for benefits under laws administered by the Secretary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1286?format=json","number":"1286","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2644","label":"SPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"6812","labels":["Legislation"],"properties":{"sponsored_by":"R000619","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To provide that a project for the collocation of a personal wireless service facility is not subject to requirements to prepare certain environmental or historical preservation reviews.","url":"https://api.congress.gov/v3/bill/119/hr/1541?format=json","number":"1541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2645","label":"SPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"6813","labels":["Legislation"],"properties":{"sponsored_by":"R000619","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Beat Bad Bureaucrats Act","url":"https://api.congress.gov/v3/bill/119/hr/886?format=json","number":"886","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2646","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2647","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6815","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-31","latestAction_text":"Referred to the Subcommittee on Transportation and Maritime Security.","type":"HR","title":"TSA Commuting Fairness Act","url":"https://api.congress.gov/v3/bill/119/hr/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2648","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6816","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","policyArea_name":"Emergency Management","introducedDate":"2025-01-15","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"SNOW Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/437?format=json","number":"437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2649","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6817","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Honoring Our Heroes Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10395?format=json","number":"10395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2650","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6818","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","introducedDate":"2024-11-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"NEXUS Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/10264?format=json","number":"10264","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2651","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6819","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","introducedDate":"2024-08-13","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Border-Crossing and Re-entry for K9s Act","url":"https://api.congress.gov/v3/bill/118/hr/9350?format=json","number":"9350","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2652","label":"SPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6820","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-07","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"TSA Commuting Fairness Act","url":"https://api.congress.gov/v3/bill/118/hr/8662?format=json","number":"8662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2653","label":"SPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6821","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/hr/1277?format=json","number":"1277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2654","label":"SPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6822","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Emphasizing the importance and power of distributed ledger technologies (DLT) to support democratic governance, human rights, internet freedom, and transparency.","url":"https://api.congress.gov/v3/bill/118/hres/1622?format=json","number":"1622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2655","label":"SPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6823","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"RRLEF Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10384?format=json","number":"10384","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2656","label":"SPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6824","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-10-25","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Blue Economy and Innovation Act","url":"https://api.congress.gov/v3/bill/118/hr/10035?format=json","number":"10035","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2657","label":"SPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6825","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"On agreeing to the Amo amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1221?format=json","number":"","amendmentNumber":"1221","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"13:04:43"}}} +{"type":"relationship","id":"2658","label":"SPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6826","labels":["Legislation"],"properties":{"sponsored_by":"A000380","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-24","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"First Rhode Island Regiment Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/8568?format=json","number":"8568","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2659","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6827","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Grand Ronde Reservation Act to address the hunting, fishing, trapping, and animal gathering rights of the Confederated Tribes of the Grand Ronde Community, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1499?format=json","number":"1499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2660","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6828","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To authorize the Assistant Secretary for Mental Health and Substance Use to award formula grants to the States to address gambling addiction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1141?format=json","number":"1141","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2661","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6829","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"HOPE and Mental Wellbeing Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1096?format=json","number":"1096","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2662","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6830","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Universal Right To Vote by Mail Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/738?format=json","number":"738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2663","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6831","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-11-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Housing to Homes Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10163?format=json","number":"10163","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2664","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6832","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"STAR Plus Scholarship Act","url":"https://api.congress.gov/v3/bill/118/hr/9581?format=json","number":"9581","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2665","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6833","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of July 20, 2024 as \"National Moon Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1380?format=json","number":"1380","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2666","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6834","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-06-14","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Disaster Relief for Farm Workers Act","url":"https://api.congress.gov/v3/bill/118/hr/8765?format=json","number":"8765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2667","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6835","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-06","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"SNAP E&T Data And Technical Assistance (DATA) Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7572?format=json","number":"7572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2668","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6836","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-02-23","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Rural Partnership and Prosperity Act","url":"https://api.congress.gov/v3/bill/118/hr/7444?format=json","number":"7444","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2669","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6837","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-02-01","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"PEER Support Act","url":"https://api.congress.gov/v3/bill/118/hr/7212?format=json","number":"7212","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2670","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6838","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-01-22","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Peer Support for Firefighters Act","url":"https://api.congress.gov/v3/bill/118/hr/7069?format=json","number":"7069","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2671","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6839","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2024-01-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Gambling Addiction, Recovery, Investment, and Treatment Act","url":"https://api.congress.gov/v3/bill/118/hr/6982?format=json","number":"6982","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2672","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6840","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2023-11-30","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H6157)","type":"HR","title":"Home-Based Telemental Health Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6534?format=json","number":"6534","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2673","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6841","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-02","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Farmers Feeding America Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6203?format=json","number":"6203","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2674","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6842","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-19","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"To amend the Richard B. Russell National School Lunch Act to establish a vehicle summer meal delivery pilot program, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6006?format=json","number":"6006","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2675","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6843","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-10-12","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Quantum Instrumentation for Science and Engineering Act","url":"https://api.congress.gov/v3/bill/118/hr/5950?format=json","number":"5950","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2676","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6844","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-12","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Soil CARE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5951?format=json","number":"5951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2677","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6845","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","introducedDate":"2023-09-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"HOPE and Mental Wellbeing Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5510?format=json","number":"5510","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2678","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6846","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-08-04","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"To amend the Cooperative Forestry Assistance Act of 1978 to reauthorize and expand State-wide assessment and strategies for forest resources.","url":"https://api.congress.gov/v3/bill/118/hr/5157?format=json","number":"5157","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2679","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6847","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit funds for the Armed Forces to engage in operations to invade or seize territory from Canada, the Republic of Panama, or the self-governing territory of Greenland.","url":"https://api.congress.gov/v3/bill/119/hr/1936?format=json","number":"1936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2680","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6848","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To establish \"Golden Sea Bream\" as an acceptable market name for Stenotomus chrysops.","url":"https://api.congress.gov/v3/bill/119/hr/1832?format=json","number":"1832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2681","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6849","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"TRUST in Congress Act","url":"https://api.congress.gov/v3/bill/119/hr/396?format=json","number":"396","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2682","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6850","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-12-04","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to provide coverage for certain fall prevention items under the Medicare program.","url":"https://api.congress.gov/v3/bill/118/hr/10291?format=json","number":"10291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2683","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6851","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"National Guard and Reserve Student Loan Fairness Act","url":"https://api.congress.gov/v3/bill/118/hr/10226?format=json","number":"10226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2684","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6852","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-11-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To direct the Secretary of Interior to submit to Congress a report on the National Park Service's interpretation and application of the Standards for Rehabilitation for use of the Federal Historic Preservation Tax Incentives program.","url":"https://api.congress.gov/v3/bill/118/hr/10116?format=json","number":"10116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2685","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6853","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-09-18","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To establish \"Silver Sea Bream\" as an acceptable market name for Stenotomus chrysops.","url":"https://api.congress.gov/v3/bill/118/hr/9658?format=json","number":"9658","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2686","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6854","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-08-09","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Don’t STEAL Act","url":"https://api.congress.gov/v3/bill/118/hr/9337?format=json","number":"9337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2687","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6855","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"New England Coastal Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9273?format=json","number":"9273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2688","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6856","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Domenic and Ed’s Law","url":"https://api.congress.gov/v3/bill/118/hr/8407?format=json","number":"8407","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2689","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6857","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-29","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"BIKE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7842?format=json","number":"7842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2690","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6858","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-03-20","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Oversight and Accountability, House Administration, Transportation and Infrastructure, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PTO Act","url":"https://api.congress.gov/v3/bill/118/hr/7752?format=json","number":"7752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2691","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6859","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-23","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Strengthening State and Local Efforts to Combat Transnational Repression Act","url":"https://api.congress.gov/v3/bill/118/hr/7439?format=json","number":"7439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2692","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6860","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-02-23","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Rules.","type":"HRES","title":"Amending the Rules of the House of Representatives to establish a Permanent Select Committee on Aging.","url":"https://api.congress.gov/v3/bill/118/hres/1029?format=json","number":"1029","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2693","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6861","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2023-12-22","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Clean Energy Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/6888?format=json","number":"6888","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2694","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6862","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-12-01","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To require the waiver of costs of activities relating to the evacuation of United States citizens endangered by acts of terrorism or war in Israel instigated by Hamas and other Islamist militant groups.","url":"https://api.congress.gov/v3/bill/118/hr/6553?format=json","number":"6553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2695","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6863","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-11-14","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"IMAGINE Act","url":"https://api.congress.gov/v3/bill/118/hr/6411?format=json","number":"6411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2696","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6864","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2023-10-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Lower Drug Costs Today Act","url":"https://api.congress.gov/v3/bill/118/hr/5924?format=json","number":"5924","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2697","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6865","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-30","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"Department of Homeland Security Intelligence and Analysis Training Act","url":"https://api.congress.gov/v3/bill/118/hr/4429?format=json","number":"4429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2698","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6866","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-06-06","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Keeping Gun Dealers Honest Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3863?format=json","number":"3863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2699","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6867","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Recognizing the 112th Anniversary of Delta Sigma Theta Sorority, Incorporated.","url":"https://api.congress.gov/v3/bill/119/hres/35?format=json","number":"35","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2700","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6868","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-31","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Ensuring Efficiency and Fairness in Federal Subcontracting Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10563?format=json","number":"10563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2701","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6869","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"HONORS Act","url":"https://api.congress.gov/v3/bill/118/hr/10551?format=json","number":"10551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2702","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6870","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"School Lunch Debt Cancellation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10552?format=json","number":"10552","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2703","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6871","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Creating Positive College Campus Racial Climates Act","url":"https://api.congress.gov/v3/bill/118/hr/10534?format=json","number":"10534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2704","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6872","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Eviction Right to Counsel Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10535?format=json","number":"10535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2705","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6873","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"True Justice Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10496?format=json","number":"10496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2706","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6874","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SANCTIONS in the West Bank Act","url":"https://api.congress.gov/v3/bill/118/hr/10343?format=json","number":"10343","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2707","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6875","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-11-18","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 39 - 0.","type":"HR","title":"Modernizing Data Practices to Improve Government Act","url":"https://api.congress.gov/v3/bill/118/hr/10151?format=json","number":"10151","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2708","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6876","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-11-01","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Eliminating Bias in Algorithmic Systems Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10092?format=json","number":"10092","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2709","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6877","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-10-18","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Rail Bridge Safety and Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/9998?format=json","number":"9998","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2710","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6878","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-10-08","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Keeping Affordable Housing in Forgotten Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/9944?format=json","number":"9944","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2711","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6879","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-09-27","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Ways and Means, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"American Stability Act","url":"https://api.congress.gov/v3/bill/118/hr/9873?format=json","number":"9873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2712","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6880","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-25","latestAction_text":"Sponsor introductory remarks on measure. (CR H4561)","type":"HR","title":"Right to Vote Act","url":"https://api.congress.gov/v3/bill/118/hr/8825?format=json","number":"8825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2713","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6881","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-01","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Future Farmers and Ranchers of Tomorrow Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8210?format=json","number":"8210","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2714","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6882","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-02-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the historical contributions and value of the Freedom House Ambulance Service.","url":"https://api.congress.gov/v3/bill/118/hres/1042?format=json","number":"1042","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2715","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6883","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-10-26","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the 5-year anniversary of the horrific antisemitic attack at the Tree of Life Synagogue in Pittsburgh, Pennsylvania, on October 27, 2018, and condemning antisemitism.","url":"https://api.congress.gov/v3/bill/118/hres/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2716","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6884","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-07-25","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","type":"HR","title":"Abandoned Well Remediation Research and Development Act","url":"https://api.congress.gov/v3/bill/118/hr/4877?format=json","number":"4877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2717","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6885","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-27","latestAction_text":"Became Public Law No: 118-215.","type":"HR","title":"To name the community-based outpatient clinic of the Department of Veterans Affairs in Monroeville, Pennsylvania, as the \"Henry Parham VA Clinic\".","url":"https://api.congress.gov/v3/bill/118/hr/4955?format=json","number":"4955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2718","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"6886","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2023-07-25","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Equality in Laws Act","url":"https://api.congress.gov/v3/bill/118/hr/4876?format=json","number":"4876","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2719","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6887","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Social Security Act to require certain additional provider screening under the Medicaid program.","url":"https://api.congress.gov/v3/bill/119/hr/1875?format=json","number":"1875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2720","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6888","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-03-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the joint resolution (H.J. Res. 42) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program for Appliance Standards: Certification Requirements, Labeling Requirements, and Enforcement Provisions for Certain Consumer Products and Commercial Equipment\"; providing for consideration of the joint resolution (H.J. Res. 61) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\"; and providing for consideration of the joint resolution (S.J. Res. 11) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Ocean Energy Management relating to \"Protection of Marine Archaeological Resources\".","url":"https://api.congress.gov/v3/bill/119/hres/177?format=json","number":"177","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":"14:03:41"}}} +{"type":"relationship","id":"2721","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6889","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Middle Class Tax Relief and Job Creation Act of 2012 to streamline the consideration by State and local governments of requests for modification of certain existing wireless facilities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1617?format=json","number":"1617","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2722","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6890","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1421?format=json","number":"1421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2723","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6891","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Older Americans Act of 1965 to require reports to Congress on State Long-Term Care Ombudsman Programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1256?format=json","number":"1256","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2724","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6892","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to conduct a study on the effectiveness of emergency alerting systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1076?format=json","number":"1076","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2725","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6893","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Federal Subaward Reporting System Modernization and Expansion Act","url":"https://api.congress.gov/v3/bill/119/hr/519?format=json","number":"519","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2726","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6894","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","type":"HR","title":"SAP Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/289?format=json","number":"289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2727","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6895","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Nutrition and Foreign Agriculture.","type":"HR","title":"Making Agricultural Products Locally Essential (MAPLE) Act","url":"https://api.congress.gov/v3/bill/119/hr/293?format=json","number":"293","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2728","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6896","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"CAREERS Act","url":"https://api.congress.gov/v3/bill/119/hr/291?format=json","number":"291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2729","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6897","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"GRAPE Act","url":"https://api.congress.gov/v3/bill/119/hr/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2730","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6898","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Dairy Farm Resiliency Act","url":"https://api.congress.gov/v3/bill/119/hr/294?format=json","number":"294","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2731","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6899","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Rural Telehealth and Education Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/290?format=json","number":"290","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2732","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6900","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Fair Milk Pricing for Farmers Act","url":"https://api.congress.gov/v3/bill/119/hr/295?format=json","number":"295","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2733","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6901","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Evidence-Informed Health Promotion Act","url":"https://api.congress.gov/v3/bill/118/hr/10071?format=json","number":"10071","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2734","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6902","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-10-29","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Long-Term Care Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/10072?format=json","number":"10072","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2735","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6903","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"CLAWS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9785?format=json","number":"9785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2736","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6904","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-09-18","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"CTE Student Mental Health and Wellness Act","url":"https://api.congress.gov/v3/bill/118/hr/9656?format=json","number":"9656","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2737","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6905","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-12","latestAction_text":"Became Public Law No: 118-187.","type":"HR","title":"SHARE IT Act","url":"https://api.congress.gov/v3/bill/118/hr/9566?format=json","number":"9566","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2738","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6906","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"118","introducedDate":"2024-09-10","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1398) to establish the CCP Initiative program, and for other purposes; providing for consideration of the bill (H.R. 1425) to require any convention, agreement, or other international instrument on pandemic prevention, preparedness, and response reached by the World Health Assembly to be subject to Senate ratification; providing for consideration of the bill (H.R. 1516) to establish Department of Homeland Security funding restrictions on institutions of higher education that have a relationship with Confucius Institutes, and for other purposes; providing for consideration of the bill (H.R. 7980) to amend the Internal Revenue Code of 1986 to exclude vehicles the batteries of which contain materials sourced from prohibited foreign entities from the clean vehicle credit; providing for consideration of the bill (H.R. 9456) to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes; and providing for consideration of the bill (H.R. 9494) making continuing appropriations for fiscal year 2025, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1430?format=json","number":"1430","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":"14:02:03"}}} +{"type":"relationship","id":"2739","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6907","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Understanding Cybersecurity of Mobile Networks Act","url":"https://api.congress.gov/v3/bill/119/hr/1709?format=json","number":"1709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2740","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6908","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Saving Seniors Money on Prescriptions Act","url":"https://api.congress.gov/v3/bill/119/hr/950?format=json","number":"950","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2741","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6909","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-12-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service-Local Law Enforcement Partnership Act","url":"https://api.congress.gov/v3/bill/118/hr/10431?format=json","number":"10431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2742","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6910","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"NOPAIN for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/10396?format=json","number":"10396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2743","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6911","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Relief for Renters Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10277?format=json","number":"10277","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2744","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6912","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-11-12","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Child Care for Small Businesses Act","url":"https://api.congress.gov/v3/bill/118/hr/10115?format=json","number":"10115","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2745","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6913","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-10-25","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Energy and Commerce, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"21st Century Vehicle Choice Act","url":"https://api.congress.gov/v3/bill/118/hr/10046?format=json","number":"10046","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2746","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6914","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-04","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"What Works for Preventing Veteran Suicide Act","url":"https://api.congress.gov/v3/bill/118/hr/9924?format=json","number":"9924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2747","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6915","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-27","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Parity for Public Health Service Ready Reserve Act","url":"https://api.congress.gov/v3/bill/118/hr/9870?format=json","number":"9870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2748","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6916","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-09-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Enhancing SAFER Grants for Local Firefighters Act","url":"https://api.congress.gov/v3/bill/118/hr/9606?format=json","number":"9606","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2749","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6917","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-07-02","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Campus Housing Affordability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8925?format=json","number":"8925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2750","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6918","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To prohibit Federal funds from being made available to any pregnancy center that diverts people from accessing comprehensive and timely medical care from licensed medical professionals.","url":"https://api.congress.gov/v3/bill/118/hr/7063?format=json","number":"7063","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2751","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6919","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-01-18","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HRES","title":"Expressing the sense of the House of Representatives that Congress should fully fund border security personnel, immigration judges, and related personnel and border technology needs at the southern border.","url":"https://api.congress.gov/v3/bill/118/hres/973?format=json","number":"973","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2752","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6920","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-11-28","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Condemning calls from Members of Congress for the expulsion of Palestinians from the United States.","url":"https://api.congress.gov/v3/bill/118/hres/895?format=json","number":"895","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2753","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6921","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-11-01","policyArea_name":"Commerce","latestAction_text":"Placed on the Union Calendar, Calendar No. 312.","type":"HR","title":"Child Care Small Business Insight and Improvement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6156?format=json","number":"6156","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2754","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6922","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-19","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Child Care Nutrition Enhancement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5569?format=json","number":"5569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2755","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6923","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Medicare PBM Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/5385?format=json","number":"5385","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2756","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6924","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-07-27","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Employing Veterans to Feed America Act","url":"https://api.congress.gov/v3/bill/118/hr/5014?format=json","number":"5014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2757","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6925","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2023-06-21","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Ethics.","type":"HRES","title":"Directing the Committee on Ethics of the House of Representatives to immediately notify the full House of Representatives with respect to the names of the individuals who guaranteed Representative Santos' bail bond in relation to the indictment brought against Representative Santos in May 2023 by the Department of Justice, and submit to the House of Representatives an interim report on the investigation into Representative Santos not later than July 17, 2023, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/531?format=json","number":"531","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2758","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6926","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Enhancing COPS Hiring Program Grants for Local Law Enforcement Act","url":"https://api.congress.gov/v3/bill/118/hr/3376?format=json","number":"3376","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2759","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6927","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 14 - 11.","type":"HR","title":"To amend title 28, United States Code, to clarify the removability of certain actions against current and former Presidents and other senior Executive officials, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1789?format=json","number":"1789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2760","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6928","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide for the vacating of certain convictions and expungement of certain arrests of victims of human trafficking.","url":"https://api.congress.gov/v3/bill/119/hr/1379?format=json","number":"1379","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2761","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6929","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Chinese Spy Balloon Assessment Act","url":"https://api.congress.gov/v3/bill/119/hr/934?format=json","number":"934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2762","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6930","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Reaffirming United States support of the State of Israel one year after the October 7, 2023, attacks.","url":"https://api.congress.gov/v3/bill/118/hres/1533?format=json","number":"1533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2763","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6931","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2024-05-08","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Protect the BALL Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8304?format=json","number":"8304","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2764","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6932","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending the University of South Carolina Gamecocks women's basketball team for winning the 2024 National Collegiate Athletics Association Women's Basketball National Championship.","url":"https://api.congress.gov/v3/bill/118/hres/1183?format=json","number":"1183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2765","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6933","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-01-30","latestAction_text":"Placed on the Union Calendar, Calendar No. 702.","type":"HR","title":"Trafficking Survivors Relief Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7137?format=json","number":"7137","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2766","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6934","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-06","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Chinese Spy Balloon Assessment Act","url":"https://api.congress.gov/v3/bill/118/hr/6625?format=json","number":"6625","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2767","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6935","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-02","latestAction_text":"Became Public Law No: 118-219.","type":"HR","title":"To designate the facility of the United States Postal Service located at 420 Highway 17 North in Surfside Beach, South Carolina, as the \"Nancy Yount Childs Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/6188?format=json","number":"6188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2768","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6936","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-18","latestAction_text":"Became Public Law No: 118-140.","type":"HR","title":"Grant Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5536?format=json","number":"5536","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2769","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6937","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-08-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Fentanyl Crisis Research and Evaluation Act","url":"https://api.congress.gov/v3/bill/118/hr/5237?format=json","number":"5237","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-08-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2770","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6938","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-05","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"Federal Law Enforcement Officer Service Weapon Purchase Act","url":"https://api.congress.gov/v3/bill/118/hr/3091?format=json","number":"3091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2771","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6939","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-09","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Targeting Child Predators Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3141?format=json","number":"3141","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2772","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6940","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-04-10","policyArea_name":"Law","latestAction_text":"Placed on the Union Calendar, Calendar No. 304.","type":"HR","title":"No More Political Prosecutions Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2553?format=json","number":"2553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2773","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6941","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-11-08","policyArea_name":"","latestAction_text":"On agreeing to the Fry amendment (A031) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/686?format=json","number":"","amendmentNumber":"686","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":"15:42:11"}}} +{"type":"relationship","id":"2774","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6942","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","introducedDate":"2023-11-07","policyArea_name":"","latestAction_text":"On agreeing to the Fry amendment (A022) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/633?format=json","number":"","amendmentNumber":"633","latestAction":"","latestAction_actionDate":"2023-11-07","latestAction_actionTime":"17:30:35"}}} +{"type":"relationship","id":"2775","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6943","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To authorize the Secretary of the Treasury to make payments to the Quapaw Nation and certain members of the Quapaw Nation in accordance with the recommendation of the United States Court of Federal Claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1451?format=json","number":"1451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2776","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6944","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"To transfer unobligated funds from the United States Agency for International Development to the Disaster Relief Fund.","url":"https://api.congress.gov/v3/bill/119/hr/1370?format=json","number":"1370","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2777","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6945","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"No Abortion Coverage for Medicaid Act","url":"https://api.congress.gov/v3/bill/119/hr/719?format=json","number":"719","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2778","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6946","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Protecting Life in Health Savings Accounts Act","url":"https://api.congress.gov/v3/bill/119/hr/720?format=json","number":"720","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2779","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6947","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Expressing the sense of the House of Representatives that the sermon given by the Right Reverend Mariann Edgar Budde at the National Prayer Service on January 21st, 2025, at the National Cathedral was a display of political activism and condemning its distorted message.","url":"https://api.congress.gov/v3/bill/119/hres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2780","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6948","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Nutrition and Foreign Agriculture.","type":"HR","title":"Healthy SNAP Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2781","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6949","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Quapaw Tribal Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10472?format=json","number":"10472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2782","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6950","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-09-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Congressional Budget and Impoundment Control Act of 1974 to require any cost estimate for a bill or joint resolution prepared by the Congressional Budget Office to include the cost to each United States citizen for carrying out such measure, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9777?format=json","number":"9777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2783","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6951","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-23","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No More Taxpayer Cash for the Taliban Act","url":"https://api.congress.gov/v3/bill/118/hr/9757?format=json","number":"9757","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2784","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6952","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A019) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1141?format=json","number":"","amendmentNumber":"1141","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"20:49:15"}}} +{"type":"relationship","id":"2785","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6953","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A022) Failed by recorded vote: 156 - 236 (Roll no. 387). (consideration: CR H4874-4875)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1144?format=json","number":"","amendmentNumber":"1144","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"11:01:12"}}} +{"type":"relationship","id":"2786","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6954","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A002) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1088?format=json","number":"","amendmentNumber":"1088","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"11:50:12"}}} +{"type":"relationship","id":"2787","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6955","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A021) Failed by recorded vote: 147 - 269 (Roll no. 386).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1143?format=json","number":"","amendmentNumber":"1143","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"21:49:16"}}} +{"type":"relationship","id":"2788","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6956","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A020) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1142?format=json","number":"","amendmentNumber":"1142","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"20:55:50"}}} +{"type":"relationship","id":"2789","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6957","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A023) Agreed to by recorded vote: 211 - 202 (Roll no. 388). (consideration: CR H4875)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1145?format=json","number":"","amendmentNumber":"1145","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"11:06:38"}}} +{"type":"relationship","id":"2790","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6958","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service Readiness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9080?format=json","number":"9080","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2791","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6959","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A002) Failed by recorded vote: 164 - 246 (Roll no. 297). (consideration: CR H1030)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1030?format=json","number":"","amendmentNumber":"1030","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"11:03:03"}}} +{"type":"relationship","id":"2792","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6960","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A003) Failed by recorded vote: 180 - 227 (Roll no. 298). (consideration: CR H4335)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1031?format=json","number":"","amendmentNumber":"1031","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"11:06:51"}}} +{"type":"relationship","id":"2793","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6961","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A004) Failed by recorded vote: 164 - 244 (Roll no. 299). (consideration: CR H4335-4336)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1032?format=json","number":"","amendmentNumber":"1032","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":"11:09:55"}}} +{"type":"relationship","id":"2794","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6962","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","introducedDate":"2024-06-13","policyArea_name":"","latestAction_text":"On agreeing to the Brecheen amendment (A030) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/988?format=json","number":"","amendmentNumber":"988","latestAction":"","latestAction_actionDate":"2024-06-13","latestAction_actionTime":"15:27:03"}}} +{"type":"relationship","id":"2795","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2796","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6964","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Honoring Reverend Dr. Martin Luther King, Jr., by celebrating diversity, promoting tolerance, and condemning hate.","url":"https://api.congress.gov/v3/bill/119/hres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2797","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6965","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Expanding the Health Care Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/10337?format=json","number":"10337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2798","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6966","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-27","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Securing Elections From AI Deception Act","url":"https://api.congress.gov/v3/bill/118/hr/8858?format=json","number":"8858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2799","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6967","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-06-05","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of June 2024 as \"Black Music Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1279?format=json","number":"1279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2800","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6968","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-21","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","type":"HR","title":"Diverse Cybersecurity Workforce Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8469?format=json","number":"8469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2801","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6969","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-05-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Uterine Fibroid Intervention and Gynecological Health Treatment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8247?format=json","number":"8247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2802","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6970","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-03-22","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Thriving Community Gardens Act","url":"https://api.congress.gov/v3/bill/118/hr/7796?format=json","number":"7796","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2803","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6971","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-07","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Shining a Spotlight on Safer Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/7272?format=json","number":"7272","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2804","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6972","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2024-01-12","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Honoring Reverend Dr. Martin Luther King, Jr., by Celebrating Diversity, Promoting Tolerance, and Condemning Hate.","url":"https://api.congress.gov/v3/bill/118/hres/962?format=json","number":"962","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2805","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6973","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-08","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Recidivism Reduction Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6290?format=json","number":"6290","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2806","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6974","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-14","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Ensuring Fee-Free Benefit Transactions Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4103?format=json","number":"4103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2807","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6975","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Critical Supply Chains Commission Act","url":"https://api.congress.gov/v3/bill/118/hr/4279?format=json","number":"4279","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2808","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6976","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-02-01","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"SNAP Access for Medically Vulnerable Children Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2809","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6977","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-10-07","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","type":"HR","title":"SNAP Access for Medically Vulnerable Children Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9144?format=json","number":"9144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2810","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6978","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","introducedDate":"2022-09-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Thriving Community Gardens Act","url":"https://api.congress.gov/v3/bill/117/hr/9038?format=json","number":"9038","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2811","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6979","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-04-28","latestAction_text":"Received in the Senate.","type":"HR","title":"To designate the Kol Israel Foundation Holocaust Memorial in Bedford Heights, Ohio, as a national memorial.","url":"https://api.congress.gov/v3/bill/117/hr/7618?format=json","number":"7618","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2812","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6980","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","introducedDate":"2022-03-31","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"FIND Food Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7317?format=json","number":"7317","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-03-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2813","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6981","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-02-02","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","type":"HR","title":"GAO Audit Mandates Revision Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/6560?format=json","number":"6560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2814","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"6982","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-01-06","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Afterschool Meals Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/6357?format=json","number":"6357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2815","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6983","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend titles 10 and 38, United States Code, to extend certain benefits to members of the National Guard who incur disabilities while performing State active duty.","url":"https://api.congress.gov/v3/bill/119/hr/1824?format=json","number":"1824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2816","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6984","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Mineral Leasing Act to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1555?format=json","number":"1555","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2817","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6985","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Energy Policy and Conservation Act to modify standards for water heaters, furnaces, boilers, and kitchen cooktops, ranges, and ovens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1281?format=json","number":"1281","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2818","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6986","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"To direct the Librarian of Congress to promote the more cost-effective, efficient, and expanded availability of the Annotated Constitution and pocket-part supplements by replacing the hardbound versions with digital versions.","url":"https://api.congress.gov/v3/bill/119/hr/1234?format=json","number":"1234","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2819","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6987","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Natural Resources, Energy and Commerce, and Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require that a State be ineligible to receive funds under certain Federal programs unless the State has in effect a State law restricting the purchase of agricultural land by certain foreign persons, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1184?format=json","number":"1184","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2820","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6988","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stop Illegal Reentry Act","url":"https://api.congress.gov/v3/bill/119/hr/749?format=json","number":"749","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2821","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6989","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Protecting Military Parental Leave Evaluations Act","url":"https://api.congress.gov/v3/bill/119/hr/656?format=json","number":"656","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2822","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6990","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Walk-In Coolers and Walk-In Freezers\".","url":"https://api.congress.gov/v3/bill/119/hjres/24?format=json","number":"24","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2823","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6991","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHILD Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/413?format=json","number":"413","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2824","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6992","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Regulation Reduction Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/377?format=json","number":"377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2825","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6993","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SAVE Act","url":"https://api.congress.gov/v3/bill/119/hr/256?format=json","number":"256","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2826","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6994","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To cancel certain proposed changes to loan level price adjustments by the Federal National Mortgage Association and credit fees charged by the Federal Home Loan Mortgage Corporation.","url":"https://api.congress.gov/v3/bill/119/hr/258?format=json","number":"258","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2827","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6995","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"SEC Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/257?format=json","number":"257","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2828","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6996","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service Recording Accountability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10355?format=json","number":"10355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2829","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6997","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-12-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Oversight and Accountability, Rules, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Chevron Re-Review Act","url":"https://api.congress.gov/v3/bill/118/hr/10300?format=json","number":"10300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2830","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6998","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-21","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Protecting Military Parental Leave Evaluations Act","url":"https://api.congress.gov/v3/bill/118/hr/10200?format=json","number":"10200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2831","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6999","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-11-20","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"DOGE Act","url":"https://api.congress.gov/v3/bill/118/hr/10177?format=json","number":"10177","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2832","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7000","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-07-23","policyArea_name":"","latestAction_text":"On agreeing to the Bice amendment (A005) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1127?format=json","number":"","amendmentNumber":"1127","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"19:07:16"}}} +{"type":"relationship","id":"2833","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7001","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture and National Security Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8522?format=json","number":"8522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2834","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7002","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"118","introducedDate":"2024-03-08","policyArea_name":"Congress","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Rules and Administration.","type":"HR","title":"Modernizing the Congressional Research Service’s Access to Data Act","url":"https://api.congress.gov/v3/bill/118/hr/7593?format=json","number":"7593","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2835","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7003","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a credit for the domestic production of high-performance rare earth magnets, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1496?format=json","number":"1496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2836","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7004","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to expand eligibility for headstones, markers, and burial receptacles under the laws administered by the Secretary of Veterans Affairs to certain individuals who died before November 11, 1998.","url":"https://api.congress.gov/v3/bill/119/hr/1344?format=json","number":"1344","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2837","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7005","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Modernize the Au Pair Program Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9677?format=json","number":"9677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2838","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7006","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the resolution (H. Res. 1371) strongly condemning the Biden Administration and its Border Czar, Kamala Harris's, failure to secure the United States border.","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","number":"1376","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"21:16:52"}}} +{"type":"relationship","id":"2839","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"2840","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7008","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-17","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"To amend title 38, United States Code, and the Servicemembers Civil Relief Act to provide for the eligibility of United States citizens who serve in the Israeli Defense Forces for certain protections relating to such service.","url":"https://api.congress.gov/v3/bill/118/hr/8445?format=json","number":"8445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2841","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7009","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-04-16","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 6323) to modify the availability of certain waiver authorities with respect to sanctions imposed with respect to the financial sector of Iran, and for other purposes; providing for consideration of the resolution (H. Res. 1143) condemning Iran's unprecedented drone and missile attack on Israel; providing for consideration of the bill (H.R. 4691) to provide for congressional review of actions to terminate or waive sanctions imposed with respect to Iran; providing for consideration of the bill (H.R. 5947) to provide for the rescission of certain waivers and licenses relating to Iran, and for other purposes; providing for consideration of the bill (H.R. 6046) to designate Ansarallah as a foreign terrorist organization and impose certain sanctions on Ansarallah, and for other purposes; and providing for consideration of the bill (H.R. 4639) to amend section 2702 of title 18, United States Code, to prevent law enforcement and intelligence agencies from obtaining subscriber or customer records in exchange for anything of value, to address communications and records in the possession of intermediary internet service providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1149?format=json","number":"1149","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":"14:13:28"}}} +{"type":"relationship","id":"2842","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7010","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-29","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To designate the Washington Dulles International Airport in Virginia as the \"Donald J. Trump International Airport\".","url":"https://api.congress.gov/v3/bill/118/hr/7845?format=json","number":"7845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2843","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7011","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-19","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Dennis and Lois Krisfalusy Act","url":"https://api.congress.gov/v3/bill/118/hr/7729?format=json","number":"7729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2844","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7012","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-03-19","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1023) to repeal section 134 of the Clean Air Act, relating to the greenhouse gas reduction fund; providing for consideration of the bill (H.R. 1121) to prohibit a moratorium on the use of hydraulic fracturing; providing for consideration of the bill (H.R. 6009) to require the Director of the Bureau of Land Management to withdraw the proposed rule relating to fluid mineral leases and leasing process, and for other purposes; providing for consideration of the concurrent resolution (H. Con. Res. 86) expressing the sense of Congress that a carbon tax would be detrimental to the United States economy; providing for consideration of the resolution (H. Res. 987) denouncing the harmful, anti-American energy policies of the Biden administration, and for other purposes; and providing for consideration of the bill (H.R 7023) to amend section 404 of the Federal Water Pollution Control Act to codify certain regulatory provisions relating to nationwide permits for dredged or fill material, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1085?format=json","number":"1085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":"14:09:44"}}} +{"type":"relationship","id":"2845","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7013","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-02-13","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing consideration of the bill (H.R. 7176) to repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/118/hres/1009?format=json","number":"1009","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-14","latestAction_actionTime":"17:07:21"}}} +{"type":"relationship","id":"2846","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"2847","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7015","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-19","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To direct the Secretary of Veterans Affairs to include information relating to the rate of suicide among covered Reserves in each National Veteran Suicide Prevention Annual Report of the Office of Mental Health and Suicide Prevention of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/118/hr/6873?format=json","number":"6873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2848","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7016","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Cold Case Modernization Act","url":"https://api.congress.gov/v3/bill/118/hr/6688?format=json","number":"6688","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"2849","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7017","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-11-28","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5283) to prohibit the use of Federal funds to provide housing to specified aliens on any land under the administrative jurisdiction of the Federal land management agencies; providing for consideration of the bill (H.R. 5961) to freeze certain Iranian funds involved in the 2023 hostage deal between the United States and Iran, and for other purposes; and providing for consideration of the joint resolution (S. J. Res. 32) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)\".","url":"https://api.congress.gov/v3/bill/118/hres/891?format=json","number":"891","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-29","latestAction_actionTime":"14:09:21"}}} +{"type":"relationship","id":"2850","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7018","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-10-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4394) making appropriations for energy and water development and related agencies for the fiscal year ending September 30, 2024, and for other purposes, and providing for consideration of the bill (H.R. 4364) making appropriations for the Legislative Branch for the fiscal year ending September 30, 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/756?format=json","number":"756","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":"14:31:10"}}} +{"type":"relationship","id":"2851","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7019","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-09-29","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5525) making continuing appropriations for fiscal year 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/741?format=json","number":"741","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":"12:01:47"}}} +{"type":"relationship","id":"2852","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7020","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-09-19","policyArea_name":"Congress","latestAction_text":"Pursuant to the provisions of H. Res. 756, H. Res. 699 is laid on the table.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1130) to repeal restrictions on the export and import of natural gas; providing for consideration of the resolution (H. Res. 684) condemning the actions of Governor of New Mexico, Michelle Lujan Grisham, for subverting the Second Amendment to the Constitution and depriving the citizens of New Mexico of their right to bear arms; and providing for consideration of the bill (H.R. 5525) making continuing appropriations for fiscal year 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/699?format=json","number":"699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-03","latestAction_actionTime":"14:31:12"}}} +{"type":"relationship","id":"2853","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7021","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Better CARE for Animals Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5041?format=json","number":"5041","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2854","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7022","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-07-26","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4366) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the joint resolution (S.J. Res. 9) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Lesser Prairie-Chicken; Threatened Status With Section 4(d) Rule for the Northern Distinct Population Segment and Endangered Status for the Southern Distinct Population Segment\"; and providing for consideration of the joint resolution (S.J. Res. 24) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Endangered Species Status for Northern Long-Eared Bat\".","url":"https://api.congress.gov/v3/bill/118/hres/614?format=json","number":"614","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":"14:02:56"}}} +{"type":"relationship","id":"2855","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7023","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to facilitate patient access to certain pediatric technologies.","url":"https://api.congress.gov/v3/bill/119/hr/1931?format=json","number":"1931","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2856","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7024","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to clarify payment rules for manual wheelchairs under part B of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1703?format=json","number":"1703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2857","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7025","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H535-536)","type":"HR","title":"ORPHAN Cures Act","url":"https://api.congress.gov/v3/bill/119/hr/946?format=json","number":"946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2858","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7026","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Sustainable Cardiopulmonary Rehabilitation Services in the Home Act","url":"https://api.congress.gov/v3/bill/119/hr/783?format=json","number":"783","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"2859","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7027","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Preserving Choice in Vehicle Purchases Act","url":"https://api.congress.gov/v3/bill/119/hr/346?format=json","number":"346","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2860","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7028","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the recognition of November as \"National Bread Month\" and celebrating bread as a nutritious, affordable, and culturally significant staple food.","url":"https://api.congress.gov/v3/bill/118/hres/1571?format=json","number":"1571","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2861","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7029","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Access to Pediatric Technologies Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9157?format=json","number":"9157","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2862","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7030","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-03-08","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HCONRES","title":"Expressing the sense of Congress regarding the public health, safety, and welfare implications of licensure of design professionals.","url":"https://api.congress.gov/v3/bill/118/hconres/96?format=json","number":"96","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2863","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7031","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-09-22","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 40 - 0.","type":"HR","title":"5G SALE Act","url":"https://api.congress.gov/v3/bill/118/hr/5677?format=json","number":"5677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2864","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7032","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-09-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"ORPHAN Cures Act","url":"https://api.congress.gov/v3/bill/118/hr/5539?format=json","number":"5539","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2865","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7033","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-09-08","policyArea_name":"Health","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 48 - 0.","type":"HR","title":"Expanding Seniors' Access to Lower Cost Medicines Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5372?format=json","number":"5372","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2866","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7034","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-09-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Choices for Increased Mobility Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5371?format=json","number":"5371","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2867","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7035","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-03-08","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","type":"HR","title":"Preserving Choice in Vehicle Purchases Act","url":"https://api.congress.gov/v3/bill/118/hr/1435?format=json","number":"1435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2868","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7036","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-08-04","policyArea_name":"Commerce","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 27 - 20.","type":"HR","title":"Advancing Gig Economy Act","url":"https://api.congress.gov/v3/bill/118/hr/5146?format=json","number":"5146","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2869","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7037","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Pediatricians Accelerate Childhood Therapies Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4714?format=json","number":"4714","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2870","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7038","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"Mountain Valley Pipeline Completion Act","url":"https://api.congress.gov/v3/bill/118/hr/3500?format=json","number":"3500","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2871","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7039","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-05-15","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Broadband Competition and Efficient Deployment Act","url":"https://api.congress.gov/v3/bill/118/hr/3288?format=json","number":"3288","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2872","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7040","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-05-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to require each off-campus outpatient department of a provider to include a unique identifier on claims for items and services, and to require providers with a department of a provider to submit to the Centers for Medicare & Medicaid Services an attestation with respect to each such department.","url":"https://api.congress.gov/v3/bill/118/hr/3237?format=json","number":"3237","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2873","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7041","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-04-20","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SPARC Act","url":"https://api.congress.gov/v3/bill/118/hr/2761?format=json","number":"2761","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2874","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7042","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"118","introducedDate":"2023-04-10","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Strengthening Community Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2559?format=json","number":"2559","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-04-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2875","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7043","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to establish a new criterion for the nonapplication of site-neutral payments to long-term care hospitals under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1924?format=json","number":"1924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2876","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7044","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to remove in-person requirements under Medicare for mental health services furnished through telehealth and telecommunications technology.","url":"https://api.congress.gov/v3/bill/119/hr/1867?format=json","number":"1867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2877","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7045","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit the use or declaration of a public health emergency with respect to abortion, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1525?format=json","number":"1525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2878","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7046","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Placed on the Union Calendar, Calendar No. 8.","type":"HR","title":"PROTECT Our Kids Act","url":"https://api.congress.gov/v3/bill/119/hr/1069?format=json","number":"1069","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2879","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7047","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Enhancing Energy Recovery Act","url":"https://api.congress.gov/v3/bill/119/hr/1003?format=json","number":"1003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2880","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7048","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Student Empowerment Act","url":"https://api.congress.gov/v3/bill/119/hr/939?format=json","number":"939","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2881","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7049","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":"16:46:51"}}} +{"type":"relationship","id":"2882","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7050","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for the attendance of the House at the Inaugural Ceremonies of the President and Vice President of the United States.","url":"https://api.congress.gov/v3/bill/119/hres/43?format=json","number":"43","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":"16:47:19"}}} +{"type":"relationship","id":"2883","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7051","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"____ Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10167?format=json","number":"10167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2884","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7052","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-07-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Renewing Investment in American Workers and Supply Chains Act","url":"https://api.congress.gov/v3/bill/118/hr/9069?format=json","number":"9069","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2885","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7053","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-02","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Tribal Child Welfare Support Act","url":"https://api.congress.gov/v3/bill/118/hr/8921?format=json","number":"8921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2886","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7054","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-07-02","policyArea_name":"Taxation","latestAction_text":"Placed on the Union Calendar, Calendar No. 799.","type":"HR","title":"Education and Workforce Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/8915?format=json","number":"8915","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2887","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7055","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-05-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Securing Access to Care for Seniors in Critical Condition Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8576?format=json","number":"8576","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2888","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7056","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-05-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to remove in-person requirements under Medicare for mental health services furnished through telehealth and telecommunications technology.","url":"https://api.congress.gov/v3/bill/118/hr/8227?format=json","number":"8227","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2889","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7057","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-04-09","latestAction_text":"Placed on the Union Calendar, Calendar No. 800.","type":"HR","title":"Strengthening State and Tribal Child Support Enforcement Act","url":"https://api.congress.gov/v3/bill/118/hr/7906?format=json","number":"7906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2890","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7058","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2024-03-19","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Recognizing the importance of the economic relationship between the United States and Israel and affirming that trade facilitated by the United States-Israel Free Trade Agreement is a tool to support the economy of Israel during the conflict with Hamas.","url":"https://api.congress.gov/v3/bill/118/hres/1092?format=json","number":"1092","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2891","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7059","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-29","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Countering Communist China Act","url":"https://api.congress.gov/v3/bill/118/hr/7476?format=json","number":"7476","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2892","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7060","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To impose a fee on certain remittance transfers to fund border security.","url":"https://api.congress.gov/v3/bill/118/hr/6817?format=json","number":"6817","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2893","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7061","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Education","latestAction_text":"Placed on the Union Calendar, Calendar No. 475.","type":"HR","title":"PROTECT Our Kids Act","url":"https://api.congress.gov/v3/bill/118/hr/6816?format=json","number":"6816","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2894","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7062","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Student Empowerment Act","url":"https://api.congress.gov/v3/bill/118/hr/6050?format=json","number":"6050","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2895","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7063","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"119","introducedDate":"2025-02-24","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/hres/160?format=json","number":"160","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2896","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7064","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Omnibus Crime Control and Safe Streets Act of 1968 to provide public safety officer benefits for exposure-related cancers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1269?format=json","number":"1269","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2897","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7065","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Inaugural Fund Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/535?format=json","number":"535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2898","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7066","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-12-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Health and Location Data Protection Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10540?format=json","number":"10540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2899","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7067","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-11-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Disability Voting Rights Act","url":"https://api.congress.gov/v3/bill/118/hr/10149?format=json","number":"10149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2900","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7068","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-22","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Dropbox Access Act","url":"https://api.congress.gov/v3/bill/118/hr/10032?format=json","number":"10032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2901","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7069","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending Big Brothers-Big Sisters of America, the oldest and largest youth mentoring organization in the United States, on its 120th anniversary and the role it has played in empowering millions of young people on a path to graduate with a plan for their future through mentorship that will last a lifetime.","url":"https://api.congress.gov/v3/bill/118/hres/1516?format=json","number":"1516","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2902","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7070","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of \"Public Radio Music Day\" and deep appreciation for the role of public radio music stations in serving listeners, musicians, and hundreds of communities in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1491?format=json","number":"1491","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2903","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7071","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-08-23","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Pedestrian Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/9408?format=json","number":"9408","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2904","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7072","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Law","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Recognizing the 50th anniversary of the Legal Services Corporation.","url":"https://api.congress.gov/v3/bill/118/hres/1390?format=json","number":"1390","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2905","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7073","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Help Grandfamilies Prevent Child Abuse Act","url":"https://api.congress.gov/v3/bill/118/hr/8555?format=json","number":"8555","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2906","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7074","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-05-08","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Alternatives to Guardianship Education Act","url":"https://api.congress.gov/v3/bill/118/hr/8328?format=json","number":"8328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2907","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7075","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Accessible Voting Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7389?format=json","number":"7389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2908","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7076","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Recognizing January 2024 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/118/hres/983?format=json","number":"983","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2909","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7077","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-11","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Corporate Crime Database Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6713?format=json","number":"6713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2910","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7078","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-08","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Inaugural Fund Integrity Act","url":"https://api.congress.gov/v3/bill/118/hr/6312?format=json","number":"6312","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"2911","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7079","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2023-09-14","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing the support of the House of Representatives for the designation of \"Public Radio Music Day\" and its deep appreciation for the role of public radio music stations in serving listeners, musicians, and hundreds of communities in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2912","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7080","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stopping the Fraudulent Sales of Firearms Act","url":"https://api.congress.gov/v3/bill/118/hr/5449?format=json","number":"5449","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2913","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7081","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Justice for Juveniles Act","url":"https://api.congress.gov/v3/bill/118/hr/5047?format=json","number":"5047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2914","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7082","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","introducedDate":"2023-05-17","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Foster Youth Mentoring Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3443?format=json","number":"3443","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2915","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7083","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to protect small businesses from unemployment insurance premium increases by reason of unrepaid State advances.","url":"https://api.congress.gov/v3/bill/119/hr/1959?format=json","number":"1959","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2916","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7084","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow certain veterinary expenses for pets and service animals to be treated as amounts paid for medical care for purposes of a health savings account or flexible savings account.","url":"https://api.congress.gov/v3/bill/119/hr/1842?format=json","number":"1842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2917","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7085","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to extend the energy credit for qualified fuel cell property.","url":"https://api.congress.gov/v3/bill/119/hr/1752?format=json","number":"1752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2918","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7086","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To provide tax incentives that support local media.","url":"https://api.congress.gov/v3/bill/119/hr/1753?format=json","number":"1753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2919","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7087","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Encouraging the EU to DESIGNATE Resolution","url":"https://api.congress.gov/v3/bill/119/hres/176?format=json","number":"176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2920","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7088","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to remove private or commercial golf courses and country clubs from the list of uses for which certain proceeds cannot be used.","url":"https://api.congress.gov/v3/bill/119/hr/1583?format=json","number":"1583","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2921","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7089","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To require the Secretary of the Treasury to mint coins in recognition of the bicentennial of the Erie Canal.","url":"https://api.congress.gov/v3/bill/119/hr/1546?format=json","number":"1546","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2922","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7090","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish the generic drugs and biosimilars production credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1396?format=json","number":"1396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2923","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7091","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To amend title 5, United States Code, to designate Trump's Birthday and Flag Day as a legal public holiday.","url":"https://api.congress.gov/v3/bill/119/hr/1395?format=json","number":"1395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2924","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7092","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-14","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/hres/139?format=json","number":"139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2925","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7093","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit Federal funding for the Public Broadcasting Service and National Public Radio and to provide for the transfer of certain Federal funds that would have been made available to those organizations to reduce the public debt, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1216?format=json","number":"1216","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2926","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7094","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1103?format=json","number":"1103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2927","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7095","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend part D of title IV of the Social Security Act to ensure that child support for unborn children is collected and distributed under the child support enforcement program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1104?format=json","number":"1104","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2928","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7096","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Stop Funding Our Adversaries Act of 2023","url":"https://api.congress.gov/v3/bill/119/hr/1032?format=json","number":"1032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2929","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7097","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To establish the Fort Ontario National Monument in the State of New York as a unit of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1031?format=json","number":"1031","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2930","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7098","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing the sense of the House of Representatives that the United Nations Security Council should immediately impose an arms embargo against the military of Burma.","url":"https://api.congress.gov/v3/bill/119/hres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2931","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7099","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/119/hr/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2932","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7100","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Pregnancy Resource Center Defense Act","url":"https://api.congress.gov/v3/bill/119/hr/636?format=json","number":"636","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2933","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7101","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Protecting School Milk Choices Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"2934","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7102","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"SAGA Act","url":"https://api.congress.gov/v3/bill/119/hr/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"2935","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7103","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Precision Agriculture Satellite Connectivity Act","url":"https://api.congress.gov/v3/bill/119/hr/1618?format=json","number":"1618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2936","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7104","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/119/hr/866?format=json","number":"866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2937","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7105","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SAVE Moms and Babies Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/685?format=json","number":"685","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2938","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7106","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protecting the Dignity of Unborn Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/686?format=json","number":"686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2939","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7107","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2024-12-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Nuclear REFUEL (Recycling Efficient Fuels Utilizing Expedited Licensing) Act","url":"https://api.congress.gov/v3/bill/118/hr/10321?format=json","number":"10321","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2940","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7108","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SECURE Grid Act","url":"https://api.congress.gov/v3/bill/118/hr/9083?format=json","number":"9083","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2941","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7109","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-05-23","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"Safeguarding and Securing the Open Internet; Restoring Internet Freedom\".","url":"https://api.congress.gov/v3/bill/118/hjres/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"2942","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7110","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-03-08","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/118/hr/7589?format=json","number":"7589","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2943","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7111","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-09-26","policyArea_name":"Energy","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 48 - 0.","type":"HR","title":"Nuclear Fuel Security Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5718?format=json","number":"5718","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2944","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7112","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-09-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"TREAT Act","url":"https://api.congress.gov/v3/bill/118/hr/5541?format=json","number":"5541","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2945","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7113","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-10","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"NTIA Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/4510?format=json","number":"4510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2946","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7114","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-05-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"HEALING Response Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3703?format=json","number":"3703","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2947","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7115","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-05-24","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","type":"HR","title":"Veterans Right to Expediency Act","url":"https://api.congress.gov/v3/bill/118/hr/3643?format=json","number":"3643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2948","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7116","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-05-24","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"ACT for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/3644?format=json","number":"3644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"2949","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7117","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-05-15","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"WIRELESS Leadership Act","url":"https://api.congress.gov/v3/bill/118/hr/3279?format=json","number":"3279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2950","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7118","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-03-03","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"Precision Agriculture Satellite Connectivity Act","url":"https://api.congress.gov/v3/bill/118/hr/1339?format=json","number":"1339","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"2951","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7119","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-04-20","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Stop Penalizing Working Seniors Act","url":"https://api.congress.gov/v3/bill/118/hr/2769?format=json","number":"2769","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2952","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7120","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-02-17","policyArea_name":"Energy","latestAction_text":"Placed on the Union Calendar, Calendar No. 12.","type":"HR","title":"REFINER Act","url":"https://api.congress.gov/v3/bill/118/hr/1085?format=json","number":"1085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2953","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7121","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-02-17","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Nuclear Fuel Security Act","url":"https://api.congress.gov/v3/bill/118/hr/1086?format=json","number":"1086","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2954","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7122","labels":["Legislation"],"properties":{"sponsored_by":"L000566","congress":"118","introducedDate":"2023-01-20","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"SAVE Moms and Babies Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/427?format=json","number":"427","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2955","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7123","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the heroic sacrifices of the people of Ukraine 3 years after Russian President Vladimir Putin's illegal and unprovoked war against Ukraine on February 24, 2022, and recognizing the terrible cost of Russia's committing crimes against Humanity aggression.","url":"https://api.congress.gov/v3/bill/119/hres/154?format=json","number":"154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"2956","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7124","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Sponsor introductory remarks on measure. (CR H607)","type":"HR","title":"Great Lakes Gateways Network Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1073?format=json","number":"1073","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2957","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7125","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-11","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Gold Star Spouses Health Care Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/9974?format=json","number":"9974","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2958","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7126","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th Anniversary of the Warsaw Uprising.","url":"https://api.congress.gov/v3/bill/118/hres/1440?format=json","number":"1440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2959","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7127","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Ukraine Democracy Defense Lend-Lease Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9011?format=json","number":"9011","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2960","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2961","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7129","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-06","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 105th anniversary of diplomatic relations between Poland and the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1198?format=json","number":"1198","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2962","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7130","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-04-26","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Balancing Incentives Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8132?format=json","number":"8132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"2963","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7131","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the heroic sacrifices of the Ukrainian people 2 years after Russia's illegal and unprovoked invasion of Ukraine on February 24, 2022, and recognizing the terrible cost of Russia's war of aggression.","url":"https://api.congress.gov/v3/bill/118/hres/1014?format=json","number":"1014","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2964","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7132","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-01-11","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Opioid Settlement Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/6956?format=json","number":"6956","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2965","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7133","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Healthy Farms Healthy Watersheds Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6821?format=json","number":"6821","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"2966","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7134","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-14","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Last Servicemember Standing Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/6406?format=json","number":"6406","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2967","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7135","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Law Enforcement Training for Mental Health Crisis Response Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3501?format=json","number":"3501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2968","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7136","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-05-05","latestAction_text":"Sponsor introductory remarks on measure. (CR H2155)","type":"HRES","title":"Expressing support for the designation of the week of May 5 through May 14, 2023, as \"National American Birding Week\".","url":"https://api.congress.gov/v3/bill/118/hres/370?format=json","number":"370","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"2969","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7137","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-19","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Return to Prudent Banking Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2714?format=json","number":"2714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"2970","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7138","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-03-29","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Farmers’ Market and Food Bank Local Revitalization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2378?format=json","number":"2378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"2971","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7139","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2023-03-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Science, Space, and Technology, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Office of Manufacturing and Industrial Innovation Policy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1710?format=json","number":"1710","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"2972","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7140","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-02-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Restoring Communities Left Behind Act","url":"https://api.congress.gov/v3/bill/118/hr/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2973","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7141","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-08-12","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Farmers Market and Food Bank Local Revitalization Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8707?format=json","number":"8707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-08-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"2974","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7142","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"117","policyArea_name":"Economics and Public Finance","introducedDate":"2022-06-30","latestAction_text":"Placed on the Union Calendar, Calendar No. 302.","type":"HR","title":"Energy and Water Development and Related Agencies Appropriations Act, 2023","url":"https://api.congress.gov/v3/bill/117/hr/8255?format=json","number":"8255","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"2975","label":"SPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"7143","labels":["Legislation"],"properties":{"sponsored_by":"R000622","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the National Agricultural Research, Extension, and Teaching Policy Act of 1977 to extend grants and fellowships for food and agricultural sciences education.","url":"https://api.congress.gov/v3/bill/119/hr/1952?format=json","number":"1952","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2976","label":"SPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"7144","labels":["Legislation"],"properties":{"sponsored_by":"R000622","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Consolidated Farm and Rural Development Act to reauthorize rural cooperative development grants.","url":"https://api.congress.gov/v3/bill/119/hr/1951?format=json","number":"1951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2977","label":"SPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"7145","labels":["Legislation"],"properties":{"sponsored_by":"L000606","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 25 - 0.","type":"HR","title":"Transparency and Predictability in Small Business Opportunities Act","url":"https://api.congress.gov/v3/bill/119/hr/789?format=json","number":"789","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2978","label":"SPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7146","labels":["Legislation"],"properties":{"sponsored_by":"G000602","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require the Secretary of Homeland Security to designate Haiti for temporary protected status.","url":"https://api.congress.gov/v3/bill/119/hr/1689?format=json","number":"1689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2979","label":"SPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"2980","label":"SPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"7148","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Sponsor introductory remarks on measure. (CR H510-511)","type":"HR","title":"SNAP Benefits Fairness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/793?format=json","number":"793","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2981","label":"SPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"7149","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H122)","type":"HR","title":"ARC Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/307?format=json","number":"307","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"2982","label":"SPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"7150","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"118","introducedDate":"2024-12-06","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"DHS Better Ballistic Body Armor Act","url":"https://api.congress.gov/v3/bill/118/hr/10322?format=json","number":"10322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2983","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7151","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide for an annual increase in stipend for books, supplies, equipment, and other educational costs under Post-9/11 Educational Assistance Program of Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/hr/1965?format=json","number":"1965","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2984","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7152","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To name the Department of Veterans Affairs community-based outpatient clinic in Las Cruces, New Mexico, the \"Las Cruces Bataan Memorial Clinic\".","url":"https://api.congress.gov/v3/bill/119/hr/1964?format=json","number":"1964","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"2985","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7153","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Zuni Indian Tribe in the Zuni River Stream System in the State of New Mexico, to protect the Zuni Salt Lake, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1444?format=json","number":"1444","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"2986","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7154","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Bureau of Labor Statistics to prepare and publish a Consumer Price Index for Rural Consumers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1038?format=json","number":"1038","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"2987","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7155","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-06","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Las Cruces Bataan Memorial Clinic Act","url":"https://api.congress.gov/v3/bill/118/hr/9493?format=json","number":"9493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2988","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7156","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-02","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"New Mexico Rural Veteran Health Care Access Act","url":"https://api.congress.gov/v3/bill/118/hr/9301?format=json","number":"9301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"2989","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7157","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-07-24","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Patient Debt Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/9129?format=json","number":"9129","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2990","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7158","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-07-10","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"Stop Fentanyl at the Border Act","url":"https://api.congress.gov/v3/bill/118/hr/8992?format=json","number":"8992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"2991","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7159","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-08","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Zuni Indian Tribe Water Rights Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8951?format=json","number":"8951","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2992","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7160","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HCONRES","title":"Commemorating the 100th anniversary of the designation of the Gila Wilderness.","url":"https://api.congress.gov/v3/bill/118/hconres/108?format=json","number":"108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"2993","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7161","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-22","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Veteran Education Assistance Adjustment Act","url":"https://api.congress.gov/v3/bill/118/hr/8514?format=json","number":"8514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"2994","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7162","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"CSFP Tribal Nutrition Sovereignty Act","url":"https://api.congress.gov/v3/bill/118/hr/8513?format=json","number":"8513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2995","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7163","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-21","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Farmer to Farmer Education Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8488?format=json","number":"8488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"2996","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7164","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Rural Installation Job Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/8417?format=json","number":"8417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"2997","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7165","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-04-20","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Habitat Connectivity on Working Lands Act","url":"https://api.congress.gov/v3/bill/118/hr/8104?format=json","number":"8104","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"2998","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7166","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No More Narcos Act","url":"https://api.congress.gov/v3/bill/118/hr/8058?format=json","number":"8058","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"2999","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7167","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Condemning Republican inaction to address comprehensive immigration reform and border security.","url":"https://api.congress.gov/v3/bill/118/hres/1132?format=json","number":"1132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3000","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7168","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Inflation Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/7400?format=json","number":"7400","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3001","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7169","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2023-11-24","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Strengthening Our Workforce Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6480?format=json","number":"6480","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3002","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7170","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-15","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Ranching Without Red Tape Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6441?format=json","number":"6441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3003","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7171","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To direct the Federal Communications Commission to establish a council to make recommendations on ways to increase the security, reliability, and interoperability of communications networks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1717?format=json","number":"1717","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3004","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7172","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"CBP Canine Home Kenneling Pilot Act","url":"https://api.congress.gov/v3/bill/118/hr/10499?format=json","number":"10499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3005","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7173","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Sarah Katz Caffeine Safety Act","url":"https://api.congress.gov/v3/bill/118/hr/10370?format=json","number":"10370","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3006","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7174","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Community Parks Revitalization Act","url":"https://api.congress.gov/v3/bill/118/hr/10344?format=json","number":"10344","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3007","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7175","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-23","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"DHS International Cyber Partner Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9762?format=json","number":"9762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3008","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7176","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of the week of September 23, 2024, as \"National Latino Gastronomic Cuisine Week\", and celebrating the vibrant and diverse culinary traditions of Latino gastronomy.","url":"https://api.congress.gov/v3/bill/118/hres/1488?format=json","number":"1488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3009","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7177","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-20","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"Protecting Communities from Helicopter Noise Act","url":"https://api.congress.gov/v3/bill/118/hr/7753?format=json","number":"7753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3010","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7178","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-12-29","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Parental Workforce Training Act","url":"https://api.congress.gov/v3/bill/118/hr/6907?format=json","number":"6907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3011","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7179","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-17","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Providing Robust Organics and Diets for Urban Communities Everywhere Act","url":"https://api.congress.gov/v3/bill/118/hr/6449?format=json","number":"6449","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3012","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7180","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-11-13","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Local Solutions to End Homelessness Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6387?format=json","number":"6387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3013","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7181","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2023-09-21","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of September 23, 2023, as national \"Bruce Springsteen Day\", and honoring his contributions to music, New Jersey, and the Nation.","url":"https://api.congress.gov/v3/bill/118/hres/718?format=json","number":"718","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3014","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7182","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-12","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Airline Employee Assault Prevention Act","url":"https://api.congress.gov/v3/bill/118/hr/4037?format=json","number":"4037","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3015","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7183","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-04-13","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Communities Before Air Tourism Act","url":"https://api.congress.gov/v3/bill/118/hr/2613?format=json","number":"2613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3016","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7184","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","introducedDate":"2023-04-13","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Working Families Task Force Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2614?format=json","number":"2614","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3017","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7185","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-03-15","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on vessel fires and responses, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/7702?format=json","number":"7702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3018","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7186","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To award posthumously a congressional gold medal to James Earl Jones, an American icon, in recognition of a remarkable life in reshaping perceptions, dismantling racial barriers, and advocating for equal opportunities for people of all backgrounds in film and theatre.","url":"https://api.congress.gov/v3/bill/119/hr/1933?format=json","number":"1933","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3019","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7187","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide an income tax credit for fertility treatments.","url":"https://api.congress.gov/v3/bill/119/hr/1878?format=json","number":"1878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3020","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7188","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Financial Services, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to the system of compensation of the Palestine Liberation Organization and the Palestinian Authority that supports acts of terrorism.","url":"https://api.congress.gov/v3/bill/119/hr/1710?format=json","number":"1710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3021","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3022","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3023","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7191","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to increase the number of physicians who may be provided Conrad 30 waivers.","url":"https://api.congress.gov/v3/bill/119/hr/1201?format=json","number":"1201","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3024","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7192","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the rate of the excise tax based on investment income of private colleges and universities and to broaden the definition of applicable educational institution by lowering the threshold with respect to aggregate fair market value per student, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1128?format=json","number":"1128","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3025","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3026","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7194","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 86 Main Street in Haverstraw, New York, as the \"Paul Piperato Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1009?format=json","number":"1009","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3027","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7195","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 298 Route 292 in Holmes, New York, as the \"Sheriff Adrian 'Butch' Anderson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1008?format=json","number":"1008","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3028","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7196","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"IGO Anti-Boycott Act","url":"https://api.congress.gov/v3/bill/119/hr/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3029","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7197","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Justice for 9/11 Act","url":"https://api.congress.gov/v3/bill/119/hr/296?format=json","number":"296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3030","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7198","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"SALT Fairness and Marriage Penalty Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/232?format=json","number":"232","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3031","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7199","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","introducedDate":"2024-11-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Affordable Loans for Students Act","url":"https://api.congress.gov/v3/bill/118/hr/10159?format=json","number":"10159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3032","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7200","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-10-18","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Ways and Means, Oversight and Accountability, Energy and Commerce, and Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Revitalizing America’s Housing Act","url":"https://api.congress.gov/v3/bill/118/hr/10009?format=json","number":"10009","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3033","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7201","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"State Sponsor of Wrongful or Unlawful Detention Act","url":"https://api.congress.gov/v3/bill/118/hr/9976?format=json","number":"9976","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3034","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7202","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Gabriel Rosenberg Dyspraxia/DCD Coverage Act","url":"https://api.congress.gov/v3/bill/118/hr/9975?format=json","number":"9975","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3035","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7203","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-10-01","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HRES","title":"Expressing support for the recognition of September 29, 2024, as \"International Day of Awareness of Food Loss and Waste\".","url":"https://api.congress.gov/v3/bill/118/hres/1528?format=json","number":"1528","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3036","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7204","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Kidney Donation Anti-Discrimination Act","url":"https://api.congress.gov/v3/bill/118/hr/9840?format=json","number":"9840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3037","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7205","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Partners in Diplomacy Act","url":"https://api.congress.gov/v3/bill/118/hr/9437?format=json","number":"9437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3038","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7206","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-31","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"HR","title":"9/11 Memorial and Museum Act","url":"https://api.congress.gov/v3/bill/119/hr/835?format=json","number":"835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3039","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7207","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Service-Disabled Veteran Opportunities in Small Business Act","url":"https://api.congress.gov/v3/bill/119/hr/865?format=json","number":"865","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3040","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7208","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 25 - 0.","type":"HR","title":"Plain Language in Contracting Act","url":"https://api.congress.gov/v3/bill/119/hr/787?format=json","number":"787","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3041","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7209","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Energy and Natural Resources.","type":"HR","title":"DOE and SBA Research Act","url":"https://api.congress.gov/v3/bill/119/hr/788?format=json","number":"788","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3042","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7210","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Vietnam Veterans Liver Fluke Cancer Study Act","url":"https://api.congress.gov/v3/bill/119/hr/586?format=json","number":"586","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3043","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7211","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Supporting Veteran Families in Need Act","url":"https://api.congress.gov/v3/bill/119/hr/585?format=json","number":"585","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3044","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7212","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Troops Before Politicians Act","url":"https://api.congress.gov/v3/bill/119/hr/518?format=json","number":"518","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3045","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7213","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"PFC Joseph P. Dwyer Peer Support Program Act","url":"https://api.congress.gov/v3/bill/119/hr/438?format=json","number":"438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3046","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7214","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Veterans Foreign Medical Coverage Equality and Modernization Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/439?format=json","number":"439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3047","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7215","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Long Island Sound Restoration and Stewardship Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/288?format=json","number":"288","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3048","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7216","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Mobile Post Office Relief Act","url":"https://api.congress.gov/v3/bill/119/hr/287?format=json","number":"287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3049","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7217","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HRES","title":"Expressing opposition to Central Business District Tolling Program of New York City.","url":"https://api.congress.gov/v3/bill/119/hres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3050","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7218","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Bailout for Sanctuary Cities Act","url":"https://api.congress.gov/v3/bill/119/hr/32?format=json","number":"32","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3051","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7219","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Veterans Foreign Medical Coverage Equality and Modernization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10430?format=json","number":"10430","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3052","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7220","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-27","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Gold Star Children Education Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9869?format=json","number":"9869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3053","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7221","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-09-24","policyArea_name":"","latestAction_text":"On agreeing to the LaLota amendment (A016) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1219?format=json","number":"","amendmentNumber":"1219","latestAction":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":"16:58:35"}}} +{"type":"relationship","id":"3054","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7222","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-09-23","policyArea_name":"Immigration","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Tren de Aragua Southwest Border Security Threat Assessment Act","url":"https://api.congress.gov/v3/bill/118/hr/9752?format=json","number":"9752","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3055","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7223","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","introducedDate":"2024-08-13","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Save our Safety-Net Hospitals Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9351?format=json","number":"9351","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3056","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7224","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-07","latestAction_text":"Became Public Law No: 118-186.","type":"HR","title":"DETECT Fentanyl and Xylazine Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8663?format=json","number":"8663","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3057","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7225","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-03","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"Stop the Scam Act","url":"https://api.congress.gov/v3/bill/118/hr/8594?format=json","number":"8594","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3058","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7226","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Protecting Social Security Act","url":"https://api.congress.gov/v3/bill/119/hr/963?format=json","number":"963","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3059","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7227","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Stop Sports Blackouts Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3060","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7228","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-31","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Mortgage Rate Reduction Act","url":"https://api.congress.gov/v3/bill/119/hr/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3061","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7229","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stopping Pharma’s Ripoffs and Drug Savings For All Act","url":"https://api.congress.gov/v3/bill/119/hr/890?format=json","number":"890","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3062","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7230","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-31","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Pro-Housing Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/891?format=json","number":"891","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3063","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7231","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Deliver Housing Now Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3064","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7232","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Lower Grocery Prices Act","url":"https://api.congress.gov/v3/bill/119/hr/887?format=json","number":"887","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3065","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7233","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committees on Energy and Commerce, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Working Families Housing Tax Credit Act","url":"https://api.congress.gov/v3/bill/119/hr/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3066","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7234","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-08-16","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Mortgage Rate Reduction Act","url":"https://api.congress.gov/v3/bill/118/hr/9379?format=json","number":"9379","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3067","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7235","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Working Families Housing Tax Credit Act","url":"https://api.congress.gov/v3/bill/118/hr/9380?format=json","number":"9380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3068","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7236","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-08-16","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Pro-Housing Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9378?format=json","number":"9378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3069","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7237","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-08-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Deliver Housing Now Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9377?format=json","number":"9377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3070","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7238","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2024-08-09","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"Protecting Social Security Act","url":"https://api.congress.gov/v3/bill/118/hr/9341?format=json","number":"9341","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3071","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7239","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2024-02-07","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Courage to Serve Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7298?format=json","number":"7298","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3072","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7240","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2023-11-15","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stopping Pharma’s Ripoffs and Drug Savings For All Act","url":"https://api.congress.gov/v3/bill/118/hr/6436?format=json","number":"6436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3073","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7241","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-09","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Never Forgotten Korean War POW Act","url":"https://api.congress.gov/v3/bill/118/hr/6355?format=json","number":"6355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3074","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7242","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-11-09","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Hudson River Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/6356?format=json","number":"6356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3075","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7243","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-11-03","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Expanding Home Loans for Guard and Reservists Act","url":"https://api.congress.gov/v3/bill/118/hr/6225?format=json","number":"6225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3076","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7244","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","introducedDate":"2023-10-11","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Demanding Senator Tommy Tuberville stop threatening United States and Israel security.","url":"https://api.congress.gov/v3/bill/118/hres/778?format=json","number":"778","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3077","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7245","labels":["Legislation"],"properties":{"sponsored_by":"R000579","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-09-28","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Public Safety and Community Support Act","url":"https://api.congress.gov/v3/bill/118/hr/5811?format=json","number":"5811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3078","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7246","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to rename the standard deduction the guaranteed deduction, and to add a bonus amount to the guaranteed deduction for taxable years 2026 and 2027.","url":"https://api.congress.gov/v3/bill/119/hr/1833?format=json","number":"1833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3079","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7247","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to make the exclusion for certain employer payments of student loans under educational assistance programs permanent.","url":"https://api.congress.gov/v3/bill/119/hr/1801?format=json","number":"1801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3080","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7248","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committees on Energy and Commerce, Agriculture, and Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the use of animals in federally funded research, promote the adoption of humane and scientifically advanced alternatives, and ensure the ethical rehoming of retired research animals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1802?format=json","number":"1802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3081","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7249","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To permit the Smithsonian American Women's History Museum to be located within the Reserve of the National Mall, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3082","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7250","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To permit the Smithsonian National Museum of the American Latino to be located within the Reserve of the National Mall, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3083","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7251","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish the critical supply chains reshoring investment tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1328?format=json","number":"1328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3084","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7252","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To reduce the number of, and shorten the time between, pay grade steps for officers and members of the United States Park Police, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1260?format=json","number":"1260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3085","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7253","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-10","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 41 - 0.","type":"HR","title":"Recovery of Stolen Checks Act","url":"https://api.congress.gov/v3/bill/119/hr/1155?format=json","number":"1155","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3086","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7254","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the exclusion from gross income of social security benefits.","url":"https://api.congress.gov/v3/bill/119/hr/1129?format=json","number":"1129","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3087","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7255","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase the additional standard deduction for seniors.","url":"https://api.congress.gov/v3/bill/119/hr/1130?format=json","number":"1130","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3088","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7256","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"250 Years of Service and Sacrifice Commemorative Coin Act","url":"https://api.congress.gov/v3/bill/119/hr/951?format=json","number":"951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3089","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7257","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-13","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"To amend the Intermodal Surface Transportation Efficiency Act of 1991 to prohibit congestion or cordon pricing in a value pricing program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/351?format=json","number":"351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3090","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7258","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-13","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Motorist Tax Abuse Act","url":"https://api.congress.gov/v3/bill/119/hr/352?format=json","number":"352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3091","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3092","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7260","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Prosecutors Need to Prosecute Act","url":"https://api.congress.gov/v3/bill/119/hr/350?format=json","number":"350","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3093","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7261","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To eliminate certain limitations and exclusions regarding defense articles and requirements regarding security assistance and sales with respect to the Republic of Cyprus.","url":"https://api.congress.gov/v3/bill/119/hr/298?format=json","number":"298","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3094","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7262","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Transparency of Migration Act","url":"https://api.congress.gov/v3/bill/119/hr/299?format=json","number":"299","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3095","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7263","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"HELP PETS Act","url":"https://api.congress.gov/v3/bill/119/hr/297?format=json","number":"297","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3096","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7264","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-07","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"HOV Lanes for Heroes Act","url":"https://api.congress.gov/v3/bill/119/hr/234?format=json","number":"234","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3097","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7265","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-07","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning Turkey for its illegal occupation of Cyprus and encouraging President Trump to make the resolution of the Cyprus problem a top foreign policy priority.","url":"https://api.congress.gov/v3/bill/119/hres/17?format=json","number":"17","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3098","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7266","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Northwestern New Mexico Rural Water Projects Act to make improvements to that Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1482?format=json","number":"1482","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3099","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7267","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Navajo Nation in the Rio San José Stream System in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1324?format=json","number":"1324","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3100","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7268","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of Ohkay Owingeh in the Rio Chama Stream System, to restore the Bosque on Pueblo Land in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1323?format=json","number":"1323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3101","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7269","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Pueblos of Acoma and Laguna in the Rio San José Stream System and the Pueblos of Jemez and Zia in the Rio Jemez Stream System in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1322?format=json","number":"1322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3102","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7270","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Energy and Commerce, Natural Resources, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BADGES for Native Communities Act","url":"https://api.congress.gov/v3/bill/119/hr/1010?format=json","number":"1010","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3103","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7271","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-12-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Historic Preservation Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/10553?format=json","number":"10553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3104","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7272","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2024-09-25","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HCONRES","title":"Recognizing the significance of equal pay and the disparity in wages paid to Latina women in comparison to White, non-Hispanic men.","url":"https://api.congress.gov/v3/bill/118/hconres/131?format=json","number":"131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3105","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7273","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-09","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Defenders of Bataan, Corregidor, and Attu Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/9336?format=json","number":"9336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3106","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7274","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Telehealth Access for Tribal Communities Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9271?format=json","number":"9271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3107","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7275","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Campus Prevention and Recovery Services for Students Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9214?format=json","number":"9214","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3108","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7276","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-08","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Navajo Nation Rio San José Stream System Water Rights Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8945?format=json","number":"8945","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3109","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7277","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-07-08","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Financial Fitness Act","url":"https://api.congress.gov/v3/bill/118/hr/8944?format=json","number":"8944","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3110","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7278","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-06-12","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Home of Your Own Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8714?format=json","number":"8714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3111","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7279","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-06-11","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Ohkay Owingeh Rio Chama Water Rights Settlement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8685?format=json","number":"8685","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3112","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7280","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2024-06-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Financial Fitness Act","url":"https://api.congress.gov/v3/bill/118/hr/8612?format=json","number":"8612","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3113","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7281","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-07","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"New Mexico Land Grant-Mercedes Historical or Traditional Use Cooperation and Coordination Act","url":"https://api.congress.gov/v3/bill/118/hr/8262?format=json","number":"8262","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3114","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7282","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-01-10","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Creative Workforce Investment Act","url":"https://api.congress.gov/v3/bill/118/hr/6935?format=json","number":"6935","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3115","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7283","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-12-05","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Technical Corrections to the Northwestern New Mexico Rural Water Projects Act, Taos Pueblo Indian Water Rights Settlement Act, and Aamodt Litigation Settlement Act","url":"https://api.congress.gov/v3/bill/118/hr/6599?format=json","number":"6599","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3116","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7284","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","introducedDate":"2023-10-19","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"America’s College Promise Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5998?format=json","number":"5998","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3117","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7285","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-10-12","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Pecos Watershed Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5943?format=json","number":"5943","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3118","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7286","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To establish the Commission to Study the Potential Creation of a National Museum of Italian American History and Culture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1102?format=json","number":"1102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3119","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7287","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Affirming the alliance between the United States and the Republic of Korea.","url":"https://api.congress.gov/v3/bill/119/hres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3120","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7288","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Import Security and Fairness Act","url":"https://api.congress.gov/v3/bill/119/hr/322?format=json","number":"322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3121","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7289","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","introducedDate":"2024-11-29","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Securing our Northern Border Act","url":"https://api.congress.gov/v3/bill/118/hr/10265?format=json","number":"10265","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3122","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7290","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-10-11","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Commission To Study the Potential of a National Museum of Italian American History and Culture Act","url":"https://api.congress.gov/v3/bill/118/hr/9987?format=json","number":"9987","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3123","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7291","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","introducedDate":"2024-10-08","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To add the Republic of Korea to the E3 nonimmigrant visa program.","url":"https://api.congress.gov/v3/bill/118/hr/9952?format=json","number":"9952","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3124","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7292","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Celebrating the principles of democracy, religious pluralism, human rights, and the rule of law shared by both the United States and India, the strong people-to-people ties between the United States and India, and the success of the Indian diaspora in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1394?format=json","number":"1394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3125","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7293","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2022-11-16","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To authorize the extension of nondiscriminatory treatment (normal trade relations treatment) to the products of Kazakhstan, Uzbekistan, and Tajikistan.","url":"https://api.congress.gov/v3/bill/117/hr/9322?format=json","number":"9322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3126","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7294","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2022-04-27","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"State Registries for Advance Directives Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7608?format=json","number":"7608","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-04-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3127","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7295","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-04-01","latestAction_text":"Referred to the House Committee on Oversight and Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 55 Broadway in Greenlawn, New York, as the \"Samuel Ballton Post Office\".","url":"https://api.congress.gov/v3/bill/117/hr/7371?format=json","number":"7371","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-04-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3128","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7296","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2021-11-12","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Improving Protections for Midshipmen Act","url":"https://api.congress.gov/v3/bill/117/hr/5964?format=json","number":"5964","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3129","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7297","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2021-10-28","latestAction_text":"Referred to the House Committee on Oversight and Reform.","type":"HRES","title":"Supporting the designation of October 27, 2021, as \"National Civics Day\".","url":"https://api.congress.gov/v3/bill/117/hres/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-10-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3130","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7298","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-07-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"ABLE Employment Flexibility Act","url":"https://api.congress.gov/v3/bill/117/hr/4672?format=json","number":"4672","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3131","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7299","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-07-20","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Everyday Philanthropist Act","url":"https://api.congress.gov/v3/bill/117/hr/4585?format=json","number":"4585","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3132","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7300","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-06-30","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"WISH Act","url":"https://api.congress.gov/v3/bill/117/hr/4289?format=json","number":"4289","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-06-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3133","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7301","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-09-27","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","type":"HR","title":"REDUCE Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5389?format=json","number":"5389","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-09-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3134","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7302","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"International Affairs","introducedDate":"2021-09-20","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","type":"HRES","title":"Commemorating the anniversary of the invasion of Poland and recognizing the importance of the United States alliance with the Republic of Poland.","url":"https://api.congress.gov/v3/bill/117/hres/664?format=json","number":"664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-10-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3135","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7303","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-09-03","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Incentivizing Solar Deployment Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5175?format=json","number":"5175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3136","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7304","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","introducedDate":"2021-08-13","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Territory Economic Development Tax Credit Act","url":"https://api.congress.gov/v3/bill/117/hr/5032?format=json","number":"5032","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-08-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3137","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7305","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"117","policyArea_name":"Environmental Protection","introducedDate":"2021-06-22","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HR","title":"Septic Upgrade Grant Act","url":"https://api.congress.gov/v3/bill/117/hr/4069?format=json","number":"4069","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3138","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7306","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/13?format=json","number":"13","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3139","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7307","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/11?format=json","number":"11","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3140","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7308","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/19?format=json","number":"19","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3141","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7309","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/17?format=json","number":"17","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3142","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7310","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/12?format=json","number":"12","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3143","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7311","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/15?format=json","number":"15","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3144","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7312","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/16?format=json","number":"16","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3145","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7313","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/18?format=json","number":"18","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"3146","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7314","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Recognizing a half century of the independence of the Republic of Cabo Verde and celebrating the contributions of Cabo Verdean-Americans to democracy in Cabo Verde and the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1396?format=json","number":"1396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3147","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7315","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","introducedDate":"2023-01-03","policyArea_name":"NONE","latestAction_text":"Introduced in House","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/118/hr/19?format=json","number":"19","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3148","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7316","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","introducedDate":"2023-01-03","policyArea_name":"NONE","latestAction_text":"Introduced in House","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/118/hr/18?format=json","number":"18","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3149","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7317","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"118","introducedDate":"2023-01-03","policyArea_name":"NONE","latestAction_text":"Introduced in House","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/118/hr/13?format=json","number":"13","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3150","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7318","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-11-15","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a certain Member to a certain standing committee of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1471?format=json","number":"1471","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-11-15","latestAction_actionTime":"13:23:17"}}} +{"type":"relationship","id":"3151","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7319","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing certain Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1347?format=json","number":"1347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":"12:16:07"}}} +{"type":"relationship","id":"3152","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7320","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-08-02","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Student Loan Literacy Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8643?format=json","number":"8643","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3153","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7321","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-06-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1173?format=json","number":"1173","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-06-14","latestAction_actionTime":"12:05:44"}}} +{"type":"relationship","id":"3154","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7322","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-03-29","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Prison to Proprietorship for Formerly Incarcerated Act","url":"https://api.congress.gov/v3/bill/117/hr/7273?format=json","number":"7273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3155","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7323","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2022-03-21","latestAction_text":"Became Public Law No: 117-301.","type":"HR","title":"Human Trafficking Prevention Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7181?format=json","number":"7181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3156","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7324","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-02-15","latestAction_text":"Received in the Senate.","type":"HR","title":"Keep America’s Refuges Operational Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/6734?format=json","number":"6734","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3157","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"7325","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-02-02","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a certain Member to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/902?format=json","number":"902","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-02-02","latestAction_actionTime":"14:27:16"}}} +{"type":"relationship","id":"3158","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7326","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide for the improvement of the Department of Veterans Affairs loan guarantee for purchase of residential cooperative housing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1803?format=json","number":"1803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3159","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7327","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Supporting the goals and ideals of International Mother Language Day in bringing attention to the importance of preserving linguistic and cultural heritage through education.","url":"https://api.congress.gov/v3/bill/119/hres/149?format=json","number":"149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3160","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7328","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th anniversary of the liberation of the Auschwitz extermination camp in Nazi-occupied Poland and International Holocaust Remembrance Day.","url":"https://api.congress.gov/v3/bill/119/hres/87?format=json","number":"87","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3161","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7329","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Lunar New Year Day Act","url":"https://api.congress.gov/v3/bill/119/hr/794?format=json","number":"794","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3162","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7330","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Recognizing the cultural and historical significance of Lunar New Year in 2025.","url":"https://api.congress.gov/v3/bill/119/hres/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3163","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7331","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-24","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Affirming the role of the United States in improving access to quality, inclusive public education and improving learning outcomes for children and adolescents, particularly for girls, around the world.","url":"https://api.congress.gov/v3/bill/119/hres/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3164","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7332","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing an amendment to the Constitution of the United States extending the right to vote to citizens sixteen years of age or older.","url":"https://api.congress.gov/v3/bill/119/hjres/16?format=json","number":"16","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3165","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7333","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-11-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Honoring Family-Friendly Workplaces Act","url":"https://api.congress.gov/v3/bill/118/hr/10253?format=json","number":"10253","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3166","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7334","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Good Samaritan Menstrual Products Act","url":"https://api.congress.gov/v3/bill/118/hr/10230?format=json","number":"10230","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3167","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7335","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"To amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Kosher and Halal Foods, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9980?format=json","number":"9980","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3168","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7336","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-08-30","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the BAPS Hindu-American community and the 50th Anniversary of its Mandir in Flushing, New York.","url":"https://api.congress.gov/v3/bill/118/hres/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3169","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7337","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Destination Reception Assistance Act","url":"https://api.congress.gov/v3/bill/118/hr/9217?format=json","number":"9217","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3170","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7338","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2024-05-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the impact the stigmatization of menstruation has on the lives of women, girls, and people who menstruate, and expressing support for the designation of the month of May as \"National Menstrual Health Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1248?format=json","number":"1248","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3171","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7339","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-14","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Aaron Salter, Jr., Responsible Body Armor Possession Act","url":"https://api.congress.gov/v3/bill/118/hr/8388?format=json","number":"8388","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3172","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7340","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-02-07","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the cultural and historical significance of Lunar New Year in 2024.","url":"https://api.congress.gov/v3/bill/118/hres/1002?format=json","number":"1002","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3173","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7341","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Interagency Committee on Women’s Business Enterprise Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6058?format=json","number":"6058","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3174","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7342","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","introducedDate":"2023-10-13","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Robin Danielson Menstrual Product and Intimate Care Product Safety Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5957?format=json","number":"5957","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3175","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7343","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-29","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Youth, Peace, and Security Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5851?format=json","number":"5851","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3176","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7344","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-18","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Global WASH in Healthcare Facilities Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5545?format=json","number":"5545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3177","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7345","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-01","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing the sense of the House of Representatives that the United States Postal Service should issue a commemorative postage stamp honoring Lewis Howard Latimer, in recognition of his distinctive life, scientific achievements, and his civic contributions to technological advancement, to commemorate the 175th year anniversary of his birth and that the Citizens' Stamp Advisory Committee should recommend to the Postmaster General that such a stamp be issued.","url":"https://api.congress.gov/v3/bill/118/hres/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3178","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7346","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Energy Conservation and Production Act to reauthorize the Weatherization Assistance Program, direct the Secretary of Energy to establish a weatherization readiness program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1355?format=json","number":"1355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3179","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3180","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7348","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committees on Energy and Commerce, and Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Offshore Energy Modernization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10508?format=json","number":"10508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3181","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7349","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-12-16","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Assistance, Quality, and Affordability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10440?format=json","number":"10440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3182","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7350","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"MENTOR Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10374?format=json","number":"10374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3183","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7351","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-09-27","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BUPE for Recovery Act","url":"https://api.congress.gov/v3/bill/118/hr/9886?format=json","number":"9886","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3184","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7352","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SAFE Bet Act","url":"https://api.congress.gov/v3/bill/118/hr/9590?format=json","number":"9590","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3185","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7353","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-30","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Climate Pollution Standard and Community Investment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9230?format=json","number":"9230","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3186","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7354","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Indoor Air Quality and Healthy Schools Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9131?format=json","number":"9131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3187","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7355","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"State Industrial Competitiveness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8769?format=json","number":"8769","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3188","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7356","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Weatherization Enhancement and Readiness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8721?format=json","number":"8721","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3189","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7357","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Critical Material Transparency and Reporting in Advanced Clean Energy Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8187?format=json","number":"8187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3190","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7358","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-04-10","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Cultural Resource Challenge Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7936?format=json","number":"7936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3191","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7359","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing support for the designation of April 5, 2024, as \"Barth Syndrome Awareness Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1025?format=json","number":"1025","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3192","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7360","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2024-02-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Disability Community Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/7267?format=json","number":"7267","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3193","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7361","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-01-18","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Carbon Dioxide Removal Leadership Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7054?format=json","number":"7054","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3194","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7362","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Stopping Grinch Bots Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6837?format=json","number":"6837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3195","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7363","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2023-09-14","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Carbon Dioxide Removal Research and Development Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5457?format=json","number":"5457","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3196","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7364","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","introducedDate":"2023-07-26","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Medicare Mental Health Inpatient Equity Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4946?format=json","number":"4946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3197","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7365","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-25","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/118/hr/4893?format=json","number":"4893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3198","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7366","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Administrator of General Services to ensure that the design of public buildings in the United States adheres to the guiding principles for Federal architecture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1584?format=json","number":"1584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3199","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7367","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Homeland Security Act of 2002 to authorize a program to assess the threat, vulnerability, and consequences of terrorism or other security threats, as appropriate, to certain events, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1508?format=json","number":"1508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3200","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7368","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the excise taxes on wagering.","url":"https://api.congress.gov/v3/bill/119/hr/1440?format=json","number":"1440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3201","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7369","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Sloan Canyon Conservation and Lateral Pipeline Act","url":"https://api.congress.gov/v3/bill/119/hr/972?format=json","number":"972","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3202","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7370","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Nuclear Waste Informed Consent Act","url":"https://api.congress.gov/v3/bill/119/hr/466?format=json","number":"466","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3203","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7371","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To designate a peak in the State of Nevada as Maude Frazier Mountain, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/325?format=json","number":"325","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3204","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7372","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-11-01","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning President Erdogan and his regime for issuing destabilizing statements following the attacks on the State of Israel on October 7, 2023, endangering the North Atlantic Treaty Organization's mission, threatening the territorial integrity of neighboring countries, supporting terrorism, and fostering antisemitic behavior around the globe.","url":"https://api.congress.gov/v3/bill/118/hres/1562?format=json","number":"1562","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3205","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7373","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-09-12","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Thermal Runaway Reduction Act","url":"https://api.congress.gov/v3/bill/118/hr/9588?format=json","number":"9588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3206","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7374","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-07-11","latestAction_text":"Placed on the Union Calendar, Calendar No. 665.","type":"HR","title":"Extreme Weather and Heat Response Modernization Act","url":"https://api.congress.gov/v3/bill/118/hr/9024?format=json","number":"9024","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3207","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7375","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-06-28","policyArea_name":"","latestAction_text":"On agreeing to the Titus amendment (A015) Failed by recorded vote: 129 - 284 (Roll no. 329).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1081?format=json","number":"","amendmentNumber":"1081","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":"10:26:17"}}} +{"type":"relationship","id":"3208","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7376","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Overseas Americans Financial Access Act","url":"https://api.congress.gov/v3/bill/118/hr/8873?format=json","number":"8873","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3209","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7377","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Congress","latestAction_text":"Motion to Discharge Committee filed by Ms. Titus. Petition No: 118-14. (Discharge petition text with signatures.)","type":"HRES","title":"Providing for consideration of the bill (H.R. 396) to regulate bump stocks in the same manner as machineguns.","url":"https://api.congress.gov/v3/bill/118/hres/1302?format=json","number":"1302","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3210","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7378","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-11","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Humane Transport of Farmed Animals Act","url":"https://api.congress.gov/v3/bill/118/hr/8699?format=json","number":"8699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3211","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7379","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-10","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","type":"HR","title":"Coordinator for Afghan Relocation Efforts Authorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8368?format=json","number":"8368","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3212","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7380","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-26","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Azerbaijan Sanctions Review Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8141?format=json","number":"8141","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3213","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7381","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-03-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Stop Tax Penalties on American Hostages Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7791?format=json","number":"7791","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3214","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7382","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"AVERT Future Violence Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7396?format=json","number":"7396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3215","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7383","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"VISITOR Act","url":"https://api.congress.gov/v3/bill/118/hr/7263?format=json","number":"7263","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3216","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7384","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Water Resources Development","introducedDate":"2024-01-31","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Water Conservation Economic Adjustment Act","url":"https://api.congress.gov/v3/bill/118/hr/7178?format=json","number":"7178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3217","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7385","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Honoring the victims of the mass shooting at the University of Nevada, Las Vegas on December 6, 2023.","url":"https://api.congress.gov/v3/bill/118/hres/928?format=json","number":"928","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3218","label":"SPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"7386","labels":["Legislation"],"properties":{"sponsored_by":"M001240","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-23","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"To designate the Washington Dulles International Airport in Virginia as the \"Donald J. Trump International Airport\".","url":"https://api.congress.gov/v3/bill/119/hr/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3219","label":"SPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7387","labels":["Legislation"],"properties":{"sponsored_by":"M001236","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To amend the Intermodal Surface Transportation Efficiency Act of 1991 to designate a portion of United States Route 74 in North Carolina as a future interstate, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1333?format=json","number":"1333","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3220","label":"SPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7388","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to provide that an alien who has been convicted of a crime is ineligible for asylum, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1312?format=json","number":"1312","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3221","label":"SPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7389","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"No Contracts with Foreign Adversaries Act","url":"https://api.congress.gov/v3/bill/119/hr/938?format=json","number":"938","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3222","label":"SPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7390","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-24","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Teleabortion Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3223","label":"SPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"7391","labels":["Legislation"],"properties":{"sponsored_by":"H001101","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/hr/1695?format=json","number":"1695","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3224","label":"SPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"7392","labels":["Legislation"],"properties":{"sponsored_by":"H001101","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"AMERICANS Act","url":"https://api.congress.gov/v3/bill/119/hr/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3225","label":"SPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"7393","labels":["Legislation"],"properties":{"sponsored_by":"F000482","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/119/hr/1830?format=json","number":"1830","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3226","label":"SPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"7394","labels":["Legislation"],"properties":{"sponsored_by":"F000482","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Congratulating the North Dakota State University Bison football team for winning the 2024 National Collegiate Athletic Association Division I Football Championship Subdivision title.","url":"https://api.congress.gov/v3/bill/119/hres/32?format=json","number":"32","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3227","label":"SPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7395","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/hr/1677?format=json","number":"1677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3228","label":"SPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7396","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Securities Exchange Act of 1934 to expand access to capital for rural-area small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1190?format=json","number":"1190","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3229","label":"SPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7397","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/931?format=json","number":"931","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3230","label":"SPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7398","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Crow Tribe Water Rights Settlement Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3231","label":"SPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7399","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Crow Revenue Act","url":"https://api.congress.gov/v3/bill/119/hr/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3232","label":"SPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7400","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Insurance Office Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/643?format=json","number":"643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3233","label":"SPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"7401","labels":["Legislation"],"properties":{"sponsored_by":"C001136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide that certain payments to foreign related parties subject to sufficient foreign tax are not treated as base erosion payments.","url":"https://api.congress.gov/v3/bill/119/hr/1911?format=json","number":"1911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3234","label":"SPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"7402","labels":["Legislation"],"properties":{"sponsored_by":"C001136","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a refundable credit for qualified child care startup expenses.","url":"https://api.congress.gov/v3/bill/119/hr/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3235","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7403","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Secretary of Education to carry out a grant program for skills-for-success courses for all first-year students enrolled at certain institutions of higher education.","url":"https://api.congress.gov/v3/bill/119/hr/1409?format=json","number":"1409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3236","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7404","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HRES","title":"Expressing support for the designation of February 4, 2025, as \"Transit Equity Day\".","url":"https://api.congress.gov/v3/bill/119/hres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3237","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7405","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Cool Roof Rebate Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9894?format=json","number":"9894","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3238","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7406","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"College Thriving Act","url":"https://api.congress.gov/v3/bill/118/hr/9824?format=json","number":"9824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3239","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7407","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-08-23","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Expanding AI Voices Act","url":"https://api.congress.gov/v3/bill/118/hr/9403?format=json","number":"9403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3240","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7408","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-08-02","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Science, Space, and Technology, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"National Gun Violence Research Act","url":"https://api.congress.gov/v3/bill/118/hr/9253?format=json","number":"9253","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3241","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7409","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-07-25","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"IMPACT Act 2.0","url":"https://api.congress.gov/v3/bill/118/hr/9136?format=json","number":"9136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3242","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7410","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Supporting the designation of June, as \"Brain and Spine Metastasis Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1270?format=json","number":"1270","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3243","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7411","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","introducedDate":"2024-03-21","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending and congratulating the 100-year anniversary of Duke University, in Durham, North Carolina.","url":"https://api.congress.gov/v3/bill/118/hres/1100?format=json","number":"1100","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3244","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7412","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-02-05","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HRES","title":"Expressing support for the designation of February 4, 2024, as \"Transit Equity Day\".","url":"https://api.congress.gov/v3/bill/118/hres/998?format=json","number":"998","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3245","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7413","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-05-17","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending and congratulating North Carolina Central University's football team for winning the 2022 Historically Black Colleges and Universities National Football Championship in the 2022 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/118/hres/417?format=json","number":"417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3246","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7414","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Homeland Security.","type":"HR","title":"To direct the Secretary of Homeland Security to carry out a pilot program for the prevention and mitigation of acts of terrorism using motor vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1831?format=json","number":"1831","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3247","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7415","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To amend the Federal Fire Prevention and Control Act of 1974 to make available under the assistance to firefighters grant program the establishment of cancer prevention programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1610?format=json","number":"1610","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3248","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7416","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to require silent alarms in elementary schools and secondary schools, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","number":"1524","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3249","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7417","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To create an interdivisional taskforce at the Securities and Exchange Commission for senior investors.","url":"https://api.congress.gov/v3/bill/119/hr/1469?format=json","number":"1469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3250","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7418","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 38, United States Code, to improve the processes by which a veteran may appeal decisions affecting the provision of benefits under the laws administered by the Secretary of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1471?format=json","number":"1471","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3251","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7419","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Omnibus Crime Control and Safe Streets Act of 1968 to provide funding for school resource officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1470?format=json","number":"1470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3252","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7420","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to establish additional Federal standards that require electric and gas utilities to transmit to each of its consumers information regarding the consumption of electric energy or gas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1412?format=json","number":"1412","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3253","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7421","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to require that domiciliary facilities of the Department of Veterans Affairs and State homes that provide housing to veterans have resident advocates.","url":"https://api.congress.gov/v3/bill/119/hr/1413?format=json","number":"1413","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3254","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7422","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to restore the amount of the orphan drug tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1414?format=json","number":"1414","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3255","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7423","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the provision of information and counseling regarding Federal food assistance programs as part of the Transition Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1411?format=json","number":"1411","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3256","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7424","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Packers and Stockyards Act, 1921, to establish the Office of the Special Investigator for Competition Matters, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1380?format=json","number":"1380","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3257","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7425","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1121?format=json","number":"1121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3258","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7426","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Transportation and Infrastructure, and Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling on Federal law enforcement, led by the Federal Bureau of Investigation, the Department of Homeland Security, and the Federal Aviation Administration, to provide an immediate briefing to the public regarding the recent drone activity in New Jersey and New York.","url":"https://api.congress.gov/v3/bill/119/hres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3259","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7427","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"LITTLE Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1067?format=json","number":"1067","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3260","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7428","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Holocaust Education and Antisemitism Lessons Act","url":"https://api.congress.gov/v3/bill/119/hr/768?format=json","number":"768","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3261","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7429","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-28","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"All Aboard Act","url":"https://api.congress.gov/v3/bill/119/hr/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3262","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7430","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Accountability for Veterans Act","url":"https://api.congress.gov/v3/bill/119/hr/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3263","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7431","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Reaffirming the freedom to decide and expressing continued support for medication abortion access.","url":"https://api.congress.gov/v3/bill/119/hres/65?format=json","number":"65","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3264","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7432","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"SAFE Grilling Act","url":"https://api.congress.gov/v3/bill/119/hr/614?format=json","number":"614","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3265","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7433","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a refundable tax credit for individuals for amounts paid for gas and electricity for primary residences.","url":"https://api.congress.gov/v3/bill/119/hr/615?format=json","number":"615","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3266","label":"SPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"7434","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To designate the America's National Churchill Museum National Historic Landmark, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1945?format=json","number":"1945","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3267","label":"SPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"7435","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require aliens seeking admission to the United States as nonimmigrants to pay a bond or cash payment and to impose penalties on such aliens who fail to timely depart the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1837?format=json","number":"1837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3268","label":"SPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"7436","labels":["Legislation"],"properties":{"sponsored_by":"M001234","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"HR","title":"Rural Small Business Resilience Act","url":"https://api.congress.gov/v3/bill/119/hr/804?format=json","number":"804","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3269","label":"SPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"7437","labels":["Legislation"],"properties":{"sponsored_by":"K000404","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Wagner-Peyser Act to include the Commonwealth of the Northern Mariana Islands and American Samoa, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1797?format=json","number":"1797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3270","label":"SPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"7438","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to submit to Congress reports on the feasibility of installing traffic alert and collision avoidance systems and automatic dependent surveillance-broadcast IN capabilities in all military rotary-wing aircraft, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1898?format=json","number":"1898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3271","label":"SPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"7439","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide clarification regarding the inclusion of medically necessary automobile adaptations in Department of Veterans Affairs definition of \"medical services\".","url":"https://api.congress.gov/v3/bill/119/hr/1364?format=json","number":"1364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3272","label":"SPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"7440","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Clear Communication for Veterans Claims Act","url":"https://api.congress.gov/v3/bill/119/hr/1039?format=json","number":"1039","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3273","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7441","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To amend the Small Business Act and the Small Business Investment Act of 1958 to increase the maximum loan amount for certain loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1893?format=json","number":"1893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3274","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7442","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Celebrating Hindu Americans, condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3275","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7443","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-11-19","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Prohibition of Medicaid Funding for Conversion Therapy Act","url":"https://api.congress.gov/v3/bill/118/hr/10172?format=json","number":"10172","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3276","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7444","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-09-10","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing suicide as a serious public health problem and expressing support for the designation of September as \"National Suicide Prevention Month\" as well as September 10, 2024, as \"World Suicide Prevention Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1436?format=json","number":"1436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3277","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7445","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 24837 Goddard Road in Taylor, Michigan, as the \"Technical Sergeant E. Huston James Memorial Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/9175?format=json","number":"9175","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3278","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7446","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"LIONs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9176?format=json","number":"9176","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3279","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7447","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-22","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Mental Health Care Provider Retention Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9091?format=json","number":"9091","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3280","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7448","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Keep STEM Graduates in America Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9023?format=json","number":"9023","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3281","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7449","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-06-14","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Improving Access to Institutional Mental Health Care Act","url":"https://api.congress.gov/v3/bill/118/hr/8767?format=json","number":"8767","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3282","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7450","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-06-05","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Improved Screening for Veterans and Passengers with Disabilities Act","url":"https://api.congress.gov/v3/bill/118/hr/8645?format=json","number":"8645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3283","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7451","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-05-17","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Prioritizing mental health to the same degree as physical health to address the epidemics of suicide and drug overdose in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1242?format=json","number":"1242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3284","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3285","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7453","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing the remarkable achievements and patriotic service of late Michigan native Captain Claude A. Rowe, Jr., the only known member of the famed Tuskegee Airmen authorized to fly for two Allied countries during World War II.","url":"https://api.congress.gov/v3/bill/118/hres/1018?format=json","number":"1018","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3286","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7454","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-02-05","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Loans in our Neighborhoods Act","url":"https://api.congress.gov/v3/bill/118/hr/7242?format=json","number":"7242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3287","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7455","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-15","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Equitable Contracting and Small Business Advancement Act","url":"https://api.congress.gov/v3/bill/118/hr/6845?format=json","number":"6845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3288","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7456","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Bike the Border Act","url":"https://api.congress.gov/v3/bill/118/hr/6649?format=json","number":"6649","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3289","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7457","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Community Development Investment Tax Credit Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6650?format=json","number":"6650","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3290","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7458","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-12-06","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Keeping Housing Affordable in Forgotten Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/6648?format=json","number":"6648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3291","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7459","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2023-12-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Halt Homelessness Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6647?format=json","number":"6647","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3292","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7460","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-12-04","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"To establish the Digital Literacy and Equity Commission, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6582?format=json","number":"6582","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3293","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7461","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing support for the designation of March 6, 2025, as \"Great Lakes Day\".","url":"https://api.congress.gov/v3/bill/119/hres/194?format=json","number":"194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3294","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7462","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/hr/1796?format=json","number":"1796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3295","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7463","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to make certain improvements to the laws administered by the Secretary of Veterans Affairs relating to educational assistance, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1527?format=json","number":"1527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3296","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7464","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Reignite Hope Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3297","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7465","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"AGOA Extension and Enhancement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10366?format=json","number":"10366","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3298","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7466","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"App Store Accountability Act","url":"https://api.congress.gov/v3/bill/118/hr/10364?format=json","number":"10364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3299","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7467","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"PEPFAR Extension and Reform Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10365?format=json","number":"10365","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3300","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7468","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-09-09","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Congratulating the Olympians and Paralympians of Michigan who competed in the 2024 Olympics and Paralympics in Paris, France.","url":"https://api.congress.gov/v3/bill/118/hres/1429?format=json","number":"1429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3301","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7469","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Preserving Veterans’ Legacy Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8893?format=json","number":"8893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3302","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7470","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-27","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Recognizing the actions of the Rapid Support Forces and allied militias in the Darfur region of Sudan against non-Arab ethnic communities as acts of genocide.","url":"https://api.congress.gov/v3/bill/118/hres/1328?format=json","number":"1328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":"13:35:49"}}} +{"type":"relationship","id":"3303","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7471","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-06-14","policyArea_name":"","latestAction_text":"On agreeing to the James amendment (A038) Agreed to by recorded vote: 272 - 144 (Roll no. 277).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/996?format=json","number":"","amendmentNumber":"996","latestAction":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":"10:54:05"}}} +{"type":"relationship","id":"3304","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7472","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-07","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote.","type":"HR","title":"Reforming Education for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/8661?format=json","number":"8661","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3305","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7473","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-06-04","policyArea_name":"","latestAction_text":"On agreeing to the James amendment (A009) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/936?format=json","number":"","amendmentNumber":"936","latestAction":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"13:38:39"}}} +{"type":"relationship","id":"3306","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7474","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-03","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"AFTER SCHOOL Act","url":"https://api.congress.gov/v3/bill/118/hr/8593?format=json","number":"8593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3307","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7475","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-24","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Protecting America’s Working Dogs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8571?format=json","number":"8571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3308","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7476","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-05-08","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"Bipartisan BRIDGE to DRC Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8310?format=json","number":"8310","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3309","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7477","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-01","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Multi-Pollutant Emissions Standards for Model Years 2027 and Later Light-Duty and Medium-Duty Vehicles\".","url":"https://api.congress.gov/v3/bill/118/hjres/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3310","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7478","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-04-02","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"TELEMH Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7858?format=json","number":"7858","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3311","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7479","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","introducedDate":"2024-03-21","policyArea_name":"","latestAction_text":"On agreeing to the James amendment (A004) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/871?format=json","number":"","amendmentNumber":"871","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":"15:58:06"}}} +{"type":"relationship","id":"3312","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7480","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-06","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 36 - 13.","type":"HR","title":"U.S.-South Africa Bilateral Relations Review Act","url":"https://api.congress.gov/v3/bill/118/hr/7256?format=json","number":"7256","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3313","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7481","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"CONTRACTS Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9832?format=json","number":"9832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3314","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7482","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Continued Presence Improvement Act","url":"https://api.congress.gov/v3/bill/118/hr/9261?format=json","number":"9261","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3315","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7483","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-07-25","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Bankruptcy Administration Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9154?format=json","number":"9154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3316","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7484","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Frederick Douglass Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/7378?format=json","number":"7378","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3317","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7485","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-06","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 753.","type":"HR","title":"Department of Homeland Security Policy Issuance Review Act","url":"https://api.congress.gov/v3/bill/118/hr/6231?format=json","number":"6231","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3318","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7486","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-27","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Kenneth P. Thompson Begin Again Act","url":"https://api.congress.gov/v3/bill/118/hr/4958?format=json","number":"4958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3319","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7487","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-22","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"To make technical amendments to update statutory references to provisions reclassified to title 34, United States Code, and to correct related technical errors.","url":"https://api.congress.gov/v3/bill/118/hr/3578?format=json","number":"3578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3320","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7488","labels":["Legislation"],"properties":{"sponsored_by":"I000058","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-04-26","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Raise the Age Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2870?format=json","number":"2870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3321","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7489","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to amend certain regulations to clarify that livestock auction owners may have an interest in small meatpacking businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1648?format=json","number":"1648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3322","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7490","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require Federal agencies with an SBIR or STTR program to enhance their outreach to rural communities with respect to such programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1590?format=json","number":"1590","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3323","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7491","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-13","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Expressing support for the designation of February 9, 2025, as the first ever \"Gulf of America Day\" and celebrating the importance of changing the Gulf of Mexico to the Gulf of America.","url":"https://api.congress.gov/v3/bill/119/hres/129?format=json","number":"129","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3324","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7492","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Small Business Technological Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/915?format=json","number":"915","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3325","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7493","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","introducedDate":"2024-12-03","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"Small Business Technological Advancement Act","url":"https://api.congress.gov/v3/bill/118/hr/10269?format=json","number":"10269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3326","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7494","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Rural Innovation and Small Business Support Act","url":"https://api.congress.gov/v3/bill/118/hr/9797?format=json","number":"9797","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3327","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7495","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-07-15","latestAction_text":"Reported by the Committee on Small Business. H. Rept. 118-852, Part I.","type":"HR","title":"Regulatory Agenda Clarity Act","url":"https://api.congress.gov/v3/bill/118/hr/9030?format=json","number":"9030","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3328","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7496","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-11","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"DEI DOA Act","url":"https://api.congress.gov/v3/bill/118/hr/7937?format=json","number":"7937","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3329","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7497","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-19","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HRES","title":"Expressing support for the designation of March 19, 2024, as \"National Agriculture Day\" and celebrating the importance of agriculture as one of the most impactful industries in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3330","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7498","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-03-08","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the 175th anniversary of the organization of Laclede County, Missouri, and the city of Lebanon, Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/1067?format=json","number":"1067","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3331","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7499","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-06","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"American Land and Property Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7246?format=json","number":"7246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3332","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7500","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-01-30","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"FAIR Labels Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7130?format=json","number":"7130","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3333","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7501","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-01-11","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the Kansas City Chiefs on the 54th anniversary of their first Super Bowl victory.","url":"https://api.congress.gov/v3/bill/118/hres/959?format=json","number":"959","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3334","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7502","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-01-11","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Recognizing the 202d anniversary of the adoption of the Great Seal of the State of Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/958?format=json","number":"958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3335","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7503","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing December 17, 2023, as the 30th anniversary of when the first B-2 stealth bomber touched down at Whiteman Air Force Base in Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/924?format=json","number":"924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3336","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7504","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing the 83rd anniversary of the groundbreaking of Fort Leonard Wood, Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/919?format=json","number":"919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3337","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7505","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-30","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Holding Agencies Accountable Act","url":"https://api.congress.gov/v3/bill/118/hr/6514?format=json","number":"6514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3338","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7506","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-10-26","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Combatting the Persecution of Religious Groups in China Act","url":"https://api.congress.gov/v3/bill/118/hr/6069?format=json","number":"6069","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3339","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7507","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","introducedDate":"2023-08-25","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"HR","title":"Small Business Administration Rural Performance Report Act","url":"https://api.congress.gov/v3/bill/118/hr/5265?format=json","number":"5265","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3340","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7508","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-09-21","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"2023 WHIP+ Reauthorization Act","url":"https://api.congress.gov/v3/bill/118/hr/5621?format=json","number":"5621","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3341","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7509","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1604?format=json","number":"1604","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3342","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7510","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit the use of Federal funds to implement, administer, or enforce a final rule of the Food and Drug Administration relating to \"Medical Devices; Laboratory Developed Tests\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1463?format=json","number":"1463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3343","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7511","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Food, Conservation, and Energy Act of 2008 to clarify propane storage as an eligible use for funds provided under the storage facility loan program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1302?format=json","number":"1302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3344","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7512","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to require greater transparency for Federal regulatory decisions that impact small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1163?format=json","number":"1163","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3345","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7513","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Farm Credit Administration Independent Authority Act","url":"https://api.congress.gov/v3/bill/119/hr/1063?format=json","number":"1063","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3346","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7514","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Protecting Infrastructure Investments for Rural America Act","url":"https://api.congress.gov/v3/bill/119/hr/502?format=json","number":"502","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3347","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7515","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To modify procurement requirements relating to rare earth elements and strategic and critical materials by contractors of the Department of Defense, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9917?format=json","number":"9917","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3348","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7516","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-08-02","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending the Minnesota State University, Mankato women's and men's basketball teams for winning the 2024 NCAA Division II Basketball National Championships.","url":"https://api.congress.gov/v3/bill/118/hres/1402?format=json","number":"1402","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3349","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7517","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","introducedDate":"2024-06-21","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To designate the bald eagle as the national bird.","url":"https://api.congress.gov/v3/bill/118/hr/8800?format=json","number":"8800","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3350","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7518","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","introducedDate":"2024-05-16","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Food and Drug Administration relating to \"Medical Devices; Laboratory Developed Tests\".","url":"https://api.congress.gov/v3/bill/118/hjres/145?format=json","number":"145","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3351","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7519","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-10","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"FARMER Act","url":"https://api.congress.gov/v3/bill/118/hr/8350?format=json","number":"8350","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3352","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7520","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-07","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Conservation Reserve Program Modernization Act","url":"https://api.congress.gov/v3/bill/118/hr/8270?format=json","number":"8270","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3353","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7521","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-19","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Applicant Medical Reimbursement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8088?format=json","number":"8088","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3354","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7522","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-09","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Energy and Commerce, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"EPA Accountability to Farm Country Act","url":"https://api.congress.gov/v3/bill/118/hr/7900?format=json","number":"7900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3355","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7523","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-02-23","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"BEST for Vets Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7434?format=json","number":"7434","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3356","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7524","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-01","latestAction_text":"Received in the Senate.","type":"HR","title":"Prove It Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7198?format=json","number":"7198","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3357","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7525","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-01-22","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Farm and Food Cybersecurity Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7062?format=json","number":"7062","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3358","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7526","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-11-01","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"LAST ACRE Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6142?format=json","number":"6142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3359","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7527","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-03","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"USDA Express Loan Act","url":"https://api.congress.gov/v3/bill/118/hr/5877?format=json","number":"5877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3360","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7528","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"118","introducedDate":"2023-09-26","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"MCM PRV Reauthorization Act","url":"https://api.congress.gov/v3/bill/118/hr/5708?format=json","number":"5708","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3361","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7529","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 48 - 0.","type":"HR","title":"Taiwan Conflict Deterrence Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1716?format=json","number":"1716","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3362","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7530","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing officers of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"15:40:18"}}} +{"type":"relationship","id":"3363","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7531","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"119","introducedDate":"2025-01-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/13?format=json","number":"13","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":"13:47:58"}}} +{"type":"relationship","id":"3364","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7532","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-27","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of \"Macedonian American Heritage Month\" and celebrating the language, history, and culture of Macedonian Americans and their incredible contributions to the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1522?format=json","number":"1522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3365","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7533","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Authorizing the use of the rotunda of the Capitol for a ceremony to award posthumously a Congressional Gold Medal in commemoration to the servicemembers who perished in Afghanistan on August 26, 2021, during the evacuation of citizens of the United States and Afghan allies at Hamid Karzai International Airport.","url":"https://api.congress.gov/v3/bill/118/hconres/126?format=json","number":"126","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3366","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7534","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a Member to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/1342?format=json","number":"1342","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":"17:07:26"}}} +{"type":"relationship","id":"3367","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7535","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of June 6, 2024, as National Naloxone Awareness Day.","url":"https://api.congress.gov/v3/bill/118/hres/1283?format=json","number":"1283","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3368","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7536","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-06-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/1275?format=json","number":"1275","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"16:46:28"}}} +{"type":"relationship","id":"3369","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7537","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-07","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 44 - 0.","type":"HR","title":"Reuse Excess Property Act","url":"https://api.congress.gov/v3/bill/118/hr/8276?format=json","number":"8276","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3370","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7538","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-05","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 687.","type":"HR","title":"Information Quality Assurance Act","url":"https://api.congress.gov/v3/bill/118/hr/7219?format=json","number":"7219","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3371","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7539","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-01-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Woman’s Right To Know Act","url":"https://api.congress.gov/v3/bill/118/hr/7044?format=json","number":"7044","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3372","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7540","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-01-17","latestAction_text":"Subcommittee Hearings Held","type":"HR","title":"Great Lakes Mapping Act","url":"https://api.congress.gov/v3/bill/118/hr/7020?format=json","number":"7020","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3373","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7541","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Save Women’s Sports Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6728?format=json","number":"6728","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3374","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7542","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/913?format=json","number":"913","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":"19:03:53"}}} +{"type":"relationship","id":"3375","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7543","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/914?format=json","number":"914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":"10:56:08"}}} +{"type":"relationship","id":"3376","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7544","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-05","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Ethics.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/912?format=json","number":"912","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3377","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7545","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Ethics, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/812?format=json","number":"812","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3378","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7546","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-10-25","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Iran Nuclear Verification Act","url":"https://api.congress.gov/v3/bill/118/hr/6057?format=json","number":"6057","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3379","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7547","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-10-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of October 10, 2023, as \"Real Women's Day\".","url":"https://api.congress.gov/v3/bill/118/hres/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3380","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7548","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-09-05","policyArea_name":"Education","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 270.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Improving Income Driven Repayment for the William D. Ford Federal Direct Loan Program and the Federal Family Education Loan (FFEL) Program\".","url":"https://api.congress.gov/v3/bill/118/hjres/88?format=json","number":"88","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3381","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7549","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Administrator of the Centers for Medicare & Medicaid Services to clarify that fully implanted active middle ear hearing devices are prosthetics and are not subject to the hearing aid coverage exclusion under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1921?format=json","number":"1921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3382","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7550","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Secretary of Health and Human Services from implementing, enforcing, or otherwise giving effect to a final rule regarding minimum staffing for nursing facilities, and to establish an advisory panel on the nursing home workforce.","url":"https://api.congress.gov/v3/bill/119/hr/1683?format=json","number":"1683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3383","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7551","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Secretary of Health and Human Services from implementing, administering, or enforcing provisions relating to minimum staffing standards for long-term care facilities and Medicaid institutional payment transparency reporting.","url":"https://api.congress.gov/v3/bill/119/hr/1303?format=json","number":"1303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3384","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7552","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Farm Credit Act of 1971 to provide support for facilities providing healthcare, education, child care, public safety, and other vital services in rural areas.","url":"https://api.congress.gov/v3/bill/119/hr/1246?format=json","number":"1246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3385","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7553","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-10","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 77) to amend chapter 8 of title 5, United States Code, to provide for en bloc consideration in resolutions of disapproval for \"midnight rules\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/122?format=json","number":"122","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":"14:01:01"}}} +{"type":"relationship","id":"3386","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3387","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7555","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Defund Planned Parenthood Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/271?format=json","number":"271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3388","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7556","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Adopting the Rules of the House of Representatives for the One Hundred Nineteenth Congress, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hres/5?format=json","number":"5","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:12:02"}}} +{"type":"relationship","id":"3389","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7557","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Received in the Senate.","type":"HCONRES","title":"Regarding consent to assemble outside the seat of government.","url":"https://api.congress.gov/v3/bill/119/hconres/1?format=json","number":"1","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3390","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7558","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Fixing the daily hour of meeting of the First Session of the One Hundred Nineteenth Congress.","url":"https://api.congress.gov/v3/bill/119/hres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:13:30"}}} +{"type":"relationship","id":"3391","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7559","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-11-18","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1449) to amend the Geothermal Steam Act of 1970 to increase the frequency of lease sales, to require replacement sales, and for other purposes, and providing for consideration of the bill (H.R. 9495) to amend the Internal Revenue Code of 1986 to postpone tax deadlines and reimburse paid late fees for United States nationals who are unlawfully or wrongfully detained or held hostage abroad, to terminate the tax-exempt status of terrorist supporting organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1576?format=json","number":"1576","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":"14:06:04"}}} +{"type":"relationship","id":"3392","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7560","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8997) making appropriations for energy and water development and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8998) making appropriations for the Department of the Interior, environment, and related agencies for the fiscal year ending September 30, 2025, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1370?format=json","number":"1370","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":"10:53:09"}}} +{"type":"relationship","id":"3393","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7561","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-26","latestAction_text":"Became Public Law No: 118-253.","type":"HR","title":"To designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the \"Floyd B. Olson Post Office\".","url":"https://api.congress.gov/v3/bill/118/hr/8841?format=json","number":"8841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3394","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7562","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-06-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"MOMS Act","url":"https://api.congress.gov/v3/bill/118/hr/8801?format=json","number":"8801","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3395","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7563","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-05-10","policyArea_name":"Health","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 21 - 18.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to \"Medicare and Medicaid Programs: Minimum Staffing Standards for Long-Term Care Facilities and Medicaid Institutional Payment Transparency Reporting\".","url":"https://api.congress.gov/v3/bill/118/hjres/139?format=json","number":"139","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3396","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7564","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-04-29","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 615) to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes; providing for consideration of the bill (H.R. 2925) to amend the Omnibus Budget Reconciliation Act of 1993 to provide for security of tenure for use of mining claims for ancillary activities, and for other purposes; providing for consideration of the bill (H.R. 3195) to rescind Public Land Order 7917, to reinstate mineral leases and permits in the Superior National Forest, to ensure timely review of Mine Plans of Operations, and for other purposes; providing for consideration of the bill (H.R. 764) to require the Secretary of the Interior to reissue regulations removing the gray wolf from the list of endangered and threatened wildlife under the Endangered Species Act of 1973; providing for consideration of the bill (H.R. 3397) to require the Director of the Bureau of Land Management to withdraw a rule of the Bureau of Land Management relating to conservation and landscape health; providing for consideration of the bill (H.R. 6285) to ratify and approve all authorizations, permits, verifications, extensions, biological opinions, incidental take statements, and any other approvals or orders issued pursuant to Federal law necessary for the establishment and administration of the Coastal Plain oil and gas leasing program, and for other purposes; and providing for consideration of the bill (H.R. 6090) to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1173?format=json","number":"1173","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":"12:46:47"}}} +{"type":"relationship","id":"3397","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7565","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-04-15","policyArea_name":"Taxation","latestAction_text":"Placed on the Union Calendar, Calendar No. 726.","type":"HR","title":"Stop Executive Overreach on Trade Agreements","url":"https://api.congress.gov/v3/bill/118/hr/7983?format=json","number":"7983","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3398","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7566","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-03-01","policyArea_name":"Health","latestAction_text":"Placed on the Union Calendar, Calendar No. 769.","type":"HR","title":"Protecting American Seniors’ Access to Care Act","url":"https://api.congress.gov/v3/bill/118/hr/7513?format=json","number":"7513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3399","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7567","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Hearing Device Coverage Clarification Act","url":"https://api.congress.gov/v3/bill/118/hr/7254?format=json","number":"7254","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3400","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7568","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"118","introducedDate":"2024-02-01","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HJRES","title":"Disapproving the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Furnaces\".","url":"https://api.congress.gov/v3/bill/118/hjres/111?format=json","number":"111","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3401","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7569","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To provide monthly payments for eligible pregnant women and parents to improve the ability of families to provide for their children and other family members, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1308?format=json","number":"1308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3402","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7570","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Fair Labor Standards Act of 1938 to exempt certain 16- and 17-year-old individuals employed in timber harvesting entities or mechanized timber harvesting entities from child labor laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1193?format=json","number":"1193","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3403","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7571","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Northeast Fisheries Heritage Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/674?format=json","number":"674","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3404","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7572","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To impose additional duties on imports of goods into the United States.","url":"https://api.congress.gov/v3/bill/119/hr/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3405","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7573","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-10-11","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"To designate the Maine Forest and Logging Museum, located in Bradley, Maine, as the National Museum of Forestry and Logging History.","url":"https://api.congress.gov/v3/bill/118/hr/9965?format=json","number":"9965","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3406","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7574","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Postmaster General Reform Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9919?format=json","number":"9919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3407","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7575","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To impose additional duties on imports of goods into the United States.","url":"https://api.congress.gov/v3/bill/118/hr/9827?format=json","number":"9827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3408","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7576","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Disapproving the rule submitted by the Department of Health and Human Services relating to \"Control of Communicable Diseases; Foreign Quarantine: Importation of Dogs and Cats\".","url":"https://api.congress.gov/v3/bill/118/hjres/200?format=json","number":"200","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3409","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7577","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-05-10","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Declaring Our Energy Independence from China Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8352?format=json","number":"8352","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3410","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7578","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-05-10","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Protecting American Autoworkers from China Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8351?format=json","number":"8351","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3411","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7579","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-05-08","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"Loggers Economic Assistance and Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/8305?format=json","number":"8305","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3412","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7580","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Consistent Labeling for Political Ads Act","url":"https://api.congress.gov/v3/bill/118/hr/8172?format=json","number":"8172","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3413","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7581","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on Ways and Means, and the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Fighting Foreign Influence Act","url":"https://api.congress.gov/v3/bill/118/hr/8176?format=json","number":"8176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3414","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7582","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2024-04-30","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Crack Down on Dark Money Act","url":"https://api.congress.gov/v3/bill/118/hr/8175?format=json","number":"8175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3415","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7583","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stop Foreign Payoffs Act","url":"https://api.congress.gov/v3/bill/118/hr/8177?format=json","number":"8177","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3416","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7584","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Congressional and Executive Foreign Lobbying Ban Act","url":"https://api.congress.gov/v3/bill/118/hr/8174?format=json","number":"8174","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3417","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7585","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to prohibit former Members of Congress from engaging in lobbying contacts.","url":"https://api.congress.gov/v3/bill/118/hr/8173?format=json","number":"8173","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3418","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7586","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-15","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Timely Mail Delivery and Postal Services Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/8000?format=json","number":"8000","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3419","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7587","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-01-16","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Block Foreign-Funded Political Ads Act","url":"https://api.congress.gov/v3/bill/118/hr/6996?format=json","number":"6996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3420","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7588","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"118","introducedDate":"2023-09-13","policyArea_name":"Commerce","latestAction_text":"Placed on the Union Calendar, Calendar No. 180.","type":"HR","title":"To amend the Small Business Act to enhance the Office of Rural Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5425?format=json","number":"5425","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3421","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7589","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-09-17","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"21st Century Workforce Partnerships Act","url":"https://api.congress.gov/v3/bill/118/hr/9621?format=json","number":"9621","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3422","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7590","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-02","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cooper Davis and Devin Norring Act","url":"https://api.congress.gov/v3/bill/118/hr/8918?format=json","number":"8918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3423","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7591","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-31","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Stop Fraud in Federal Programs Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8584?format=json","number":"8584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3424","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7592","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-05-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Task Force to Stop Price Gouging Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8493?format=json","number":"8493","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3425","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7593","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-05-21","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HRES","title":"Recognizing \"National Public Works Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1245?format=json","number":"1245","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3426","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7594","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Protect Local Law Enforcement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8429?format=json","number":"8429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3427","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7595","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-08","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Food and Nutrition Delivery Safety Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8300?format=json","number":"8300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3428","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7596","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-05-01","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Small Business Tax Relief Act","url":"https://api.congress.gov/v3/bill/118/hr/8201?format=json","number":"8201","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3429","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7597","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-04-19","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"Safe Stay Act","url":"https://api.congress.gov/v3/bill/118/hr/8086?format=json","number":"8086","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3430","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7598","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-02-29","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Recognizing and honoring Burnsville, Minnesota, law enforcement and first responders for their heroic actions.","url":"https://api.congress.gov/v3/bill/118/hres/1038?format=json","number":"1038","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3431","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7599","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Ride-Along Resolution","url":"https://api.congress.gov/v3/bill/118/hres/1023?format=json","number":"1023","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3432","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7600","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-01-25","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"You Earned It, You Keep It Act","url":"https://api.congress.gov/v3/bill/118/hr/7084?format=json","number":"7084","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3433","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7601","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"RAPID Reserve Act","url":"https://api.congress.gov/v3/bill/118/hr/6802?format=json","number":"6802","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3434","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7602","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-12-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Kid PROOF Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6663?format=json","number":"6663","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3435","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7603","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-10-25","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To require the Postal Service to implement recommendations from the Inspector General of the United States Postal Service for improving identification and notification of undelivered and partially delivered routes, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6047?format=json","number":"6047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3436","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7604","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-10-03","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To provide members of the President's Cabinet an allowance to acquire security equipment and services for the personal residences of such members, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/5884?format=json","number":"5884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3437","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7605","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-09-20","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"My Constituents Cannot Afford Rebellious Tantrums, Handle Your Shutdown Act","url":"https://api.congress.gov/v3/bill/118/hr/5587?format=json","number":"5587","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3438","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7606","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2023-09-08","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Helping Low-Income Seniors Afford Care Act","url":"https://api.congress.gov/v3/bill/118/hr/5360?format=json","number":"5360","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3439","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7607","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Fighting Their Fraud Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5139?format=json","number":"5139","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3440","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7608","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-05-18","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","type":"HRES","title":"Recognizing \"National Public Works Week\".","url":"https://api.congress.gov/v3/bill/118/hres/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3441","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7609","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend titles XIX and XXI of the Social Security Act to streamline the enrollment process for eligible out-of-state providers under Medicaid and CHIP.","url":"https://api.congress.gov/v3/bill/119/hr/1509?format=json","number":"1509","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3442","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7610","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To ban the sale of products with a high concentration of sodium nitr ite to individuals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1442?format=json","number":"1442","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3443","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7611","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"119","introducedDate":"2025-02-06","policyArea_name":"","latestAction_text":"On agreeing to the Trahan amendment (A002) Failed by the Yeas and Nays: 182 - 226 (Roll no. 32).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/119/hamdt/5?format=json","number":"","amendmentNumber":"5","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":"16:35:35"}}} +{"type":"relationship","id":"3444","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7612","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2024-08-30","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the goals of Overdose Awareness Day and strengthening efforts to combat the opioid crisis in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1419?format=json","number":"1419","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3445","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7613","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-08-06","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Pipeline Accountability, Safety, and Environmental Standards Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9323?format=json","number":"9323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3446","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7614","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing support for the designation of April 17, 2025, as \"Cambodian Genocide Remembrance Day\" to remember the horrific slaughter of almost 2,000,000 Cambodian people at the hand of the Khmer Rouge regime.","url":"https://api.congress.gov/v3/bill/118/hres/1156?format=json","number":"1156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3447","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7615","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2024-03-08","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"SENIOR Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7605?format=json","number":"7605","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3448","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7616","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2024-02-15","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend title XVIII of the Social Security Act to establish a definition of essential health system in statute.","url":"https://api.congress.gov/v3/bill/118/hr/7397?format=json","number":"7397","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3449","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7617","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-08-18","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Fusion Energy Act","url":"https://api.congress.gov/v3/bill/118/hr/5244?format=json","number":"5244","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-08-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3450","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7618","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-07-26","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"College Athlete Economic Freedom Act","url":"https://api.congress.gov/v3/bill/118/hr/4948?format=json","number":"4948","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3451","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7619","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Bridging the SNAP Gap Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4815?format=json","number":"4815","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3452","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7620","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Accelerating Kids’ Access to Care Act","url":"https://api.congress.gov/v3/bill/118/hr/4758?format=json","number":"4758","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3453","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7621","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-11","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"TLDR Act","url":"https://api.congress.gov/v3/bill/118/hr/4568?format=json","number":"4568","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3454","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7622","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HR","title":"DELETE Act","url":"https://api.congress.gov/v3/bill/118/hr/4311?format=json","number":"4311","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3455","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7623","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-06-22","policyArea_name":"Commerce","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"HR","title":"Youth Poisoning Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/4310?format=json","number":"4310","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3456","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7624","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-06-05","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Disease X Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3832?format=json","number":"3832","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3457","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7625","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-02-27","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"INFO for Reproductive Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1224?format=json","number":"1224","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3458","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7626","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","policyArea_name":"Crime and Law Enforcement","introducedDate":"2022-10-31","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stop Online Suicide Assistance Forums Act","url":"https://api.congress.gov/v3/bill/117/hr/9260?format=json","number":"9260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3459","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7627","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","introducedDate":"2022-10-21","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"INFO for Reproductive Care Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9220?format=json","number":"9220","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-10-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3460","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7628","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2022-03-17","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"ASSET Act","url":"https://api.congress.gov/v3/bill/117/hr/7145?format=json","number":"7145","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3461","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3462","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7630","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-18","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Ammunition Supply Chain Act","url":"https://api.congress.gov/v3/bill/118/hr/8066?format=json","number":"8066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3463","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7631","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-04-05","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Firearm Due Process Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/7873?format=json","number":"7873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3464","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7632","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-26","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Sunset Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7455?format=json","number":"7455","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3465","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7633","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-01-11","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Financial Stability Oversight Council Reform Act","url":"https://api.congress.gov/v3/bill/118/hr/6962?format=json","number":"6962","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3466","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7634","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Securing Facilities for Mental Health Services Act","url":"https://api.congress.gov/v3/bill/118/hr/6922?format=json","number":"6922","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3467","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7635","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-12-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Main Street Growth Act","url":"https://api.congress.gov/v3/bill/118/hr/6623?format=json","number":"6623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3468","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7636","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-09-12","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"CBDC Anti-Surveillance State Act","url":"https://api.congress.gov/v3/bill/118/hr/5403?format=json","number":"5403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3469","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7637","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-05-22","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Securities Clarity Act","url":"https://api.congress.gov/v3/bill/118/hr/3572?format=json","number":"3572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3470","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7638","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CFPB Whistleblower Incentives and Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/2490?format=json","number":"2490","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3471","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7639","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-04-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CFPB Dual Mandate and Economic Analysis Act","url":"https://api.congress.gov/v3/bill/118/hr/2489?format=json","number":"2489","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3472","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7640","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-03-23","latestAction_text":"Placed on the Union Calendar, Calendar No. 403.","type":"HR","title":"Blockchain Regulatory Certainty Act","url":"https://api.congress.gov/v3/bill/118/hr/1747?format=json","number":"1747","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3473","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7641","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-02-21","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"CBDC Anti-Surveillance State Act","url":"https://api.congress.gov/v3/bill/118/hr/1122?format=json","number":"1122","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3474","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7642","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","introducedDate":"2023-11-08","policyArea_name":"","latestAction_text":"On agreeing to the Emmer amendment (A024) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/679?format=json","number":"","amendmentNumber":"679","latestAction":"","latestAction_actionDate":"2023-11-08","latestAction_actionTime":"13:43:49"}}} +{"type":"relationship","id":"3475","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7643","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","introducedDate":"2022-12-08","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Student Mental Health Improvement Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9469?format=json","number":"9469","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-12-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3476","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7644","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","introducedDate":"2022-11-17","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","type":"HRES","title":"Expressing support for the designation of November 17, 2022, as \"National Rural Mental Health Day\".","url":"https://api.congress.gov/v3/bill/117/hres/1485?format=json","number":"1485","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-12-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3477","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7645","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-09-22","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Recognizing the 50th anniversary of National Hunting and Fishing Day.","url":"https://api.congress.gov/v3/bill/117/hres/1387?format=json","number":"1387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3478","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7646","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-07-28","latestAction_text":"Referred to the Subcommittee on Antitrust, Commercial, and Administrative Law.","type":"HR","title":"Sunset Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8563?format=json","number":"8563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3479","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7647","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-07-19","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","type":"HR","title":"To amend the Food, Agriculture, and Trade Act of 1990 to establish a grant program for eligible institutions to carry out agriculture workforce training programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/117/hr/8425?format=json","number":"8425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-08-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3480","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7648","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2022-06-22","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Securing Facilities for Mental Health Services Act","url":"https://api.congress.gov/v3/bill/117/hr/8179?format=json","number":"8179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3481","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7649","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"Non-Recognition of Russian Annexation of Ukrainian Territory Act","url":"https://api.congress.gov/v3/bill/119/hr/947?format=json","number":"947","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3482","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7650","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning the fraudulent January 2025 Belarusian presidential election and the Lukashenka regime's continued autocratic rule, calling for continued support for the people of Belarus who seek a democratic future, and calling for free and fair elections in Belarus in line with international standards.","url":"https://api.congress.gov/v3/bill/119/hres/73?format=json","number":"73","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3483","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7651","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Act of August 9, 1955 (commonly known as the \"Long-Term Leasing Act\"), to authorize leases of up to 99 years for land held in trust for the Mashpee Wampanoag Tribe and the Wampanoag Tribe of Gay Head (Aquinnah), and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/681?format=json","number":"681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3484","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7652","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit the use of Federal funds to support or facilitate the participation of the Russian Federation in the Group of Seven, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/436?format=json","number":"436","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3485","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7653","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/347?format=json","number":"347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3486","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7654","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Act of August 9, 1955 (commonly known as the \"Long-Term Leasing Act\"), to authorize leases of up to 99 years for land held in trust for the Mashpee Wampanoag Tribe and the Wampanoag Tribe of Gay Head (Aquinnah), and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/10492?format=json","number":"10492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3487","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7655","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2024-12-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To codify in statute certain sanctions with respect to the Russian Federation.","url":"https://api.congress.gov/v3/bill/118/hr/10368?format=json","number":"10368","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3488","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7656","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-24","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Western Balkans Democracy and Prosperity Act","url":"https://api.congress.gov/v3/bill/118/hr/9123?format=json","number":"9123","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3489","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7657","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-26","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"GPA Act","url":"https://api.congress.gov/v3/bill/118/hr/8845?format=json","number":"8845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3490","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7658","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-06-25","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"The U.S.-European Nuclear Energy Cooperation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8824?format=json","number":"8824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3491","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7659","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-06","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","type":"HRES","title":"Reaffirming the United States full and unwavering commitment to the North Atlantic Treaty Organization in its 75th anniversary year and its goals of achieving collective security through transatlantic partnerships.","url":"https://api.congress.gov/v3/bill/118/hres/1063?format=json","number":"1063","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3492","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7660","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-02-14","latestAction_text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","type":"HR","title":"Ukraine War Risk Insurance Act","url":"https://api.congress.gov/v3/bill/118/hr/7353?format=json","number":"7353","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3493","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7661","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-11-15","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Reaffirming the need for transatlantic cooperation to combat antisemitism in Europe.","url":"https://api.congress.gov/v3/bill/118/hres/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3494","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7662","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-09-29","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Supporting 30 years of diplomatic relations between the United States and the independent Czech Republic and Slovak Republic, highlighting their assistance to Ukraine, and supporting continued democratic resiliency.","url":"https://api.congress.gov/v3/bill/118/hres/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3495","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7663","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2023-06-07","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Ukrainian Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3911?format=json","number":"3911","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3496","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7664","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-05-24","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Condemning the authoritarian repression of the Belarusian democracy movement by the Lukashenka regime and calling for the release of all political prisoners as well as free and fair elections.","url":"https://api.congress.gov/v3/bill/118/hres/441?format=json","number":"441","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3497","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7665","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-04-18","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commending the International Criminal Court's issuance of an arrest warrant for Vladimir Putin, President of the Russian Federation, and Maria Lvova-Belova, Commissioner for Children's Rights in the Office of the President of the Russian Federation, for two war crimes related to the forcible deportation of Ukrainian children from occupied areas of Ukraine to the Russian Federation.","url":"https://api.congress.gov/v3/bill/118/hres/304?format=json","number":"304","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3498","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7666","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","introducedDate":"2023-04-10","policyArea_name":"Animals","latestAction_text":"Received in the Senate.","type":"HR","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/2560?format=json","number":"2560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3499","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7667","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-04-03","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Calling on major United States companies still operating in the Russian Federation to reconsider their continued presence given Russia's full-scale invasion of Ukraine.","url":"https://api.congress.gov/v3/bill/118/hres/274?format=json","number":"274","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3500","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7668","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-03-27","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 47 - 0.","type":"HR","title":"Block the Use of Transatlantic Technology in Iranian Made Drones Act","url":"https://api.congress.gov/v3/bill/118/hr/1809?format=json","number":"1809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3501","label":"SPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"7669","labels":["Legislation"],"properties":{"sponsored_by":"S001229","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the FAST Act to include certain mineral production activities as a covered project, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1501?format=json","number":"1501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3502","label":"SPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"7670","labels":["Legislation"],"properties":{"sponsored_by":"S001229","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/816?format=json","number":"816","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3503","label":"SPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7671","labels":["Legislation"],"properties":{"sponsored_by":"M001233","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"INSTRUCT Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1018?format=json","number":"1018","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3504","label":"SPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7672","labels":["Legislation"],"properties":{"sponsored_by":"M001233","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Commercial Water Heating Equipment\".","url":"https://api.congress.gov/v3/bill/119/hjres/15?format=json","number":"15","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3505","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7673","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Expressing support for the designation of February 2025 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/119/hres/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3506","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7674","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude certain health professions education scholarship and loan payments from gross income.","url":"https://api.congress.gov/v3/bill/119/hr/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3507","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7675","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"HR","title":"Continued Rapid Ohia Death Response Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/375?format=json","number":"375","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3508","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7676","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"119","policyArea_name":"Arts, Culture, Religion","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HRES","title":"Recognizing the 125th anniversary of organized Okinawan immigration to the United States.","url":"https://api.congress.gov/v3/bill/119/hres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3509","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7677","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-12-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Strengthening Pathways to Health Professions Act","url":"https://api.congress.gov/v3/bill/118/hr/10280?format=json","number":"10280","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3510","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7678","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the goals and ideals of \"National Rural Health Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1594?format=json","number":"1594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3511","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7679","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-12","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Stop Illegal Campaign Coordination Act","url":"https://api.congress.gov/v3/bill/118/hr/9589?format=json","number":"9589","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3512","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7680","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Social Security.","type":"HR","title":"Protecting and Preserving Social Security Act","url":"https://api.congress.gov/v3/bill/118/hr/9300?format=json","number":"9300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3513","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7681","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-07-09","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Native Arts and Culture Promotion Act","url":"https://api.congress.gov/v3/bill/118/hr/8973?format=json","number":"8973","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3514","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7682","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-06-28","latestAction_text":"Became Public Law No: 118-255.","type":"HR","title":"To designate the facility of the United States Postal Service located at 82-6110 Mamalahoa Highway in Captain Cook, Hawaii, as the \"Army 1st Lt. John Kuulei Kauhaihao Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/8909?format=json","number":"8909","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3515","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7683","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-14","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Restoring Trust in Public Safety Act","url":"https://api.congress.gov/v3/bill/118/hr/8768?format=json","number":"8768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3516","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7684","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"PATCH Act","url":"https://api.congress.gov/v3/bill/118/hr/8563?format=json","number":"8563","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3517","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7685","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-05-23","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Parity for Native Hawaiian Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8562?format=json","number":"8562","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3518","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7686","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"To amend the Food Security Act of 1985 to encourage the use of native vegetation, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8510?format=json","number":"8510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3519","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7687","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-01","latestAction_text":"Became Public Law No: 118-184.","type":"HR","title":"Lahaina National Heritage Area Study Act","url":"https://api.congress.gov/v3/bill/118/hr/8219?format=json","number":"8219","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3520","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7688","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-03-29","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Eliminating Access Barriers to Conservation Act","url":"https://api.congress.gov/v3/bill/118/hr/7850?format=json","number":"7850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3521","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7689","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Emergency Management","introducedDate":"2024-03-08","latestAction_text":"Sponsor introductory remarks on measure. (CR H1064)","type":"HR","title":"Hawaii Wildfire Disaster Unemployment Assistance Continuity Act","url":"https://api.congress.gov/v3/bill/118/hr/7604?format=json","number":"7604","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3522","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7690","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","policyArea_name":"Native Americans","introducedDate":"2024-02-13","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Supporting the designation of February 2024 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1010?format=json","number":"1010","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3523","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7691","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2023-11-14","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"CARE for First Responders Act","url":"https://api.congress.gov/v3/bill/118/hr/6415?format=json","number":"6415","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3524","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7692","labels":["Legislation"],"properties":{"sponsored_by":"T000487","congress":"118","introducedDate":"2023-10-24","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Small Business, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"MAUI STRONG Act","url":"https://api.congress.gov/v3/bill/118/hr/6037?format=json","number":"6037","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3525","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7693","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1955?format=json","number":"1955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3526","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7694","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-02-05","latestAction_text":"Sponsor introductory remarks on measure. (CR H519)","type":"HR","title":"QUIET Act","url":"https://api.congress.gov/v3/bill/119/hr/1027?format=json","number":"1027","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3527","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7695","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2024-11-22","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To designate the facility of the United States Postal Service located at 5225 Harrison Avenue in Rockford, Illinois, as the \"Jay P. Larson Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/10254?format=json","number":"10254","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3528","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7696","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Hydrogen for Industry Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9851?format=json","number":"9851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3529","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7697","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-04-18","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HRES","title":"Recognizing the longstanding partnership between USDA and NASA and encouraging further interagency collaboration.","url":"https://api.congress.gov/v3/bill/118/hres/1159?format=json","number":"1159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3530","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7698","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-04-16","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HR","title":"Low-Income Household Water Assistance Program Establishment Act","url":"https://api.congress.gov/v3/bill/118/hr/8032?format=json","number":"8032","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3531","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7699","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2024-04-11","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"ONSHORE Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7968?format=json","number":"7968","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3532","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7700","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-10","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Arsenal Workload Sustainment Act","url":"https://api.congress.gov/v3/bill/118/hr/7934?format=json","number":"7934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3533","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7701","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-02-15","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"SUNRAY for Energy Act","url":"https://api.congress.gov/v3/bill/118/hr/7391?format=json","number":"7391","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3534","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7702","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-01-29","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"QUIET Act","url":"https://api.congress.gov/v3/bill/118/hr/7123?format=json","number":"7123","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3535","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7703","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-11-02","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"All-American Flag Act","url":"https://api.congress.gov/v3/bill/118/hr/6206?format=json","number":"6206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3536","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7704","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2023-08-04","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","type":"HR","title":"Advancing Research on Agricultural Climate Impacts Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5160?format=json","number":"5160","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3537","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7705","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-12","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Autonomy for All Disabled Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/4047?format=json","number":"4047","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3538","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7706","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","introducedDate":"2023-04-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"STOP GAMES Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3030?format=json","number":"3030","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3539","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7707","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-03-15","latestAction_text":"Placed on the Union Calendar, Calendar No. 770.","type":"HR","title":"NASA SPREES Act","url":"https://api.congress.gov/v3/bill/118/hr/7687?format=json","number":"7687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3540","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7708","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the Agriculture and Consumer Protection Act of 1973 to establish a pilot grant program to award grants to facilitate home delivery of commodities under the commodity supplemental food program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1538?format=json","number":"1538","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3541","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7709","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Comptroller General of the United States to carry out a study relating to the resiliency of Social Security and Medicare.","url":"https://api.congress.gov/v3/bill/119/hr/1339?format=json","number":"1339","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3542","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7710","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Train More Primary Care Doctors Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/958?format=json","number":"958","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3543","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7711","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Public and Private Sector Ransomware Response Coordination Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3544","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7712","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-24","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"HR","title":"Protect Small Businesses from Excessive Paperwork Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3545","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7713","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To require the Secretary of the Treasury to issue reports with respect to extraordinary measures, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/737?format=json","number":"737","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3546","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7714","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on Ways and Means, the Judiciary, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"No Corruption in Government Act","url":"https://api.congress.gov/v3/bill/119/hr/358?format=json","number":"358","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3547","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7715","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Back to Work Act","url":"https://api.congress.gov/v3/bill/119/hr/357?format=json","number":"357","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3548","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7716","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing a balanced budget amendment to the Constitution of the United States.","url":"https://api.congress.gov/v3/bill/119/hjres/10?format=json","number":"10","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3549","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7717","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-10-29","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Supporting the designation of October as \"Foster Youth Voice Month\" and encouraging public awareness and participation in events and initiatives organized by youth in foster care.","url":"https://api.congress.gov/v3/bill/118/hres/1556?format=json","number":"1556","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3550","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7718","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-09-25","policyArea_name":"","latestAction_text":"On agreeing to the Nunn (IA) amendment (A001) Agreed to by recorded vote: 419 - 1 (Roll no. 451).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1220?format=json","number":"","amendmentNumber":"1220","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"16:39:55"}}} +{"type":"relationship","id":"3551","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7719","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-09-10","policyArea_name":"","latestAction_text":"On agreeing to the Nunn (IA) amendment (A006) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1183?format=json","number":"","amendmentNumber":"1183","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":"15:23:23"}}} +{"type":"relationship","id":"3552","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7720","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-06","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Empowering Law Enforcement to Combat Financial Fraud Act","url":"https://api.congress.gov/v3/bill/118/hr/9480?format=json","number":"9480","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3553","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7721","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-08-06","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Public and Private Sector Ransomware Response Coordination Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9315?format=json","number":"9315","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3554","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7722","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-08-06","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Brighter Futures for Teens and Young Adults in Foster Care Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9316?format=json","number":"9316","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3555","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7723","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend section 5336 of title 31, United States Code, to provide existing small businesses with an additional year to file beneficial ownership information, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9278?format=json","number":"9278","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3556","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7724","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Intelligence (Permanent Select).","type":"HR","title":"UAS Threat Disclosure Act","url":"https://api.congress.gov/v3/bill/118/hr/9071?format=json","number":"9071","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3557","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7725","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-07-15","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"HEALTH for MOM Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9049?format=json","number":"9049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3558","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7726","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Taxation","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Agriculture, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"INFANT Tax Credit Act","url":"https://api.congress.gov/v3/bill/118/hr/8971?format=json","number":"8971","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3559","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7727","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-06-26","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"HEART Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8846?format=json","number":"8846","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3560","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7728","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","introducedDate":"2024-10-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"COINTELPRO Full Disclosure Act","url":"https://api.congress.gov/v3/bill/118/hr/9973?format=json","number":"9973","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3561","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7729","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-07-05","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Sanction Sea Pirates Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8934?format=json","number":"8934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3562","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7730","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-10","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Blair Holt Firearm Owner Licensing and Record of Sale Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8354?format=json","number":"8354","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3563","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7731","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","introducedDate":"2024-04-09","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Recognizing the 158th anniversary of the Civil Rights Act of 1866.","url":"https://api.congress.gov/v3/bill/118/hres/1121?format=json","number":"1121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3564","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7732","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Marshall ‘Major’ Taylor Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/118/hr/6672?format=json","number":"6672","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3565","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7733","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-11-30","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"JUST Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6527?format=json","number":"6527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3566","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7734","labels":["Legislation"],"properties":{"sponsored_by":"J000309","congress":"118","introducedDate":"2023-11-30","policyArea_name":"","latestAction_text":"On agreeing to the Jackson (IL) amendment (A012) Failed by recorded vote: 194 - 236, 1 Present (Roll no. 686).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/824?format=json","number":"","amendmentNumber":"824","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":"16:51:45"}}} +{"type":"relationship","id":"3567","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7735","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the joint resolution (H.J. Res. 20) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Gas-fired Instantaneous Water Heaters\"; providing for consideration of the joint resolution (H.J. Res. 35) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\"; and providing for consideration of the concurrent resolution (H. Con. Res. 14) establishing the congressional budget for the United States Government for fiscal year 2025 and setting forth the appropriate budgetary levels for fiscal years 2026 through 2034.","url":"https://api.congress.gov/v3/bill/119/hres/161?format=json","number":"161","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":"14:09:11"}}} +{"type":"relationship","id":"3568","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7736","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Individuals with Disabilities Education Act to require notification with respect to individualized education program teams, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1570?format=json","number":"1570","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3569","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7737","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit Federal funds from being made available to entities that refuse to provide treatment based on COVID19 vaccination status.","url":"https://api.congress.gov/v3/bill/119/hr/1381?format=json","number":"1381","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3570","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7738","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/119/hres/21?format=json","number":"21","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":"09:45:29"}}} +{"type":"relationship","id":"3571","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7739","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-09-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Presidential Election Resource Investment for Major Threat Response Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9697?format=json","number":"9697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3572","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7740","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-09-17","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3724) to amend the Higher Education Act of 1965 to prohibit recognized accrediting agencies and associations from requiring, encouraging, or coercing institutions of higher education to meet any political litmus test or violate any right protected by the Constitution as a condition of accreditation; providing for consideration of the bill (H.R. 4790) to amend the Federal securities laws with respect to the materiality of disclosure requirements, to establish the Public Company Advisory Committee, and for other purposes; providing for consideration of the bill (H.R. 5179) to require the maintenance of the country of origin markings for imported goods produced in the West Bank or Gaza, and for other purposes; providing for consideration of the bill (H.R. 5339) to amend the Employee Retirement Income Security Act of 1974 to specify requirements concerning the consideration of pecuniary and non-pecuniary factors, and for other purposes; providing for consideration of the bill (H.R. 5717) to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens; providing for consideration of the bill (H.R. 7909) to amend the Immigration and Nationality Act to provide that aliens who have been convicted of or who have committed sex offenses or domestic violence are inadmissible and deportable; and providing for consideration of the joint resolution (H.J. Res. 136) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Multi-Pollutant Emissions Standards for Model Years 2027 and Later Light-Duty and Medium-Duty Vehicles\".","url":"https://api.congress.gov/v3/bill/118/hres/1455?format=json","number":"1455","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":"14:05:53"}}} +{"type":"relationship","id":"3573","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7741","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-07-05","policyArea_name":"Education","latestAction_text":"Became Public Law No: 118-145.","type":"HR","title":"FAFSA Deadline Act","url":"https://api.congress.gov/v3/bill/118/hr/8932?format=json","number":"8932","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3574","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7742","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-05-23","latestAction_text":"Referred to the Subcommittee on Forestry.","type":"HR","title":"Benjamin Harrison National Recreation Area and Wilderness Establishment Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8535?format=json","number":"8535","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3575","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7743","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-05-21","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4763) to provide for a system of regulation of digital assets by the Commodity Futures Trading Commission and the Securities and Exchange Commission, and for other purposes; providing for consideration of the bill (H.R. 5403) to amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes; and providing for consideration of the bill (H.R. 192) to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia.","url":"https://api.congress.gov/v3/bill/118/hres/1243?format=json","number":"1243","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":"14:45:37"}}} +{"type":"relationship","id":"3576","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7744","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-05-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 6192) to amend the Energy Policy and Conservation Act to prohibit the Secretary of Energy from prescribing any new or amended energy conservation standard for a product that is not technologically feasible and economically justified, and for other purposes; providing for consideration of the bill (H.R. 7109) to require a citizenship question on the decennial census, to require reporting on certain census statistics, and to modify apportionment of Representatives to be based on United States citizens instead of all persons; providing for consideration of the joint resolution (H.J. Res. 109) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Staff Accounting Bulletin No. 121\"; and providing for consideration of the bill (H.R. 2925) to amend the Omnibus Budget Reconciliation Act of 1993 to provide for security of tenure for use of mining claims for ancillary activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1194?format=json","number":"1194","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":"14:22:00"}}} +{"type":"relationship","id":"3577","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7745","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-04-05","latestAction_text":"Placed on the Union Calendar, Calendar No. 517.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Deposit Insurance Corporation relating to \"Principles for Climate-Related Financial Risk Management for Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/118/hjres/126?format=json","number":"126","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3578","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7746","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 2799) to make reforms to the capital markets of the United States, and for other purposes, and providing for consideration of the bill (H.R. 7511) to require the Secretary of Homeland Security to take into custody aliens who have been charged in the United States with theft, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1052?format=json","number":"1052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":"16:13:34"}}} +{"type":"relationship","id":"3579","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7747","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-02-23","latestAction_text":"Placed on the Union Calendar, Calendar No. 615.","type":"HR","title":"Fostering the Use of Technology to Uphold Regulatory Effectiveness in Supervision Act","url":"https://api.congress.gov/v3/bill/118/hr/7437?format=json","number":"7437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3580","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7748","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-01-09","policyArea_name":"Congress","latestAction_text":"On agreeing to the resolution Agreed to by recorded vote: 211 - 202, 1 Present (Roll no. 5). (text: 01/10/2024 CR H25)","type":"HRES","title":"Providing for consideration of the bill (H.R. 788) to limit donations made pursuant to settlement agreements to which the United States is a party, and for other purposes; providing for consideration of the joint resolution (H.J. Res. 98) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Labor Relations Board relating to \"Standard for Determining Joint Employer Status''; and providing for consideration of the joint resolution (S.J. Res. 38) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Highway Administration relating to \"Waiver of Buy America Requirements for Electric Vehicle Chargers''.","url":"https://api.congress.gov/v3/bill/118/hres/947?format=json","number":"947","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-11","latestAction_actionTime":"14:14:05"}}} +{"type":"relationship","id":"3581","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7749","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-12-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4468) to prohibit the Administrator of the Environmental Protection Agency from finalizing, implementing, or enforcing a proposed rule with respect to emissions from vehicles, and for other purposes; providing for consideration of the bill (H.R. 5933) to amend the Higher Education Act of 1965 to require additional information in disclosures of foreign gifts and contracts from foreign sources, restrict contracts with certain foreign entities and foreign countries of concern, require certain staff and faculty to report foreign gifts and contracts, and require disclosure of certain foreign investments within endowments; and providing for consideration of the joint resolution (H. J. Res. 88) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Improving Income Driven Repayment for the William D. Ford Federal Direct Loan Program and the Federal Family Education Loan (FFEL) Program\".","url":"https://api.congress.gov/v3/bill/118/hres/906?format=json","number":"906","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":"14:24:21"}}} +{"type":"relationship","id":"3582","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7750","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-11-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4664) making appropriations for financial services and general government for the fiscal year ending September 30, 2024, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/847?format=json","number":"847","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-07","latestAction_actionTime":"14:11:04"}}} +{"type":"relationship","id":"3583","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7751","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"21st Century Dyslexia Act","url":"https://api.congress.gov/v3/bill/118/hr/6052?format=json","number":"6052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3584","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7752","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-09-05","latestAction_text":"Placed on the Union Calendar, Calendar No. 186.","type":"HR","title":"Retirement Proxy Protection Act","url":"https://api.congress.gov/v3/bill/118/hr/5337?format=json","number":"5337","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3585","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7753","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-08-01","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Prioritizing Evidence for Workforce Development Act","url":"https://api.congress.gov/v3/bill/118/hr/5111?format=json","number":"5111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3586","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7754","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3935) to amend title 49, United States Code, to reauthorize and improve the Federal Aviation Administration and other civil aviation programs, and for other purposes, and providing for consideration of the bill (H.R. 3941) to prohibit the use of the facilities of a public elementary school, a public secondary school, or an institution of higher education to provide shelter for aliens who have not been admitted into the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/597?format=json","number":"597","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-18","latestAction_actionTime":"13:49:56"}}} +{"type":"relationship","id":"3587","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7755","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To provide for the prioritization of projects that provide behavioral and mental health treatment services in selecting grantees under certain rural development programs, and extend the substance abuse disorder set-aside and priority under the programs.","url":"https://api.congress.gov/v3/bill/119/hr/1906?format=json","number":"1906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3588","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7756","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow employers a credit against income tax for employees who participate in qualified apprenticeship programs.","url":"https://api.congress.gov/v3/bill/119/hr/1662?format=json","number":"1662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3589","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7757","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To redesignate the third Monday in February as Presidents' Day, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1371?format=json","number":"1371","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3590","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7758","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to allow for the approval of an abbreviated new drug application submitted by a subsequent applicant in the case of a failure by a first applicant to commence commercial marketing within a certain period, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1051?format=json","number":"1051","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3591","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7759","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-25","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","type":"HR","title":"Improving Veterans’ Experience Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9806?format=json","number":"9806","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3592","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7760","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-30","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Secure and Affordable Broadband Extension Act","url":"https://api.congress.gov/v3/bill/118/hr/9193?format=json","number":"9193","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3593","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7761","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-26","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"SAFE STEPS for Veterans Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9179?format=json","number":"9179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3594","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7762","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To direct the Secretary of the Interior to issue a report regarding the effects of mine subsidence.","url":"https://api.congress.gov/v3/bill/118/hr/9140?format=json","number":"9140","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3595","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7763","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To require the Secretary of Defense to issue regulations requiring that optional combat boots worn by members of the armed forces wear be made in America, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8166?format=json","number":"8166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3596","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7764","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"To limit the closure or consolidation of any United States Postal Service processing and distribution center in Postal Service regions that have failed to meet certain delivery standards, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8040?format=json","number":"8040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3597","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7765","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-12-12","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to establish a grocery, farm, and food worker stabilization grant program.","url":"https://api.congress.gov/v3/bill/118/hr/6720?format=json","number":"6720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3598","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7766","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-09-28","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by Voice Vote.","type":"HR","title":"To amend title 38, United States Code, to modify the requirements of the Edith Nourse Rogers STEM Scholarship.","url":"https://api.congress.gov/v3/bill/118/hr/5785?format=json","number":"5785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3599","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7767","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-08-25","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"America Grows Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5268?format=json","number":"5268","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3600","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7768","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-21","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Rebuild Rural America Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4239?format=json","number":"4239","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3601","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7769","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-07-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow for deductions for the performance of certain services by a taxpayer, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/4967?format=json","number":"4967","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3602","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7770","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-06-13","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"Trauma Support and Mental Health in Schools Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4054?format=json","number":"4054","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-06-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3603","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7771","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-06-09","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","type":"HR","title":"Increasing Land Access, Security, and Opportunities Act","url":"https://api.congress.gov/v3/bill/118/hr/3955?format=json","number":"3955","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3604","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7772","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-03-30","latestAction_text":"Referred to the Subcommittee on Federal Lands.","type":"HR","title":"Springfield Race Riot National Historic Monument Act","url":"https://api.congress.gov/v3/bill/118/hr/2415?format=json","number":"2415","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3605","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7773","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-03-10","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"LEAP Act","url":"https://api.congress.gov/v3/bill/118/hr/1536?format=json","number":"1536","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3606","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7774","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/hr/1896?format=json","number":"1896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3607","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7775","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Lobbying Disclosure Act of 1995 to clarify a provision relating to certain contents of registrations under that Act.","url":"https://api.congress.gov/v3/bill/119/hr/1883?format=json","number":"1883","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3608","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7776","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Ordered to be Reported by Voice Vote.","type":"HR","title":"Critical Infrastructure Manufacturing Feasibility Act","url":"https://api.congress.gov/v3/bill/119/hr/1721?format=json","number":"1721","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3609","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7777","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require an annual report of taxpayer-funded projects that are over budget and behind schedule.","url":"https://api.congress.gov/v3/bill/119/hr/1722?format=json","number":"1722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3610","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7778","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committees on Agriculture, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Assistant Secretary of Commerce for Communications and Information to report to Congress on any barriers to establishing online portals to accept, process, and dispose of certain Form 299s, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1588?format=json","number":"1588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3611","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7779","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To allow additional individuals to enroll in standalone dental plans offered through Federal Exchanges.","url":"https://api.congress.gov/v3/bill/119/hr/1397?format=json","number":"1397","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3612","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7780","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1227?format=json","number":"1227","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3613","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7781","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Diagnostics Testing Preparedness Plan Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1108?format=json","number":"1108","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3614","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7782","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Medicaid Program Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/1019?format=json","number":"1019","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3615","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7783","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-12-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To amend the American Rescue Plan Act of 2021 to direct the President to end financial assistance for funeral expenses related to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/118/hr/10399?format=json","number":"10399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3616","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7784","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-12-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Providing Veterans Essential Medications Act","url":"https://api.congress.gov/v3/bill/118/hr/10346?format=json","number":"10346","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3617","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7785","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-11-08","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Second Generation Biofuel Producer Credit Extension Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10104?format=json","number":"10104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3618","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7786","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-10-04","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Corrections Officer Blake Schwarz Suicide Prevention Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9929?format=json","number":"9929","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3619","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7787","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-09-23","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1489?format=json","number":"1489","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3620","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7788","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-16","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Limiting Liability for Critical Infrastructure Manufacturers Act","url":"https://api.congress.gov/v3/bill/118/hr/9608?format=json","number":"9608","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3621","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7789","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","introducedDate":"2024-09-06","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a refundable credit for expenses incurred for in vitro fertilization.","url":"https://api.congress.gov/v3/bill/118/hr/9479?format=json","number":"9479","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3622","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7790","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-06","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Veterans SPORT Act","url":"https://api.congress.gov/v3/bill/118/hr/9478?format=json","number":"9478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3623","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7791","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-08-30","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"No Wrong Door for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/9438?format=json","number":"9438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3624","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7792","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-07","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing gratitude and appreciation for the bravery and valor of the Allied forces who participated in the Normandy landings on the 80th anniversary of Operation Overlord.","url":"https://api.congress.gov/v3/bill/118/hres/1284?format=json","number":"1284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3625","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7793","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-05-10","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 44 - 0.","type":"HR","title":"Billion Dollar Boondoggle Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8335?format=json","number":"8335","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3626","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7794","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-11-08","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","type":"HR","title":"Veterans’ Security and Pay Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/10105?format=json","number":"10105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3627","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7795","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-03-05","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Gold Star Family Education Parity Act","url":"https://api.congress.gov/v3/bill/118/hr/7549?format=json","number":"7549","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3628","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7796","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","introducedDate":"2023-10-26","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"To amend the Family Violence Prevention and Services Act to authorize grants to ensure access for victims of family violence, domestic violence, and dating violence to substance use disorder treatment that allows parents (or legal guardians) and their children, stepchildren, or other dependents to remain together throughout the course of treatment, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/6097?format=json","number":"6097","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3629","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7797","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-20","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","type":"HR","title":"VA Acquisition Review Board Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/4225?format=json","number":"4225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3630","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7798","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-02-28","latestAction_text":"Placed on the Union Calendar, Calendar No. 795.","type":"HR","title":"Veterans Health Administration Leadership Transformation Act","url":"https://api.congress.gov/v3/bill/118/hr/1256?format=json","number":"1256","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3631","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7799","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"118","introducedDate":"2024-03-12","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"Stop Mexico’s Steel Surge Act","url":"https://api.congress.gov/v3/bill/118/hr/7638?format=json","number":"7638","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3632","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7800","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2022-09-19","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"To direct the National Institute for Occupational Safety and Health to establish an occupational research program on mental health.","url":"https://api.congress.gov/v3/bill/117/hr/8887?format=json","number":"8887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3633","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7801","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Agriculture and Food","introducedDate":"2022-07-22","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Child Nutrition Technical Assistance Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8486?format=json","number":"8486","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3634","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7802","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-03-30","latestAction_text":"Became Public Law No: 117-302.","type":"HR","title":"SVAC Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7299?format=json","number":"7299","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3635","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7803","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-03-07","latestAction_text":"Became Public Law No: 117-300.","type":"HR","title":"Dignity for MST Survivors Act","url":"https://api.congress.gov/v3/bill/117/hr/6961?format=json","number":"6961","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3636","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7804","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2021-11-04","latestAction_text":"Referred to the House Committee on Education and Labor.","type":"HR","title":"Pension Risk Transfer Accountability Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5877?format=json","number":"5877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3637","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7805","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","introducedDate":"2021-09-28","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"COBRA Subsidy Extension for Workers and Families Act","url":"https://api.congress.gov/v3/bill/117/hr/5390?format=json","number":"5390","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3638","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7806","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2021-09-20","latestAction_text":"Became Public Law No: 117-42.","type":"HR","title":"Department of Veterans Affairs Expiring Authorities Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/5293?format=json","number":"5293","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-09-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3639","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7807","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2021-07-21","latestAction_text":"Became Public Law No: 117-154.","type":"HR","title":"VA Electronic Health Record Transparency Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/4591?format=json","number":"4591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3640","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7808","labels":["Legislation"],"properties":{"sponsored_by":"M001214","congress":"117","policyArea_name":"Labor and Employment","introducedDate":"2021-05-11","latestAction_text":"Placed on the Union Calendar, Calendar No. 387.","type":"HR","title":"Longshore and Harbor Workers’ COVID–19 Compensation Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/3114?format=json","number":"3114","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3641","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3642","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7810","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To require certain reports on small business disaster assistance to be published on the website of the Small Business Administration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1475?format=json","number":"1475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3643","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7811","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"SWAMP Act","url":"https://api.congress.gov/v3/bill/119/hr/514?format=json","number":"514","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3644","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7812","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-09-27","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Access to LARCs Act","url":"https://api.congress.gov/v3/bill/118/hr/9866?format=json","number":"9866","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3645","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7813","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-09-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of September 19, 2024, as \"National Stillbirth Prevention Day\", recognizing tens of thousands of families in the United States that have endured a stillbirth, and seizing the opportunity to keep other families from experiencing the same tragedy.","url":"https://api.congress.gov/v3/bill/118/hres/1474?format=json","number":"1474","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3646","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7814","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-25","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","type":"HR","title":"Protecting American Industry and Labor from International Trade Crimes Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9151?format=json","number":"9151","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3647","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7815","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-06-07","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Allowing Greater Access to Safe and Effective Contraception Act","url":"https://api.congress.gov/v3/bill/118/hr/8659?format=json","number":"8659","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3648","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7816","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-06-07","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Celebrating the 100th anniversary of the Upper Mississippi River National Wildlife and Fish Refuge.","url":"https://api.congress.gov/v3/bill/118/hres/1281?format=json","number":"1281","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3649","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7817","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-17","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","type":"HR","title":"Fertilizer Research Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8453?format=json","number":"8453","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3650","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7818","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-04-15","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Securing American Agriculture Act","url":"https://api.congress.gov/v3/bill/118/hr/8003?format=json","number":"8003","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3651","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7819","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2024-01-05","policyArea_name":"Education","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 310.","type":"HR","title":"Pregnant Students’ Rights Act","url":"https://api.congress.gov/v3/bill/118/hr/6914?format=json","number":"6914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3652","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7820","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-12-14","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Workforce Solutions Act","url":"https://api.congress.gov/v3/bill/118/hr/6819?format=json","number":"6819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3653","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7821","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2023-12-14","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"BEST Act","url":"https://api.congress.gov/v3/bill/118/hr/6818?format=json","number":"6818","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3654","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7822","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2023-12-13","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Supporting Healthy Pregnancy Act","url":"https://api.congress.gov/v3/bill/118/hr/6755?format=json","number":"6755","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3655","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7823","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-07","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"REAL Trucking Act","url":"https://api.congress.gov/v3/bill/118/hr/6670?format=json","number":"6670","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3656","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7824","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","introducedDate":"2023-11-30","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Southern Border Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/6523?format=json","number":"6523","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3657","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7825","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-11-30","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PRINTS Act","url":"https://api.congress.gov/v3/bill/118/hr/6522?format=json","number":"6522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3658","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7826","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2023-11-02","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Defend Our Networks Act","url":"https://api.congress.gov/v3/bill/118/hr/6189?format=json","number":"6189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-11-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3659","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7827","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-22","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"SWAMP Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5676?format=json","number":"5676","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3660","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7828","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-20","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"SCRUB Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5595?format=json","number":"5595","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-09-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3661","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7829","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to allow for the furnishing of audio-only telehealth services.","url":"https://api.congress.gov/v3/bill/119/hr/1899?format=json","number":"1899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3662","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3663","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7831","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/hr/1822?format=json","number":"1822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3664","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3665","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7833","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Growing and Preserving Innovation in America Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1062?format=json","number":"1062","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3666","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7834","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 43 - 0.","type":"HR","title":"National Taxpayer Advocate Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/997?format=json","number":"997","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3667","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7835","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/hr/996?format=json","number":"996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3668","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7836","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 43 - 0.","type":"HR","title":"Internal Revenue Service Math and Taxpayer Help Act","url":"https://api.congress.gov/v3/bill/119/hr/998?format=json","number":"998","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3669","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7837","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-28","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Snap Back Inaccurate SNAP Payments Act","url":"https://api.congress.gov/v3/bill/119/hr/762?format=json","number":"762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3670","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3671","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7839","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Sarah’s Law","url":"https://api.congress.gov/v3/bill/119/hr/578?format=json","number":"578","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3672","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7840","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-09-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Improving Brain Health in Schools Act","url":"https://api.congress.gov/v3/bill/118/hr/9822?format=json","number":"9822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3673","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7841","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-08-13","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Audit the IRS Act","url":"https://api.congress.gov/v3/bill/118/hr/9346?format=json","number":"9346","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3674","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7842","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-08-02","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Increasing Small-Scale Poultry Processing Opportunities Act","url":"https://api.congress.gov/v3/bill/118/hr/9251?format=json","number":"9251","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3675","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7843","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Storm Recovery and Community Restoration Act","url":"https://api.congress.gov/v3/bill/118/hr/9081?format=json","number":"9081","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3676","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7844","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/118/hr/8860?format=json","number":"8860","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3677","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7845","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-06-26","policyArea_name":"","latestAction_text":"On agreeing to the Feenstra amendment (A007) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1004?format=json","number":"","amendmentNumber":"1004","latestAction":"","latestAction_actionDate":"2024-06-26","latestAction_actionTime":"12:49:32"}}} +{"type":"relationship","id":"3678","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7846","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-06-25","policyArea_name":"Families","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","type":"HR","title":"Strengthening Evidence-based Prevention Services Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8814?format=json","number":"8814","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3679","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7847","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-16","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Livestock Indemnity Program Improvement Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8431?format=json","number":"8431","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3680","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7848","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"118","introducedDate":"2024-05-06","policyArea_name":"Health","latestAction_text":"Placed on the Union Calendar, Calendar No. 803.","type":"HR","title":"Rural Hospital Stabilization Act","url":"https://api.congress.gov/v3/bill/118/hr/8245?format=json","number":"8245","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3681","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7849","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to require the Secretary of Health and Human Services, acting through the Director of the Centers for Disease Control and Prevention, to implement the Climate Ready Tribes Initiative.","url":"https://api.congress.gov/v3/bill/119/hr/1647?format=json","number":"1647","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3682","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7850","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/hr/1646?format=json","number":"1646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3683","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7851","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to provide for the continued implementation of the Climate and Health program by the Centers for Disease Control and Prevention.","url":"https://api.congress.gov/v3/bill/119/hr/1645?format=json","number":"1645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3684","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7852","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to eliminate copayments by the Department of Veterans Affairs for medicines relating to preventive health services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1644?format=json","number":"1644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3685","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7853","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Education and Workforce, and in addition to the Committees on House Administration, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Job Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/1035?format=json","number":"1035","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3686","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7854","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"SALT Fairness for Working Families Act","url":"https://api.congress.gov/v3/bill/119/hr/246?format=json","number":"246","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3687","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7855","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Health Care Affordability Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/247?format=json","number":"247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3688","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7856","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Baby Changing on Board Act","url":"https://api.congress.gov/v3/bill/119/hr/248?format=json","number":"248","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3689","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7857","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-11-15","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Health Coverage for IVF Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10131?format=json","number":"10131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3690","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7858","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Health Care Affordability Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9774?format=json","number":"9774","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3691","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7859","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-24","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Copay Fairness for Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/9773?format=json","number":"9773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3692","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7860","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Residential Recovery for Seniors Act","url":"https://api.congress.gov/v3/bill/118/hr/9232?format=json","number":"9232","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3693","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7861","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Chronic Condition Copay Elimination Act","url":"https://api.congress.gov/v3/bill/118/hr/9132?format=json","number":"9132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3694","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7862","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing the sense of the House of Representatives on Project 2025.","url":"https://api.congress.gov/v3/bill/118/hres/1386?format=json","number":"1386","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3695","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7863","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-07-25","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Primary and Behavioral Health Care Access Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9133?format=json","number":"9133","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3696","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7864","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-23","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"ACE Veterans Act","url":"https://api.congress.gov/v3/bill/118/hr/9094?format=json","number":"9094","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3697","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7865","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-07-23","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"Prioritizing Rural Hospitals Act","url":"https://api.congress.gov/v3/bill/118/hr/9093?format=json","number":"9093","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3698","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7866","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-07-11","latestAction_text":"Placed on the Union Calendar, Calendar No. 711.","type":"HR","title":"Baby Changing on Board Act","url":"https://api.congress.gov/v3/bill/118/hr/8995?format=json","number":"8995","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3699","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7867","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","introducedDate":"2024-05-23","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Tribal Climate Health Assurance Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8520?format=json","number":"8520","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3700","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7868","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-05-16","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Lethal Means Safety Training Act","url":"https://api.congress.gov/v3/bill/118/hr/8418?format=json","number":"8418","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3701","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7869","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on House Administration.","type":"HR","title":"Our Homes, Our Votes Act","url":"https://api.congress.gov/v3/bill/118/hr/10215?format=json","number":"10215","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3702","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7870","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Housing and Community Development","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Lead-Safe Housing for Kids Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8171?format=json","number":"8171","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3703","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7871","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Stop Onerous Surcharges Act","url":"https://api.congress.gov/v3/bill/118/hr/7902?format=json","number":"7902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3704","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7872","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-22","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Fair Compensation for Truck Crash Victims Act","url":"https://api.congress.gov/v3/bill/118/hr/6884?format=json","number":"6884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-01-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3705","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7873","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-06-07","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Cargo Flight Deck Security Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3909?format=json","number":"3909","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3706","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7874","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2023-05-25","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Reward Work Act","url":"https://api.congress.gov/v3/bill/118/hr/3694?format=json","number":"3694","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3707","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7875","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2023-05-11","policyArea_name":"Education","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Diversify Act","url":"https://api.congress.gov/v3/bill/118/hr/3233?format=json","number":"3233","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3708","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7876","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-05-09","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Prairie Band Potawatomi Nation Shab-eh-nay Band Reservation Settlement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3144?format=json","number":"3144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3709","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7877","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2023-03-29","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"New Way Forward Act","url":"https://api.congress.gov/v3/bill/118/hr/2374?format=json","number":"2374","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3710","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7878","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-03-09","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Good Jobs for Good Airports Act","url":"https://api.congress.gov/v3/bill/118/hr/1499?format=json","number":"1499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3711","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7879","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"118","introducedDate":"2023-02-06","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","url":"https://api.congress.gov/v3/bill/118/hr/832?format=json","number":"832","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3712","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7880","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-12-20","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Chixoy International Financial Institution Reparations Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/9620?format=json","number":"9620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-12-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3713","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7881","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2022-10-07","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Reward Work Act","url":"https://api.congress.gov/v3/bill/117/hr/9149?format=json","number":"9149","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3714","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7882","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-09-29","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","type":"HR","title":"Community Driven Recovery for Puerto Rico Act","url":"https://api.congress.gov/v3/bill/117/hr/9053?format=json","number":"9053","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3715","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7883","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Native Americans","introducedDate":"2022-07-14","latestAction_text":"Subcommittee Hearings Held.","type":"HR","title":"Prairie Band Potawatomi Nation Shab-eh-nay Band Reservation Settlement Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/8380?format=json","number":"8380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3716","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7884","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Transportation and Public Works","introducedDate":"2022-06-16","latestAction_text":"Referred to the Subcommittee on Aviation.","type":"HR","title":"Good Jobs for Good Airports Act","url":"https://api.congress.gov/v3/bill/117/hr/8105?format=json","number":"8105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-06-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3717","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7885","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","introducedDate":"2022-05-24","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","url":"https://api.congress.gov/v3/bill/117/hr/7866?format=json","number":"7866","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-05-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3718","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7886","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-03-15","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","type":"HR","title":"Ukraine Comprehensive Debt Payment Relief Act of 2022","url":"https://api.congress.gov/v3/bill/117/hr/7081?format=json","number":"7081","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-05-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3719","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7887","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"International Affairs","introducedDate":"2022-03-08","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Stop Onerous Surcharges Act","url":"https://api.congress.gov/v3/bill/117/hr/6979?format=json","number":"6979","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3720","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7888","labels":["Legislation"],"properties":{"sponsored_by":"G000586","congress":"117","policyArea_name":"Finance and Financial Sector","introducedDate":"2021-11-15","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Veterans and Consumers Fair Credit Act","url":"https://api.congress.gov/v3/bill/117/hr/5974?format=json","number":"5974","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3721","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7889","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to adjust allowable direct and indirect costs for nursing and allied health education programs.","url":"https://api.congress.gov/v3/bill/119/hr/1708?format=json","number":"1708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3722","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7890","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to permit nurse practitioners and physician assistants to satisfy the documentation requirement under the Medicare program for coverage of certain shoes for individuals with diabetes.","url":"https://api.congress.gov/v3/bill/119/hr/1616?format=json","number":"1616","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3723","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7891","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a system for the taxation of catastrophic risk transfer companies to ensure sufficient capital to cover catastrophic insurance losses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1481?format=json","number":"1481","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3724","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3725","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7893","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-10","policyArea_name":"Taxation","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 41 - 0.","type":"HR","title":"Electronic Filing and Payment Fairness Act","url":"https://api.congress.gov/v3/bill/119/hr/1152?format=json","number":"1152","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3726","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7894","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to make improvements related to tax administration.","url":"https://api.congress.gov/v3/bill/119/hr/1075?format=json","number":"1075","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3727","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7895","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HRES","title":"Supporting the contributions of Catholic schools in the United States and celebrating the 51st annual \"National Catholic Schools Week\".","url":"https://api.congress.gov/v3/bill/119/hres/74?format=json","number":"74","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3728","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7896","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HCONRES","title":"Expressing the sense of Congress that tax-exempt fraternal benefit societies have historically provided and continue to provide critical benefits to the people and communities of the United States.","url":"https://api.congress.gov/v3/bill/119/hconres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3729","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7897","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-01-28","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Preserving Patient Access to Accountable Care Act","url":"https://api.congress.gov/v3/bill/119/hr/786?format=json","number":"786","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3730","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7898","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-22","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"LICENSE Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/623?format=json","number":"623","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3731","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7899","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"Community Reclamation Partnerships Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3732","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7900","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-12-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Residence-Based Taxation for Americans Abroad Act","url":"https://api.congress.gov/v3/bill/118/hr/10468?format=json","number":"10468","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3733","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7901","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-11-21","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Rebuild America’s Health Care Schools Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/10225?format=json","number":"10225","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3734","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7902","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Preserving Rural Housing Investments Act","url":"https://api.congress.gov/v3/bill/118/hr/9267?format=json","number":"9267","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3735","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7903","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Families","latestAction_text":"Became Public Law No: 118-258.","type":"HR","title":"Supporting America’s Children and Families Act","url":"https://api.congress.gov/v3/bill/118/hr/9076?format=json","number":"9076","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3736","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7904","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-06-27","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Administration Simplification Act","url":"https://api.congress.gov/v3/bill/118/hr/8864?format=json","number":"8864","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3737","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7905","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-05-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Bringing Back American Jobs Through Intellectual Property Repatriation Act","url":"https://api.congress.gov/v3/bill/118/hr/8274?format=json","number":"8274","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3738","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7906","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-03-22","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Expressing support for the designation of the week of March 24, 2024, through March 30, 2024, as \"National Cleaning Week\".","url":"https://api.congress.gov/v3/bill/118/hres/1106?format=json","number":"1106","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3739","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7907","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","introducedDate":"2024-03-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHEERS Act","url":"https://api.congress.gov/v3/bill/118/hr/7577?format=json","number":"7577","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3740","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7908","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-02-23","latestAction_text":"Became Public Law No: 118-143.","type":"HR","title":"FIFA World Cup 2026 Commemorative Coin Act","url":"https://api.congress.gov/v3/bill/118/hr/7438?format=json","number":"7438","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3741","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7909","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To abolish the Board of Governors of the Federal Reserve System and the Federal reserve banks, to repeal the Federal Reserve Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1846?format=json","number":"1846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3742","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7910","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To reduce, from 21 years of age to 18 years of age, the minimum age at which a person may obtain a handgun from a Federal firearms licensee.","url":"https://api.congress.gov/v3/bill/119/hr/1643?format=json","number":"1643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3743","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7911","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To prohibit the obligation or expenditure of Federal funds for disinformation research grants, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1233?format=json","number":"1233","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3744","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7912","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Senior Citizens Tax Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/1040?format=json","number":"1040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3745","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7913","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-01-31","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To terminate the Department of Education.","url":"https://api.congress.gov/v3/bill/119/hr/899?format=json","number":"899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3746","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7914","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/119/hr/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3747","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7915","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Federal Reserve Transparency Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3748","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7916","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-11-20","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HJRES","title":"Relating to the disapproval of the Presidential report with respect to the indebtedness of the Government of Ukraine.","url":"https://api.congress.gov/v3/bill/118/hjres/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3749","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7917","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-09-11","policyArea_name":"","latestAction_text":"On agreeing to the Massie amendment (A003) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/118/hamdt/1192?format=json","number":"","amendmentNumber":"1192","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":"14:29:40"}}} +{"type":"relationship","id":"3750","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7918","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/118/hr/9534?format=json","number":"9534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3751","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7919","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-06-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Free Tips Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8785?format=json","number":"8785","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3752","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7920","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To prohibit the obligation or expenditure of Federal funds for disinformation research grants, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/8519?format=json","number":"8519","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3753","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7921","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Reserve Board Abolition Act","url":"https://api.congress.gov/v3/bill/118/hr/8421?format=json","number":"8421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3754","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7922","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-05-14","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Interstate Milk Freedom Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8374?format=json","number":"8374","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3755","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7923","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-04-26","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Restoring America’s Leadership in Innovation Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8134?format=json","number":"8134","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3756","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7924","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-04-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 7888) to reform the Foreign Intelligence Surveillance Act of 1978; providing for consideration of the bill (H.R. 529) to extend the customs waters of the United States from 12 nautical miles to 24 nautical miles from the baselines of the United States, consistent with Presidential Proclamation 7219; providing for consideration of the resolution (H. Res. 1112) denouncing the Biden administration's immigration policies; and providing for consideration of the resolution (H. Res. 1117) opposing efforts to place one-sided pressure on Israel with respect to Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1137?format=json","number":"1137","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":"09:35:51"}}} +{"type":"relationship","id":"3757","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7925","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-14","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 26 - 0.","type":"HR","title":"NICS Data Reporting Act","url":"https://api.congress.gov/v3/bill/118/hr/6824?format=json","number":"6824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-02-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3758","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7926","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-12-14","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"SAFER Voter Act","url":"https://api.congress.gov/v3/bill/118/hr/6782?format=json","number":"6782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"3759","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7927","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2023-11-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 5893) making appropriations for the Departments of Commerce and Justice, Science, and Related Agencies for the fiscal year ending September 30, 2024, and for other purposes, and providing for consideration of the bill (H.R. 5961) to freeze certain Iranian funds involved in the 2023 hostage deal between the United States and Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/869?format=json","number":"869","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-15","latestAction_actionTime":"11:15:54"}}} +{"type":"relationship","id":"3760","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7928","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-07-26","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Members of Congress Pension Opt Out Clarification Act","url":"https://api.congress.gov/v3/bill/118/hr/4926?format=json","number":"4926","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3761","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7929","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To sunset new Federal regulatory rules after 5 years, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1226?format=json","number":"1226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3762","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7930","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Water Resources Development","introducedDate":"2014-09-18","latestAction_text":"Referred to the Subcommittee on Livestock, Rural Development, and Credit.","type":"HR","title":"To reduce Federal, State, and local costs of providing high-quality drinking water to millions of Americans residing in rural communities by facilitating greater use of cost-effective well water systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/5659?format=json","number":"5659","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-10-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3763","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7931","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Housing and Community Development","introducedDate":"2014-09-18","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To revise the definition of \"manufactured home\" under the Manufactured Housing Construction and Safety Standards Act of 1974 to clarify the exclusion of certain recreational vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/5658?format=json","number":"5658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"3764","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7932","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Finance and Financial Sector","introducedDate":"2014-09-08","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To nullify certain guidance of the Bureau of Consumer Financial Protection and to provide requirements for guidance issued by the Bureau with respect to indirect auto lending.","url":"https://api.congress.gov/v3/bill/113/hr/5403?format=json","number":"5403","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-09-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3765","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7933","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Finance and Financial Sector","introducedDate":"2014-06-09","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 35 - 24.","type":"HR","title":"To provide for a notice and comment period before the Bureau of Consumer Financial Protection issues guidance, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/4811?format=json","number":"4811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-06-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3766","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7934","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Finance and Financial Sector","introducedDate":"2014-05-20","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To provide for a notice and comment period before the Bureau of Consumer Financial Protection issues guidance, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/4684?format=json","number":"4684","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-05-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3767","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7935","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Armed Forces and National Security","introducedDate":"2013-10-02","latestAction_text":"Referred to the House Committee on Appropriations.","type":"HR","title":"To amend the Pay Our Military Act to provide funds for the operations of the National Guard.","url":"https://api.congress.gov/v3/bill/113/hr/3237?format=json","number":"3237","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-10-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3768","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7936","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Agriculture and Food","introducedDate":"2013-04-18","latestAction_text":"Referred to the Subcommittee on Department Operations, Oversight, and Nutrition.","type":"HR","title":"To amend the Food and Nutrition Act of 2008 to improve the supplemental nutrition assistance program.","url":"https://api.congress.gov/v3/bill/113/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-05-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3769","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7937","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Crime and Law Enforcement","introducedDate":"2013-02-06","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, Homeland Security, And Investigations.","type":"HR","title":"To allow reciprocity for the carrying of certain concealed firearms.","url":"https://api.congress.gov/v3/bill/113/hr/578?format=json","number":"578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-02-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3770","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7938","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Economics and Public Finance","introducedDate":"2013-02-04","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to remove the mandate on the Board of Governors of the Federal Reserve System and the Federal Open Market Committee to focus on maximum employment.","url":"https://api.congress.gov/v3/bill/113/hr/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2013-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3771","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7939","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","introducedDate":"2011-07-21","policyArea_name":"","latestAction_text":"On agreeing to the Stutzman amendment (A008) Agreed to by recorded vote: 218 - 194 (Roll no. 625). (consideration: CR H5384-5385)","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/112/hamdt/704?format=json","number":"","amendmentNumber":"704","latestAction":"","latestAction_actionDate":"2011-07-22","latestAction_actionTime":"10:50:24"}}} +{"type":"relationship","id":"3772","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7940","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2012-02-16","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote .","type":"HR","title":"To direct the Secretary of Labor to provide off-base transition training, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/4051?format=json","number":"4051","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2012-03-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3773","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7941","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2012-02-16","latestAction_text":"Subcommittee Hearings Held.","type":"HR","title":"To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to establish an honorary Excellence in Veterans Education Award.","url":"https://api.congress.gov/v3/bill/112/hr/4052?format=json","number":"4052","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2012-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3774","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7942","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","introducedDate":"2012-01-18","policyArea_name":"Social Welfare","latestAction_text":"Referred to the Subcommittee on Higher Education and Workforce Training.","type":"HR","title":"To repeal the National and Community Service Act of 1990 and the Domestic Volunteer Service Act of 1973.","url":"https://api.congress.gov/v3/bill/112/hr/3794?format=json","number":"3794","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2012-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3775","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7943","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Government Operations and Politics","introducedDate":"2011-11-18","latestAction_text":"Became Public Law No: 112-161.","type":"HR","title":"To designate the facility of the United States Postal Service located at 125 Kerr Avenue in Rome City, Indiana, as the \"SPC Nicholas Scott Hartge Post Office\".","url":"https://api.congress.gov/v3/bill/112/hr/3501?format=json","number":"3501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2012-08-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3776","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7944","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Agriculture and Food","introducedDate":"2011-10-05","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To reform and reauthorize agricultural programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/3111?format=json","number":"3111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-10-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3777","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7945","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-23","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote .","type":"HR","title":"To amend title 38, United States Code, to extend the authorization of appropriations for the Secretary of Veterans Affairs to pay a monthly assistance allowance to disabled veterans training or competing for the Paralympic Team and the authorization of appropriations for the Secretary of Veterans Affairs to provide assistance to United States Paralympics, Inc.","url":"https://api.congress.gov/v3/bill/112/hr/2345?format=json","number":"2345","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-07-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3778","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7946","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-22","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"To amend title 38, United States Code, to extend the authorization of appropriations for the Secretary of Veterans Affairs to pay a monthly assistance allowance to disabled veterans training or competing for the Paralympic Team.","url":"https://api.congress.gov/v3/bill/112/hr/2300?format=json","number":"2300","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-07-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"3779","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7947","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-22","latestAction_text":"Forwarded by Subcommittee to Full Committee (Amended) by Voice Vote .","type":"HR","title":"To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to make payments to educational institutions under the Post-9/11 Educational Assistance Program at the end of a quarter, semester, or term, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/2301?format=json","number":"2301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-07-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3780","label":"SPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7948","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"112","policyArea_name":"Armed Forces and National Security","introducedDate":"2011-06-22","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to notify Congress of conferences sponsored by the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/112/hr/2302?format=json","number":"2302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2011-10-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3781","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7949","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"119","introducedDate":"2025-01-31","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Providing amounts for the expenses of the Committee on Energy and Commerce in the One Hundred Nineteenth Congress.","url":"https://api.congress.gov/v3/bill/119/hres/85?format=json","number":"85","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"3782","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7950","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-10-01","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Securing America’s Midstream Critical Materials Processing of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9898?format=json","number":"9898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3783","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7951","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-17","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Review of Final Rule Reclassification of Major Sources as Area Sources Under Section 112 of the Clean Air Act\".","url":"https://api.congress.gov/v3/bill/118/hjres/204?format=json","number":"204","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3784","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7952","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-07-30","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Patient Access Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9184?format=json","number":"9184","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3785","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7953","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-07-22","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Fair and Efficient Regulatory Commonsense Act","url":"https://api.congress.gov/v3/bill/118/hr/9077?format=json","number":"9077","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3786","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7954","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-07-18","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"Building America’s Health Care Workforce Act","url":"https://api.congress.gov/v3/bill/118/hr/9067?format=json","number":"9067","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3787","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7955","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-03-29","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Subcommittee on Trade.","type":"HR","title":"To amend the Harmonized Tariff Schedule of the United States to provide for permanent duty-free treatment on imports of basketballs.","url":"https://api.congress.gov/v3/bill/118/hr/7836?format=json","number":"7836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3788","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7956","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2024-02-05","policyArea_name":"Health","latestAction_text":"Became Public Law No: 118-142.","type":"HR","title":"BOLD Infrastructure for Alzheimer's Reauthorization Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7218?format=json","number":"7218","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3789","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7957","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-11-07","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"Nuclear for Brownfield Site Preparation Act","url":"https://api.congress.gov/v3/bill/118/hr/6268?format=json","number":"6268","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-11-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3790","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7958","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-09-12","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"National Coverage Determination Transparency Act","url":"https://api.congress.gov/v3/bill/118/hr/5389?format=json","number":"5389","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3791","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7959","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-07-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend the Controlled Substances Act to authorize pharmacies to deliver certain controlled substances to an administering practitioner in lieu of delivering such substances to the ultimate user, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/4490?format=json","number":"4490","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3792","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7960","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-07-26","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Deplatform Drug Dealers Act","url":"https://api.congress.gov/v3/bill/118/hr/4910?format=json","number":"4910","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3793","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7961","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-07-11","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"HR","title":"Support for Patients and Communities Reauthorization Act","url":"https://api.congress.gov/v3/bill/118/hr/4531?format=json","number":"4531","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3794","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7962","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-07-10","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Novel, Advanced Spectrum and Communications Technology Networks Promotion Act","url":"https://api.congress.gov/v3/bill/118/hr/4504?format=json","number":"4504","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3795","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7963","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-07-06","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"To amend the 21st Century Cures Act to clarify that grants for State and Tribal response to opioid use disorders may, at the discretion of the Secretary of Health and Human Services, also be used to address associated health conditions, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/4489?format=json","number":"4489","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3796","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7964","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-06-05","latestAction_text":"Ordered to be Reported by the Yeas and Nays: 27 - 20.","type":"HR","title":"CDC Leadership Accountability Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3813?format=json","number":"3813","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-07-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3797","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7965","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-05-15","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"TRUSTED Broadband Networks Act","url":"https://api.congress.gov/v3/bill/118/hr/3280?format=json","number":"3280","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3798","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7966","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-04-28","latestAction_text":"Referred to the Subcommittee on Federal Lands.","type":"HR","title":"Mammoth Cave National Park Boundary Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3007?format=json","number":"3007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"3799","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7967","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","introducedDate":"2023-04-18","policyArea_name":"Health","latestAction_text":"Placed on the Union Calendar, Calendar No. 768.","type":"HR","title":"Medicaid VBPs for Patients Act","url":"https://api.congress.gov/v3/bill/118/hr/2666?format=json","number":"2666","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3800","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7968","labels":["Legislation"],"properties":{"sponsored_by":"G000558","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-03-28","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HR","title":"To direct the Secretary of Labor to award grants to develop, administer, and evaluate early childhood education apprenticeships, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/1834?format=json","number":"1834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"3801","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7969","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"To inform the Senate that a quorum of the House has assembled and of the election of the Speaker and the Clerk.","url":"https://api.congress.gov/v3/bill/119/hres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"15:45:35"}}} +{"type":"relationship","id":"3802","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7970","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Authorizing the Speaker to appoint a committee to notify the President of the assembly of the Congress.","url":"https://api.congress.gov/v3/bill/119/hres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"15:46:36"}}} +{"type":"relationship","id":"3803","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7971","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-05-10","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Firearms Interstate Commerce Reform Act","url":"https://api.congress.gov/v3/bill/118/hr/8364?format=json","number":"8364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3804","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7972","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Providing for a joint session of Congress to receive a message from the President.","url":"https://api.congress.gov/v3/bill/118/hconres/93?format=json","number":"93","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3805","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7973","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-02-20","latestAction_text":"Became Public Law No: 118-129.","type":"HR","title":"To designate the facility of the United States Postal Service located at 103 Benedette Street in Rayville, Louisiana, as the \"Luke Letlow Post Office Building\".","url":"https://api.congress.gov/v3/bill/118/hr/7423?format=json","number":"7423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3806","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7974","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-12-15","latestAction_text":"Became Public Law No: 118-177.","type":"HR","title":"To expand the boundaries of the Atchafalaya National Heritage Area to include Lafourche Parish, Louisiana.","url":"https://api.congress.gov/v3/bill/118/hr/6843?format=json","number":"6843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"3807","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7975","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"To inform the Senate of the election of the Speaker.","url":"https://api.congress.gov/v3/bill/118/hres/810?format=json","number":"810","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":"14:46:36"}}} +{"type":"relationship","id":"3808","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7976","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-10-25","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Authorizing the Clerk to inform the President of the election of the Speaker.","url":"https://api.congress.gov/v3/bill/118/hres/811?format=json","number":"811","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-10-25","latestAction_actionTime":"14:47:17"}}} +{"type":"relationship","id":"3809","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7977","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-03-14","policyArea_name":"Energy","latestAction_text":"The Clerk was authorized to correct section numbers, punctuation, and cross references, and to make other necessary technical and conforming corrections in the engrossment of H.R. 1.","title":"Lower Energy Costs Act","type":"HR","url":"https://api.congress.gov/v3/bill/118/hr/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":"11:47:06"}}} +{"type":"relationship","id":"3810","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7978","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-31","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Providing for a joint session of Congress to receive a message from the President.","url":"https://api.congress.gov/v3/bill/118/hconres/11?format=json","number":"11","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"3811","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7979","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-31","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/80?format=json","number":"80","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-31","latestAction_actionTime":"17:46:29"}}} +{"type":"relationship","id":"3812","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7980","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Authorizing the Speaker to appoint a committee to notify the President of the assembly of the Congress.","url":"https://api.congress.gov/v3/bill/118/hres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-07","latestAction_actionTime":"01:50:06"}}} +{"type":"relationship","id":"3813","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7981","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"To inform the Senate that a quorum of the House has assembled and election of the Speaker and the Clerk.","url":"https://api.congress.gov/v3/bill/118/hres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-07","latestAction_actionTime":"01:49:33"}}} +{"type":"relationship","id":"3814","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7982","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"118","introducedDate":"2023-01-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Adopting the Rules of the House of Representatives for the One Hundred Eighteenth Congress, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/5?format=json","number":"5","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-01-09","latestAction_actionTime":"19:08:51"}}} +{"type":"relationship","id":"3815","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7983","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2022-07-27","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"EAVESDROP Act","url":"https://api.congress.gov/v3/bill/117/hr/8543?format=json","number":"8543","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3816","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7984","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2022-07-20","policyArea_name":"Energy","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BREEZE Act","url":"https://api.congress.gov/v3/bill/117/hr/8437?format=json","number":"8437","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3817","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7985","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2021-07-01","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","type":"HR","title":"American Energy First Act","url":"https://api.congress.gov/v3/bill/117/hr/4334?format=json","number":"4334","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-07-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3818","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7986","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","policyArea_name":"Science, Technology, Communications","introducedDate":"2021-06-15","latestAction_text":"Became Public Law No: 117-55.","type":"HR","title":"Secure Equipment Act of 2021","url":"https://api.congress.gov/v3/bill/117/hr/3919?format=json","number":"3919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2021-11-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3819","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7987","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2021-05-17","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HCONRES","title":"Expressing the sense of Congress that a carbon tax would be detrimental to the United States economy.","url":"https://api.congress.gov/v3/bill/117/hconres/34?format=json","number":"34","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"3820","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"7988","labels":["Legislation"],"properties":{"sponsored_by":"S001176","congress":"117","introducedDate":"2021-03-11","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","type":"HR","title":"Promoting New Manufacturing Act","url":"https://api.congress.gov/v3/bill/117/hr/1855?format=json","number":"1855","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2021-03-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3821","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7989","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","introducedDate":"1994-07-20","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A003) Failed by recorded vote: 123 - 305 (Roll no. 339).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/103/hamdt/770?format=json","number":"","amendmentNumber":"770","latestAction":"","latestAction_actionDate":"1994-07-20","latestAction_actionTime":"17:58:41"}}} +{"type":"relationship","id":"3822","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7990","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","policyArea_name":"Economics and Public Finance","introducedDate":"1994-03-16","latestAction_text":"See S.21.","type":"HR","title":"To direct the Secretary of the Interior and the Secretary of Energy to undertake initiatives to address certain needs in the Lower Mississippi Delta Region, and for other purposes.","url":"https://api.congress.gov/v3/bill/103/hr/4043?format=json","number":"4043","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1994-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3823","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7991","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","policyArea_name":"Crime and Law Enforcement","introducedDate":"1993-11-22","latestAction_text":"Referred to the Subcommittee on Crime and Criminal Justice.","type":"HR","title":"To amend title 18, United States Code, to regulate the receipt of firearms dealers.","url":"https://api.congress.gov/v3/bill/103/hr/3639?format=json","number":"3639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1993-11-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3824","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7992","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"103","policyArea_name":"Finance and Financial Sector","introducedDate":"1993-03-24","latestAction_text":"Subcommittee Hearings Held.","type":"HR","title":"To establish a limit on the fee which certain persons may charge for cashing checks and other instruments, to require depository institutions to cash checks issued by the United States or a State, and to provide that checks drawn by the Federal Government may be mailed only to the personal residence or primary place of business of the payee, to a Federal post office box, or to a federally insured depository institution at which the payee holds an account.","url":"https://api.congress.gov/v3/bill/103/hr/1448?format=json","number":"1448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1993-06-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3825","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7993","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-06-26","policyArea_name":"","latestAction_text":"By unanimous consent, the Fields (LA) amendment was withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1215?format=json","number":"","amendmentNumber":"1215","latestAction":"","latestAction_actionDate":"1996-06-26","latestAction_actionTime":"15:37:43"}}} +{"type":"relationship","id":"3826","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7994","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"By unanimous consent, the Fields (LA) amendment was withdrawn.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1021?format=json","number":"","amendmentNumber":"1021","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"19:38:45"}}} +{"type":"relationship","id":"3827","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7995","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A006) Failed by recorded vote: 158 - 254 (Roll no. 154).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1022?format=json","number":"","amendmentNumber":"1022","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"21:59:40"}}} +{"type":"relationship","id":"3828","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7996","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A012) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1028?format=json","number":"","amendmentNumber":"1028","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"22:24:19"}}} +{"type":"relationship","id":"3829","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7997","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-05-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A011) Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/1027?format=json","number":"","amendmentNumber":"1027","latestAction":"","latestAction_actionDate":"1996-05-08","latestAction_actionTime":"22:10:17"}}} +{"type":"relationship","id":"3830","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7998","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-07-28","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A020) Failed by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/694?format=json","number":"","amendmentNumber":"694","latestAction":"","latestAction_actionDate":"1995-07-28","latestAction_actionTime":"13:51:53"}}} +{"type":"relationship","id":"3831","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7999","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-07-26","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A010) Failed by recorded vote: 128 - 296 (Roll no. 575).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/652?format=json","number":"","amendmentNumber":"652","latestAction":"","latestAction_actionDate":"1995-07-26","latestAction_actionTime":"15:17:07"}}} +{"type":"relationship","id":"3832","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8000","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-01-30","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendments (A029) Failed by recorded vote: 135 - 282 (Roll no. 72).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/38?format=json","number":"","amendmentNumber":"38","latestAction":"","latestAction_actionDate":"1995-01-31","latestAction_actionTime":"00:07:25"}}} +{"type":"relationship","id":"3833","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8001","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-02-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A006) as amended Agreed to by voice vote.","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/104?format=json","number":"","amendmentNumber":"104","latestAction":"","latestAction_actionDate":"1995-02-08","latestAction_actionTime":"14:46:34"}}} +{"type":"relationship","id":"3834","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8002","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-02-08","policyArea_name":"","latestAction_text":"On agreeing to the Fields (LA) amendment (A005) Failed by recorded vote: 139 - 291 (Roll no. 107).","type":"NONE","title":"","url":"https://api.congress.gov/v3/amendment/104/hamdt/111?format=json","number":"","amendmentNumber":"111","latestAction":"","latestAction_actionDate":"1995-02-08","latestAction_actionTime":"19:53:10"}}} +{"type":"relationship","id":"3835","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8003","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1996-03-07","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow individuals an exclusion from gross income for certain amounts of unearned income.","url":"https://api.congress.gov/v3/bill/104/hr/3042?format=json","number":"3042","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1996-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3836","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8004","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-12-18","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Early Childhood, Youth and Families.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to impose a 5 percent tax on all wagering and to use the revenues from such tax to enhance funding for public elementary and secondary education, and for other purposes.","url":"https://api.congress.gov/v3/bill/104/hr/2800?format=json","number":"2800","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1996-01-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3837","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8005","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","policyArea_name":"Finance and Financial Sector","introducedDate":"1995-03-15","latestAction_text":"Referred to the Subcommittee on Financial Institutions and Consumer Credit.","type":"HR","title":"To amend the Electronic Funds Transfer Act to require fee disclosures by operators of electronic terminals at which electronic fund transfer services are made available to consumers.","url":"https://api.congress.gov/v3/bill/104/hr/1246?format=json","number":"1246","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1995-03-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3838","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8006","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-03-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Commerce, Trade, and Hazardous Materials.","type":"HR","title":"To require property and casualty insurers to provide written notification to insurance applicants and policyholders of decisions to refuse to issue or to cancel or refuse to renew an insurance policy.","url":"https://api.congress.gov/v3/bill/104/hr/1247?format=json","number":"1247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1995-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3839","label":"SPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"8007","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","policyArea_name":"Finance and Financial Sector","introducedDate":"1995-03-01","latestAction_text":"Referred to the Subcommittee on Financial Institutions and Consumer Credit.","type":"HR","title":"To establish a State system of licensing or registering persons engaged in a business which regularly and primarily charges fees for cashing checks, and to provide for insured financial depository institutions to cash checks issued by States of the United States.","url":"https://api.congress.gov/v3/bill/104/hr/1095?format=json","number":"1095","amendmentNumber":"","latestAction":"","latestAction_actionDate":"1995-03-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"3840","label":"SPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"8008","labels":["Legislation"],"properties":{"sponsored_by":"M001238","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-09","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"ESCRA Act","url":"https://api.congress.gov/v3/bill/119/hr/306?format=json","number":"306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"3841","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3842","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3843","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3844","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3845","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3846","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3847","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4924","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/732?format=json","number":"732","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3848","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3849","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4725","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"American Values Act","url":"https://api.congress.gov/v3/bill/119/s/334?format=json","number":"334","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"3850","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3851","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3852","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3853","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4723","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill to amend the Small Business Act to require that plain writing statements regarding the solicitation of subcontractors be included in certain subcontracting plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3854","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3855","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3856","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"3857","label":"COSPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3858","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3859","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3860","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3861","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3862","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3863","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3864","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3865","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3866","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3867","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3868","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3869","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3870","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3871","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3872","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3873","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3874","label":"COSPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3875","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4317","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-25","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6457)","type":"SRES","title":"A resolution honoring the life, legacy, and contributions of James Earl Jones.","url":"https://api.congress.gov/v3/bill/118/sres/878?format=json","number":"878","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3876","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3877","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5089","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stopping Political Discrimination in Disaster Assistance Act","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3878","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3879","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3880","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3881","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3882","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3883","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3884","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3885","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3886","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3887","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3888","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4815","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to renew the application of the Medicare payment rate floor to primary care services furnished under the Medicaid program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/760?format=json","number":"760","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3889","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3890","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5925","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"PSA Screening for HIM Act","url":"https://api.congress.gov/v3/bill/119/s/297?format=json","number":"297","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"3891","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"4780","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Forest and Rangeland Renewable Resources Research Act of 1978 to modify the forest inventory and analysis program.","url":"https://api.congress.gov/v3/bill/119/s/517?format=json","number":"517","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3892","label":"COSPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3893","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3894","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3895","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3896","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3897","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3898","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3899","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3900","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3901","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3902","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3903","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3904","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3905","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3906","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3907","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3908","label":"COSPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3909","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3910","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3911","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3912","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3913","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3914","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3915","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3916","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3917","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3918","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3919","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3920","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3921","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3922","label":"COSPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"4411","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to combat illegal, unreported, and unregulated fishing at its sources globally.","url":"https://api.congress.gov/v3/bill/119/s/688?format=json","number":"688","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3923","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3924","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3925","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3926","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"6047","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"ROUTERS Act","url":"https://api.congress.gov/v3/bill/119/s/244?format=json","number":"244","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3927","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3928","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5949","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Export Control Reform Act of 2018 relating to licensing transparency.","url":"https://api.congress.gov/v3/bill/119/s/744?format=json","number":"744","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3929","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3930","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3931","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"3932","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3933","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4587","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 23.","type":"S","title":"SBA Disaster Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/371?format=json","number":"371","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3934","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5785","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to enhance the rehabilitation credit for buildings in rural areas.","url":"https://api.congress.gov/v3/bill/119/s/631?format=json","number":"631","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3935","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3936","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4888","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the publicly traded partnership ownership structure to energy power generation projects and transportation fuels, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/510?format=json","number":"510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"3937","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3938","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"4393","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/s/475?format=json","number":"475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3939","label":"COSPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3940","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3941","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3942","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3943","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3944","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3945","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3946","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3947","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3948","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3949","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3950","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3951","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5611","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1431)","type":"S","title":"A bill to terminate authorizations for the use of military force and declarations of war no later than 10 years after the enactment of such authorizations or declarations.","url":"https://api.congress.gov/v3/bill/119/s/804?format=json","number":"804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3952","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3953","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3954","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4815","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to renew the application of the Medicare payment rate floor to primary care services furnished under the Medicaid program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/760?format=json","number":"760","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3955","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3956","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5613","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S1347-1348; text: CR S1348-1350)","type":"S","title":"A bill to amend title 31, United States Code, to prevent fraudulent transactions at virtual currency kiosks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3957","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3958","label":"COSPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3959","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3960","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"5042","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act to establish a process for science-focused drug development meetings led by the Reagan-Udall Foundation for the Food and Drug Administration with respect to drugs for rare diseases and conditions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/822?format=json","number":"822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3961","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"3962","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3963","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"3964","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3965","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3966","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3967","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3968","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3969","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"3970","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4539","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require the United States Postal Service to apply certain requirements when closing a processing, shipping, delivery, or other facility supporting a post office.","url":"https://api.congress.gov/v3/bill/119/s/661?format=json","number":"661","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3971","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3972","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"3973","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3974","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"3975","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3976","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3977","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3978","label":"COSPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"3979","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3980","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"3981","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"3982","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3983","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"3984","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3985","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3986","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3987","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3988","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"3989","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"3990","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3991","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3992","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3993","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3994","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"3995","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"3996","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3997","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"3998","label":"COSPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"3999","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5264","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to improve the repayment by the Secretary of Veterans Affairs of benefits misused by a fiduciary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4000","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4001","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4002","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5639","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of Steven D. Symms, former United States Senator for the State of Idaho.","url":"https://api.congress.gov/v3/bill/118/sres/813?format=json","number":"813","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4003","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4004","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4005","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4006","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4799","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to replace the National Institute of Allergy and Infectious Diseases with 3 separate national research institutes.","url":"https://api.congress.gov/v3/bill/119/s/664?format=json","number":"664","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4007","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4008","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4009","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4010","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4452","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"No Tax Dollars for Terrorists Act","url":"https://api.congress.gov/v3/bill/119/s/226?format=json","number":"226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4011","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4012","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4013","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4468","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to reform the Federal hiring process, to restore merit to Government service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4014","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4015","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4016","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5394","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Federal Trade Commission to study the role of intermediaries in the pharmaceutical supply chain and provide Congress with appropriate policy recommendations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/527?format=json","number":"527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4017","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"4423","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to protect regular order for budgeting for the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/423?format=json","number":"423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4018","label":"COSPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4019","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4020","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4021","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4022","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4023","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4024","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4025","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4026","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4027","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4028","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4029","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4030","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4031","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4032","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4033","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4034","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4430","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Trust Land Homeownership Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/723?format=json","number":"723","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4035","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4036","label":"COSPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4037","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5544","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/900?format=json","number":"900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4038","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4039","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4040","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4593","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6638-6639; text: 9/25/2024 CR S6450-6451)","type":"SRES","title":"A resolution expressing support for the designation of September 2024 as \"Sickle Cell Disease Awareness Month\" in order to educate communities across the United States about sickle cell disease and the need for research, early detection methods, effective treatments, and preventative care programs with respect to complications from sickle cell disease and conditions related to sickle cell disease.","url":"https://api.congress.gov/v3/bill/118/sres/861?format=json","number":"861","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4041","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4042","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4043","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4044","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5546","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for the imposition of sanctions with respect to forced organ harvesting within the People's Republic of China, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/817?format=json","number":"817","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4045","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4046","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4756","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1430-1431)","type":"S","title":"A bill to amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/779?format=json","number":"779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4047","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"4498","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Consolidated Farm and Rural Development Act to provide additional assistance to rural water, wastewater, and waste disposal systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/783?format=json","number":"783","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4048","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5547","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the indexing of certain assets for purposes of determining gain or loss.","url":"https://api.congress.gov/v3/bill/119/s/798?format=json","number":"798","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4049","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4050","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4051","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4052","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4053","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4054","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4055","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4056","label":"COSPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"5047","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide incentives to physicians to practice in rural and medically underserved communities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/709?format=json","number":"709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4057","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4058","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4059","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4060","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4061","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5665","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to extend and modify the transportation grant program of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/827?format=json","number":"827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4062","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5974","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S862)","type":"S","title":"A bill to repeal a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/s/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4063","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"4064","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4065","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4066","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4067","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4068","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4069","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4070","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4071","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4914","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate a mountain in the State of Alaska as Denali.","url":"https://api.congress.gov/v3/bill/119/s/573?format=json","number":"573","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4072","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4073","label":"COSPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4074","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4224","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689)","type":"SRES","title":"A resolution expressing support for the designation of November 8, 2024, as \"National First-Generation College Celebration Day\".","url":"https://api.congress.gov/v3/bill/118/sres/903?format=json","number":"903","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4075","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4076","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4269","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make the exclusion for certain employer payments of student loans under educational assistance programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/772?format=json","number":"772","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4077","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4078","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4079","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4080","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4081","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4082","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4083","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4084","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"5973","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/541?format=json","number":"541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4085","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4086","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4087","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4545","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Marcella LeBeau Recognition Act","url":"https://api.congress.gov/v3/bill/119/s/287?format=json","number":"287","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"4088","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4089","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4090","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4091","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"5540","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protect Funding for Women's Health Care Act","url":"https://api.congress.gov/v3/bill/119/s/177?format=json","number":"177","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4092","label":"COSPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"4731","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Dismantle Iran’s Proxy Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/145?format=json","number":"145","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4093","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4094","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4515","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Individuals with Disabilities Education Act to require notification with respect to individualized education program teams, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/745?format=json","number":"745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4095","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4096","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4097","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5565","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/s/808?format=json","number":"808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4098","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4099","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4100","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4836","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish an enhanced deduction for wages paid to automobile manufacturing workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/711?format=json","number":"711","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4101","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4102","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4103","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4104","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5529","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to repeal programs relating to funding for electric vehicle charging infrastructure, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/651?format=json","number":"651","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4105","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4106","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5332","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reauthorizing Support and Treatment for Officers in Crisis Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/419?format=json","number":"419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4107","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5408","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Whole-Home Repairs Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/127?format=json","number":"127","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4108","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4109","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4110","label":"COSPONSORED","start":{"id":"3933","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg","startYear":"2025","name":"Sheehy, Tim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Montana","url":"https://api.congress.gov/v3/member/S001232?format=json","bioguideId":"S001232"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4111","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4112","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5544","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/900?format=json","number":"900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4113","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4796","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Royalty Transparency Act","url":"https://api.congress.gov/v3/bill/119/s/855?format=json","number":"855","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4114","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4115","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5546","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for the imposition of sanctions with respect to forced organ harvesting within the People's Republic of China, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/817?format=json","number":"817","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4116","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4117","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"6031","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization until certain conditions have been met.","url":"https://api.congress.gov/v3/bill/119/s/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4118","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5844","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to require the Secretary of Defense and the Secretary of State to monitor efforts by the People's Republic of China to build or buy strategic foreign ports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/777?format=json","number":"777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4119","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5069","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Right to Financial Privacy Act of 1978 to preserve the confidentiality of certain records, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/809?format=json","number":"809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4120","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4121","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4122","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4123","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4124","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4125","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4126","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5325","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit conflicts of interest among consulting firms that simultaneously contract with China or other covered foreign entities and the United States Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/731?format=json","number":"731","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4127","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4128","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5529","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to repeal programs relating to funding for electric vehicle charging infrastructure, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/651?format=json","number":"651","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4129","label":"COSPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"5080","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to terminate membership by the United States in the United Nations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4130","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"5524","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/886?format=json","number":"886","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4131","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4132","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4133","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4134","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"5565","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/s/808?format=json","number":"808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4135","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4136","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4137","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4138","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4139","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"5407","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Banning SPR Oil Exports to Foreign Adversaries Act","url":"https://api.congress.gov/v3/bill/119/s/393?format=json","number":"393","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4140","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4929","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Whole Milk for Healthy Kids Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/222?format=json","number":"222","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4141","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4142","label":"COSPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"6318","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"COAL Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/280?format=json","number":"280","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4143","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4144","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4145","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4146","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4717","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to modify the information about countries exporting methamphetamine that is included in the annual International Narcotics Control Strategy Report, to require a report to Congress on the seizure and production of certain illicit drugs, to impose sanctions with respect to the production and trafficking into the United States, of synthetic opioids, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/860?format=json","number":"860","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4147","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4148","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4149","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4150","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4151","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4152","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4153","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4154","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4155","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4719","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1400-1401)","type":"SRES","title":"A resolution condemning Beijing's destruction of Hong Kong's democracy and rule of law.","url":"https://api.congress.gov/v3/bill/119/sres/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4156","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"4515","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Individuals with Disabilities Education Act to require notification with respect to individualized education program teams, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/745?format=json","number":"745","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4157","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4158","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4159","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4160","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4161","label":"COSPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"5246","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend title 49, United States Code, to provide for air traffic control training improvements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/697?format=json","number":"697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4162","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4163","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4164","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4165","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4166","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5330","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate America's National Churchill Museum National Historic Landmark, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/650?format=json","number":"650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4167","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4168","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4169","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4170","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5714","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"SAFE Orbit Act","url":"https://api.congress.gov/v3/bill/119/s/428?format=json","number":"428","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4171","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5178","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to implement a minimum work requirement for able-bodied adults enrolled in State Medicaid programs.","url":"https://api.congress.gov/v3/bill/119/s/447?format=json","number":"447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4172","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4173","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4174","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4175","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4451","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Homeowner Energy Freedom Act","url":"https://api.congress.gov/v3/bill/119/s/333?format=json","number":"333","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4176","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4177","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4178","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4179","label":"COSPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"4660","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Dignity for Aborted Children Act","url":"https://api.congress.gov/v3/bill/119/s/242?format=json","number":"242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4180","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4181","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4182","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4183","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4184","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4185","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"5645","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Export-Import Bank Act of 1945 to exclude certain financing from the calculation of the default rate for purposes of determining when the lending cap under such Act applies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/753?format=json","number":"753","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4186","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4187","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4430","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Trust Land Homeownership Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/723?format=json","number":"723","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4188","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"5463","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-03-06","latestAction_text":"Became Public Law No: 118-95.","type":"S","title":"Veteran Improvement Commercial Driver License Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/656?format=json","number":"656","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"4189","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4190","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4191","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4192","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"7211","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Supporting Veteran Families in Need Act","url":"https://api.congress.gov/v3/bill/119/hr/585?format=json","number":"585","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4193","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4194","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4195","label":"COSPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4196","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4197","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4198","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4309","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038 ; text: CR S1043)","type":"SRES","title":"A resolution congratulating the Jackson State University Tigers for winning the 2024 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/119/sres/85?format=json","number":"85","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4199","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4200","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4201","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4202","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4203","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4204","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"5266","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill for the relief of Vichai Sae Tung (also known as Chai Chaowasaree).","url":"https://api.congress.gov/v3/bill/119/s/716?format=json","number":"716","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4205","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"5215","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-06-13","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","type":"SRES","title":"A resolution honoring the life and legacy of Patrick Gottsch.","url":"https://api.congress.gov/v3/bill/118/sres/733?format=json","number":"733","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4206","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4207","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"6434","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","number":"646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4208","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"5594","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure due process protections of individuals in the United States against unlawful detention based solely on a protected characteristic.","url":"https://api.congress.gov/v3/bill/119/s/634?format=json","number":"634","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4209","label":"COSPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"4913","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-18","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Veterinary Services to Improve Public Health in Rural Communities Act","url":"https://api.congress.gov/v3/bill/119/s/620?format=json","number":"620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4210","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4211","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4212","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4213","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5892","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish a demonstration project to improve outpatient clinical care for individuals with sickle cell disease.","url":"https://api.congress.gov/v3/bill/119/s/721?format=json","number":"721","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4214","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4439","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution to elect Charles E. Grassley, a Senator from the State of Iowa, to be President pro tempore of the Senate of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4215","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4216","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4217","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4218","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"7306","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/13?format=json","number":"13","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"4219","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4220","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5306","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"GENIUS Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/394?format=json","number":"394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4221","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4222","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4223","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4224","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5536","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 21.","type":"S","title":"Returning SBA to Main Street Act","url":"https://api.congress.gov/v3/bill/119/s/298?format=json","number":"298","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4225","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4226","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5790","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Stop Funding Global Terrorists Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/313?format=json","number":"313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4227","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"5092","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Charitable Act","url":"https://api.congress.gov/v3/bill/119/s/317?format=json","number":"317","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4228","label":"COSPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4229","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4230","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4231","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5464","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to reauthorize Long Island Sound programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4232","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4233","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5465","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXXIII of the Public Health Service Act with respect to flexibility and funding for the World Trade Center Health Program.","url":"https://api.congress.gov/v3/bill/119/s/739?format=json","number":"739","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4234","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5711","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4235","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4236","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4237","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5559","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the designation of certain airports as ports of entry.","url":"https://api.congress.gov/v3/bill/119/s/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4238","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4239","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4240","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4241","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"6991","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHILD Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/413?format=json","number":"413","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4242","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5472","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Fort Ontario Holocaust Refugee Shelter National Historical Park in the State of New York as a unit of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/432?format=json","number":"432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4243","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4244","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4245","label":"COSPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"5474","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Setting Consumer Standards for Lithium-Ion Batteries Act","url":"https://api.congress.gov/v3/bill/119/s/389?format=json","number":"389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4246","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4189","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend expiring health provisions and improve health care delivery.","url":"https://api.congress.gov/v3/bill/119/s/891?format=json","number":"891","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4247","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4248","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4249","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4250","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4251","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4252","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4253","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4254","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4255","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4256","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4257","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4258","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4259","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4260","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4261","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4262","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4263","label":"COSPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4264","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4265","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4266","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4267","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4268","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4269","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4270","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"5424","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1433)","type":"SRES","title":"A resolution condemning the rejection by the United States of a United Nations resolution condemning the illegal invasion of Ukraine by the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/sres/103?format=json","number":"103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4271","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"5611","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1431)","type":"S","title":"A bill to terminate authorizations for the use of military force and declarations of war no later than 10 years after the enactment of such authorizations or declarations.","url":"https://api.congress.gov/v3/bill/119/s/804?format=json","number":"804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4272","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4273","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"5711","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4274","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4275","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4276","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4277","label":"COSPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"4759","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tule River Tribe Reserved Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4278","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4454","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"VA Home Loan Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/138?format=json","number":"138","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4279","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4280","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4281","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4282","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4283","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4284","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4676","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4285","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4286","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4287","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4288","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5550","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to require the impaneling of a new jury if a jury fails to recommend by unanimous vote a sentence for conviction of a crime punishable by death.","url":"https://api.congress.gov/v3/bill/119/s/718?format=json","number":"718","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4289","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4290","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4291","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4292","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4293","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4294","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4295","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4296","label":"COSPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"5391","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to reauthorize and expand the National Threat Assessment Center of the Department of Homeland Security.","url":"https://api.congress.gov/v3/bill/119/s/560?format=json","number":"560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4297","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4298","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4299","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4300","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4301","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4302","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4303","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4304","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4305","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4306","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"6030","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Immigration and Nationality Act to deny immigration benefits to aliens who carried out, participated in, planned, financed, supported, or otherwise facilitated the October 2023 attacks against Israel.","url":"https://api.congress.gov/v3/bill/119/s/762?format=json","number":"762","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4307","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4308","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4657","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to include information on improper payments under Federal programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/747?format=json","number":"747","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4309","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4310","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5047","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide incentives to physicians to practice in rural and medically underserved communities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/709?format=json","number":"709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4311","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4312","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4313","label":"COSPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4314","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4315","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4316","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4317","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4795","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Risky Research Review Act","url":"https://api.congress.gov/v3/bill/119/s/854?format=json","number":"854","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4318","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4319","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5745","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to provide consumers with the right to delete their genomic data, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/863?format=json","number":"863","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4320","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5526","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stop Secret Spending Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4321","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4322","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4323","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5324","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to accelerate workplace time-to-contract under the National Labor Relations Act.","url":"https://api.congress.gov/v3/bill/119/s/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4324","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5089","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stopping Political Discrimination in Disaster Assistance Act","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4325","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4326","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5565","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to prohibit the importation of certain minerals from the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/s/808?format=json","number":"808","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4327","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4328","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4329","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4330","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4331","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5325","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit conflicts of interest among consulting firms that simultaneously contract with China or other covered foreign entities and the United States Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/731?format=json","number":"731","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4332","label":"COSPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4333","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4334","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4453","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/160?format=json","number":"160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4335","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4336","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4497","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to support democracy and the rule of law in Georgia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/868?format=json","number":"868","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4337","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4338","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4339","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4340","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4341","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4342","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4343","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4344","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4345","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4346","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4347","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4348","label":"COSPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4349","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4350","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4351","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4352","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4353","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4354","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4355","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4356","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5613","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S1347-1348; text: CR S1348-1350)","type":"S","title":"A bill to amend title 31, United States Code, to prevent fraudulent transactions at virtual currency kiosks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4357","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4358","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4359","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4360","label":"COSPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"5594","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure due process protections of individuals in the United States against unlawful detention based solely on a protected characteristic.","url":"https://api.congress.gov/v3/bill/119/s/634?format=json","number":"634","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4361","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4386","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution supporting afterschool programs and Lights On Afterschool, a national celebration of afterschool programs held on October 24, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/880?format=json","number":"880","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4362","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4363","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4364","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4365","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5002","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1616; text: CR S1609)","type":"SRES","title":"A resolution providing for members on the part of the Senate of the Joint Committee on Printing and the Joint Committee of Congress on the Library.","url":"https://api.congress.gov/v3/bill/119/sres/117?format=json","number":"117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4366","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4367","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5506","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the exclusion for certain conservation subsidies to include subsidies for water conservation or efficiency measures, storm water management measures, and wastewater management measures.","url":"https://api.congress.gov/v3/bill/119/s/857?format=json","number":"857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4368","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4369","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4370","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4371","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4372","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4373","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5706","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Research and Development, Competition, and Innovation Act to clarify the definition of foreign country for purposes of malign foreign talent recruitment restriction, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/769?format=json","number":"769","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4374","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4375","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5424","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1433)","type":"SRES","title":"A resolution condemning the rejection by the United States of a United Nations resolution condemning the illegal invasion of Ukraine by the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/sres/103?format=json","number":"103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4376","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4377","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4378","label":"COSPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4379","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4380","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4381","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4382","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4383","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4384","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4385","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4386","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"6034","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program within the Office of Juvenile Justice and Delinquency Prevention to award grants to States that require the recording of all child welfare interviews with children and adults, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/659?format=json","number":"659","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4387","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4388","label":"COSPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4389","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4593","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6638-6639; text: 9/25/2024 CR S6450-6451)","type":"SRES","title":"A resolution expressing support for the designation of September 2024 as \"Sickle Cell Disease Awareness Month\" in order to educate communities across the United States about sickle cell disease and the need for research, early detection methods, effective treatments, and preventative care programs with respect to complications from sickle cell disease and conditions related to sickle cell disease.","url":"https://api.congress.gov/v3/bill/118/sres/861?format=json","number":"861","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4390","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"5004","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Director of the Bureau of Prisons to be appointed by and with the advice and consent of the Senate.","url":"https://api.congress.gov/v3/bill/119/s/698?format=json","number":"698","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4391","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4392","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4725","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"American Values Act","url":"https://api.congress.gov/v3/bill/119/s/334?format=json","number":"334","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4393","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4394","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4412","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1316; text: CR S1316)","type":"SRES","title":"A resolution designating February 16, 2025, as \"National Elizabeth Peratrovich Day\".","url":"https://api.congress.gov/v3/bill/119/sres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4395","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4222","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S76; text: CR S81)","type":"SRES","title":"A resolution honoring the life and legacy of President Jimmy Carter and commending President Jimmy Carter for his life-long career of public service, humanitarian leadership, diplomacy, and courageous advocacy.","url":"https://api.congress.gov/v3/bill/119/sres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4396","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4440","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution notifying the House of Representatives of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4397","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4398","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4399","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4442","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SCONRES","title":"A concurrent resolution extending the life of the Joint Congressional Committee on Inaugural Ceremonies.","url":"https://api.congress.gov/v3/bill/119/sconres/1?format=json","number":"1","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":"18:21:55"}}} +{"type":"relationship","id":"4400","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4401","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4448","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture and the Secretary of the Interior to establish a standard for the response time to wildfire incidents, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4402","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"4188","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate certain land administered by the Bureau of Land Management and the Forest Service in the State of Oregon as wilderness and national recreation areas, to withdraw certain land located in Curry County and Josephine County, Oregon, from all forms of entry, appropriation, or disposal under the public land laws, location, entry, and patent under the mining laws, and operation under the mineral leasing and geothermal leasing laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4403","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4404","label":"COSPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"5080","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to terminate membership by the United States in the United Nations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4405","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4406","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4407","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4408","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4409","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4410","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4411","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4412","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4413","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4414","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4415","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4416","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4417","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4418","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4419","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4420","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"5594","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure due process protections of individuals in the United States against unlawful detention based solely on a protected characteristic.","url":"https://api.congress.gov/v3/bill/119/s/634?format=json","number":"634","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4421","label":"COSPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"4914","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate a mountain in the State of Alaska as Denali.","url":"https://api.congress.gov/v3/bill/119/s/573?format=json","number":"573","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4422","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4423","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5526","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stop Secret Spending Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4424","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5324","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to accelerate workplace time-to-contract under the National Labor Relations Act.","url":"https://api.congress.gov/v3/bill/119/s/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4425","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4426","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4427","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4428","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4582","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to modify the deadline for filing beneficial ownership information reports for reporting companies formed or registered before January 1, 2024.","url":"https://api.congress.gov/v3/bill/119/s/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4429","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4430","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4431","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4432","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4579","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to suspend the entry of covered aliens in response to the fentanyl public health crisis.","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","number":"628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4433","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4434","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4435","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5688","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"RECOGNIZING Judea and Samaria Act","url":"https://api.congress.gov/v3/bill/119/s/384?format=json","number":"384","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4436","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"5632","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to authorize an additional district judgeship for the district of Idaho.","url":"https://api.congress.gov/v3/bill/119/s/54?format=json","number":"54","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4437","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4438","label":"COSPONSORED","start":{"id":"3953","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg","startYear":"2025","name":"Moreno, Bernie","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Ohio","url":"https://api.congress.gov/v3/member/M001242?format=json","bioguideId":"M001242"}},"end":{"id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4439","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4440","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4441","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4442","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4443","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4444","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4445","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4257","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S599-600; text: CR S598-599)","type":"SRES","title":"A resolution recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/sres/55?format=json","number":"55","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4446","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4447","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4453","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/160?format=json","number":"160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4448","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4449","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4725","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"American Values Act","url":"https://api.congress.gov/v3/bill/119/s/334?format=json","number":"334","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4450","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4451","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"5690","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Minors from Medical Malpractice Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/209?format=json","number":"209","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4452","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"5095","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Promoting Domestic Energy Production Act","url":"https://api.congress.gov/v3/bill/119/s/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4453","label":"COSPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4454","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4455","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4456","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4457","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"5464","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to reauthorize Long Island Sound programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4458","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4459","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4460","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4461","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"7754","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3935) to amend title 49, United States Code, to reauthorize and improve the Federal Aviation Administration and other civil aviation programs, and for other purposes, and providing for consideration of the bill (H.R. 3941) to prohibit the use of the facilities of a public elementary school, a public secondary school, or an institution of higher education to provide shelter for aliens who have not been admitted into the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/597?format=json","number":"597","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-18","latestAction_actionTime":"13:49:56"}}} +{"type":"relationship","id":"4462","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4256","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Tax Breaks for Outsourcing Act","url":"https://api.congress.gov/v3/bill/119/s/409?format=json","number":"409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4463","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"6991","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHILD Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/413?format=json","number":"413","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4464","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4465","label":"COSPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"4257","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S599-600; text: CR S598-599)","type":"SRES","title":"A resolution recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/sres/55?format=json","number":"55","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4466","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4495","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish a permanent rural housing preservation and revitalization program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/885?format=json","number":"885","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4467","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4468","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5725","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to provide the President with authority to enter into a comprehensive trade agreement with the United Kingdom, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/776?format=json","number":"776","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4469","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4470","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4471","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5045","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to support the establishment of an apprenticeship college consortium.","url":"https://api.congress.gov/v3/bill/119/s/758?format=json","number":"758","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4472","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4473","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4474","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5023","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Housing Act of 1949 to permit certain grants to be used for accessory dwelling units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/686?format=json","number":"686","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4475","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5246","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend title 49, United States Code, to provide for air traffic control training improvements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/697?format=json","number":"697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4476","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4477","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4478","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4479","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4480","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4481","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4482","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4483","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4484","label":"COSPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"5393","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prevent unfair and deceptive acts or practices and the dissemination of false information related to pharmacy benefit management services for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/526?format=json","number":"526","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4485","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"5284","labels":["Legislation"],"properties":{"sponsored_by":"H000273","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to require the Secretary of Health and Human Services to carry out a pilot program to support evidence-based mental health peer support activities for students.","url":"https://api.congress.gov/v3/bill/119/s/906?format=json","number":"906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4486","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4487","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4488","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4756","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1430-1431)","type":"S","title":"A bill to amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/779?format=json","number":"779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4489","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4675","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/778?format=json","number":"778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4490","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4410","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to extend the Alaska Native Vietnam era Veterans Land Allotment Program.","url":"https://api.congress.gov/v3/bill/119/s/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4491","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4492","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4493","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4494","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4495","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4496","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4412","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1316; text: CR S1316)","type":"SRES","title":"A resolution designating February 16, 2025, as \"National Elizabeth Peratrovich Day\".","url":"https://api.congress.gov/v3/bill/119/sres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4497","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4571","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to amend the Native American Tourism and Improving Visitor Experience Act to authorize grants to Indian tribes, tribal organizations, and Native Hawaiian organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/612?format=json","number":"612","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4498","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4499","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4500","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4415","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide for the application of a cost-of-living adjustment to the non-labor related portion for hospital outpatient department services furnished in Alaska and Hawaii.","url":"https://api.congress.gov/v3/bill/119/s/551?format=json","number":"551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4501","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4417","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to establish a floor on payments to sole community hospitals located in Alaska and Hawaii under the hospital outpatient prospective payment system.","url":"https://api.congress.gov/v3/bill/119/s/553?format=json","number":"553","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4502","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4503","label":"COSPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"4423","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to protect regular order for budgeting for the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/423?format=json","number":"423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4504","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4505","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4506","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4507","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4508","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4509","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4463","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Miccosukee Reserved Area Amendments Act","url":"https://api.congress.gov/v3/bill/119/s/673?format=json","number":"673","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4510","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"4469","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-13","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981)","type":"SRES","title":"A resolution honoring the memories of the victims of the senseless attack at Marjory Stoneman Douglas High School on February 14, 2018.","url":"https://api.congress.gov/v3/bill/119/sres/79?format=json","number":"79","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4511","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4512","label":"COSPONSORED","start":{"id":"3958","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","startYear":"2025","name":"Moody, Ashley","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/M001244?format=json","bioguideId":"M001244"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4513","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4514","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4515","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4439","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution to elect Charles E. Grassley, a Senator from the State of Iowa, to be President pro tempore of the Senate of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/3?format=json","number":"3","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4516","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4517","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"5405","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Federal Crop Insurance Act to require research and development regarding a policy to insure the production of mushrooms.","url":"https://api.congress.gov/v3/bill/119/s/741?format=json","number":"741","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4518","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"5408","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","policyArea_name":"Housing and Community Development","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Whole-Home Repairs Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/127?format=json","number":"127","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4519","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"5406","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038; text: CR S1042-1043)","type":"SRES","title":"A resolution congratulating the Philadelphia Eagles on their victory in Super Bowl LIX in the successful 105th season of the National Football League.","url":"https://api.congress.gov/v3/bill/119/sres/84?format=json","number":"84","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4520","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4521","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4522","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4523","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4524","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4929","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-23","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Whole Milk for Healthy Kids Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/222?format=json","number":"222","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4525","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4526","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4731","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Dismantle Iran’s Proxy Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/145?format=json","number":"145","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4527","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9639","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/422/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"422","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Became Public Law No: 117-10.","subjects.url":"https://api.congress.gov/v3/bill/118/s/422/subjects?format=json","policyArea.name":"Immigration","committees.url":"https://api.congress.gov/v3/bill/118/s/422/committees?format=json","type":"S","title":"Build the Wall Now Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"422","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/422/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/422/titles?format=json","laws.0.number":"117-10","summaries.url":"https://api.congress.gov/v3/bill/118/s/422/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/422/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/422/relatedbills?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"cosponsors.count":9,"introducedDate":"2023-02-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/422?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"4528","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4529","label":"COSPONSORED","start":{"id":"3959","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg","startYear":"2025","partyName":"Republican","name":"McCormick, David","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001243?format=json","bioguideId":"M001243"}},"end":{"id":"4222","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S76; text: CR S81)","type":"SRES","title":"A resolution honoring the life and legacy of President Jimmy Carter and commending President Jimmy Carter for his life-long career of public service, humanitarian leadership, diplomacy, and courageous advocacy.","url":"https://api.congress.gov/v3/bill/119/sres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4530","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4531","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5450","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/400?format=json","number":"400","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4532","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4533","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4534","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4535","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4536","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4537","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4538","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4539","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4540","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4541","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5566","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Food Security Act of 1985 to reauthorize the voluntary public access and habitat incentive program.","url":"https://api.congress.gov/v3/bill/119/s/704?format=json","number":"704","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4542","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4543","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"6693","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Small Business Investor Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/652?format=json","number":"652","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4544","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4545","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4570","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Improving Flood and Agricultural Forecasts Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/613?format=json","number":"613","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"4546","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4547","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4548","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4549","label":"COSPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4550","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4551","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4552","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4224","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689)","type":"SRES","title":"A resolution expressing support for the designation of November 8, 2024, as \"National First-Generation College Celebration Day\".","url":"https://api.congress.gov/v3/bill/118/sres/903?format=json","number":"903","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4553","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4554","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4555","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4556","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4557","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4558","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4559","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"5463","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-03-06","latestAction_text":"Became Public Law No: 118-95.","type":"S","title":"Veteran Improvement Commercial Driver License Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/656?format=json","number":"656","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"4560","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4561","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"5972","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S1131-1135)","type":"S","title":"A bill to redesignate land within certain wilderness study areas in the State of Wyoming, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/681?format=json","number":"681","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4562","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"5081","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve retrospective reviews of Federal regulations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/644?format=json","number":"644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4563","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4564","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4565","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4566","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4567","label":"COSPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4568","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4569","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4570","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4188","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate certain land administered by the Bureau of Land Management and the Forest Service in the State of Oregon as wilderness and national recreation areas, to withdraw certain land located in Curry County and Josephine County, Oregon, from all forms of entry, appropriation, or disposal under the public land laws, location, entry, and patent under the mining laws, and operation under the mineral leasing and geothermal leasing laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4571","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4572","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4573","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4574","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4575","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4576","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4577","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4578","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4579","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4580","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4291","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to hold accountable operators of social media platforms that intentionally or knowingly host false election administration information.","url":"https://api.congress.gov/v3/bill/119/s/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4581","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5324","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to accelerate workplace time-to-contract under the National Labor Relations Act.","url":"https://api.congress.gov/v3/bill/119/s/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4582","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4583","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4584","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4585","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4586","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4587","label":"COSPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4588","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4589","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4590","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4591","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4592","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4593","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4228","labels":["Legislation"],"properties":{"sponsored_by":"W000817","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1610)","type":"SRES","title":"A resolution memorializing those lost to the COVID-19 pandemic.","url":"https://api.congress.gov/v3/bill/119/sres/119?format=json","number":"119","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4594","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4595","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4596","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4597","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4598","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4599","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4600","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4601","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4602","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4603","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4604","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4605","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4606","label":"COSPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4607","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4608","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4609","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4610","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4802","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to remove restrictions from a parcel of land in Paducah, Kentucky.","url":"https://api.congress.gov/v3/bill/119/s/601?format=json","number":"601","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4611","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4612","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5228","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Stopping Overdoses of Fentanyl Analogues Act","url":"https://api.congress.gov/v3/bill/119/s/165?format=json","number":"165","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4613","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4614","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4615","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4222","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-09","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S76; text: CR S81)","type":"SRES","title":"A resolution honoring the life and legacy of President Jimmy Carter and commending President Jimmy Carter for his life-long career of public service, humanitarian leadership, diplomacy, and courageous advocacy.","url":"https://api.congress.gov/v3/bill/119/sres/19?format=json","number":"19","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4616","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4524","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-23","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S329; text: CR S341)","type":"SRES","title":"A resolution congratulating the Washington University in St. Louis Bears women's soccer team for winning the 2024 NCAA Division III Women's Soccer Championship.","url":"https://api.congress.gov/v3/bill/119/sres/34?format=json","number":"34","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4617","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4440","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution notifying the House of Representatives of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/5?format=json","number":"5","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4618","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"6383","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"Protecting Taxpayers from Student Loan Bailouts Act","url":"https://api.congress.gov/v3/bill/119/hr/937?format=json","number":"937","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4619","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4620","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4389","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Camp Lejeune Justice Act of 2022 to make technical corrections.","url":"https://api.congress.gov/v3/bill/119/s/907?format=json","number":"907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4621","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4448","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture and the Secretary of the Interior to establish a standard for the response time to wildfire incidents, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4622","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5544","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/900?format=json","number":"900","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4623","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4624","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"4188","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate certain land administered by the Bureau of Land Management and the Forest Service in the State of Oregon as wilderness and national recreation areas, to withdraw certain land located in Curry County and Josephine County, Oregon, from all forms of entry, appropriation, or disposal under the public land laws, location, entry, and patent under the mining laws, and operation under the mineral leasing and geothermal leasing laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4625","label":"COSPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4626","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4627","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4628","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4629","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5665","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to extend and modify the transportation grant program of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/827?format=json","number":"827","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4630","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4631","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4632","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4633","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4634","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4635","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4636","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4637","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4458","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to direct the Secretary of Veterans Affairs to ensure veterans may obtain a physical copy of a form for reimbursement of certain travel expenses by mail or at medical facilities of the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/812?format=json","number":"812","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4638","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4639","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4640","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4641","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"4883","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to modify the Precision Medicine for Veterans Initiative of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/800?format=json","number":"800","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4642","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4643","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5549","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Modernizing Access to Our Public Oceans Act","url":"https://api.congress.gov/v3/bill/119/s/759?format=json","number":"759","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4644","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4645","label":"COSPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"5087","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S596-597)","type":"SRES","title":"A resolution recognizing religious freedom as a fundamental right, expressing support for international religious freedom as a cornerstone of United States foreign policy, and expressing concern over increased threats to and attacks on religious freedom around the world.","url":"https://api.congress.gov/v3/bill/119/sres/52?format=json","number":"52","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4646","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4647","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4648","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4655","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/s/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4649","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4650","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4651","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4652","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5244","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Consolidated Farm and Rural Development Act to modify limitations on amounts of farm ownership loans and operating loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/899?format=json","number":"899","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4653","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4654","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4655","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4656","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4657","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4658","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4659","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4291","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to hold accountable operators of social media platforms that intentionally or knowingly host false election administration information.","url":"https://api.congress.gov/v3/bill/119/s/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4660","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4661","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4662","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4663","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4664","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4665","label":"COSPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4666","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5345","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"REPORT Act","url":"https://api.congress.gov/v3/bill/119/s/848?format=json","number":"848","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4667","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4668","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4669","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4670","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4671","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4672","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4673","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4674","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4675","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5561","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the excise taxes on taxable chemicals and taxable substances.","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","number":"615","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"4676","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4677","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4678","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4679","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4392","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S931)","type":"SRES","title":"A resolution expressing the sense of the Senate that member countries of NATO must commit at least 2 percent of their national gross domestic product to national defense spending to hold leadership or benefit at the expense of those countries who meet their obligations.","url":"https://api.congress.gov/v3/bill/119/sres/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4680","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"4681","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4610","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S43)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/17?format=json","number":"17","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"4682","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4683","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4684","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4685","label":"COSPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"5942","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4958; text: CR S4955)","type":"SRES","title":"A resolution expressing support for the designation of October 1 through October 7, 2023, as \"National 4-H Week\".","url":"https://api.congress.gov/v3/bill/118/sres/399?format=json","number":"399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4686","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4687","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4688","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4689","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4593","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S6638-6639; text: 9/25/2024 CR S6450-6451)","type":"SRES","title":"A resolution expressing support for the designation of September 2024 as \"Sickle Cell Disease Awareness Month\" in order to educate communities across the United States about sickle cell disease and the need for research, early detection methods, effective treatments, and preventative care programs with respect to complications from sickle cell disease and conditions related to sickle cell disease.","url":"https://api.congress.gov/v3/bill/118/sres/861?format=json","number":"861","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4690","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5526","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stop Secret Spending Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","number":"872","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4691","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4390","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XI of the Social Security Act to equalize the negotiation period between small-molecule and biologic candidates under the Drug Price Negotiation Program.","url":"https://api.congress.gov/v3/bill/119/s/832?format=json","number":"832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4692","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4698","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to create intergovernmental coordination between State, local, Tribal, and territorial jurisdictions, and the Federal Government to combat United States reliance on the People's Republic of China and other covered countries for critical minerals and rare earth metals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/823?format=json","number":"823","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4693","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5347","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend section 324 of the Robert T. Stafford Disaster Relief and Emergency Assistance Act to incentivize States, Indian Tribes, and Territories to close disaster recovery projects by authorizing the use of excess funds for management costs for other disaster recovery projects.","url":"https://api.congress.gov/v3/bill/119/s/773?format=json","number":"773","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4694","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4695","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5444","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1399-1400)","type":"S","title":"A bill to prohibit the Secretary of Health and Human Services from implementing, enforcing, or otherwise giving effect to a final rule regarding minimum staffing for nursing facilities, and to establish an advisory panel on the nursing home workforce.","url":"https://api.congress.gov/v3/bill/119/s/750?format=json","number":"750","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4696","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4697","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4459","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies to repeal ten existing regulations before issuing a new regulation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/712?format=json","number":"712","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4698","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4699","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5004","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Director of the Bureau of Prisons to be appointed by and with the advice and consent of the Senate.","url":"https://api.congress.gov/v3/bill/119/s/698?format=json","number":"698","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4700","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4701","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4702","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4703","label":"COSPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"4841","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to authorize the Secretary of the Treasury to make payments to the Quapaw Nation and certain members of the Quapaw Nation in accordance with the recommendation of the United States Court of Federal Claims, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/630?format=json","number":"630","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4704","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4428","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1607-1609)","type":"S","title":"A bill to improve disaster assistance programs of the Department of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/904?format=json","number":"904","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4705","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4706","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4429","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1581)","type":"S","title":"A bill to require executive agencies to take steps to better meet the statutory deadline for processing communications use applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/866?format=json","number":"866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4707","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4708","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4709","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4291","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to hold accountable operators of social media platforms that intentionally or knowingly host false election administration information.","url":"https://api.congress.gov/v3/bill/119/s/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4710","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5976","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S795-796)","type":"S","title":"A bill to amend the Omnibus Parks and Public Lands Management Act of 1996 to provide for the establishment of a Ski Area Fee Retention Account, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/472?format=json","number":"472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4711","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4712","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5639","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of Steven D. Symms, former United States Senator for the State of Idaho.","url":"https://api.congress.gov/v3/bill/118/sres/813?format=json","number":"813","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4713","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5484","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agriculture Improvement Act of 2018 to prohibit the slaughter of equines for human consumption.","url":"https://api.congress.gov/v3/bill/119/s/775?format=json","number":"775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4714","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4815","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to renew the application of the Medicare payment rate floor to primary care services furnished under the Medicaid program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/760?format=json","number":"760","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4715","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4716","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4717","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4718","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4719","label":"COSPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"4433","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S668)","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 to establish country of origin labeling requirements for beef, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/421?format=json","number":"421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4720","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4721","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4722","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4723","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4724","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4725","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4726","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4727","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4728","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4729","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5844","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to require the Secretary of Defense and the Secretary of State to monitor efforts by the People's Republic of China to build or buy strategic foreign ports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/777?format=json","number":"777","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4730","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4731","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4732","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4733","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4734","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4735","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4736","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4737","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4391","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide a phase-in for plasma-derived products under the manufacturer discount program.","url":"https://api.congress.gov/v3/bill/119/s/694?format=json","number":"694","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4738","label":"COSPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4739","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4448","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture and the Secretary of the Interior to establish a standard for the response time to wildfire incidents, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/902?format=json","number":"902","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4740","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4741","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4742","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5339","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defense of Conscience in Health Care Act","url":"https://api.congress.gov/v3/bill/119/s/47?format=json","number":"47","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4743","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4744","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4745","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"5406","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038; text: CR S1042-1043)","type":"SRES","title":"A resolution congratulating the Philadelphia Eagles on their victory in Super Bowl LIX in the successful 105th season of the National Football League.","url":"https://api.congress.gov/v3/bill/119/sres/84?format=json","number":"84","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4746","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4747","label":"COSPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"4221","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to limit cost-sharing for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/529?format=json","number":"529","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4748","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4386","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution supporting afterschool programs and Lights On Afterschool, a national celebration of afterschool programs held on October 24, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/880?format=json","number":"880","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4749","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4750","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4751","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5396","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Hospital Support Act","url":"https://api.congress.gov/v3/bill/119/s/335?format=json","number":"335","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4752","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4753","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4776","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to encourage States to report to the Attorney General certain information regarding inmates who give birth in the custody of law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/687?format=json","number":"687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4754","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5561","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the excise taxes on taxable chemicals and taxable substances.","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","number":"615","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"4755","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4756","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"6085","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Detain and Deport Illegal Aliens Who Assault Cops Act","url":"https://api.congress.gov/v3/bill/119/hr/594?format=json","number":"594","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4757","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4723","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill to amend the Small Business Act to require that plain writing statements regarding the solicitation of subcontractors be included in certain subcontracting plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4758","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4759","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4760","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4761","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4762","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4394","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Disaster Mitigation and Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/336?format=json","number":"336","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4763","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4764","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4590","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Families’ Rights and Responsibilities Act","url":"https://api.congress.gov/v3/bill/119/s/204?format=json","number":"204","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4765","label":"COSPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4766","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4767","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4768","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4769","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4770","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4922","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend title XXVII of the Public Health Service Act to apply financial assistance towards the cost-sharing requirements of health insurance plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","number":"864","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4771","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4772","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4773","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4774","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4775","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4776","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4777","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4268","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the \"Rick Boucher Amphitheater\".","url":"https://api.congress.gov/v3/bill/119/s/815?format=json","number":"815","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4778","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4779","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"4756","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1430-1431)","type":"S","title":"A bill to amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/779?format=json","number":"779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4780","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4781","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5708","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish and implement a multi-year Legal Gold and Mining Partnership Strategy to reduce the negative environmental and social impacts of illicit gold mining in the Western Hemisphere, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/799?format=json","number":"799","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4782","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5889","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish in the Department of State the Office to Monitor and Combat Islamophobia, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/805?format=json","number":"805","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4783","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4784","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4785","label":"COSPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4786","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4787","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4788","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"4676","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4789","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4790","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"4519","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to establish a national plan to coordinate research on epilepsy, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/494?format=json","number":"494","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"4791","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4792","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4793","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5016","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-14","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","url":"https://api.congress.gov/v3/bill/118/sjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"4794","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"4838","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S526-527; text: CR S525)","type":"SRES","title":"A resolution congratulating The Ohio State University football team for winning the 2025 College Football Playoff National Championship.","url":"https://api.congress.gov/v3/bill/119/sres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4795","label":"COSPONSORED","start":{"id":"3974","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","startYear":"2025","name":"Husted, Jon","partyName":"Republican","state":"Ohio","url":"https://api.congress.gov/v3/member/H001104?format=json","bioguideId":"H001104"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4796","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4797","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5002","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1616; text: CR S1609)","type":"SRES","title":"A resolution providing for members on the part of the Senate of the Joint Committee on Printing and the Joint Committee of Congress on the Library.","url":"https://api.congress.gov/v3/bill/119/sres/117?format=json","number":"117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4798","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4799","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4800","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4801","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4836","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish an enhanced deduction for wages paid to automobile manufacturing workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/711?format=json","number":"711","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4802","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4461","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1358)","type":"SRES","title":"A resolution expressing support for the designation of February 23, 2025, to March 1, 2025, as \"National Fentanyl Awareness Week\" and raising awareness of the negative impacts of fentanyl in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/95?format=json","number":"95","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4803","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5849","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Commerce","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 22.","type":"S","title":"DLARA","url":"https://api.congress.gov/v3/bill/119/s/300?format=json","number":"300","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4804","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4805","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4806","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4807","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"6044","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Prison Staff Safety Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/307?format=json","number":"307","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4808","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4809","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5562","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require benefit eligibility determination to be made within a certain period of time.","url":"https://api.congress.gov/v3/bill/119/s/571?format=json","number":"571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4810","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4811","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4812","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4813","label":"COSPONSORED","start":{"id":"3975","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg","startYear":"2025","partyName":"Republican","name":"Justice, James C.","attribution":"Official U.S. Senate Photo","state":"West Virginia","url":"https://api.congress.gov/v3/member/J000312?format=json","bioguideId":"J000312"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4814","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4815","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4816","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4817","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4818","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4819","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4780","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Forest and Rangeland Renewable Resources Research Act of 1978 to modify the forest inventory and analysis program.","url":"https://api.congress.gov/v3/bill/119/s/517?format=json","number":"517","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4820","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4821","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4822","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"7514","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Protecting Infrastructure Investments for Rural America Act","url":"https://api.congress.gov/v3/bill/119/hr/502?format=json","number":"502","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"4823","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4824","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4825","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4826","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4827","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4828","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4309","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038 ; text: CR S1043)","type":"SRES","title":"A resolution congratulating the Jackson State University Tigers for winning the 2024 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/119/sres/85?format=json","number":"85","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4829","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4830","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4831","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4832","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4833","label":"COSPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"4468","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to reform the Federal hiring process, to restore merit to Government service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/591?format=json","number":"591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4834","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5546","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for the imposition of sanctions with respect to forced organ harvesting within the People's Republic of China, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/817?format=json","number":"817","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4835","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4459","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies to repeal ten existing regulations before issuing a new regulation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/712?format=json","number":"712","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4836","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4837","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4838","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4839","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4840","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4520","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Dismantle DEI Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/382?format=json","number":"382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4841","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4842","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5383","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S527; text: CR S525-526)","type":"SRES","title":"A resolution designating the week beginning February 3, 2025, as \"National Tribal Colleges and Universities Week\".","url":"https://api.congress.gov/v3/bill/119/sres/49?format=json","number":"49","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"4843","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4844","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4588","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S486)","type":"SRES","title":"A resolution designating the week of January 26 through February 1, 2025, as \"National School Choice Week\".","url":"https://api.congress.gov/v3/bill/119/sres/44?format=json","number":"44","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"4845","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4846","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4847","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"5002","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1616; text: CR S1609)","type":"SRES","title":"A resolution providing for members on the part of the Senate of the Joint Committee on Printing and the Joint Committee of Congress on the Library.","url":"https://api.congress.gov/v3/bill/119/sres/117?format=json","number":"117","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4848","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4611","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6-7; text: CR S6-7)","type":"SRES","title":"A resolution expressing the thanks of the Senate to the Honorable Patty Murray for her service as President Pro Tempore of the United States Senate and to designate Senator Murray as President Pro Tempore Emerita of the United States Senate.","url":"https://api.congress.gov/v3/bill/119/sres/6?format=json","number":"6","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4849","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4569","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1042)","type":"SRES","title":"A resolution designating February 2025 as \"Hawaiian Language Month\" or \"'Olelo Hawai'i Month\".","url":"https://api.congress.gov/v3/bill/119/sres/83?format=json","number":"83","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4850","label":"COSPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4851","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4852","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4224","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689)","type":"SRES","title":"A resolution expressing support for the designation of November 8, 2024, as \"National First-Generation College Celebration Day\".","url":"https://api.congress.gov/v3/bill/118/sres/903?format=json","number":"903","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4853","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4348","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to furnish hyperbaric oxygen therapy to certain veterans with traumatic brain injury or post-traumatic stress disorder.","url":"https://api.congress.gov/v3/bill/119/s/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4854","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5664","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 840 Front Street in Casselton, North Dakota, as the \"Commander Delbert Austin Olson Post Office\".","url":"https://api.congress.gov/v3/bill/119/s/829?format=json","number":"829","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4855","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4856","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4857","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4858","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4859","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4853","labels":["Legislation"],"properties":{"sponsored_by":"M001190","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4308; text: CR S4271)","type":"SRES","title":"A resolution designating the week of May 5, 2024, through May 11, 2024, as \"Tardive Dyskinesia Awareness Week\".","url":"https://api.congress.gov/v3/bill/118/sres/757?format=json","number":"757","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4860","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4861","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4862","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4863","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4864","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4865","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4866","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"5435","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Shadow Wolves Improvement Act","url":"https://api.congress.gov/v3/bill/119/s/572?format=json","number":"572","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4867","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4868","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4869","label":"COSPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"4870","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4871","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4872","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4873","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4289","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to restore funding for the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA).","url":"https://api.congress.gov/v3/bill/119/s/898?format=json","number":"898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4874","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4875","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4263","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6455)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Youth Justice Action Month\".","url":"https://api.congress.gov/v3/bill/118/sres/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4876","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4877","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4409","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the Secretary of Veterans Affairs to improve telephone communication by the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/831?format=json","number":"831","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4878","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4879","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4880","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4291","labels":["Legislation"],"properties":{"sponsored_by":"W000800","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to hold accountable operators of social media platforms that intentionally or knowingly host false election administration information.","url":"https://api.congress.gov/v3/bill/119/s/840?format=json","number":"840","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4881","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4882","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4883","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5746","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish a commission to review operations at the Veterans Health Administration and submit to Congress reports with respect to that review, and for other programs.","url":"https://api.congress.gov/v3/bill/119/s/787?format=json","number":"787","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4884","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4885","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4886","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4887","label":"COSPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4888","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4889","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5505","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to authorize the Secretary of the Interior to co-locate renewable energy projects on certain existing Federal leased areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/896?format=json","number":"896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4890","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4891","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5506","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the exclusion for certain conservation subsidies to include subsidies for water conservation or efficiency measures, storm water management measures, and wastewater management measures.","url":"https://api.congress.gov/v3/bill/119/s/857?format=json","number":"857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4892","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4893","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4894","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4895","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"6029","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Romance Scam Prevention Act","url":"https://api.congress.gov/v3/bill/119/s/841?format=json","number":"841","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4896","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4897","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5239","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4564)","type":"SRES","title":"A resolution expressing support for the designation of July 2024 as \"National Sarcoma Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/sres/764?format=json","number":"764","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4898","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5990","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-27","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S1433)","type":"SRES","title":"A resolution to recognize and celebrate the 30th anniversary of the Denver International Airport.","url":"https://api.congress.gov/v3/bill/119/sres/102?format=json","number":"102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4899","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4900","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4901","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4902","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4903","label":"COSPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"5991","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal to Edward J. Dwight, Jr., the first African American astronaut candidate in the United States.","url":"https://api.congress.gov/v3/bill/119/s/734?format=json","number":"734","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4904","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4905","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4906","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4907","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4908","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4909","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4910","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4452","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"No Tax Dollars for Terrorists Act","url":"https://api.congress.gov/v3/bill/119/s/226?format=json","number":"226","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4911","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4912","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4913","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4914","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4915","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4916","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4582","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to modify the deadline for filing beneficial ownership information reports for reporting companies formed or registered before January 1, 2024.","url":"https://api.congress.gov/v3/bill/119/s/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"4917","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5005","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize certain programs under the SUPPORT for Patients and Communities Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/500?format=json","number":"500","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"4918","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4541","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to require the Federal financial institutions regulatory agencies to take risk profiles and business models of institutions into account when taking regulatory actions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/427?format=json","number":"427","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4919","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"4920","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"5206","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the CARES Act to remove a requirement on lessors to provide notice to vacate, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/470?format=json","number":"470","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4921","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4922","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"4923","label":"COSPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"7306","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"119","introducedDate":"2025-01-03","policyArea_name":"NONE","latestAction_text":"","type":"HR","title":"Reserved for the Minority Leader.","url":"https://api.congress.gov/v3/bill/119/hr/13?format=json","number":"13","amendmentNumber":"","latestAction":"NONE","latestAction_actionDate":"","latestAction_actionTime":""}}} +{"type":"relationship","id":"4924","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4925","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5255","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Animals","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6382; text: CR S6375)","type":"SRES","title":"A resolution designating November 2, 2024, as \"National Bison Day\".","url":"https://api.congress.gov/v3/bill/118/sres/851?format=json","number":"851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4926","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4927","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4928","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4929","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4930","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"4699","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"U.S. Customs and Border Protection Officer Retirement Technical Corrections Act","url":"https://api.congress.gov/v3/bill/119/s/727?format=json","number":"727","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4931","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4932","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5469","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to increase access to mental health, substance use, and counseling services for first responders, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/666?format=json","number":"666","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"4933","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4934","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4935","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5473","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to facilitate the implementation of security measures undertaken by the United States Postal Service, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/463?format=json","number":"463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4936","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"4628","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"10 Percent Credit Card Interest Rate Cap Act","url":"https://api.congress.gov/v3/bill/119/s/381?format=json","number":"381","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4937","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"4520","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Dismantle DEI Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/382?format=json","number":"382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4938","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4939","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5626","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Secure Rural Schools Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/356?format=json","number":"356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4940","label":"COSPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4941","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5089","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Stopping Political Discrimination in Disaster Assistance Act","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","number":"373","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4942","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4943","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4944","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4945","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5527","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Billion Dollar Boondoggle Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/766?format=json","number":"766","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4946","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4947","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4948","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4949","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4950","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4951","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4952","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4953","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4954","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4955","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4956","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"7100","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Pregnancy Resource Center Defense Act","url":"https://api.congress.gov/v3/bill/119/hr/636?format=json","number":"636","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"4957","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5826","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to allow a period in which members of the clergy may revoke their exemption from Social Security coverage, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/639?format=json","number":"639","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"4958","label":"COSPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"5391","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to reauthorize and expand the National Threat Assessment Center of the Department of Homeland Security.","url":"https://api.congress.gov/v3/bill/119/s/560?format=json","number":"560","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4959","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4960","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4961","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4962","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4963","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4964","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"4965","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4966","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4967","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4968","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"4969","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"4970","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5106","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to increase the accountability of the Office of Special Counsel in enforcing certain provisions of that title vigorously, consistently, and without regard to the political affiliation, career status, or personal characteristics of individuals subject to those provisions, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/806?format=json","number":"806","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4971","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4972","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"4973","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4974","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4975","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"4904","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Forest Protection Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4976","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4977","label":"COSPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"4978","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5604","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/905?format=json","number":"905","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4979","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4696","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Lobbying Disclosure Improvement Act","url":"https://api.congress.gov/v3/bill/119/s/865?format=json","number":"865","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4980","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5608","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1498-1499)","type":"S","title":"A bill to amend the Agricultural Marketing Act of 1946 to establish a voluntary program to reduce food loss and waste, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/835?format=json","number":"835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4981","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4982","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"6008","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to remove the limitation on the amount of a civil penalty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/845?format=json","number":"845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"4983","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4984","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"4985","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4986","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4987","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4988","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5004","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Director of the Bureau of Prisons to be appointed by and with the advice and consent of the Senate.","url":"https://api.congress.gov/v3/bill/119/s/698?format=json","number":"698","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"4989","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4990","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"6473","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committees on Agriculture, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Coordination for Soil Carbon Research and Monitoring Act","url":"https://api.congress.gov/v3/bill/119/hr/641?format=json","number":"641","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"4991","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4992","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4993","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"4994","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"4995","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"5332","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reauthorizing Support and Treatment for Officers in Crisis Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/419?format=json","number":"419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4996","label":"COSPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"4423","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to protect regular order for budgeting for the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/423?format=json","number":"423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"4997","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5524","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/886?format=json","number":"886","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"4998","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"4999","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5000","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5001","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5002","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5003","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5485","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1431-1433)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5004","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5005","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5006","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5007","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5008","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4370","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish limitations on advanced payments for bus rolling stock, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/660?format=json","number":"660","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5009","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5010","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"5488","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-11","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S863)","type":"SRES","title":"A resolution affirming that Hamas cannot retain any political or military control in the Gaza Strip.","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","number":"72","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5011","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5012","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5013","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5014","label":"COSPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5015","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5264","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to improve the repayment by the Secretary of Veterans Affairs of benefits misused by a fiduciary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5016","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5017","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5018","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5019","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5020","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5021","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5022","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5023","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5024","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5025","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5026","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5027","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"5123","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Secretary of Agriculture to convey the Pleasant Valley Ranger District Administrative Site to Gila County, Arizona.","url":"https://api.congress.gov/v3/bill/119/s/700?format=json","number":"700","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5028","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5029","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5030","label":"COSPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"6896","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","type":"HR","title":"CAREERS Act","url":"https://api.congress.gov/v3/bill/119/hr/291?format=json","number":"291","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5031","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5032","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5033","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5034","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5035","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5036","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4924","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/732?format=json","number":"732","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5037","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5038","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5039","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4658","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1359; text: CR S1358-1359)","type":"SRES","title":"A resolution honoring the life of Nebraska community leader Howard L. Hawks.","url":"https://api.congress.gov/v3/bill/119/sres/97?format=json","number":"97","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5040","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5041","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4885","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish an external provider scheduling program to assist the Department of Veterans Affairs in scheduling appointments for care and services under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/654?format=json","number":"654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5042","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5043","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5044","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5045","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5046","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5047","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5048","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5049","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5050","label":"COSPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"5974","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S862)","type":"S","title":"A bill to repeal a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/s/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5051","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5052","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5053","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5054","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5346","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/119/s/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5055","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5056","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5057","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5058","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5059","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5060","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5061","label":"COSPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"5559","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the designation of certain airports as ports of entry.","url":"https://api.congress.gov/v3/bill/119/s/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5062","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5063","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5064","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5065","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5066","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5067","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4392","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S931)","type":"SRES","title":"A resolution expressing the sense of the Senate that member countries of NATO must commit at least 2 percent of their national gross domestic product to national defense spending to hold leadership or benefit at the expense of those countries who meet their obligations.","url":"https://api.congress.gov/v3/bill/119/sres/75?format=json","number":"75","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5068","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5069","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5070","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4255","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the First Rhode Island Regiment, in recognition of their dedicated service during the Revolutionary War.","url":"https://api.congress.gov/v3/bill/119/s/567?format=json","number":"567","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5071","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5072","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5073","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5074","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5180","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Controlled Substances Act and the Controlled Substances Import and Export Act to modify the offenses relating to fentanyl, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/477?format=json","number":"477","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5075","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5076","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5077","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5078","label":"COSPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5079","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5062","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to provide for a memorandum of understanding to address the impacts of a certain record of decision on the Upper Colorado River Basin Fund.","url":"https://api.congress.gov/v3/bill/119/s/887?format=json","number":"887","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5080","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5724","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to increase the number of landlords participating in the Housing Choice Voucher program.","url":"https://api.congress.gov/v3/bill/119/s/890?format=json","number":"890","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5081","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5082","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5083","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5084","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5085","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5070","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require certain interactive computer services to adopt and operate technology verification measures to ensure that users of the platform are not minors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/737?format=json","number":"737","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5086","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5087","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5088","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5089","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5090","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5091","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4805","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 8 of title 5, United States Code, to provide that major rules of the executive branch shall have no force or effect unless a joint resolution of approval is enacted into law.","url":"https://api.congress.gov/v3/bill/119/s/485?format=json","number":"485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5092","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"4888","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the publicly traded partnership ownership structure to energy power generation projects and transportation fuels, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/510?format=json","number":"510","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5093","label":"COSPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"5974","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S862)","type":"S","title":"A bill to repeal a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/s/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5094","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5604","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/905?format=json","number":"905","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5095","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"6031","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization until certain conditions have been met.","url":"https://api.congress.gov/v3/bill/119/s/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5096","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5097","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5098","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5105","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to amend regulations to allow for certain packers to have an interest in market agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/782?format=json","number":"782","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5099","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5100","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5101","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5102","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5103","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5104","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5447","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to modify Reid Vapor Pressure requirements and to provide for the return of certain retired credits, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/593?format=json","number":"593","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5105","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5973","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/541?format=json","number":"541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5106","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5107","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5393","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prevent unfair and deceptive acts or practices and the dissemination of false information related to pharmacy benefit management services for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/526?format=json","number":"526","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5108","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"4423","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to protect regular order for budgeting for the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/423?format=json","number":"423","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5109","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5790","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Stop Funding Global Terrorists Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/313?format=json","number":"313","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5110","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"4451","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Homeowner Energy Freedom Act","url":"https://api.congress.gov/v3/bill/119/s/333?format=json","number":"333","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"5111","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5112","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5113","label":"COSPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"6038","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"SHOW UP Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/354?format=json","number":"354","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5114","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5115","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5116","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5117","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4457","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to call for the immediate extradition or return to the United States of convicted felon Joanne Chesimard, William \"Guillermo\" Morales, and all other fugitives who are receiving safe haven in Cuba to escape prosecution or confinement for criminal offenses committed in the United States.","url":"https://api.congress.gov/v3/bill/119/s/834?format=json","number":"834","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5118","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5119","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4586","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-03","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"STOP MADNESS Act","url":"https://api.congress.gov/v3/bill/119/s/363?format=json","number":"363","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5120","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5711","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5121","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"6031","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization until certain conditions have been met.","url":"https://api.congress.gov/v3/bill/119/s/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5122","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5123","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4579","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to suspend the entry of covered aliens in response to the fentanyl public health crisis.","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","number":"628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5124","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4351","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the consideration of continuity of health care in determining best medical interest under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/540?format=json","number":"540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5125","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5126","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5127","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5128","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5129","label":"COSPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5130","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5131","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5132","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4390","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XI of the Social Security Act to equalize the negotiation period between small-molecule and biologic candidates under the Drug Price Negotiation Program.","url":"https://api.congress.gov/v3/bill/119/s/832?format=json","number":"832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5133","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5134","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5135","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5136","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5137","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5138","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5139","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5087","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S596-597)","type":"SRES","title":"A resolution recognizing religious freedom as a fundamental right, expressing support for international religious freedom as a cornerstone of United States foreign policy, and expressing concern over increased threats to and attacks on religious freedom around the world.","url":"https://api.congress.gov/v3/bill/119/sres/52?format=json","number":"52","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5140","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5141","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5142","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5143","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4700","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to expand eligibility for incentives under the Medicare health professional shortage area bonus program to practitioners furnishing mental health and substance use disorder services.","url":"https://api.congress.gov/v3/bill/119/s/683?format=json","number":"683","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5144","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5145","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5146","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5147","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5148","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5149","label":"COSPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5150","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5151","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5604","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/905?format=json","number":"905","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5152","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5153","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5154","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5155","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5156","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5157","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5158","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5159","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5160","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5161","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5162","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5163","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5164","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5246","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend title 49, United States Code, to provide for air traffic control training improvements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/697?format=json","number":"697","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5165","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5166","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5167","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5168","label":"COSPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5169","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5170","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5171","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4877","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish the Office of Gun Violence Prevention, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/595?format=json","number":"595","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5172","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5173","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5174","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5175","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5176","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5177","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5178","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5179","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5180","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5424","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1433)","type":"SRES","title":"A resolution condemning the rejection by the United States of a United Nations resolution condemning the illegal invasion of Ukraine by the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/sres/103?format=json","number":"103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5181","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5182","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5183","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5184","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5185","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5186","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5187","label":"COSPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5188","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4453","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/160?format=json","number":"160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5189","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5190","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5191","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5192","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5193","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5980","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S228-231)","type":"S","title":"Wildfire Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/140?format=json","number":"140","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5194","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5979","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S336-337)","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","url":"https://api.congress.gov/v3/bill/119/s/211?format=json","number":"211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5195","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5196","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5197","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5198","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5199","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5200","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5201","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5181","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-04","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Ocean Energy Management relating to \"Protection of Marine Archaeological Resources\".","url":"https://api.congress.gov/v3/bill/119/sjres/11?format=json","number":"11","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:21:55"}}} +{"type":"relationship","id":"5202","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5203","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"7328","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th anniversary of the liberation of the Auschwitz extermination camp in Nazi-occupied Poland and International Holocaust Remembrance Day.","url":"https://api.congress.gov/v3/bill/119/hres/87?format=json","number":"87","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"5204","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5205","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5206","label":"COSPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5207","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5208","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4224","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6697; text: CR S6689)","type":"SRES","title":"A resolution expressing support for the designation of November 8, 2024, as \"National First-Generation College Celebration Day\".","url":"https://api.congress.gov/v3/bill/118/sres/903?format=json","number":"903","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5209","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5210","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5211","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5212","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5213","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5564","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the exemption for telehealth services from certain high deductible health plan rules.","url":"https://api.congress.gov/v3/bill/119/s/763?format=json","number":"763","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5214","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5215","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5216","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5217","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4723","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"A bill to amend the Small Business Act to require that plain writing statements regarding the solicitation of subcontractors be included in certain subcontracting plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/592?format=json","number":"592","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5218","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"6033","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to extend the period of time for making S corporation elections, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/684?format=json","number":"684","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5219","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"6434","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","number":"646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5220","label":"COSPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5221","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5222","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5223","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5224","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5225","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5346","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/119/s/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5226","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4348","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to furnish hyperbaric oxygen therapy to certain veterans with traumatic brain injury or post-traumatic stress disorder.","url":"https://api.congress.gov/v3/bill/119/s/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5227","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5228","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5229","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5104","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Infrastructure Investment and Jobs Act to require the Secretary of Energy to establish an abandoned wells research, development, and demonstration program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/818?format=json","number":"818","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5230","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5231","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5232","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5233","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5711","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/706?format=json","number":"706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5234","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5235","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5236","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5237","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4370","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish limitations on advanced payments for bus rolling stock, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/660?format=json","number":"660","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5238","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5239","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5240","label":"COSPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"5247","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to contribute funds and artifacts to the Theodore Roosevelt Presidential Library in Medora, North Dakota.","url":"https://api.congress.gov/v3/bill/119/s/675?format=json","number":"675","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5241","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5604","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to require the establishment within the Department of Defense of a pilot program on arsenal workload sustainment, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/905?format=json","number":"905","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5242","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5243","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5255","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","introducedDate":"2024-09-24","policyArea_name":"Animals","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6382; text: CR S6375)","type":"SRES","title":"A resolution designating November 2, 2024, as \"National Bison Day\".","url":"https://api.congress.gov/v3/bill/118/sres/851?format=json","number":"851","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5244","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5726","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/708?format=json","number":"708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5245","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5246","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5247","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5248","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5249","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5250","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5251","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5252","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5253","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5973","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/541?format=json","number":"541","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5254","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5488","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-11","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S863)","type":"SRES","title":"A resolution affirming that Hamas cannot retain any political or military control in the Gaza Strip.","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","number":"72","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5255","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4420","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit United States cooperation with the International Criminal Court, the use of the Economic Support Fund to support the Palestinian Authority, and any Federal funding for the ICC.","url":"https://api.congress.gov/v3/bill/119/s/493?format=json","number":"493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5256","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5257","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5942","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2023-10-04","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4958; text: CR S4955)","type":"SRES","title":"A resolution expressing support for the designation of October 1 through October 7, 2023, as \"National 4-H Week\".","url":"https://api.congress.gov/v3/bill/118/sres/399?format=json","number":"399","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5258","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"5666","labels":["Legislation"],"properties":{"sponsored_by":"C001096","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Fair Access to Banking Act","url":"https://api.congress.gov/v3/bill/119/s/401?format=json","number":"401","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5259","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"4520","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Dismantle DEI Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/382?format=json","number":"382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5260","label":"COSPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"6046","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-01-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Master Sergeant Roddie Edmonds Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/262?format=json","number":"262","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5261","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5022","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to increase the standard charitable mileage rate for delivery of meals to elderly, disabled, frail, and at-risk individuals.","url":"https://api.congress.gov/v3/bill/119/s/895?format=json","number":"895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5262","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5386","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disclosing Foreign Influence in Lobbying Act","url":"https://api.congress.gov/v3/bill/119/s/856?format=json","number":"856","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5263","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5264","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4265","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-16","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6068; text: CR S6055-6056)","type":"SRES","title":"A resolution expressing support for the designation of the week of September 21 through September 28, 2024, as \"National Estuaries Week\".","url":"https://api.congress.gov/v3/bill/118/sres/820?format=json","number":"820","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5265","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5266","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5627","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Hearing Protection Act","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","number":"364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5267","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5268","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5269","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5270","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5991","labels":["Legislation"],"properties":{"sponsored_by":"B001267","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal to Edward J. Dwight, Jr., the first African American astronaut candidate in the United States.","url":"https://api.congress.gov/v3/bill/119/s/734?format=json","number":"734","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5271","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5272","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5273","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5559","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the designation of certain airports as ports of entry.","url":"https://api.congress.gov/v3/bill/119/s/677?format=json","number":"677","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5274","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5561","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the excise taxes on taxable chemicals and taxable substances.","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","number":"615","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5275","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5350","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Fair Credit Reporting Act to address the placement of security freezes for protected consumers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/619?format=json","number":"619","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5276","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5277","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5278","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"5083","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to pilot the use of image technician positions in the U.S. Customs and Border Protection Office of Field Operations.","url":"https://api.congress.gov/v3/bill/119/s/578?format=json","number":"578","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5279","label":"COSPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5280","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5281","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5282","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5283","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5284","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5285","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5286","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5287","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5288","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5705","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for increased reporting regarding Department of State Taiwan guidelines.","url":"https://api.congress.gov/v3/bill/119/s/821?format=json","number":"821","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5289","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5290","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5291","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5265","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to regulate large capacity ammunition feeding devices.","url":"https://api.congress.gov/v3/bill/119/s/803?format=json","number":"803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5292","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5293","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5294","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5295","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5296","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5297","label":"COSPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5298","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5299","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5300","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5162","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize the National Flood Insurance Program.","url":"https://api.congress.gov/v3/bill/119/s/824?format=json","number":"824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5301","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4359","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-07","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 51 - 45. Record Vote Number: 100. (CR S1455-1456)","type":"S","title":"Protection of Women and Girls in Sports Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/9?format=json","number":"9","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5302","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5303","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5304","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5305","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5306","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4902","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to extend increased dependency and indemnity compensation paid to surviving spouses of veterans who die from amyotrophic lateral sclerosis, regardless of how long the veterans had such disease prior to death, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/749?format=json","number":"749","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5307","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5308","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5309","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5071","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Energy Act of 2020 to include critical materials in the definition of critical mineral, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/714?format=json","number":"714","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5310","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4889","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to transfer the functions, duties, responsibilities, assets, liabilities, orders, determinations, rules, regulations, permits, grants, loans, contracts, agreements, certificates, licenses, and privileges of the United States Agency for International Development relating to implementing and administering the Food for Peace Act to the Department of Agriculture.","url":"https://api.congress.gov/v3/bill/119/s/525?format=json","number":"525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5311","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5312","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5813","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish the Health Engagement Hub Demonstration Program to increase access to treatment for opioid use disorder and other substance use disorders, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/665?format=json","number":"665","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5313","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"7022","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-07-26","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4366) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the joint resolution (S.J. Res. 9) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Lesser Prairie-Chicken; Threatened Status With Section 4(d) Rule for the Northern Distinct Population Segment and Endangered Status for the Southern Distinct Population Segment\"; and providing for consideration of the joint resolution (S.J. Res. 24) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Endangered Species Status for Northern Long-Eared Bat\".","url":"https://api.congress.gov/v3/bill/118/hres/614?format=json","number":"614","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":"14:02:56"}}} +{"type":"relationship","id":"5314","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"6748","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Recognizing the importance of diversity, equity, and inclusion efforts in higher education.","url":"https://api.congress.gov/v3/bill/118/hres/608?format=json","number":"608","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5315","label":"COSPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"5562","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require benefit eligibility determination to be made within a certain period of time.","url":"https://api.congress.gov/v3/bill/119/s/571?format=json","number":"571","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5316","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5757","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-30","latestAction_text":"Cloture on the motion to proceed to the measure invoked in Senate by Yea-Nay Vote. 82 - 12. Record Vote Number: 110. (CR S1596)","type":"S","title":"HALT Fentanyl Act","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","number":"331","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5317","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5318","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5319","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5320","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5639","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of Steven D. Symms, former United States Senator for the State of Idaho.","url":"https://api.congress.gov/v3/bill/118/sres/813?format=json","number":"813","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5321","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4496","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1581-1583)","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","url":"https://api.congress.gov/v3/bill/119/sres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5322","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5346","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Northern Border Security Enhancement and Review Act","url":"https://api.congress.gov/v3/bill/119/s/850?format=json","number":"850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5323","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5324","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"5325","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5326","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5327","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4775","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand and modify the grant program of the Department of Veterans Affairs to provide innovative transportation options to veterans in highly rural areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/784?format=json","number":"784","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5328","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5890","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit discrimination based on an individual's texture or style of hair.","url":"https://api.congress.gov/v3/bill/119/s/751?format=json","number":"751","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5329","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5330","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5331","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5332","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"5047","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide incentives to physicians to practice in rural and medically underserved communities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/709?format=json","number":"709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5333","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5334","label":"COSPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5335","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5336","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4595","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1605-1606)","type":"S","title":"A bill to require the Secretary of the Treasury to mint commemorative coins in recognition of the life and legacy of Roberto Clemente.","url":"https://api.congress.gov/v3/bill/119/s/877?format=json","number":"877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5337","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5338","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5339","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"5340","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5341","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5825","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the employer-provided child care credit and the dependent care assistance exclusion.","url":"https://api.congress.gov/v3/bill/119/s/847?format=json","number":"847","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5342","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5343","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5344","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5345","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5346","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4735","labels":["Legislation"],"properties":{"sponsored_by":"R000122","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1347)","type":"S","title":"A bill to amend the Federal Food, Drug, and Cosmetic Act with respect to molecularly targeted pediatric cancer investigations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/705?format=json","number":"705","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5347","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5348","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5349","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5350","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"7514","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-16","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","type":"HR","title":"Protecting Infrastructure Investments for Rural America Act","url":"https://api.congress.gov/v3/bill/119/hr/502?format=json","number":"502","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"5351","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5352","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4886","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude certain broadband grants from gross income.","url":"https://api.congress.gov/v3/bill/119/s/674?format=json","number":"674","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5353","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5354","label":"COSPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5355","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5356","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5357","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5626","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Secure Rural Schools Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/356?format=json","number":"356","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5358","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5359","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5360","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5361","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5362","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5925","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"PSA Screening for HIM Act","url":"https://api.congress.gov/v3/bill/119/s/297?format=json","number":"297","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5363","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5364","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5365","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5366","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5367","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"4203","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for examination and disclosure with respect to Presidential income tax returns, to amend the chapter 131 of title 5, United States Code, to require the disclosure of certain tax returns by Presidents and certain candidates for the office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/588?format=json","number":"588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5368","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5394","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Federal Trade Commission to study the role of intermediaries in the pharmaceutical supply chain and provide Congress with appropriate policy recommendations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/527?format=json","number":"527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5369","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5393","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prevent unfair and deceptive acts or practices and the dissemination of false information related to pharmacy benefit management services for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/526?format=json","number":"526","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5370","label":"COSPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5371","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5372","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5373","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5374","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5375","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4889","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to transfer the functions, duties, responsibilities, assets, liabilities, orders, determinations, rules, regulations, permits, grants, loans, contracts, agreements, certificates, licenses, and privileges of the United States Agency for International Development relating to implementing and administering the Food for Peace Act to the Department of Agriculture.","url":"https://api.congress.gov/v3/bill/119/s/525?format=json","number":"525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5376","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5485","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1431-1433)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5377","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5378","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5379","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5087","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S596-597)","type":"SRES","title":"A resolution recognizing religious freedom as a fundamental right, expressing support for international religious freedom as a cornerstone of United States foreign policy, and expressing concern over increased threats to and attacks on religious freedom around the world.","url":"https://api.congress.gov/v3/bill/119/sres/52?format=json","number":"52","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5380","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5381","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4701","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve the effectiveness of body armor issued to female agents and officers of the Department of Homeland Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/693?format=json","number":"693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5382","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5383","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4370","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish limitations on advanced payments for bus rolling stock, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/660?format=json","number":"660","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5384","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5385","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5386","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5387","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5388","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5389","label":"COSPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5390","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5524","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/886?format=json","number":"886","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5391","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4183","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458-6459)","type":"SRES","title":"A resolution recognizing Big Brothers Big Sisters of America on its 120th anniversary.","url":"https://api.congress.gov/v3/bill/118/sres/883?format=json","number":"883","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5392","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5393","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4390","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XI of the Social Security Act to equalize the negotiation period between small-molecule and biologic candidates under the Drug Price Negotiation Program.","url":"https://api.congress.gov/v3/bill/119/s/832?format=json","number":"832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5394","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5545","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of funds to implement, administer, or enforce measures requiring certain employees to refer to an individual by the preferred pronouns of such individual or a name other than the legal name of such individual, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/839?format=json","number":"839","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5395","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5396","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5397","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5043","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to express findings relating to the recreational trails program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/811?format=json","number":"811","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5398","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5399","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5400","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5401","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5402","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5403","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5404","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4885","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish an external provider scheduling program to assist the Department of Veterans Affairs in scheduling appointments for care and services under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/654?format=json","number":"654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5405","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5406","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5407","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5408","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4579","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to suspend the entry of covered aliens in response to the fentanyl public health crisis.","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","number":"628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5409","label":"COSPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"4351","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require the consideration of continuity of health care in determining best medical interest under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/540?format=json","number":"540","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5410","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5411","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5412","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5413","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5414","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5415","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5406","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038; text: CR S1042-1043)","type":"SRES","title":"A resolution congratulating the Philadelphia Eagles on their victory in Super Bowl LIX in the successful 105th season of the National Football League.","url":"https://api.congress.gov/v3/bill/119/sres/84?format=json","number":"84","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5416","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5417","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5418","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5304","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal Credit Union Act to modify the frequency of board of directors meetings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/522?format=json","number":"522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5419","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5001","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Right to Contraception Act","url":"https://api.congress.gov/v3/bill/119/s/422?format=json","number":"422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5420","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5421","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"5422","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"4257","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S599-600; text: CR S598-599)","type":"SRES","title":"A resolution recognizing January 2025 as \"National Mentoring Month\".","url":"https://api.congress.gov/v3/bill/119/sres/55?format=json","number":"55","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5423","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5788","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 6.","type":"S","title":"Brownfields Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/347?format=json","number":"347","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5424","label":"COSPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"5984","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"5425","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5904","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to support State, Tribal, and local efforts to remove access to firearms from individuals who are a danger to themselves or others pursuant to court orders for this purpose.","url":"https://api.congress.gov/v3/bill/119/s/889?format=json","number":"889","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5426","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5427","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5428","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5429","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5430","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5431","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5432","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4983","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Sea Turtle Rescue Assistance and Rehabilitation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/843?format=json","number":"843","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5433","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5324","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to accelerate workplace time-to-contract under the National Labor Relations Act.","url":"https://api.congress.gov/v3/bill/119/s/844?format=json","number":"844","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5434","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5435","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5436","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4617","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to enhance Social Security benefits and ensure the long-term solvency of the Social Security program.","url":"https://api.congress.gov/v3/bill/119/s/770?format=json","number":"770","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5437","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5438","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5907","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to fully fund the Prevention and Public Health Fund and reaffirm the importance of prevention in the United States healthcare system.","url":"https://api.congress.gov/v3/bill/119/s/786?format=json","number":"786","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5439","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5440","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5970","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"Health","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1434; text: CR S1433)","type":"SRES","title":"A resolution designating February 27, 2025, as \"Rare Disease Day\".","url":"https://api.congress.gov/v3/bill/119/sres/104?format=json","number":"104","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5441","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"4577","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/s/735?format=json","number":"735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5442","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5443","label":"COSPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5444","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5445","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5446","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4755","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1606-1607)","type":"S","title":"A bill to amend the Fair Labor Standards Act of 1938 to remove the overtime wages exemption for certain employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/893?format=json","number":"893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5447","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4328","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prohibit the sale and distribution of expanded polystyrene food service ware, expanded polystyrene loose fill, and expanded polystyrene coolers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/897?format=json","number":"897","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5448","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5449","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4389","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Camp Lejeune Justice Act of 2022 to make technical corrections.","url":"https://api.congress.gov/v3/bill/119/s/907?format=json","number":"907","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5450","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5097","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Recover Fraudulent COVID Funds Act","url":"https://api.congress.gov/v3/bill/119/s/121?format=json","number":"121","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5451","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5452","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4398","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"Lumbee Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/107?format=json","number":"107","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5453","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4528","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting Higher Education from the Chinese Communist Party Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/108?format=json","number":"108","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5454","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5455","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4190","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to repeal certain executive orders.","url":"https://api.congress.gov/v3/bill/119/s/837?format=json","number":"837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5456","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4982","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Children's Online Privacy Protection Act of 1998 to strengthen protections relating to the online collection, use, and disclosure of personal information of children and teens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/836?format=json","number":"836","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5457","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"7022","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2023-07-26","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4366) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the joint resolution (S.J. Res. 9) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Lesser Prairie-Chicken; Threatened Status With Section 4(d) Rule for the Northern Distinct Population Segment and Endangered Status for the Southern Distinct Population Segment\"; and providing for consideration of the joint resolution (S.J. Res. 24) providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Endangered Species Status for Northern Long-Eared Bat\".","url":"https://api.congress.gov/v3/bill/118/hres/614?format=json","number":"614","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-26","latestAction_actionTime":"14:02:56"}}} +{"type":"relationship","id":"5458","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5459","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5610","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1462-1463)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide tax rate parity among all tobacco products, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/819?format=json","number":"819","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5460","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5461","label":"COSPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"5464","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to reauthorize Long Island Sound programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/781?format=json","number":"781","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5462","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5264","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to improve the repayment by the Secretary of Veterans Affairs of benefits misused by a fiduciary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/892?format=json","number":"892","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5463","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5464","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5465","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5092","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Charitable Act","url":"https://api.congress.gov/v3/bill/119/s/317?format=json","number":"317","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5466","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4270","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend the Commander John Scott Hannon Veterans Mental Health Care Improvement Act of 2019 to modify and reauthorize the Staff Sergeant Parker Gordon Fox Suicide Prevention Grant Program of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/793?format=json","number":"793","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5467","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5468","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5469","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4816","labels":["Legislation"],"properties":{"sponsored_by":"M001111","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish the Veteran Family Resource Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/701?format=json","number":"701","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5470","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4393","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/s/475?format=json","number":"475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5471","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5169","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to prohibit the Securities and Exchange Commission from requiring that personally identifiable information be collected under consolidated audit trail reporting requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/658?format=json","number":"658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5472","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4885","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish an external provider scheduling program to assist the Department of Veterans Affairs in scheduling appointments for care and services under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/654?format=json","number":"654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5473","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5474","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4518","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to make certain provisions with respect to qualified ABLE programs permanent.","url":"https://api.congress.gov/v3/bill/119/s/627?format=json","number":"627","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5475","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5393","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to prevent unfair and deceptive acts or practices and the dissemination of false information related to pharmacy benefit management services for prescription drugs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/526?format=json","number":"526","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5476","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"5349","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish an integrated project team to improve the process for scheduling appointments for health care from the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/607?format=json","number":"607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5477","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4580","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-13","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Overdraft Lending: Very Large Financial Institutions\".","url":"https://api.congress.gov/v3/bill/119/sjres/18?format=json","number":"18","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5478","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5479","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5480","label":"COSPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5481","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5482","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5483","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"4891","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend titles 10 and 38, United States Code, to improve benefits and services for surviving spouses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/410?format=json","number":"410","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5484","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5485","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"4321","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-07-31","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5677; text: CR S5689-5690)","type":"SRES","title":"A resolution designating August 1, 2024, as \"Gold Star Children's Day\".","url":"https://api.congress.gov/v3/bill/118/sres/791?format=json","number":"791","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"5486","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5487","label":"COSPONSORED","start":{"id":"4013","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg","startYear":"2025","partyName":"Democratic","name":"Alsobrooks, Angela D.","state":"Maryland","url":"https://api.congress.gov/v3/member/A000382?format=json","bioguideId":"A000382"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5488","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4576","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to curtail the political weaponization of Federal banking agencies by eliminating reputational risk as a component of the supervision of depository institutions.","url":"https://api.congress.gov/v3/bill/119/s/875?format=json","number":"875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5489","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5490","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5491","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4425","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to improve the missile defense capabilities of the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/435?format=json","number":"435","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5492","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5493","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5494","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4419","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to enhance bilateral defense cooperation between the United States and Israel, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/554?format=json","number":"554","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5495","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5070","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to require certain interactive computer services to adopt and operate technology verification measures to ensure that users of the platform are not minors, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/737?format=json","number":"737","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5496","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4590","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Families’ Rights and Responsibilities Act","url":"https://api.congress.gov/v3/bill/119/s/204?format=json","number":"204","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5497","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5498","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5499","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4836","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to establish an enhanced deduction for wages paid to automobile manufacturing workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/711?format=json","number":"711","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5500","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5501","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5502","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4350","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to prohibit the purchase or lease of agricultural land in the United States by persons associated with certain foreign governments, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/618?format=json","number":"618","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5503","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5504","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5505","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"5758","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Educational Choice for Children Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/292?format=json","number":"292","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5506","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4582","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend title 31, United States Code, to modify the deadline for filing beneficial ownership information reports for reporting companies formed or registered before January 1, 2024.","url":"https://api.congress.gov/v3/bill/119/s/505?format=json","number":"505","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5507","label":"COSPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"4588","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S486)","type":"SRES","title":"A resolution designating the week of January 26 through February 1, 2025, as \"National School Choice Week\".","url":"https://api.congress.gov/v3/bill/119/sres/44?format=json","number":"44","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5508","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4429","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1581)","type":"S","title":"A bill to require executive agencies to take steps to better meet the statutory deadline for processing communications use applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/866?format=json","number":"866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5509","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"6031","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization until certain conditions have been met.","url":"https://api.congress.gov/v3/bill/119/s/774?format=json","number":"774","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5510","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4942","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to redesignate the National Historic Trails Interpretive Center in Casper, Wyoming, as the \"Barbara L. Cubin National Historic Trails Interpretive Center\".","url":"https://api.congress.gov/v3/bill/119/s/790?format=json","number":"790","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5511","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5512","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5628","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Nancy Gardner Sewell Medicare Multi-Cancer Early Detection Screening Coverage Act","url":"https://api.congress.gov/v3/bill/119/s/339?format=json","number":"339","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"5513","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5514","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5515","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5516","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4924","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/732?format=json","number":"732","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5517","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5518","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5519","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5561","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the excise taxes on taxable chemicals and taxable substances.","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","number":"615","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5520","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5521","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5522","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4431","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S977-978)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/587?format=json","number":"587","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5523","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4659","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-13","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S982)","type":"SRES","title":"A resolution calling on the United Kingdom, France, and Germany (E3) to initiate the snapback of sanctions on Iran under United Nations Security Council Resolution 2231 (2015).","url":"https://api.congress.gov/v3/bill/119/sres/81?format=json","number":"81","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5524","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4540","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981-982)","type":"SRES","title":"A resolution expressing gratitude to the Joint Congressional Committee on Inaugural Ceremonies, the Architect of the Capitol, the Sergeant at Arms, the Secretary of the Senate, law enforcement officers, emergency personnel, and volunteers for their support in making the Presidential Inauguration a success.","url":"https://api.congress.gov/v3/bill/119/sres/80?format=json","number":"80","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5525","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"4803","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"National Right-to-Work Act","url":"https://api.congress.gov/v3/bill/119/s/533?format=json","number":"533","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5526","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5527","label":"COSPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"5176","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to repeal the small business loan data collection requirements under the Equal Credit Opportunity Act.","url":"https://api.congress.gov/v3/bill/119/s/557?format=json","number":"557","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5528","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5529","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5102","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Mining Waste, Fraud, and Abuse Prevention Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/859?format=json","number":"859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5530","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5624","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to amend title 10, United States Code, to preserve and recapitalize the fighter aircraft capabilities of the Air Force and its reserve components, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/873?format=json","number":"873","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5531","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5532","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5424","labels":["Legislation"],"properties":{"sponsored_by":"G000574","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1433)","type":"SRES","title":"A resolution condemning the rejection by the United States of a United Nations resolution condemning the illegal invasion of Ukraine by the Russian Federation.","url":"https://api.congress.gov/v3/bill/119/sres/103?format=json","number":"103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5533","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5534","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5535","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5536","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5537","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5566","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Food Security Act of 1985 to reauthorize the voluntary public access and habitat incentive program.","url":"https://api.congress.gov/v3/bill/119/s/704?format=json","number":"704","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5538","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5709","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require a study on the quality of care difference between mental health and addiction therapy care provided by health care providers of the Department of Veterans Affairs compared to non-Department providers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/702?format=json","number":"702","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5539","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5540","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"5630","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide special rules for the taxation of certain residents of Taiwan with income from sources within the United States.","url":"https://api.congress.gov/v3/bill/119/s/199?format=json","number":"199","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5541","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5542","label":"COSPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"4581","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S973-974)","type":"S","title":"A bill to provide for the consideration of a definition of antisemitism set forth by the International Holocaust Remembrance Alliance for the enforcement of Federal antidiscrimination laws concerning education programs or activities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/558?format=json","number":"558","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5543","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5595","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Youth Poisoning Protection Act","url":"https://api.congress.gov/v3/bill/119/s/289?format=json","number":"289","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5544","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5545","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4615","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the National Labor Relations Act, the Labor Management Relations Act, 1947, and the Labor-Management Reporting and Disclosure Act of 1959, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/852?format=json","number":"852","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5546","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5547","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5764","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1498)","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize the program relating to lifespan respite care, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/830?format=json","number":"830","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5548","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4546","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-01-15","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Wounded Knee Massacre Memorial and Sacred Site Act","url":"https://api.congress.gov/v3/bill/119/s/105?format=json","number":"105","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5549","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4356","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-15","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Repealing Big Brother Overreach Act","url":"https://api.congress.gov/v3/bill/119/s/100?format=json","number":"100","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5550","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4963","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Truth in Lending Act to address certain issues relating to the extension of consumer credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/780?format=json","number":"780","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5551","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5552","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5553","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5554","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5908","labels":["Legislation"],"properties":{"sponsored_by":"B001277","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend chapter 44 of title 18, United States Code, to require the safe storage of firearms, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/726?format=json","number":"726","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5555","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4924","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/732?format=json","number":"732","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5556","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5217","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Education relating to \"Nondiscrimination on the Basis of Sex in Education Programs or Activities Receiving Federal Financial Assistance\".","url":"https://api.congress.gov/v3/bill/118/sjres/96?format=json","number":"96","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5557","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4878","labels":["Legislation"],"properties":{"sponsored_by":"M001169","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to prohibit certain discrimination against athletes on the basis of sex by State athletic associations, intercollegiate athletic associations, and covered institutions of higher education, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/543?format=json","number":"543","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5558","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5559","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"5594","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure due process protections of individuals in the United States against unlawful detention based solely on a protected characteristic.","url":"https://api.congress.gov/v3/bill/119/s/634?format=json","number":"634","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5560","label":"COSPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"6473","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Science, Space, and Technology, and in addition to the Committees on Agriculture, and Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Coordination for Soil Carbon Research and Monitoring Act","url":"https://api.congress.gov/v3/bill/119/hr/641?format=json","number":"641","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5561","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5562","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4390","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XI of the Social Security Act to equalize the negotiation period between small-molecule and biologic candidates under the Drug Price Negotiation Program.","url":"https://api.congress.gov/v3/bill/119/s/832?format=json","number":"832","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5563","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5085","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for modifications to ending trafficking in government contracting, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/426?format=json","number":"426","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5564","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5565","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5971","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1130-1131)","type":"S","title":"A bill to prohibit funding for the Montreal Protocol on Substances that Deplete the Ozone Layer and the United Nations Framework Convention on Climate Change until China is no longer defined as a developing country.","url":"https://api.congress.gov/v3/bill/119/s/680?format=json","number":"680","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5566","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5122","labels":["Legislation"],"properties":{"sponsored_by":"K000377","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Office of National Drug Control Prevention Act of 1998 to include new requirements for assessments and reports, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/767?format=json","number":"767","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5567","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5568","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5067","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"A bill to provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/s/807?format=json","number":"807","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5569","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4539","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require the United States Postal Service to apply certain requirements when closing a processing, shipping, delivery, or other facility supporting a post office.","url":"https://api.congress.gov/v3/bill/119/s/661?format=json","number":"661","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5570","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4923","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to provide a moratorium on all Federal research grants provided to any institution of higher education or other research institute that is conducting dangerous gain-of-function research.","url":"https://api.congress.gov/v3/bill/119/s/738?format=json","number":"738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5571","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5389","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to streamline enrollment under the Medicaid program of certain providers across State lines.","url":"https://api.congress.gov/v3/bill/119/s/752?format=json","number":"752","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5572","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5573","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5574","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4460","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to apply the Freedom of Information Act to actions and decisions of the Assistant Secretary of Commerce for Communications and Information in carrying out the Broadband Equity, Access, and Deployment Program.","url":"https://api.congress.gov/v3/bill/119/s/713?format=json","number":"713","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5575","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5576","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5048","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Federal Communications Commission to issue reports after activation of the Disaster Information Reporting System and to make improvements to network outage reporting, to categorize public safety telecommunicators as a protective service occupation under the Standard Occupational Classification system, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/725?format=json","number":"725","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5577","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5004","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Director of the Bureau of Prisons to be appointed by and with the advice and consent of the Senate.","url":"https://api.congress.gov/v3/bill/119/s/698?format=json","number":"698","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5578","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5080","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to terminate membership by the United States in the United Nations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/669?format=json","number":"669","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5579","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"5263","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-16","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Coal- and Oil-Fired Electric Utility Steam Generating Units Review of the Residual Risk and Technology Review\".","url":"https://api.congress.gov/v3/bill/118/sjres/88?format=json","number":"88","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5580","label":"COSPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"4169","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1303; text: CR S1136-1137)","type":"SRES","title":"A resolution expressing support for the designation of February 15 through February 22, 2025, as \"National FFA Week\", recognizing the important role of the National FFA Organization in developing the next generation of leaders who will change the world, and celebrating the 90th anniversary of New Farmers of America and the 75th anniversary of the Future Farmers of America Federal charter.","url":"https://api.congress.gov/v3/bill/119/sres/89?format=json","number":"89","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5581","label":"COSPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"5311","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-09-19","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Accredited Investor Definition Review Act","url":"https://api.congress.gov/v3/bill/118/s/5121?format=json","number":"5121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5582","label":"COSPONSORED","start":{"id":"4019","labels":["Person"],"properties":{"updateDate":"2025-03-05T20:48:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000299_200.jpg","district":"21","startYear":"1993","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Diaz-Balart, Lincoln","state":"Florida","endYear":"2011","url":"https://api.congress.gov/v3/member/D000299?format=json","bioguideId":"D000299"}},"end":{"id":"4405","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"SHIELD Act","url":"https://api.congress.gov/v3/bill/118/s/5166?format=json","number":"5166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5583","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5584","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5585","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5586","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5587","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5588","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"5008","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-04-25","latestAction_text":"Held at the desk.","type":"S","title":"Mammoth Cave National Park Boundary Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1277?format=json","number":"1277","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":"18:25:35"}}} +{"type":"relationship","id":"5589","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5590","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5591","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"7855","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Health Care Affordability Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/247?format=json","number":"247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"5592","label":"COSPONSORED","start":{"id":"4020","labels":["Person"],"properties":{"updateDate":"2025-03-05T16:51:50Z","chamber":"House of Representatives","district":"18","imageUrl":"https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg","startYear":"2025","partyName":"Democratic","name":"Turner, Sylvester","attribution":"Image courtesy of the Member","state":"Texas","endYear":"2025","url":"https://api.congress.gov/v3/member/T000489?format=json","bioguideId":"T000489"}},"end":{"id":"5798","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Energy","latestAction_text":"By Senator Carper from Committee on Environment and Public Works filed written report. Report No. 118-182.","type":"S","title":"ADVANCE Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1111?format=json","number":"1111","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"5593","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"7401","labels":["Legislation"],"properties":{"sponsored_by":"C001136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide that certain payments to foreign related parties subject to sufficient foreign tax are not treated as base erosion payments.","url":"https://api.congress.gov/v3/bill/119/hr/1911?format=json","number":"1911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5594","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5595","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"5596","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5597","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"6218","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week beginning November 11, 2024, as \"National Pregnancy Center Week\" to recognize the vital role that community-supported pregnancy centers play in saving lives and serving women and men faced with difficult pregnancy decisions.","url":"https://api.congress.gov/v3/bill/118/hres/1509?format=json","number":"1509","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5598","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"5599","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5600","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5601","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5602","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5603","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"4415","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide for the application of a cost-of-living adjustment to the non-labor related portion for hospital outpatient department services furnished in Alaska and Hawaii.","url":"https://api.congress.gov/v3/bill/119/s/551?format=json","number":"551","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5604","label":"COSPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5605","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4889","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to transfer the functions, duties, responsibilities, assets, liabilities, orders, determinations, rules, regulations, permits, grants, loans, contracts, agreements, certificates, licenses, and privileges of the United States Agency for International Development relating to implementing and administering the Food for Peace Act to the Department of Agriculture.","url":"https://api.congress.gov/v3/bill/119/s/525?format=json","number":"525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5606","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4473","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to prohibit Big Cypress National Preserve from being designated as wilderness or as a component of the National Wilderness Preservation System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/446?format=json","number":"446","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5607","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"6040","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"RETIREES FIRST Act","url":"https://api.congress.gov/v3/bill/119/s/358?format=json","number":"358","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5608","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4954","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"Emergency Fuel Reduction Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/395?format=json","number":"395","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5609","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4352","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to modify eligibility requirements for amateur sports governing organizations.","url":"https://api.congress.gov/v3/bill/119/s/405?format=json","number":"405","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5610","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4899","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Farm to Fly Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/144?format=json","number":"144","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5611","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4496","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1581-1583)","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","url":"https://api.congress.gov/v3/bill/119/sres/106?format=json","number":"106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5612","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4309","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1038 ; text: CR S1043)","type":"SRES","title":"A resolution congratulating the Jackson State University Tigers for winning the 2024 Celebration Bowl.","url":"https://api.congress.gov/v3/bill/119/sres/85?format=json","number":"85","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5613","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"5317","labels":["Legislation"],"properties":{"sponsored_by":"H000601","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-06-05","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Commerce relating to \"Revision of Firearms License Requirements\".","url":"https://api.congress.gov/v3/bill/118/sjres/93?format=json","number":"93","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5614","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"5754","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to prohibit Federal Medicaid funding for the administrative costs of providing health benefits to individuals who are unauthorized immigrants.","url":"https://api.congress.gov/v3/bill/119/s/523?format=json","number":"523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5615","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4520","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Dismantle DEI Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/382?format=json","number":"382","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5616","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"5225","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"119","introducedDate":"2025-01-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"GOOD Act","url":"https://api.congress.gov/v3/bill/119/s/252?format=json","number":"252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5617","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"5814","labels":["Legislation"],"properties":{"sponsored_by":"C000127","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Committee on Commerce, Science, and Transportation. Ordered to be reported without amendment favorably.","type":"S","title":"Fire Ready Nation Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/306?format=json","number":"306","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5618","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4838","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S526-527; text: CR S525)","type":"SRES","title":"A resolution congratulating The Ohio State University football team for winning the 2025 College Football Playoff National Championship.","url":"https://api.congress.gov/v3/bill/119/sres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"5619","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"5954","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"End Unaccountable Amnesty Act","url":"https://api.congress.gov/v3/bill/119/s/225?format=json","number":"225","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5620","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"4327","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-01-26","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution honoring the lives of 2 fallen Mississippi police officers, Sergeant Steven Robin and Officer Branden Estorffe, and expressing condolences to their families.","url":"https://api.congress.gov/v3/bill/118/sres/15?format=json","number":"15","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-01-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5621","label":"COSPONSORED","start":{"id":"4022","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:09:11Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001220_200.jpg","district":"6","startYear":"1979","partyName":"Democratic","attribution":"Collection of the U.S. House of Representatives","name":"Byron, Beverly B.","state":"Maryland","endYear":"1993","url":"https://api.congress.gov/v3/member/B001220?format=json","bioguideId":"B001220"}},"end":{"id":"7754","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2023-07-18","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 3935) to amend title 49, United States Code, to reauthorize and improve the Federal Aviation Administration and other civil aviation programs, and for other purposes, and providing for consideration of the bill (H.R. 3941) to prohibit the use of the facilities of a public elementary school, a public secondary school, or an institution of higher education to provide shelter for aliens who have not been admitted into the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/597?format=json","number":"597","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-18","latestAction_actionTime":"13:49:56"}}} +{"type":"relationship","id":"5622","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5623","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5624","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"5689","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Restoring Trade Fairness Act","url":"https://api.congress.gov/v3/bill/119/s/206?format=json","number":"206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5625","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"5761","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Housing Reform for American Families Act","url":"https://api.congress.gov/v3/bill/119/s/120?format=json","number":"120","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5626","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4469","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-02-13","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S990; text: CR S981)","type":"SRES","title":"A resolution honoring the memories of the victims of the senseless attack at Marjory Stoneman Douglas High School on February 14, 2018.","url":"https://api.congress.gov/v3/bill/119/sres/79?format=json","number":"79","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5627","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5628","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4455","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1616-1617; text: CR S1609-1610)","type":"SRES","title":"A resolution designating March 6, 2025, as \"National Slam the Scam Day\" to raise awareness about pervasive scams and to promote education to prevent government imposter scams and other types of scams.","url":"https://api.congress.gov/v3/bill/119/sres/118?format=json","number":"118","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5629","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4719","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1400-1401)","type":"SRES","title":"A resolution condemning Beijing's destruction of Hong Kong's democracy and rule of law.","url":"https://api.congress.gov/v3/bill/119/sres/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5630","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4412","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1316; text: CR S1316)","type":"SRES","title":"A resolution designating February 16, 2025, as \"National Elizabeth Peratrovich Day\".","url":"https://api.congress.gov/v3/bill/119/sres/92?format=json","number":"92","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5631","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4329","labels":["Legislation"],"properties":{"sponsored_by":"V000128","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","type":"SRES","title":"A resolution condemning the Armed Forces of the Russian Federation and officials of the Government of the Russian Federation for committing crimes against humanity and war crimes in Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/111?format=json","number":"111","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5632","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4438","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution informing the House of Representatives that a quorum of the Senate is assembled.","url":"https://api.congress.gov/v3/bill/119/sres/2?format=json","number":"2","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5633","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5634","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4916","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672-673)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Indian Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/60?format=json","number":"60","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5635","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"5485","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1431-1433)","type":"SRES","title":"A resolution affirming the threats to world stability from a nuclear weapons-capable Islamic Republic of Iran.","url":"https://api.congress.gov/v3/bill/119/sres/101?format=json","number":"101","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5636","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"4900","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"EMPSA","url":"https://api.congress.gov/v3/bill/119/s/73?format=json","number":"73","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5637","label":"COSPONSORED","start":{"id":"4023","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:07:10Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b000639_200.jpg","startYear":"1979","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Boren, David L.","state":"Oklahoma","endYear":"1995","url":"https://api.congress.gov/v3/member/B000639?format=json","bioguideId":"B000639"}},"end":{"id":"7328","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-31","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th anniversary of the liberation of the Auschwitz extermination camp in Nazi-occupied Poland and International Holocaust Remembrance Day.","url":"https://api.congress.gov/v3/bill/119/hres/87?format=json","number":"87","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"5638","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4658","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1359; text: CR S1358-1359)","type":"SRES","title":"A resolution honoring the life of Nebraska community leader Howard L. Hawks.","url":"https://api.congress.gov/v3/bill/119/sres/97?format=json","number":"97","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5639","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4585","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to expand opportunity through greater choice in education, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/487?format=json","number":"487","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5640","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"5394","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Federal Trade Commission to study the role of intermediaries in the pharmaceutical supply chain and provide Congress with appropriate policy recommendations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/527?format=json","number":"527","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5641","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5642","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5643","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4913","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-18","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Veterinary Services to Improve Public Health in Rural Communities Act","url":"https://api.congress.gov/v3/bill/119/s/620?format=json","number":"620","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5644","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"5337","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"End Taxpayer Funding for Abortion Providers Act","url":"https://api.congress.gov/v3/bill/119/s/125?format=json","number":"125","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5645","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4660","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Dignity for Aborted Children Act","url":"https://api.congress.gov/v3/bill/119/s/242?format=json","number":"242","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5646","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4756","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1430-1431)","type":"S","title":"A bill to amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/779?format=json","number":"779","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5647","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"4901","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to enhance the longevity, dignity, empowerment, and respect of older individuals who are Native Americans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/870?format=json","number":"870","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5648","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"6662","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cost Estimates Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/991?format=json","number":"991","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5649","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"5415","labels":["Legislation"],"properties":{"sponsored_by":"F000479","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-03-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Railway Accountability Act","url":"https://api.congress.gov/v3/bill/118/s/1044?format=json","number":"1044","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5650","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"5717","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Cattle Fever Tick Eradication Program Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/319?format=json","number":"319","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5651","label":"COSPONSORED","start":{"id":"4024","labels":["Person"],"properties":{"updateDate":"2025-02-21T18:05:25Z","chamber":"House of Representatives","district":"2","startYear":"1977","name":"Tucker, James G., Jr. (Jim Guy)","partyName":"Democratic","state":"Arkansas","endYear":"1979","url":"https://api.congress.gov/v3/member/T000400?format=json","bioguideId":"T000400"}},"end":{"id":"5016","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-14","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","url":"https://api.congress.gov/v3/bill/118/sjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5652","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5653","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5654","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"7774","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/hr/1896?format=json","number":"1896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5655","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"5656","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"5657","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5658","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5659","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5660","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5661","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5662","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5663","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5664","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9672","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1026/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"1026","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1026/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1026/committees?format=json","policyArea.name":"Health","type":"S","title":"Gun Violence Prevention Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1026","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1026/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1026/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1026/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1026/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1026/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":30,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1026?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"5665","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5666","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"5667","label":"COSPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"6987","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Natural Resources, Energy and Commerce, and Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require that a State be ineligible to receive funds under certain Federal programs unless the State has in effect a State law restricting the purchase of agricultural land by certain foreign persons, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1184?format=json","number":"1184","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5668","label":"COSPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"7918","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/118/hr/9534?format=json","number":"9534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5669","label":"COSPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"7919","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-06-18","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Tax Free Tips Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8785?format=json","number":"8785","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5670","label":"COSPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6152","labels":["Legislation"],"properties":{"sponsored_by":"F000474","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To direct the Secretary of Health and Human Services to establish a working group to formulate recommendations for standardizing the measurements of loneliness and isolation, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1305?format=json","number":"1305","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5671","label":"COSPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"7921","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Finance and Financial Sector","introducedDate":"2024-05-16","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Reserve Board Abolition Act","url":"https://api.congress.gov/v3/bill/118/hr/8421?format=json","number":"8421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5672","label":"COSPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6195","labels":["Legislation"],"properties":{"sponsored_by":"W000823","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-04-15","latestAction_text":"Became Public Law No: 118-247.","type":"HR","title":"Jackie Robinson Ballpark National Commemorative Site Act","url":"https://api.congress.gov/v3/bill/118/hr/8012?format=json","number":"8012","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5673","label":"COSPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"6713","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"117","policyArea_name":"Armed Forces and National Security","introducedDate":"2022-02-22","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","type":"HR","title":"Housing our Veterans Act","url":"https://api.congress.gov/v3/bill/117/hr/6810?format=json","number":"6810","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-03-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"5674","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6936","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-09-18","latestAction_text":"Became Public Law No: 118-140.","type":"HR","title":"Grant Transparency Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/5536?format=json","number":"5536","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-12-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5675","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6539","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-10","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"SAVES Act","url":"https://api.congress.gov/v3/bill/118/hr/9525?format=json","number":"9525","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5676","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"5016","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-03-14","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","url":"https://api.congress.gov/v3/bill/118/sjres/65?format=json","number":"65","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5677","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6622","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Expressing the sense of the House of Representatives that the third Friday of September shall be recognized as \"National POW/MIA Recognition Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1485?format=json","number":"1485","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5678","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"7626","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","policyArea_name":"Crime and Law Enforcement","introducedDate":"2022-10-31","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stop Online Suicide Assistance Forums Act","url":"https://api.congress.gov/v3/bill/117/hr/9260?format=json","number":"9260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"5679","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5680","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"7630","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-18","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Ammunition Supply Chain Act","url":"https://api.congress.gov/v3/bill/118/hr/8066?format=json","number":"8066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5681","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"7403","labels":["Legislation"],"properties":{"sponsored_by":"F000477","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To direct the Secretary of Education to carry out a grant program for skills-for-success courses for all first-year students enrolled at certain institutions of higher education.","url":"https://api.congress.gov/v3/bill/119/hr/1409?format=json","number":"1409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5682","label":"COSPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"6685","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1367?format=json","number":"1367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5683","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5684","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5685","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5686","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5687","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5688","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5689","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6722","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Intelligence Reform and Terrorism Prevention Act of 2004 to authorize the Director of the Federal Bureau of Investigation to make security clearance determinations and access determinations for political appointees and special Government employees in the Executive Office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1591?format=json","number":"1591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5690","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5691","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"6553","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To authorize the Administrator of the National Aeronautics and Space Administration to reimburse the Town of Chincoteague, Virginia, for costs directly associated with the removal and replacement of certain drinking water wells.","url":"https://api.congress.gov/v3/bill/119/hr/1419?format=json","number":"1419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5692","label":"COSPONSORED","start":{"id":"4028","labels":["Person"],"properties":{"updateDate":"2025-01-27T17:28:58Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg","startYear":"2025","partyName":"Democratic","name":"Subramanyam, Suhas","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/S001230?format=json","bioguideId":"S001230"}},"end":{"id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5693","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"7270","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Energy and Commerce, Natural Resources, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"BADGES for Native Communities Act","url":"https://api.congress.gov/v3/bill/119/hr/1010?format=json","number":"1010","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5694","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6385","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","introducedDate":"2024-11-21","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Ending Racism in Government Contracting Act","url":"https://api.congress.gov/v3/bill/118/hr/10216?format=json","number":"10216","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5695","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6123","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-26","policyArea_name":"Social Welfare","latestAction_text":"Referred to Senate Committee on Finance.","type":"S","title":"A bill to amend title IV of the Social Security Act to provide for a demonstration program of block grants to States in lieu of Federal matching for aid to families with dependent children.","url":"https://api.congress.gov/v3/bill/96/s/1579?format=json","number":"1579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5696","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5697","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"7918","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/118/hr/9534?format=json","number":"9534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5698","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6958","labels":["Legislation"],"properties":{"sponsored_by":"B001317","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-07-22","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Secret Service Readiness Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/9080?format=json","number":"9080","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5699","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5700","label":"COSPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"6394","labels":["Legislation"],"properties":{"sponsored_by":"G000576","congress":"118","policyArea_name":"Economics and Public Finance","introducedDate":"2024-03-07","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Appropriations Transparency Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/7584?format=json","number":"7584","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"5701","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"6018","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the proper tax treatment of personal service income earned in pass-thru entities.","url":"https://api.congress.gov/v3/bill/119/s/445?format=json","number":"445","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5702","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"4676","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/765?format=json","number":"765","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5703","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"4500","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1314)","type":"SRES","title":"A resolution acknowledging the third anniversary of Russia's further invasion of Ukraine and expressing support for the people of Ukraine.","url":"https://api.congress.gov/v3/bill/119/sres/91?format=json","number":"91","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5704","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"5748","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require the establishment of a joint task force to identify and eliminate barriers to agriculture exports of the United States.","url":"https://api.congress.gov/v3/bill/119/s/743?format=json","number":"743","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5705","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"4371","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Act of June 22, 1948.","url":"https://api.congress.gov/v3/bill/119/s/638?format=json","number":"638","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5706","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5707","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"4720","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide that sanctuary jurisdictions that provide benefits to aliens who are present in the United States without lawful status under the immigration laws are ineligible for Federal funds intended to benefit such aliens.","url":"https://api.congress.gov/v3/bill/119/s/707?format=json","number":"707","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5708","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5709","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"5267","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the clean fuel production credit to provide a special rate for sustainable vessel fuel.","url":"https://api.congress.gov/v3/bill/119/s/692?format=json","number":"692","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5710","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"4701","labels":["Legislation"],"properties":{"sponsored_by":"P000595","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve the effectiveness of body armor issued to female agents and officers of the Department of Homeland Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/693?format=json","number":"693","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5711","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"5247","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to contribute funds and artifacts to the Theodore Roosevelt Presidential Library in Medora, North Dakota.","url":"https://api.congress.gov/v3/bill/119/s/675?format=json","number":"675","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5712","label":"COSPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"4463","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Miccosukee Reserved Area Amendments Act","url":"https://api.congress.gov/v3/bill/119/s/673?format=json","number":"673","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5713","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"6756","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-09-22","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","type":"HRES","title":"Expressing support for the designation of September 2022 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/117/hres/1394?format=json","number":"1394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5714","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"5847","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income gain from the sale of qualified real property interests acquired under the authority of the Readiness and Environmental Protection Integration (REPI) program administered by the Department of Defense pursuant to section 2684a of title 10, United States Code, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/439?format=json","number":"439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5715","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"7620","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-07-19","policyArea_name":"Health","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Accelerating Kids’ Access to Care Act","url":"https://api.congress.gov/v3/bill/118/hr/4758?format=json","number":"4758","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5716","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5717","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"7135","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-05-18","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Law Enforcement Training for Mental Health Crisis Response Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/3501?format=json","number":"3501","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5718","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"4895","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Stop GREED Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/396?format=json","number":"396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5719","label":"COSPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"7569","labels":["Legislation"],"properties":{"sponsored_by":"G000592","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To provide monthly payments for eligible pregnant women and parents to improve the ability of families to provide for their children and other family members, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1308?format=json","number":"1308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5720","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"5047","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to provide incentives to physicians to practice in rural and medically underserved communities, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/709?format=json","number":"709","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5721","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"7918","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"National Constitutional Carry Act","url":"https://api.congress.gov/v3/bill/118/hr/9534?format=json","number":"9534","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5722","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"4172","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-02-04","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1037; text: 2/4/2025 CR S597-598)","type":"SRES","title":"A resolution recognizing the 80th anniversary of the amphibious landing on the Japanese island of Iwo Jima during World War II and the raisings of the flag of the United States on Mount Suribachi.","url":"https://api.congress.gov/v3/bill/119/sres/53?format=json","number":"53","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5723","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"7630","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-04-18","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Ammunition Supply Chain Act","url":"https://api.congress.gov/v3/bill/118/hr/8066?format=json","number":"8066","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5724","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"5891","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-26","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1391; text: CR S1401)","type":"SRES","title":"A resolution celebrating Black History Month.","url":"https://api.congress.gov/v3/bill/119/sres/99?format=json","number":"99","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5725","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"7626","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"117","policyArea_name":"Crime and Law Enforcement","introducedDate":"2022-10-31","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Stop Online Suicide Assistance Forums Act","url":"https://api.congress.gov/v3/bill/117/hr/9260?format=json","number":"9260","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-10-31","latestAction_actionTime":""}}} +{"type":"relationship","id":"5726","label":"COSPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"6627","labels":["Legislation"],"properties":{"sponsored_by":"G000594","congress":"118","introducedDate":"2024-04-23","policyArea_name":"Immigration","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","type":"HR","title":"PEARL Act","url":"https://api.congress.gov/v3/bill/118/hr/8119?format=json","number":"8119","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5727","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5728","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"5729","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5730","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"7391","labels":["Legislation"],"properties":{"sponsored_by":"H001101","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To provide for the crediting of funds received by the National Guard Bureau as reimbursement from States.","url":"https://api.congress.gov/v3/bill/119/hr/1695?format=json","number":"1695","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5731","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5707","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Critical Minerals Security Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/789?format=json","number":"789","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5732","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5733","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5746","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish a commission to review operations at the Veterans Health Administration and submit to Congress reports with respect to that review, and for other programs.","url":"https://api.congress.gov/v3/bill/119/s/787?format=json","number":"787","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5734","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"6238","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Tech to Save Moms Act","url":"https://api.congress.gov/v3/bill/118/s/1699?format=json","number":"1699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5735","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"4964","labels":["Legislation"],"properties":{"sponsored_by":"M001176","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to impose an excise tax on the failure of certain hedge funds owning excess single-family residences to dispose of such residences, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/788?format=json","number":"788","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5736","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5611","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1431)","type":"S","title":"A bill to terminate authorizations for the use of military force and declarations of war no later than 10 years after the enactment of such authorizations or declarations.","url":"https://api.congress.gov/v3/bill/119/s/804?format=json","number":"804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5737","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5104","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Infrastructure Investment and Jobs Act to require the Secretary of Energy to establish an abandoned wells research, development, and demonstration program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/818?format=json","number":"818","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5738","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5684","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to direct the Secretary of Agriculture to periodically assess cybersecurity threats to, and vulnerabilities in, the agriculture and food critical infrastructure sector and to provide recommendations to enhance their security and resilience, to require the Secretary of Agriculture to conduct an annual cross-sector simulation exercise relating to a food-related emergency or disruption, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/754?format=json","number":"754","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5739","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5584","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Secretary of Transportation to issue rules requiring the inclusion of new safety equipment in school buses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/828?format=json","number":"828","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5740","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"5387","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to require the Attorney General to propose a program for making treatment for post-traumatic stress disorder and acute stress disorder available to public safety officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/825?format=json","number":"825","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5741","label":"COSPONSORED","start":{"id":"4033","labels":["Person"],"properties":{"updateDate":"2025-01-21T19:50:15Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg","startYear":"2025","partyName":"Democratic","name":"Goodlander, Maggie","attribution":"Image courtesy of the Member","state":"New Hampshire","url":"https://api.congress.gov/v3/member/G000604?format=json","bioguideId":"G000604"}},"end":{"id":"7439","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide clarification regarding the inclusion of medically necessary automobile adaptations in Department of Veterans Affairs definition of \"medical services\".","url":"https://api.congress.gov/v3/bill/119/hr/1364?format=json","number":"1364","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5742","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5743","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"5549","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Modernizing Access to Our Public Oceans Act","url":"https://api.congress.gov/v3/bill/119/s/759?format=json","number":"759","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5744","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5745","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5746","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5747","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"4203","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for examination and disclosure with respect to Presidential income tax returns, to amend the chapter 131 of title 5, United States Code, to require the disclosure of certain tax returns by Presidents and certain candidates for the office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/588?format=json","number":"588","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5748","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"6932","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-04-30","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Commending the University of South Carolina Gamecocks women's basketball team for winning the 2024 National Collegiate Athletics Association Women's Basketball National Championship.","url":"https://api.congress.gov/v3/bill/118/hres/1183?format=json","number":"1183","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"5749","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5750","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"4420","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit United States cooperation with the International Criminal Court, the use of the Economic Support Fund to support the Palestinian Authority, and any Federal funding for the ICC.","url":"https://api.congress.gov/v3/bill/119/s/493?format=json","number":"493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5751","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"6421","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Prevent Tariff Abuse Act","url":"https://api.congress.gov/v3/bill/119/hr/407?format=json","number":"407","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"5752","label":"COSPONSORED","start":{"id":"4034","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg","district":"6","startYear":"2025","name":"Randall, Emily","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/R000621?format=json","bioguideId":"R000621"}},"end":{"id":"5178","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to implement a minimum work requirement for able-bodied adults enrolled in State Medicaid programs.","url":"https://api.congress.gov/v3/bill/119/s/447?format=json","number":"447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5753","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"7286","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To establish the Commission to Study the Potential Creation of a National Museum of Italian American History and Culture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1102?format=json","number":"1102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5754","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5755","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5756","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5757","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5758","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"7400","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Insurance Office Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/643?format=json","number":"643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5759","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"4620","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5760","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"4675","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/778?format=json","number":"778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5761","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5022","labels":["Legislation"],"properties":{"sponsored_by":"K000383","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to increase the standard charitable mileage rate for delivery of meals to elderly, disabled, frail, and at-risk individuals.","url":"https://api.congress.gov/v3/bill/119/s/895?format=json","number":"895","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5762","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"4537","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Federal Water Pollution Control Act to exclude prior converted cropland from the definition of \"navigable waters\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/795?format=json","number":"795","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5763","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5764","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5765","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5585","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to protect and expand access to fertility treatment under the health insurance program carried out under chapter 89 of that title, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/797?format=json","number":"797","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5766","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5767","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5547","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the indexing of certain assets for purposes of determining gain or loss.","url":"https://api.congress.gov/v3/bill/119/s/798?format=json","number":"798","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5768","label":"COSPONSORED","start":{"id":"4035","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg","district":"2","startYear":"2025","name":"Moore, Riley","partyName":"Republican","attribution":"Image courtesy of the Member","state":"West Virginia","url":"https://api.congress.gov/v3/member/M001235?format=json","bioguideId":"M001235"}},"end":{"id":"5708","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to establish and implement a multi-year Legal Gold and Mining Partnership Strategy to reduce the negative environmental and social impacts of illicit gold mining in the Western Hemisphere, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/799?format=json","number":"799","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5769","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5770","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"5771","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5772","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5773","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5774","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5775","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5776","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5777","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5778","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5779","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5780","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"4620","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5781","label":"COSPONSORED","start":{"id":"4036","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg","startYear":"2025","partyName":"Republican","name":"Baumgartner, Michael","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/B001322?format=json","bioguideId":"B001322"}},"end":{"id":"4466","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to improve the communications between social media platforms and law enforcement agencies, to establish the Federal Trade Commission Platform Safety Advisory Committee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/626?format=json","number":"626","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"5782","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"5783","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5784","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5785","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5786","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5787","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"6860","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-02-23","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Rules.","type":"HRES","title":"Amending the Rules of the House of Representatives to establish a Permanent Select Committee on Aging.","url":"https://api.congress.gov/v3/bill/118/hres/1029?format=json","number":"1029","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5788","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5789","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5790","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"7912","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Senior Citizens Tax Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/1040?format=json","number":"1040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5791","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"7746","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 2799) to make reforms to the capital markets of the United States, and for other purposes, and providing for consideration of the bill (H.R. 7511) to require the Secretary of Homeland Security to take into custody aliens who have been charged in the United States with theft, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1052?format=json","number":"1052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":"16:13:34"}}} +{"type":"relationship","id":"5792","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"4809","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Defund Planned Parenthood Act","url":"https://api.congress.gov/v3/bill/119/s/203?format=json","number":"203","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5793","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"6008","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to remove the limitation on the amount of a civil penalty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/845?format=json","number":"845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5794","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5795","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"5613","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S1347-1348; text: CR S1348-1350)","type":"S","title":"A bill to amend title 31, United States Code, to prevent fraudulent transactions at virtual currency kiosks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5796","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5797","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5798","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5799","label":"COSPONSORED","start":{"id":"4037","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg","district":"8","startYear":"2024","name":"Wied, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/W000829?format=json","bioguideId":"W000829"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5800","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5801","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5802","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"7909","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To abolish the Board of Governors of the Federal Reserve System and the Federal reserve banks, to repeal the Federal Reserve Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1846?format=json","number":"1846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5803","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"4759","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tule River Tribe Reserved Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5804","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"7910","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To reduce, from 21 years of age to 18 years of age, the minimum age at which a person may obtain a handgun from a Federal firearms licensee.","url":"https://api.congress.gov/v3/bill/119/hr/1643?format=json","number":"1643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5805","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5806","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5807","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6648","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/118/hr/1497?format=json","number":"1497","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"5808","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"7176","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of the week of September 23, 2024, as \"National Latino Gastronomic Cuisine Week\", and celebrating the vibrant and diverse culinary traditions of Latino gastronomy.","url":"https://api.congress.gov/v3/bill/118/hres/1488?format=json","number":"1488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5809","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6890","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1421?format=json","number":"1421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5810","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"6967","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-06-05","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of June 2024 as \"Black Music Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1279?format=json","number":"1279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5811","label":"COSPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5812","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"5813","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5814","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5815","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5816","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5817","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5818","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"5819","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"6882","labels":["Legislation"],"properties":{"sponsored_by":"L000602","congress":"118","introducedDate":"2024-02-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Recognizing the historical contributions and value of the Freedom House Ambulance Service.","url":"https://api.congress.gov/v3/bill/118/hres/1042?format=json","number":"1042","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"5820","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5821","label":"COSPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"5803","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Ally’s Act","url":"https://api.congress.gov/v3/bill/118/s/1135?format=json","number":"1135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"5822","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5823","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6420","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To require income from the first year of an apprenticeship to be disregarded in determining eligibility for assistance under the program of block grants to States for temporary assistance for needy families.","url":"https://api.congress.gov/v3/bill/119/hr/1859?format=json","number":"1859","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5824","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5825","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5826","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5827","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5828","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"4170","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"STRATEGIC Minerals Act","url":"https://api.congress.gov/v3/bill/119/s/429?format=json","number":"429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5829","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5830","label":"COSPONSORED","start":{"id":"4040","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/s001159_200.jpg","startYear":"2021","partyName":"Democratic","name":"Strickland, Marilyn","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/S001159?format=json","bioguideId":"S001159"}},"end":{"id":"6238","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Tech to Save Moms Act","url":"https://api.congress.gov/v3/bill/118/s/1699?format=json","number":"1699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5831","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5832","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"5833","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5834","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5835","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6756","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"117","policyArea_name":"Government Operations and Politics","introducedDate":"2022-09-22","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","type":"HRES","title":"Expressing support for the designation of September 2022 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/117/hres/1394?format=json","number":"1394","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-11-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5836","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5837","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"7440","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"Clear Communication for Veterans Claims Act","url":"https://api.congress.gov/v3/bill/119/hr/1039?format=json","number":"1039","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5838","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"6299","labels":["Legislation"],"properties":{"sponsored_by":"W000829","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Endangered Species Act of 1973 to exclude certain populations of the lake sturgeon from the authority of such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1150?format=json","number":"1150","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"5839","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5840","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"5754","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to prohibit Federal Medicaid funding for the administrative costs of providing health benefits to individuals who are unauthorized immigrants.","url":"https://api.congress.gov/v3/bill/119/s/523?format=json","number":"523","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5841","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5842","label":"COSPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5843","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5844","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6300","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1866?format=json","number":"1866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5845","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"5846","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5847","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5848","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"7543","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/914?format=json","number":"914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":"10:56:08"}}} +{"type":"relationship","id":"5849","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5850","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5851","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"5876","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Diaz Bonville.","url":"https://api.congress.gov/v3/bill/118/hres/1465?format=json","number":"1465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5852","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"6125","labels":["Legislation"],"properties":{"sponsored_by":"B000639","congress":"96","introducedDate":"1979-07-13","policyArea_name":"Energy","latestAction_text":"Referred to Senate Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Council for Energy Security, and for other purposes.","url":"https://api.congress.gov/v3/bill/96/s/1513?format=json","number":"1513","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1979-07-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5853","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"5332","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Reauthorizing Support and Treatment for Officers in Crisis Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/419?format=json","number":"419","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5854","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"5855","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5856","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5857","label":"COSPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"5787","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Environment and Public Works.","url":"https://api.congress.gov/v3/bill/119/sres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5858","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5859","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5860","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6679","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To revise the authority provided to the President to impose export licensing requirements or other restrictions on the export of crude oil from the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1850?format=json","number":"1850","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5861","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5862","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5863","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"7810","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To require certain reports on small business disaster assistance to be published on the website of the Small Business Administration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1475?format=json","number":"1475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5864","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5865","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"5866","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5867","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5868","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5869","label":"COSPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5870","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5871","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"5488","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-11","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S863)","type":"SRES","title":"A resolution affirming that Hamas cannot retain any political or military control in the Gaza Strip.","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","number":"72","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5872","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6719","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Trade Expansion Act of 1962 to impose limitations on the authority of the President to adjust imports that are determined to threaten to impair national security, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1903?format=json","number":"1903","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5873","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"4900","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"EMPSA","url":"https://api.congress.gov/v3/bill/119/s/73?format=json","number":"73","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5874","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"4903","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","policyArea_name":"Native Americans","introducedDate":"2025-02-26","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","number":"761","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5875","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5876","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6514","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HRES","title":"Honoring the selfless acts of adoption, fostering, and unconditional love by Bishop W.C. Martin, First Lady Donna Martin, and the Bennett Chapel Missionary Baptist Church of Possum Trot, Texas, toward the children in their community, and recognizing families across America who strive to foster, adopt, and better the lives of vulnerable children in the foster care system.","url":"https://api.congress.gov/v3/bill/118/hres/1572?format=json","number":"1572","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5877","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"6499","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-03","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/119/hr/195?format=json","number":"195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5878","label":"COSPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5879","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5880","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5881","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5882","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"7694","labels":["Legislation"],"properties":{"sponsored_by":"S001225","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-02-05","latestAction_text":"Sponsor introductory remarks on measure. (CR H519)","type":"HR","title":"QUIET Act","url":"https://api.congress.gov/v3/bill/119/hr/1027?format=json","number":"1027","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5883","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5884","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"7425","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-07","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To prohibit the use of DeepSeek by the executive agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1121?format=json","number":"1121","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"5885","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"6453","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-05","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Forest Service of the Department of Agriculture relating to \"Law Enforcement; Criminal Prohibitions\".","url":"https://api.congress.gov/v3/bill/119/hjres/36?format=json","number":"36","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5886","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5887","label":"COSPONSORED","start":{"id":"4045","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg","startYear":"2025","partyName":"Democratic","name":"Vindman, Eugene","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/V000138?format=json","bioguideId":"V000138"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5888","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"5889","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5890","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5891","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5892","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"4310","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Animal Health Protection Act to provide compensation for poultry growers and layers in control areas, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/574?format=json","number":"574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5893","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5894","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5895","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5896","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"7555","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Defund Planned Parenthood Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/271?format=json","number":"271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"5897","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"5898","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5899","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"5900","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5901","label":"COSPONSORED","start":{"id":"4046","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg","district":"5","startYear":"2025","name":"McGuire, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001239?format=json","bioguideId":"M001239"}},"end":{"id":"5380","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Ohkay Owingeh Rio Chama Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/563?format=json","number":"563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5902","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5903","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5904","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6659","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committees on Financial Services, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1668?format=json","number":"1668","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5905","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6452","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To require the Director of the Bureau of Land Management to withdraw a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/hr/1206?format=json","number":"1206","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5906","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5907","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6967","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-06-05","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Expressing support for the designation of June 2024 as \"Black Music Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1279?format=json","number":"1279","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5908","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"5537","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Snap Back Inaccurate SNAP Payments Act","url":"https://api.congress.gov/v3/bill/119/s/302?format=json","number":"302","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"5909","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5910","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5911","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6453","labels":["Legislation"],"properties":{"sponsored_by":"M001228","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-02-05","latestAction_text":"Referred to the Subcommittee on Forestry and Horticulture.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Forest Service of the Department of Agriculture relating to \"Law Enforcement; Criminal Prohibitions\".","url":"https://api.congress.gov/v3/bill/119/hjres/36?format=json","number":"36","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5912","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5913","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"4263","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6455)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Youth Justice Action Month\".","url":"https://api.congress.gov/v3/bill/118/sres/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5914","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5915","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"6008","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to remove the limitation on the amount of a civil penalty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/845?format=json","number":"845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5916","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5917","label":"COSPONSORED","start":{"id":"4047","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg","district":"3","startYear":"2025","name":"Kennedy, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/K000403?format=json","bioguideId":"K000403"}},"end":{"id":"7400","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Insurance Office Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/643?format=json","number":"643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"5918","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5919","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5920","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5921","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"7123","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the heroic sacrifices of the people of Ukraine 3 years after Russian President Vladimir Putin's illegal and unprovoked war against Ukraine on February 24, 2022, and recognizing the terrible cost of Russia's committing crimes against Humanity aggression.","url":"https://api.congress.gov/v3/bill/119/hres/154?format=json","number":"154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5922","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5923","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"5239","labels":["Legislation"],"properties":{"sponsored_by":"J000293","congress":"118","introducedDate":"2024-07-11","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4564)","type":"SRES","title":"A resolution expressing support for the designation of July 2024 as \"National Sarcoma Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/sres/764?format=json","number":"764","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5924","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"4265","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-09-16","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6068; text: CR S6055-6056)","type":"SRES","title":"A resolution expressing support for the designation of the week of September 21 through September 28, 2024, as \"National Estuaries Week\".","url":"https://api.congress.gov/v3/bill/118/sres/820?format=json","number":"820","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"5925","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5926","label":"COSPONSORED","start":{"id":"4048","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg","district":"32","startYear":"2025","name":"Johnson, Julie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000310?format=json","bioguideId":"J000310"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5927","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5928","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5929","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"5924","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S671)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Agriculture, Nutrition, and Forestry.","url":"https://api.congress.gov/v3/bill/119/sres/57?format=json","number":"57","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5930","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"4916","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672-673)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Indian Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/60?format=json","number":"60","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5931","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"5615","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S1314)","type":"S","title":"A bill to provide temporary Ukrainian guest status for eligible aliens, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/696?format=json","number":"696","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5932","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"6300","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1866?format=json","number":"1866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5933","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"7435","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require aliens seeking admission to the United States as nonimmigrants to pay a bond or cash payment and to impose penalties on such aliens who fail to timely depart the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1837?format=json","number":"1837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5934","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5935","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"4473","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to prohibit Big Cypress National Preserve from being designated as wilderness or as a component of the National Wilderness Preservation System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/446?format=json","number":"446","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5936","label":"COSPONSORED","start":{"id":"4049","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg","district":"26","startYear":"2025","name":"Gill, Brandon","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000603?format=json","bioguideId":"G000603"}},"end":{"id":"7910","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To reduce, from 21 years of age to 18 years of age, the minimum age at which a person may obtain a handgun from a Federal firearms licensee.","url":"https://api.congress.gov/v3/bill/119/hr/1643?format=json","number":"1643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5937","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5938","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"4610","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S43)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/17?format=json","number":"17","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"5939","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5940","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"5941","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5942","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5943","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5944","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"6035","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Omnibus Crime Control and Safe Streets Act of 1968 to increase grants to combat domestic violence for States that implement domestic violence prevention training for cosmetologists and barbers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/520?format=json","number":"520","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5945","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5946","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"5827","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to amend the Federal securities laws to enhance 403(b) plans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/424?format=json","number":"424","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5947","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5948","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5949","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9715","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"5950","label":"COSPONSORED","start":{"id":"4050","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg","district":"12","startYear":"2025","name":"Goldman, Craig","partyName":"Republican","state":"Texas","url":"https://api.congress.gov/v3/member/G000601?format=json","bioguideId":"G000601"}},"end":{"id":"4801","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S979-980)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Homeland Security and Governmental Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/77?format=json","number":"77","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5951","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"5952","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5953","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6441","labels":["Legislation"],"properties":{"sponsored_by":"M001239","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To provide for the inclusion of uranium on the list of critical minerals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1622?format=json","number":"1622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5954","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6319","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","policyArea_name":"Water Resources Development","introducedDate":"2025-01-07","latestAction_text":"Ordered to be Reported (Amended) by Unanimous Consent.","type":"HR","title":"Colorado River Basin System Conservation Extension Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/231?format=json","number":"231","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5955","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5956","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5957","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"6183","labels":["Legislation"],"properties":{"sponsored_by":"G000578","congress":"118","introducedDate":"2024-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Expressing the sense of the House of Representatives that former President Donald J. Trump did not engage in insurrection or rebellion against the United States, or give aid or comfort to the enemies thereof.","url":"https://api.congress.gov/v3/bill/118/hres/1001?format=json","number":"1001","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5958","label":"COSPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5959","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"5960","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5961","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5962","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5963","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5964","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"7851","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to provide for the continued implementation of the Climate and Health program by the Centers for Disease Control and Prevention.","url":"https://api.congress.gov/v3/bill/119/hr/1645?format=json","number":"1645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5965","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5966","label":"COSPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5967","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"5968","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5969","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5970","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6660","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to prohibit transactions involving certain financial instruments by senior Federal employees, their spouses, or dependent children, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1599?format=json","number":"1599","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"5971","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"5972","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"7645","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"117","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2022-09-22","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HRES","title":"Recognizing the 50th anniversary of National Hunting and Fishing Day.","url":"https://api.congress.gov/v3/bill/117/hres/1387?format=json","number":"1387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2022-09-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"5973","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5974","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"7388","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to provide that an alien who has been convicted of a crime is ineligible for asylum, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1312?format=json","number":"1312","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5975","label":"COSPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"6602","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To direct the Secretary of State to submit to Congress a report on funding provided by the United States to the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1252?format=json","number":"1252","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5976","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5977","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7831","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/hr/1822?format=json","number":"1822","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"5978","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"5979","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"5980","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6685","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1367?format=json","number":"1367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"5981","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7551","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Secretary of Health and Human Services from implementing, administering, or enforcing provisions relating to minimum staffing standards for long-term care facilities and Medicaid institutional payment transparency reporting.","url":"https://api.congress.gov/v3/bill/119/hr/1303?format=json","number":"1303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5982","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5983","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7319","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing certain Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1347?format=json","number":"1347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":"12:16:07"}}} +{"type":"relationship","id":"5984","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"5985","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5986","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7792","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-07","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing gratitude and appreciation for the bravery and valor of the Allied forces who participated in the Normandy landings on the 80th anniversary of Operation Overlord.","url":"https://api.congress.gov/v3/bill/118/hres/1284?format=json","number":"1284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"5987","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5988","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"6075","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide that it is unlawful to knowingly distribute private intimate visual depictions with reckless disregard for the individual's lack of consent to the distribution, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1218?format=json","number":"1218","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5989","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7614","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing support for the designation of April 17, 2025, as \"Cambodian Genocide Remembrance Day\" to remember the horrific slaughter of almost 2,000,000 Cambodian people at the hand of the Khmer Rouge regime.","url":"https://api.congress.gov/v3/bill/118/hres/1156?format=json","number":"1156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"5990","label":"COSPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"7512","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to require greater transparency for Federal regulatory decisions that impact small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1163?format=json","number":"1163","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"5991","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"4655","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/s/881?format=json","number":"881","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5992","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"5993","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"5974","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S862)","type":"S","title":"A bill to repeal a rule of the Bureau of Land Management relating to conservation and landscape health.","url":"https://api.congress.gov/v3/bill/119/s/530?format=json","number":"530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5994","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"5995","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6585","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To require the Secretary of Homeland Security to conduct annual assessments on terrorism threats to the United States posed by terrorist organizations utilizing foreign cloud-based mobile or desktop messaging applications, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1212?format=json","number":"1212","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"5996","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"5997","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"5998","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"5999","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6000","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"5528","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the establishment of a process for the review of rules and sets of rules, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/648?format=json","number":"648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6001","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"6069","labels":["Legislation"],"properties":{"sponsored_by":"T000489","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Cybersecurity and Infrastructure Protection.","type":"HR","title":"DHS Cybersecurity On-the-Job Training Program Act","url":"https://api.congress.gov/v3/bill/119/hr/1034?format=json","number":"1034","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6002","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6003","label":"COSPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"5726","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/708?format=json","number":"708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6004","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"7438","labels":["Legislation"],"properties":{"sponsored_by":"B001321","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To direct the Secretary of Defense to submit to Congress reports on the feasibility of installing traffic alert and collision avoidance systems and automatic dependent surveillance-broadcast IN capabilities in all military rotary-wing aircraft, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1898?format=json","number":"1898","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6005","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6006","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"7462","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/hr/1796?format=json","number":"1796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6007","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"5788","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 6.","type":"S","title":"Brownfields Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/347?format=json","number":"347","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6008","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6009","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6010","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6011","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6478","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","introducedDate":"2024-11-19","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1581?format=json","number":"1581","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"6012","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6013","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6414","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2024-07-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Patrick Gottsch.","url":"https://api.congress.gov/v3/bill/118/hres/1363?format=json","number":"1363","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-07-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6014","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6440","labels":["Legislation"],"properties":{"sponsored_by":"V000138","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"Support Military Families Act","url":"https://api.congress.gov/v3/bill/119/hr/977?format=json","number":"977","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6015","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6016","label":"COSPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"6535","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To publicize U.S. Customs and Border Protection operational statistics and report on foreign terrorist organizations.","url":"https://api.congress.gov/v3/bill/119/hr/1079?format=json","number":"1079","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6017","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6018","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6019","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6020","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6021","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6022","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6023","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6024","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6025","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"4526","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Energy for America’s Economic Future Act","url":"https://api.congress.gov/v3/bill/119/s/168?format=json","number":"168","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6026","label":"COSPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"7532","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-27","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of \"Macedonian American Heritage Month\" and celebrating the language, history, and culture of Macedonian Americans and their incredible contributions to the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1522?format=json","number":"1522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6027","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"4896","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Veterans’ Assuring Critical Care Expansions to Support Servicemembers (ACCESS) Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/275?format=json","number":"275","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6028","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"5726","labels":["Legislation"],"properties":{"sponsored_by":"C001088","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/708?format=json","number":"708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6029","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"7510","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit the use of Federal funds to implement, administer, or enforce a final rule of the Food and Drug Administration relating to \"Medical Devices; Laboratory Developed Tests\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1463?format=json","number":"1463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6030","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6031","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6032","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6811","labels":["Legislation"],"properties":{"sponsored_by":"B001327","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To direct the Secretary of Veterans Affairs to seek to enter into an agreement with a federally funded research and development center for an assessment of forms that the Secretary sends to claimants for benefits under laws administered by the Secretary, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1286?format=json","number":"1286","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6033","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6680","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to modify the criteria for designation of rural emergency hospitals.","url":"https://api.congress.gov/v3/bill/119/hr/1775?format=json","number":"1775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6034","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6035","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6036","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6037","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6038","label":"COSPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"6533","labels":["Legislation"],"properties":{"sponsored_by":"L000603","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Counterterrorism and Intelligence.","type":"HR","title":"To direct the Secretary of Homeland Security to conduct a threat assessment of terrorist threats to the United States posed by individuals in Syria with an affiliation with a Foreign Terrorist Organization or a Specially Designated Global Terrorist Organization, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1327?format=json","number":"1327","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6039","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6040","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"7625","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","introducedDate":"2023-02-27","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"INFO for Reproductive Care Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1224?format=json","number":"1224","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6041","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6042","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6043","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6044","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6045","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6046","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"6493","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 2600 Wesley Street in Greenville, Texas, as the \"Cooper Dawson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1025?format=json","number":"1025","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6047","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"5687","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Focus on Learning Act","url":"https://api.congress.gov/v3/bill/119/s/404?format=json","number":"404","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6048","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6049","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6050","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6051","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6052","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6053","label":"COSPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6054","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6055","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"7416","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to require silent alarms in elementary schools and secondary schools, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","number":"1524","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6056","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6057","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6058","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6059","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"6779","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"To establish the Land Port of Entry Modernization Trust Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1297?format=json","number":"1297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6060","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6061","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6062","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"4595","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1605-1606)","type":"S","title":"A bill to require the Secretary of the Treasury to mint commemorative coins in recognition of the life and legacy of Roberto Clemente.","url":"https://api.congress.gov/v3/bill/119/s/877?format=json","number":"877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6063","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6064","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"4472","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to prohibit the Secretary of Homeland Security from procuring certain foreign-made batteries, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/450?format=json","number":"450","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6065","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"4928","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","type":"S","title":"Small Business Regulatory Reduction Act","url":"https://api.congress.gov/v3/bill/119/s/387?format=json","number":"387","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6066","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"5474","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Setting Consumer Standards for Lithium-Ion Batteries Act","url":"https://api.congress.gov/v3/bill/119/s/389?format=json","number":"389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6067","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6068","label":"COSPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"4436","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S136; text: CR S140-141)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/26?format=json","number":"26","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6069","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6070","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6071","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6072","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"4393","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to ensure appropriate access to non-opioid pain management drugs under part D of the Medicare program.","url":"https://api.congress.gov/v3/bill/119/s/475?format=json","number":"475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6073","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6074","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6075","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"6421","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Prevent Tariff Abuse Act","url":"https://api.congress.gov/v3/bill/119/hr/407?format=json","number":"407","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"6076","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6077","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6078","label":"COSPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6079","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6080","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"7909","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To abolish the Board of Governors of the Federal Reserve System and the Federal reserve banks, to repeal the Federal Reserve Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1846?format=json","number":"1846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6081","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6082","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"7716","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HJRES","title":"Proposing a balanced budget amendment to the Constitution of the United States.","url":"https://api.congress.gov/v3/bill/119/hjres/10?format=json","number":"10","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6083","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"7912","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Senior Citizens Tax Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/1040?format=json","number":"1040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6084","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"4495","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish a permanent rural housing preservation and revitalization program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/885?format=json","number":"885","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6085","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"4675","labels":["Legislation"],"properties":{"sponsored_by":"R000608","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to require a lactation space in each medical center of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/778?format=json","number":"778","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6086","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"5163","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to enhance compliance with hospital price transparency requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6087","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6088","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6089","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"4538","labels":["Legislation"],"properties":{"sponsored_by":"R000605","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","type":"S","title":"A bill to amend the Indian Health Care Improvement Act to address liability for payment of charges or costs associated with the provision of purchased/referred care services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/699?format=json","number":"699","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6090","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6091","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"4474","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to include screening for loneliness and coordination of supportive services and health care to address the negative health effects of loneliness, to require a report on loneliness, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/473?format=json","number":"473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6092","label":"COSPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"5579","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/479?format=json","number":"479","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6093","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6094","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6095","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6096","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6097","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"6987","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Natural Resources, Energy and Commerce, and Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require that a State be ineligible to receive funds under certain Federal programs unless the State has in effect a State law restricting the purchase of agricultural land by certain foreign persons, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1184?format=json","number":"1184","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6098","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"7614","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing support for the designation of April 17, 2025, as \"Cambodian Genocide Remembrance Day\" to remember the horrific slaughter of almost 2,000,000 Cambodian people at the hand of the Khmer Rouge regime.","url":"https://api.congress.gov/v3/bill/118/hres/1156?format=json","number":"1156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6099","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6100","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6101","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"5769","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Energy","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution designating the week of September 23 through September 27, 2024, as \"National Clean Energy Week\".","url":"https://api.congress.gov/v3/bill/118/sres/882?format=json","number":"882","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6102","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6103","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"4495","labels":["Legislation"],"properties":{"sponsored_by":"S001181","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to establish a permanent rural housing preservation and revitalization program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/885?format=json","number":"885","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6104","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"5747","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to extend duty-free treatment provided with respect to imports from Haiti under the Caribbean Basin Economic Recovery Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/742?format=json","number":"742","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6105","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"5245","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to streamline the oil and gas permitting process and to recognize fee ownership for certain oil and gas drilling or spacing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/722?format=json","number":"722","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6106","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"4759","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tule River Tribe Reserved Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","number":"689","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6107","label":"COSPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6108","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6109","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6218","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week beginning November 11, 2024, as \"National Pregnancy Center Week\" to recognize the vital role that community-supported pregnancy centers play in saving lives and serving women and men faced with difficult pregnancy decisions.","url":"https://api.congress.gov/v3/bill/118/hres/1509?format=json","number":"1509","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6110","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6111","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6112","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6113","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6114","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"6779","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"To establish the Land Port of Entry Modernization Trust Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1297?format=json","number":"1297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6115","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6116","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6117","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"5506","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the exclusion for certain conservation subsidies to include subsidies for water conservation or efficiency measures, storm water management measures, and wastewater management measures.","url":"https://api.congress.gov/v3/bill/119/s/857?format=json","number":"857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6118","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"5467","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the African Burial Ground International Memorial Museum and Educational Center in New York, New York, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/728?format=json","number":"728","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6119","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6120","label":"COSPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"4804","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Appropriations.","type":"S","title":"A bill to amend title 31, United States Code, to provide for automatic continuing resolutions.","url":"https://api.congress.gov/v3/bill/119/s/499?format=json","number":"499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6121","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6122","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6123","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6124","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"6499","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-03","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/119/hr/195?format=json","number":"195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6125","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6126","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6127","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6128","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6129","label":"COSPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6130","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6447","labels":["Legislation"],"properties":{"sponsored_by":"J000310","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require an assessement of CBP and ICE staffing at the southern border, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1930?format=json","number":"1930","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6131","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6132","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6133","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6134","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6135","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6136","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"7462","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/hr/1796?format=json","number":"1796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6137","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6138","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6139","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6640","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To assist applicants for community development block grant recovery assistance not having traditionally accepted forms of documentation of ownership of property to prove such ownership, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1607?format=json","number":"1607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6140","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"7003","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish a credit for the domestic production of high-performance rare earth magnets, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1496?format=json","number":"1496","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6141","label":"COSPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6142","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6143","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6648","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/118/hr/1497?format=json","number":"1497","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6144","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6145","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6146","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"5509","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"CCP IP Act","url":"https://api.congress.gov/v3/bill/119/s/330?format=json","number":"330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6147","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"6077","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to add alpha-gal to the definition of \"major food allergen\".","url":"https://api.congress.gov/v3/bill/119/hr/1178?format=json","number":"1178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6148","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6149","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"5787","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Environment and Public Works.","url":"https://api.congress.gov/v3/bill/119/sres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6150","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6151","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"5687","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Focus on Learning Act","url":"https://api.congress.gov/v3/bill/119/s/404?format=json","number":"404","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6152","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6153","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6154","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6155","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"7027","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-13","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Preserving Choice in Vehicle Purchases Act","url":"https://api.congress.gov/v3/bill/119/hr/346?format=json","number":"346","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6156","label":"COSPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6157","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6158","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6159","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6160","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"5506","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to expand the exclusion for certain conservation subsidies to include subsidies for water conservation or efficiency measures, storm water management measures, and wastewater management measures.","url":"https://api.congress.gov/v3/bill/119/s/857?format=json","number":"857","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6161","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"4386","labels":["Legislation"],"properties":{"sponsored_by":"S001203","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6458)","type":"SRES","title":"A resolution supporting afterschool programs and Lights On Afterschool, a national celebration of afterschool programs held on October 24, 2024.","url":"https://api.congress.gov/v3/bill/118/sres/880?format=json","number":"880","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6162","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"5644","labels":["Legislation"],"properties":{"sponsored_by":"C001113","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to establish a grant program to provide assistance to local law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/768?format=json","number":"768","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6163","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"5474","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Setting Consumer Standards for Lithium-Ion Batteries Act","url":"https://api.congress.gov/v3/bill/119/s/389?format=json","number":"389","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6164","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6165","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6166","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6167","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"5349","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to require the Secretary of Veterans Affairs to establish an integrated project team to improve the process for scheduling appointments for health care from the Department of Veterans Affairs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/607?format=json","number":"607","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6168","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"4918","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Native Americans","introducedDate":"2023-03-02","latestAction_text":"Held at the desk.","type":"S","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/s/623?format=json","number":"623","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-20","latestAction_actionTime":"17:03:55"}}} +{"type":"relationship","id":"6169","label":"COSPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"6748","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","introducedDate":"2023-07-20","policyArea_name":"Education","latestAction_text":"Referred to the House Committee on Education and the Workforce.","type":"HRES","title":"Recognizing the importance of diversity, equity, and inclusion efforts in higher education.","url":"https://api.congress.gov/v3/bill/118/hres/608?format=json","number":"608","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6170","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"7755","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To provide for the prioritization of projects that provide behavioral and mental health treatment services in selecting grantees under certain rural development programs, and extend the substance abuse disorder set-aside and priority under the programs.","url":"https://api.congress.gov/v3/bill/119/hr/1906?format=json","number":"1906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6171","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6172","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6173","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6174","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6175","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6176","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"7737","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit Federal funds from being made available to entities that refuse to provide treatment based on COVID19 vaccination status.","url":"https://api.congress.gov/v3/bill/119/hr/1381?format=json","number":"1381","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6177","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6178","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"6649","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-02-28","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","type":"HR","title":"Broadband Incentives for Communities Act","url":"https://api.congress.gov/v3/bill/118/hr/1241?format=json","number":"1241","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6179","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6180","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6181","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6182","label":"COSPONSORED","start":{"id":"4069","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg","district":"2","startYear":"2025","name":"Taylor, David","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/T000490?format=json","bioguideId":"T000490"}},"end":{"id":"6403","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture Export Promotion Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6183","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6184","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6185","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6186","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6187","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6188","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"7013","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-02-13","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing consideration of the bill (H.R. 7176) to repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/118/hres/1009?format=json","number":"1009","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-14","latestAction_actionTime":"17:07:21"}}} +{"type":"relationship","id":"6189","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"7195","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 298 Route 292 in Holmes, New York, as the \"Sheriff Adrian 'Butch' Anderson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1008?format=json","number":"1008","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6190","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"5933","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small LENDER Act","url":"https://api.congress.gov/v3/bill/118/s/1159?format=json","number":"1159","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6191","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"7167","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HRES","title":"Condemning Republican inaction to address comprehensive immigration reform and border security.","url":"https://api.congress.gov/v3/bill/118/hres/1132?format=json","number":"1132","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6192","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"4313","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"PLAN for Broadband Act","url":"https://api.congress.gov/v3/bill/119/s/323?format=json","number":"323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"6193","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6194","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"4895","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Stop GREED Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/396?format=json","number":"396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6195","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6196","label":"COSPONSORED","start":{"id":"4070","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg","district":"22","startYear":"2025","name":"Mannion, John","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001231?format=json","bioguideId":"M001231"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6197","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6198","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4715","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to require the Bureau of Alcohol, Tobacco, Firearms, and Explosives to establish an administrative relief process for individuals whose applications for transfer and registration of a firearm were denied, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/884?format=json","number":"884","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6199","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4525","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-23","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S338-339)","type":"SRES","title":"A resolution calling on the Government of Panama to expel officials and interests of the People's Republic of China and terminate Chinese management of key Panamanian ports.","url":"https://api.congress.gov/v3/bill/119/sres/31?format=json","number":"31","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6200","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"6201","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"7218","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Bailout for Sanctuary Cities Act","url":"https://api.congress.gov/v3/bill/119/hr/32?format=json","number":"32","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6202","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"7012","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-03-19","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 1023) to repeal section 134 of the Clean Air Act, relating to the greenhouse gas reduction fund; providing for consideration of the bill (H.R. 1121) to prohibit a moratorium on the use of hydraulic fracturing; providing for consideration of the bill (H.R. 6009) to require the Director of the Bureau of Land Management to withdraw the proposed rule relating to fluid mineral leases and leasing process, and for other purposes; providing for consideration of the concurrent resolution (H. Con. Res. 86) expressing the sense of Congress that a carbon tax would be detrimental to the United States economy; providing for consideration of the resolution (H. Res. 987) denouncing the harmful, anti-American energy policies of the Biden administration, and for other purposes; and providing for consideration of the bill (H.R 7023) to amend section 404 of the Federal Water Pollution Control Act to codify certain regulatory provisions relating to nationwide permits for dredged or fill material, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1085?format=json","number":"1085","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-20","latestAction_actionTime":"14:09:44"}}} +{"type":"relationship","id":"6203","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"6257","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-03-01","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the need for enhanced public awareness of traumatic brain injury and support for the designation of a National Brain Injury Awareness Month.","url":"https://api.congress.gov/v3/bill/118/hres/1049?format=json","number":"1049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6204","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6205","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6206","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6207","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6208","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4895","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Stop GREED Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/396?format=json","number":"396","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6209","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6210","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4917","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"FASD Respect Act","url":"https://api.congress.gov/v3/bill/119/s/139?format=json","number":"139","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6211","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"4930","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","policyArea_name":"Agriculture and Food","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"Increased TSP Access Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/156?format=json","number":"156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6212","label":"COSPONSORED","start":{"id":"4071","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg","startYear":"2025","partyName":"Republican","name":"Mackenzie, Ryan","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/M001230?format=json","bioguideId":"M001230"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6213","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6214","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6215","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"7251","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to establish the critical supply chains reshoring investment tax credit.","url":"https://api.congress.gov/v3/bill/119/hr/1328?format=json","number":"1328","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6216","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"4898","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Restore VA Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/124?format=json","number":"124","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6217","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"4838","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S526-527; text: CR S525)","type":"SRES","title":"A resolution congratulating The Ohio State University football team for winning the 2025 College Football Playoff National Championship.","url":"https://api.congress.gov/v3/bill/119/sres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6218","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"5351","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Rural Obstetrics Readiness Act","url":"https://api.congress.gov/v3/bill/119/s/380?format=json","number":"380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6219","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6220","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6221","label":"COSPONSORED","start":{"id":"4072","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg","startYear":"2025","partyName":"Democratic","name":"Hernández, Pablo","attribution":"Image courtesy of the Member","state":"Puerto Rico","url":"https://api.congress.gov/v3/member/H001103?format=json","bioguideId":"H001103"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6222","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6223","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6224","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6225","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"5979","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S336-337)","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","url":"https://api.congress.gov/v3/bill/119/s/211?format=json","number":"211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6226","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6227","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"4923","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to provide a moratorium on all Federal research grants provided to any institution of higher education or other research institute that is conducting dangerous gain-of-function research.","url":"https://api.congress.gov/v3/bill/119/s/738?format=json","number":"738","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6228","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"7533","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-08-16","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"HCONRES","title":"Authorizing the use of the rotunda of the Capitol for a ceremony to award posthumously a Congressional Gold Medal in commemoration to the servicemembers who perished in Afghanistan on August 26, 2021, during the evacuation of citizens of the United States and Afghan allies at Hamid Karzai International Airport.","url":"https://api.congress.gov/v3/bill/118/hconres/126?format=json","number":"126","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6229","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6230","label":"COSPONSORED","start":{"id":"4073","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg","district":"3","startYear":"2025","name":"Dexter, Maxine","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/D000635?format=json","bioguideId":"D000635"}},"end":{"id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6231","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"6232","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6233","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6234","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6235","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6236","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6237","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6238","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6239","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6240","label":"COSPONSORED","start":{"id":"4074","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg","startYear":"2025","partyName":"Republican","name":"Bresnahan, Robert","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/B001327?format=json","bioguideId":"B001327"}},"end":{"id":"4812","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-21","policyArea_name":"NONE","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 5.","type":"SRES","title":"An original resolution expressing the sense of the Senate that the President of the United States possesses legal authority under existing law to take immediate and necessary action to secure the southwest border of the United States.","url":"https://api.congress.gov/v3/bill/119/sres/29?format=json","number":"29","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6241","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6242","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6243","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6244","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6245","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6246","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"6827","labels":["Legislation"],"properties":{"sponsored_by":"S001226","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To amend the Grand Ronde Reservation Act to address the hunting, fishing, trapping, and animal gathering rights of the Confederated Tribes of the Grand Ronde Community, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1499?format=json","number":"1499","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6247","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"6560","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of June 12, 2024, as \"Women Veterans Appreciation Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6248","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6249","label":"COSPONSORED","start":{"id":"4075","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg","district":"5","startYear":"2025","name":"Bynum, Janelle","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/B001326?format=json","bioguideId":"B001326"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6250","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6251","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"6300","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1866?format=json","number":"1866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6252","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"6659","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committees on Financial Services, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1668?format=json","number":"1668","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6253","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"5607","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1583-1584)","type":"SRES","title":"A resolution condemning Russia's illegal abduction of Ukrainian children.","url":"https://api.congress.gov/v3/bill/119/sres/110?format=json","number":"110","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6254","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6255","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6256","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"6661","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PATROL Act","url":"https://api.congress.gov/v3/bill/119/hr/992?format=json","number":"992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6257","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"4578","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","number":"24","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6258","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6259","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6260","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"6929","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"Chinese Spy Balloon Assessment Act","url":"https://api.congress.gov/v3/bill/119/hr/934?format=json","number":"934","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6261","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6262","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"4904","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Forest Protection Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6263","label":"COSPONSORED","start":{"id":"4076","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg","district":"3","startYear":"2025","name":"Biggs, Sheri","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/B001325?format=json","bioguideId":"B001325"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6264","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6265","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"6266","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6267","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6268","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6269","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"4956","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Congressional Award Program Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6270","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"7743","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-05-21","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4763) to provide for a system of regulation of digital assets by the Commodity Futures Trading Commission and the Securities and Exchange Commission, and for other purposes; providing for consideration of the bill (H.R. 5403) to amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes; and providing for consideration of the bill (H.R. 192) to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia.","url":"https://api.congress.gov/v3/bill/118/hres/1243?format=json","number":"1243","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":"14:45:37"}}} +{"type":"relationship","id":"6271","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6272","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6273","label":"COSPONSORED","start":{"id":"4077","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/668e9425658443009a697c95_200.jpg","district":"6","partyName":"Republican","startYear":"2024","name":"Rulli, Michael A.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/R000619?format=json","bioguideId":"R000619"}},"end":{"id":"6860","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-02-23","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Rules.","type":"HRES","title":"Amending the Rules of the House of Representatives to establish a Permanent Select Committee on Aging.","url":"https://api.congress.gov/v3/bill/118/hres/1029?format=json","number":"1029","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6274","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6275","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6276","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6277","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6278","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"4956","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Congressional Award Program Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6279","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6280","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"7668","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-03-27","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 47 - 0.","type":"HR","title":"Block the Use of Transatlantic Technology in Iranian Made Drones Act","url":"https://api.congress.gov/v3/bill/118/hr/1809?format=json","number":"1809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"6281","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6282","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6283","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6284","label":"COSPONSORED","start":{"id":"4078","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"26","imageUrl":"https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg","startYear":"2024","partyName":"Democratic","name":"Kennedy, Timothy M.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/K000402?format=json","bioguideId":"K000402"}},"end":{"id":"6890","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1421?format=json","number":"1421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6285","label":"COSPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6286","label":"COSPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6287","label":"COSPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6288","label":"COSPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"5631","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"MAILS Act","url":"https://api.congress.gov/v3/bill/119/s/155?format=json","number":"155","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6289","label":"COSPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6290","label":"COSPONSORED","start":{"id":"4079","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg","district":"1","startYear":"2023","name":"Amo, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/A000380?format=json","bioguideId":"A000380"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6291","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6210","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on actions taken by the Department of Government Efficiency.","url":"https://api.congress.gov/v3/bill/119/hr/1545?format=json","number":"1545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6292","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6293","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6294","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"6211","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the head of the Department of Government Efficiency to submit a report to Congress on the personnel of the Department and present information to Congress on the activities carried out by the Department, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1544?format=json","number":"1544","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6295","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6296","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"4811","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Free Speech Protection Act","url":"https://api.congress.gov/v3/bill/119/s/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6297","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"5178","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to implement a minimum work requirement for able-bodied adults enrolled in State Medicaid programs.","url":"https://api.congress.gov/v3/bill/119/s/447?format=json","number":"447","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6298","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6299","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6300","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6301","label":"COSPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"7543","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2023-12-06","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Jamaal Bowman.","url":"https://api.congress.gov/v3/bill/118/hres/914?format=json","number":"914","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":"10:56:08"}}} +{"type":"relationship","id":"6302","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6303","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6304","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"4223","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6729)","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/911?format=json","number":"911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6305","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6306","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6307","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"4188","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate certain land administered by the Bureau of Land Management and the Forest Service in the State of Oregon as wilderness and national recreation areas, to withdraw certain land located in Curry County and Josephine County, Oregon, from all forms of entry, appropriation, or disposal under the public land laws, location, entry, and patent under the mining laws, and operation under the mineral leasing and geothermal leasing laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/888?format=json","number":"888","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6308","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"6722","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Intelligence Reform and Terrorism Prevention Act of 2004 to authorize the Director of the Federal Bureau of Investigation to make security clearance determinations and access determinations for political appointees and special Government employees in the Executive Office of the President, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1591?format=json","number":"1591","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6309","label":"COSPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"5003","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-25","policyArea_name":"Congress","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent. (consideration: CR S1434; text: 02/25/2025 CR S1352-1358)","type":"SRES","title":"An original resolution authorizing expenditures by committees of the Senate for the periods March 1, 2025, through September 30, 2025, October 1, 2025, through September 30, 2026, and October 1, 2026, through February 28, 2027.","url":"https://api.congress.gov/v3/bill/119/sres/94?format=json","number":"94","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6310","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6311","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6312","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6313","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6314","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6315","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6316","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6317","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6318","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6319","label":"COSPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"6320","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6321","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6322","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6323","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6324","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6325","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6326","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"5068","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to provide for fiscal accountability, to require institutions of higher education to publish information regarding student success, to provide for school accountability for student loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6327","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6328","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6329","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6330","label":"COSPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6331","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"6332","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6333","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6334","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"4610","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S43)","type":"SRES","title":"A resolution to constitute the minority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/17?format=json","number":"17","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"6335","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6336","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6337","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6403","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture Export Promotion Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6338","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"6928","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide for the vacating of certain convictions and expungement of certain arrests of victims of human trafficking.","url":"https://api.congress.gov/v3/bill/119/hr/1379?format=json","number":"1379","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6339","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"5467","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the African Burial Ground International Memorial Museum and Educational Center in New York, New York, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/728?format=json","number":"728","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6340","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6341","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6342","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"5398","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protecting First Responders from Secondary Exposure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/180?format=json","number":"180","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6343","label":"COSPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6344","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6345","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6346","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6347","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6348","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6349","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6350","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6351","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6352","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6353","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6354","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6355","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"4474","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to include screening for loneliness and coordination of supportive services and health care to address the negative health effects of loneliness, to require a report on loneliness, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/473?format=json","number":"473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6356","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"4595","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1605-1606)","type":"S","title":"A bill to require the Secretary of the Treasury to mint commemorative coins in recognition of the life and legacy of Roberto Clemente.","url":"https://api.congress.gov/v3/bill/119/s/877?format=json","number":"877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6357","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6358","label":"COSPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"5893","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to extend the temporary scheduling order for fentanyl-related substances for 6 months.","url":"https://api.congress.gov/v3/bill/119/s/724?format=json","number":"724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6359","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6360","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6300","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Child Abuse Prevention and Treatment Act to disqualify any State that discriminates against parents or guardians who oppose medical, surgical, pharmacological, psychological treatment, or clothing and social changes related to affirming the subjective claims of gender identity expressed by any minor if such claimed identity is inconsistent with such minor's biological sex from receiving funding under such Act.","url":"https://api.congress.gov/v3/bill/119/hr/1866?format=json","number":"1866","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6361","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6362","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6660","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to prohibit transactions involving certain financial instruments by senior Federal employees, their spouses, or dependent children, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1599?format=json","number":"1599","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6363","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6648","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"118","introducedDate":"2023-03-09","policyArea_name":"Energy","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","type":"HR","title":"American Gas for Allies Act","url":"https://api.congress.gov/v3/bill/118/hr/1497?format=json","number":"1497","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6364","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"4776","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to encourage States to report to the Attorney General certain information regarding inmates who give birth in the custody of law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/687?format=json","number":"687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6365","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"7176","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of the week of September 23, 2024, as \"National Latino Gastronomic Cuisine Week\", and celebrating the vibrant and diverse culinary traditions of Latino gastronomy.","url":"https://api.congress.gov/v3/bill/118/hres/1488?format=json","number":"1488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6366","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6444","labels":["Legislation"],"properties":{"sponsored_by":"K000403","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Food and Nutrition Act of 2008 to modify work requirements under the supplemental nutrition assistance program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1198?format=json","number":"1198","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6367","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"5046","labels":["Legislation"],"properties":{"sponsored_by":"K000367","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to treat certain postsecondary credentialing expenses as qualified higher education expenses for purposes of 529 accounts.","url":"https://api.congress.gov/v3/bill/119/s/756?format=json","number":"756","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6368","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"4263","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2024-09-25","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6455)","type":"SRES","title":"A resolution expressing support for the designation of October 2024 as \"National Youth Justice Action Month\".","url":"https://api.congress.gov/v3/bill/118/sres/871?format=json","number":"871","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6369","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"7746","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 2799) to make reforms to the capital markets of the United States, and for other purposes, and providing for consideration of the bill (H.R. 7511) to require the Secretary of Homeland Security to take into custody aliens who have been charged in the United States with theft, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1052?format=json","number":"1052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":"16:13:34"}}} +{"type":"relationship","id":"6370","label":"COSPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"6661","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PATROL Act","url":"https://api.congress.gov/v3/bill/119/hr/992?format=json","number":"992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6371","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6372","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6373","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6374","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6375","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6376","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6377","label":"COSPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"7851","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to provide for the continued implementation of the Climate and Health program by the Centers for Disease Control and Prevention.","url":"https://api.congress.gov/v3/bill/119/hr/1645?format=json","number":"1645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6378","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6379","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6380","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6381","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"4471","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S797-798)","type":"SRES","title":"An original resolution authorizing expenditures by the Special Committee on Aging.","url":"https://api.congress.gov/v3/bill/119/sres/62?format=json","number":"62","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6382","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6383","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6384","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6385","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6386","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6387","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"5267","labels":["Legislation"],"properties":{"sponsored_by":"H001042","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the clean fuel production credit to provide a special rate for sustainable vessel fuel.","url":"https://api.congress.gov/v3/bill/119/s/692?format=json","number":"692","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6388","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"6227","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-03-05","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Denouncing calls for a cease-fire in Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1057?format=json","number":"1057","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6389","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6390","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"7835","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/hr/996?format=json","number":"996","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6391","label":"COSPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"5068","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to provide for fiscal accountability, to require institutions of higher education to publish information regarding student success, to provide for school accountability for student loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6392","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6393","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"6810","labels":["Legislation"],"properties":{"sponsored_by":"B001327","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 18, United States Code, to require the impaneling of a new jury if a jury fails to recommend by unanimous vote a sentence for conviction of a crime punishable by death.","url":"https://api.congress.gov/v3/bill/119/hr/1556?format=json","number":"1556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6394","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6395","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6396","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6397","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"7126","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-11","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the 80th Anniversary of the Warsaw Uprising.","url":"https://api.congress.gov/v3/bill/118/hres/1440?format=json","number":"1440","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6398","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6399","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"5488","labels":["Legislation"],"properties":{"sponsored_by":"G000359","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-02-11","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S863)","type":"SRES","title":"A resolution affirming that Hamas cannot retain any political or military control in the Gaza Strip.","url":"https://api.congress.gov/v3/bill/119/sres/72?format=json","number":"72","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6400","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6401","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6402","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6403","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"5528","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the establishment of a process for the review of rules and sets of rules, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/648?format=json","number":"648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6404","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6405","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6406","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"5981","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S231-232)","type":"S","title":"Wildland Firefighters Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/142?format=json","number":"142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6407","label":"COSPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6408","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"6579","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/119/hr/1949?format=json","number":"1949","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6409","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7043","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to establish a new criterion for the nonapplication of site-neutral payments to long-term care hospitals under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1924?format=json","number":"1924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6410","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6411","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"6581","labels":["Legislation"],"properties":{"sponsored_by":"P000048","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Public Health Service Act to provide for prevention and early intervention services under the Block Grants for Community Mental Health Services program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1735?format=json","number":"1735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6412","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6413","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6414","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6415","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6416","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"6740","labels":["Legislation"],"properties":{"sponsored_by":"V000131","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-17","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on House Administration, Science, Space, and Technology, Oversight and Accountability, Financial Services, Ways and Means, Natural Resources, Homeland Security, and Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Supporting the designation of September 2024 as \"National Voting Rights Month\".","url":"https://api.congress.gov/v3/bill/118/hres/1461?format=json","number":"1461","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6417","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6418","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6419","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6420","label":"COSPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6421","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6422","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6423","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7319","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing certain Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1347?format=json","number":"1347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":"12:16:07"}}} +{"type":"relationship","id":"6424","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6425","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6426","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7614","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing support for the designation of April 17, 2025, as \"Cambodian Genocide Remembrance Day\" to remember the horrific slaughter of almost 2,000,000 Cambodian people at the hand of the Khmer Rouge regime.","url":"https://api.congress.gov/v3/bill/118/hres/1156?format=json","number":"1156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6427","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"7025","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Sponsor introductory remarks on measure. (CR H535-536)","type":"HR","title":"ORPHAN Cures Act","url":"https://api.congress.gov/v3/bill/119/hr/946?format=json","number":"946","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6428","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6429","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"5203","labels":["Legislation"],"properties":{"sponsored_by":"J000312","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to authorize the National Medal of Honor Museum Foundation to establish a commemorative work on the National Mall to honor the extraordinary acts of valor, selfless service, and sacrifice displayed by Medal of Honor recipients.","url":"https://api.congress.gov/v3/bill/119/s/858?format=json","number":"858","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6430","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"5546","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for the imposition of sanctions with respect to forced organ harvesting within the People's Republic of China, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/817?format=json","number":"817","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6431","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"5170","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to amend title 18, United States Code, to improve the Law Enforcement Officers Safety Act of 2004 and provisions relating to the carrying of concealed weapons by law enforcement officers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/679?format=json","number":"679","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6432","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6433","label":"COSPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"4449","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend title 5, United States Code, to provide for an alternative removal for performance or misconduct for Federal employees.","url":"https://api.congress.gov/v3/bill/119/s/662?format=json","number":"662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6434","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6435","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6436","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6437","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6438","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6439","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6440","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"7856","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-01-09","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","type":"HR","title":"Baby Changing on Board Act","url":"https://api.congress.gov/v3/bill/119/hr/248?format=json","number":"248","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6441","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"4437","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-07","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S40; text: CR S42-43)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/16?format=json","number":"16","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"6442","label":"COSPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6443","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6444","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6445","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"6693","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Small Business Investor Tax Parity Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/652?format=json","number":"652","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6446","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7043","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to establish a new criterion for the nonapplication of site-neutral payments to long-term care hospitals under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1924?format=json","number":"1924","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6447","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"6448","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"5892","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XIX of the Social Security Act to establish a demonstration project to improve outpatient clinical care for individuals with sickle cell disease.","url":"https://api.congress.gov/v3/bill/119/s/721?format=json","number":"721","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6449","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7256","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"250 Years of Service and Sacrifice Commemorative Coin Act","url":"https://api.congress.gov/v3/bill/119/hr/951?format=json","number":"951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6450","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6451","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"7504","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-12-07","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HRES","title":"Recognizing the 83rd anniversary of the groundbreaking of Fort Leonard Wood, Missouri.","url":"https://api.congress.gov/v3/bill/118/hres/919?format=json","number":"919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"6452","label":"COSPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"6659","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committees on Financial Services, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1668?format=json","number":"1668","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6453","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6454","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6455","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6456","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6457","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"4467","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to permit the Attorney General to award grants for accurate data on opioid-related overdoses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/617?format=json","number":"617","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6458","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"4532","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-09","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Transparency in Bureaucratic Communications Act","url":"https://api.congress.gov/v3/bill/119/s/66?format=json","number":"66","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6459","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6460","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6461","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6462","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6463","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6464","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"5509","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-30","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"CCP IP Act","url":"https://api.congress.gov/v3/bill/119/s/330?format=json","number":"330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6465","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6466","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"5876","labels":["Legislation"],"properties":{"sponsored_by":"B001303","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2024-09-18","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Honoring the life and legacy of Diaz Bonville.","url":"https://api.congress.gov/v3/bill/118/hres/1465?format=json","number":"1465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6467","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6468","label":"COSPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6469","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6470","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6471","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6472","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7668","labels":["Legislation"],"properties":{"sponsored_by":"K000375","congress":"118","policyArea_name":"International Affairs","introducedDate":"2023-03-27","latestAction_text":"Ordered to be Reported (Amended) by the Yeas and Nays: 47 - 0.","type":"HR","title":"Block the Use of Transatlantic Technology in Iranian Made Drones Act","url":"https://api.congress.gov/v3/bill/118/hr/1809?format=json","number":"1809","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-10-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"6473","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6474","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6475","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"5631","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"MAILS Act","url":"https://api.congress.gov/v3/bill/119/s/155?format=json","number":"155","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6476","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6477","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6478","label":"COSPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"7346","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Energy Conservation and Production Act to reauthorize the Weatherization Assistance Program, direct the Secretary of Energy to establish a weatherization readiness program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1355?format=json","number":"1355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6479","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6480","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6481","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6482","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"5068","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to provide for fiscal accountability, to require institutions of higher education to publish information regarding student success, to provide for school accountability for student loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6483","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6484","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6485","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6486","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6487","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6488","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"4322","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","introducedDate":"2023-05-04","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"LOCAL Infrastructure Act","url":"https://api.congress.gov/v3/bill/118/s/1453?format=json","number":"1453","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6489","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"7006","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the resolution (H. Res. 1371) strongly condemning the Biden Administration and its Border Czar, Kamala Harris's, failure to secure the United States border.","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","number":"1376","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"21:16:52"}}} +{"type":"relationship","id":"6490","label":"COSPONSORED","start":{"id":"4096","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg","district":"19","startYear":"2025","name":"Riley, Josh","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000622?format=json","bioguideId":"R000622"}},"end":{"id":"7346","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Energy Conservation and Production Act to reauthorize the Weatherization Assistance Program, direct the Secretary of Energy to establish a weatherization readiness program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1355?format=json","number":"1355","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6491","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6492","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"4898","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Restore VA Accountability Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/124?format=json","number":"124","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6493","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6494","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6495","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"4223","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-21","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6734; text: CR S6729)","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/911?format=json","number":"911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6496","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6497","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"7367","labels":["Legislation"],"properties":{"sponsored_by":"T000468","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Homeland Security, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Homeland Security Act of 2002 to authorize a program to assess the threat, vulnerability, and consequences of terrorism or other security threats, as appropriate, to certain events, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1508?format=json","number":"1508","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6498","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6499","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6500","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6501","label":"COSPONSORED","start":{"id":"4097","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg","district":"9","startYear":"2025","name":"Pou, Nellie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/P000621?format=json","bioguideId":"P000621"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6502","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6503","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6504","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6505","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6506","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6507","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6508","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"6434","labels":["Legislation"],"properties":{"sponsored_by":"D000617","congress":"118","policyArea_name":"Science, Technology, Communications","introducedDate":"2023-08-04","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","number":"646","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-08-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6509","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"5933","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small LENDER Act","url":"https://api.congress.gov/v3/bill/118/s/1159?format=json","number":"1159","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6510","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"4256","labels":["Legislation"],"properties":{"sponsored_by":"W000802","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Tax Breaks for Outsourcing Act","url":"https://api.congress.gov/v3/bill/119/s/409?format=json","number":"409","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6511","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6512","label":"COSPONSORED","start":{"id":"4098","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"16","imageUrl":"https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg","startYear":"2025","partyName":"Democratic","name":"Latimer, George","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000606?format=json","bioguideId":"L000606"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6513","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"6514","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6515","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6516","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"4410","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to extend the Alaska Native Vietnam era Veterans Land Allotment Program.","url":"https://api.congress.gov/v3/bill/119/s/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6517","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"6073","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To ensure the ability of public safety officers to retain their right to free speech on matters related to public safety, working conditions, and other matters.","url":"https://api.congress.gov/v3/bill/119/hr/1443?format=json","number":"1443","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6518","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6519","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7415","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"To amend the Federal Fire Prevention and Control Act of 1974 to make available under the assistance to firefighters grant program the establishment of cancer prevention programs, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1610?format=json","number":"1610","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6520","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6521","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6522","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6523","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6524","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6525","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7013","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-02-13","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing consideration of the bill (H.R. 7176) to repeal restrictions on the export and import of natural gas.","url":"https://api.congress.gov/v3/bill/118/hres/1009?format=json","number":"1009","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-14","latestAction_actionTime":"17:07:21"}}} +{"type":"relationship","id":"6526","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7195","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 298 Route 292 in Holmes, New York, as the \"Sheriff Adrian 'Butch' Anderson Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1008?format=json","number":"1008","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6527","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"4313","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","policyArea_name":"Science, Technology, Communications","introducedDate":"2025-01-29","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"PLAN for Broadband Act","url":"https://api.congress.gov/v3/bill/119/s/323?format=json","number":"323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"6528","label":"COSPONSORED","start":{"id":"4099","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg","district":"4","startYear":"2025","name":"Gillen, Laura","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/G000602?format=json","bioguideId":"G000602"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6529","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"6847","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit funds for the Armed Forces to engage in operations to invade or seize territory from Canada, the Republic of Panama, or the self-governing territory of Greenland.","url":"https://api.congress.gov/v3/bill/119/hr/1936?format=json","number":"1936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6530","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6531","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"5768","labels":["Legislation"],"properties":{"sponsored_by":"C001035","congress":"118","introducedDate":"2023-06-07","policyArea_name":"Health","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 184.","type":"S","title":"Special Diabetes Program Reauthorization Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1855?format=json","number":"1855","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-07-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6532","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6533","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6534","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"4811","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Free Speech Protection Act","url":"https://api.congress.gov/v3/bill/119/s/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6535","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6536","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"4534","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Censorship Accountability Act","url":"https://api.congress.gov/v3/bill/119/s/67?format=json","number":"67","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6537","label":"COSPONSORED","start":{"id":"4100","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"10","imageUrl":"https://www.congress.gov/img/member/66fd489d799e1a7c06d68d62_200.jpg","startYear":"2024","partyName":"Democratic","name":"McIver, LaMonica","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001229?format=json","bioguideId":"M001229"}},"end":{"id":"6705","labels":["Legislation"],"properties":{"sponsored_by":"G000581","congress":"118","introducedDate":"2023-03-27","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Honest Runway Labeling Act","url":"https://api.congress.gov/v3/bill/118/hr/1804?format=json","number":"1804","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6538","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6539","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6540","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"6514","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"118","introducedDate":"2024-11-14","policyArea_name":"Families","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HRES","title":"Honoring the selfless acts of adoption, fostering, and unconditional love by Bishop W.C. Martin, First Lady Donna Martin, and the Bennett Chapel Missionary Baptist Church of Possum Trot, Texas, toward the children in their community, and recognizing families across America who strive to foster, adopt, and better the lives of vulnerable children in the foster care system.","url":"https://api.congress.gov/v3/bill/118/hres/1572?format=json","number":"1572","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-11-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6541","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6542","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"6543","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7489","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to amend certain regulations to clarify that livestock auction owners may have an interest in small meatpacking businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1648?format=json","number":"1648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6544","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6545","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"5784","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend title XVIII of the Social Security Act to expand and expedite access to cardiac rehabilitation programs and pulmonary rehabilitation programs under the Medicare program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/717?format=json","number":"717","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6546","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"6272","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-01","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"LEO Fair Retirement Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1323?format=json","number":"1323","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"6547","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"6271","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Government Operations and Politics","introducedDate":"2023-03-01","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HR","title":"Law Enforcement Officers Equity Act","url":"https://api.congress.gov/v3/bill/118/hr/1322?format=json","number":"1322","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-03-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"6548","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"7267","labels":["Legislation"],"properties":{"sponsored_by":"L000273","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Navajo Nation in the Rio San José Stream System in the State of New Mexico, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1324?format=json","number":"1324","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6549","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6550","label":"COSPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"6779","labels":["Legislation"],"properties":{"sponsored_by":"C001063","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HR","title":"To establish the Land Port of Entry Modernization Trust Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1297?format=json","number":"1297","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6551","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6552","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6553","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6554","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6555","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6556","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6557","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6558","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6559","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"5933","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Commerce","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"Small LENDER Act","url":"https://api.congress.gov/v3/bill/118/s/1159?format=json","number":"1159","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6560","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"7853","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Education and Workforce, and in addition to the Committees on House Administration, and Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Job Protection Act","url":"https://api.congress.gov/v3/bill/119/hr/1035?format=json","number":"1035","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6561","label":"COSPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6562","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6563","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6564","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6565","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"6928","labels":["Legislation"],"properties":{"sponsored_by":"F000478","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To provide for the vacating of certain convictions and expungement of certain arrests of victims of human trafficking.","url":"https://api.congress.gov/v3/bill/119/hr/1379?format=json","number":"1379","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6566","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6567","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7416","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to require silent alarms in elementary schools and secondary schools, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","number":"1524","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6568","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7256","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-04","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"250 Years of Service and Sacrifice Commemorative Coin Act","url":"https://api.congress.gov/v3/bill/119/hr/951?format=json","number":"951","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6569","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6570","label":"COSPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6571","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6572","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"6573","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6574","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6575","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6576","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"4410","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to extend the Alaska Native Vietnam era Veterans Land Allotment Program.","url":"https://api.congress.gov/v3/bill/119/s/785?format=json","number":"785","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6577","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"4348","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to furnish hyperbaric oxygen therapy to certain veterans with traumatic brain injury or post-traumatic stress disorder.","url":"https://api.congress.gov/v3/bill/119/s/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6578","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6579","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"5104","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Infrastructure Investment and Jobs Act to require the Secretary of Energy to establish an abandoned wells research, development, and demonstration program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/818?format=json","number":"818","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6580","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6581","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6582","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"4943","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal land in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/715?format=json","number":"715","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6583","label":"COSPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6584","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6585","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6586","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6587","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6588","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6589","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6590","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6591","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6592","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6593","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6594","label":"COSPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"6919","labels":["Legislation"],"properties":{"sponsored_by":"L000601","congress":"118","introducedDate":"2024-01-18","policyArea_name":"Immigration","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","type":"HRES","title":"Expressing the sense of the House of Representatives that Congress should fully fund border security personnel, immigration judges, and related personnel and border technology needs at the southern border.","url":"https://api.congress.gov/v3/bill/118/hres/973?format=json","number":"973","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-01-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6595","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"6681","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permanently extend the exemption for telehealth services from certain high deductible health plan rules.","url":"https://api.congress.gov/v3/bill/119/hr/1650?format=json","number":"1650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6596","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7044","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to remove in-person requirements under Medicare for mental health services furnished through telehealth and telecommunications technology.","url":"https://api.congress.gov/v3/bill/119/hr/1867?format=json","number":"1867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6597","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"6887","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend title XIX of the Social Security Act to require certain additional provider screening under the Medicaid program.","url":"https://api.congress.gov/v3/bill/119/hr/1875?format=json","number":"1875","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6598","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7756","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Oversight and Government Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow employers a credit against income tax for employees who participate in qualified apprenticeship programs.","url":"https://api.congress.gov/v3/bill/119/hr/1662?format=json","number":"1662","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6599","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6600","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6601","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7532","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-27","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of \"Macedonian American Heritage Month\" and celebrating the language, history, and culture of Macedonian Americans and their incredible contributions to the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1522?format=json","number":"1522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6602","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7326","labels":["Legislation"],"properties":{"sponsored_by":"M001188","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","type":"HR","title":"To amend title 38, United States Code, to provide for the improvement of the Department of Veterans Affairs loan guarantee for purchase of residential cooperative housing units, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1803?format=json","number":"1803","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6603","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"7089","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To require the Secretary of the Treasury to mint coins in recognition of the bicentennial of the Erie Canal.","url":"https://api.congress.gov/v3/bill/119/hr/1546?format=json","number":"1546","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6604","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6605","label":"COSPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6606","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6607","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6608","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6609","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7153","labels":["Legislation"],"properties":{"sponsored_by":"V000136","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To approve the settlement of water rights claims of the Zuni Indian Tribe in the Zuni River Stream System in the State of New Mexico, to protect the Zuni Salt Lake, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1444?format=json","number":"1444","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6610","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6611","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6612","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6613","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6614","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6615","label":"COSPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6616","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7401","labels":["Legislation"],"properties":{"sponsored_by":"C001136","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide that certain payments to foreign related parties subject to sufficient foreign tax are not treated as base erosion payments.","url":"https://api.congress.gov/v3/bill/119/hr/1911?format=json","number":"1911","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6617","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6618","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6619","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7044","labels":["Legislation"],"properties":{"sponsored_by":"H001082","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to remove in-person requirements under Medicare for mental health services furnished through telehealth and telecommunications technology.","url":"https://api.congress.gov/v3/bill/119/hr/1867?format=json","number":"1867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6620","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"6499","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-03","latestAction_text":"Referred to the Subcommittee on Oversight, Investigations, and Accountability.","type":"HR","title":"CBP Relocation Act","url":"https://api.congress.gov/v3/bill/119/hr/195?format=json","number":"195","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6621","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"6077","labels":["Legislation"],"properties":{"sponsored_by":"V000133","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Federal Food, Drug, and Cosmetic Act to add alpha-gal to the definition of \"major food allergen\".","url":"https://api.congress.gov/v3/bill/119/hr/1178?format=json","number":"1178","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6622","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6623","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6624","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6625","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6626","label":"COSPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6627","label":"COSPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6628","label":"COSPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6629","label":"COSPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"6318","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Energy","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"COAL Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/280?format=json","number":"280","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6630","label":"COSPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"4354","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-29","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Graduate Opportunity and Affordable Loans Act","url":"https://api.congress.gov/v3/bill/119/s/308?format=json","number":"308","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"6631","label":"COSPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"8006","labels":["Legislation"],"properties":{"sponsored_by":"F000110","congress":"104","introducedDate":"1995-03-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Commerce, Trade, and Hazardous Materials.","type":"HR","title":"To require property and casualty insurers to provide written notification to insurance applicants and policyholders of decisions to refuse to issue or to cancel or refuse to renew an insurance policy.","url":"https://api.congress.gov/v3/bill/104/hr/1247?format=json","number":"1247","latestAction":"","amendmentNumber":"","latestAction_actionDate":"1995-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6632","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4526","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Energy","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"Energy for America’s Economic Future Act","url":"https://api.congress.gov/v3/bill/119/s/168?format=json","number":"168","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6633","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6634","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6635","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6636","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6637","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6638","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6639","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6640","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6641","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6642","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4840","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to rescind the unobligated balances of amounts appropriated for Internal Revenue Service enhancements and use such funding for an External Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/175?format=json","number":"175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6643","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6644","label":"COSPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"4207","labels":["Legislation"],"properties":{"sponsored_by":"W000779","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"United States-Cuba Trade Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/136?format=json","number":"136","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6645","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6646","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6647","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7259","labels":["Legislation"],"properties":{"sponsored_by":"M000317","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Animals","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","type":"HR","title":"Goldie’s Act","url":"https://api.congress.gov/v3/bill/119/hr/349?format=json","number":"349","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6648","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6649","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6650","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6651","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6652","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6653","label":"COSPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"6814","labels":["Legislation"],"properties":{"sponsored_by":"K000402","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To designate the facility of the United States Postal Service located at 1200 William Street, Room 200, in Buffalo, New York, as the \"William J. Donovan Post Office Building\".","url":"https://api.congress.gov/v3/bill/119/hr/1706?format=json","number":"1706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6654","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6655","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"6656","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"5847","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income gain from the sale of qualified real property interests acquired under the authority of the Readiness and Environmental Protection Integration (REPI) program administered by the Department of Defense pursuant to section 2684a of title 10, United States Code, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/439?format=json","number":"439","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6657","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"6847","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit funds for the Armed Forces to engage in operations to invade or seize territory from Canada, the Republic of Panama, or the self-governing territory of Greenland.","url":"https://api.congress.gov/v3/bill/119/hr/1936?format=json","number":"1936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6658","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6659","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6660","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6661","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"4811","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Free Speech Protection Act","url":"https://api.congress.gov/v3/bill/119/s/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6662","label":"COSPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6663","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6664","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6665","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"4397","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Protect and Serve Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/167?format=json","number":"167","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6666","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6667","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6668","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"7810","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To require certain reports on small business disaster assistance to be published on the website of the Small Business Administration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1475?format=json","number":"1475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6669","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6670","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6671","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6672","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6673","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6674","label":"COSPONSORED","start":{"id":"4113","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg","startYear":"2025","partyName":"Republican","name":"McDowell, Addison","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001240?format=json","bioguideId":"M001240"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6675","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6676","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7400","labels":["Legislation"],"properties":{"sponsored_by":"D000634","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-01-23","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"Federal Insurance Office Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/643?format=json","number":"643","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6677","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6678","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6679","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6680","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7070","labels":["Legislation"],"properties":{"sponsored_by":"S001205","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of \"Public Radio Music Day\" and deep appreciation for the role of public radio music stations in serving listeners, musicians, and hundreds of communities in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1491?format=json","number":"1491","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6681","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6682","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6683","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6684","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6685","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6686","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6687","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"7534","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-07-09","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing a Member to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/1342?format=json","number":"1342","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-09","latestAction_actionTime":"17:07:26"}}} +{"type":"relationship","id":"6688","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6689","label":"COSPONSORED","start":{"id":"4114","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg","district":"14","startYear":"2025","name":"Moore, Tim","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/M001236?format=json","bioguideId":"M001236"}},"end":{"id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6690","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6691","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6692","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6693","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6694","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6695","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6696","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"5396","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Rural Hospital Support Act","url":"https://api.congress.gov/v3/bill/119/s/335?format=json","number":"335","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6697","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6698","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6699","label":"COSPONSORED","start":{"id":"4115","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg","district":"13","startYear":"2025","name":"Knott, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/K000405?format=json","bioguideId":"K000405"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6700","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"4840","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to rescind the unobligated balances of amounts appropriated for Internal Revenue Service enhancements and use such funding for an External Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/175?format=json","number":"175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6701","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7435","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require aliens seeking admission to the United States as nonimmigrants to pay a bond or cash payment and to impose penalties on such aliens who fail to timely depart the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1837?format=json","number":"1837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6702","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"4984","labels":["Legislation"],"properties":{"sponsored_by":"M000133","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to ensure that there are no reductions in funding for critical education programs for fiscal years 2025, 2026, and 2027, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/810?format=json","number":"810","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6703","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7093","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit Federal funding for the Public Broadcasting Service and National Public Radio and to provide for the transfer of certain Federal funds that would have been made available to those organizations to reduce the public debt, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1216?format=json","number":"1216","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6704","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6705","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7924","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-04-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 7888) to reform the Foreign Intelligence Surveillance Act of 1978; providing for consideration of the bill (H.R. 529) to extend the customs waters of the United States from 12 nautical miles to 24 nautical miles from the baselines of the United States, consistent with Presidential Proclamation 7219; providing for consideration of the resolution (H. Res. 1112) denouncing the Biden administration's immigration policies; and providing for consideration of the resolution (H. Res. 1117) opposing efforts to place one-sided pressure on Israel with respect to Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1137?format=json","number":"1137","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":"09:35:51"}}} +{"type":"relationship","id":"6706","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6707","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"5450","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","url":"https://api.congress.gov/v3/bill/119/s/400?format=json","number":"400","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6708","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6709","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6710","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"5399","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/162?format=json","number":"162","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6711","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"7599","labels":["Legislation"],"properties":{"sponsored_by":"C001119","congress":"118","introducedDate":"2024-02-20","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on House Administration.","type":"HRES","title":"Ride-Along Resolution","url":"https://api.congress.gov/v3/bill/118/hres/1023?format=json","number":"1023","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6712","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6713","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"4904","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Forest Protection Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6714","label":"COSPONSORED","start":{"id":"4116","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg","district":"8","startYear":"2025","name":"Harris, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001102?format=json","bioguideId":"H001102"}},"end":{"id":"5969","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S1431)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to repeal the corporate alternative minimum tax.","url":"https://api.congress.gov/v3/bill/119/s/796?format=json","number":"796","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6715","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6716","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6717","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6718","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"5687","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Focus on Learning Act","url":"https://api.congress.gov/v3/bill/119/s/404?format=json","number":"404","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6719","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6720","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"7743","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-05-21","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 4763) to provide for a system of regulation of digital assets by the Commodity Futures Trading Commission and the Securities and Exchange Commission, and for other purposes; providing for consideration of the bill (H.R. 5403) to amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes; and providing for consideration of the bill (H.R. 192) to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia.","url":"https://api.congress.gov/v3/bill/118/hres/1243?format=json","number":"1243","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-22","latestAction_actionTime":"14:45:37"}}} +{"type":"relationship","id":"6721","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"7218","labels":["Legislation"],"properties":{"sponsored_by":"L000598","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"No Bailout for Sanctuary Cities Act","url":"https://api.congress.gov/v3/bill/119/hr/32?format=json","number":"32","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6722","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"6723","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6724","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"5163","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to enhance compliance with hospital price transparency requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6725","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"4186","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"118","policyArea_name":"Labor and Employment","introducedDate":"2023-02-02","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Early Educators Apprenticeship Act","url":"https://api.congress.gov/v3/bill/118/s/236?format=json","number":"236","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6726","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"5924","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S671)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Agriculture, Nutrition, and Forestry.","url":"https://api.congress.gov/v3/bill/119/sres/57?format=json","number":"57","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6727","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"5445","labels":["Legislation"],"properties":{"sponsored_by":"F000463","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to award a Congressional Gold Medal, collectively, to the individuals and communities who volunteered or donated items to the North Platte Canteen in North Platte, Nebraska, during World War II from December 25, 1941, to April 1, 1946.","url":"https://api.congress.gov/v3/bill/119/s/645?format=json","number":"645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6728","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6729","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6730","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"6450","labels":["Legislation"],"properties":{"sponsored_by":"G000603","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"REMAIN in Mexico Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/273?format=json","number":"273","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6731","label":"COSPONSORED","start":{"id":"4117","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg","district":"10","startYear":"2025","name":"Harrigan, Pat","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/H001101?format=json","bioguideId":"H001101"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6732","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6733","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6734","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"6685","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1367?format=json","number":"1367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6735","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6736","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"7555","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Defund Planned Parenthood Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/271?format=json","number":"271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6737","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6738","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6739","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"4436","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-14","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S136; text: CR S140-141)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/26?format=json","number":"26","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"6740","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"4620","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","number":"27","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6741","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"5893","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to extend the temporary scheduling order for fentanyl-related substances for 6 months.","url":"https://api.congress.gov/v3/bill/119/s/724?format=json","number":"724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6742","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6743","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6744","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6745","label":"COSPONSORED","start":{"id":"4118","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg","startYear":"2025","partyName":"Republican","name":"Fedorchak, Julie","attribution":"Image courtesy of the Member","state":"North Dakota","url":"https://api.congress.gov/v3/member/F000482?format=json","bioguideId":"F000482"}},"end":{"id":"5981","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S231-232)","type":"S","title":"Wildland Firefighters Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/142?format=json","number":"142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6746","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"4890","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S864)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Veterans' Affairs.","url":"https://api.congress.gov/v3/bill/119/sres/74?format=json","number":"74","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6747","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6748","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6749","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"4618","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6750","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"4894","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","policyArea_name":"Transportation and Public Works","introducedDate":"2025-02-06","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S767; text: CR S798-799)","type":"SRES","title":"A resolution honoring the memory of the victims of the tragic mid-air collision between American Airlines Flight 5342 and United States Army Aviation Brigade Priority Air Transport 25 on January 29, 2025.","url":"https://api.congress.gov/v3/bill/119/sres/64?format=json","number":"64","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6751","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"6752","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6753","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"5787","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Environment and Public Works.","url":"https://api.congress.gov/v3/bill/119/sres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6754","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"4885","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to establish an external provider scheduling program to assist the Department of Veterans Affairs in scheduling appointments for care and services under the Veterans Community Care Program, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/654?format=json","number":"654","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6755","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6756","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6757","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"6661","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on Transportation and Infrastructure, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"PATROL Act","url":"https://api.congress.gov/v3/bill/119/hr/992?format=json","number":"992","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6758","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6759","label":"COSPONSORED","start":{"id":"4119","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg","district":"2","startYear":"2025","name":"Downing, Troy","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Montana","url":"https://api.congress.gov/v3/member/D000634?format=json","bioguideId":"D000634"}},"end":{"id":"4951","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to limit the closure or consolidation of any United States Postal Service processing and distribution center in States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/569?format=json","number":"569","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6760","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6761","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6762","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6763","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6764","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"4432","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S861-862)","type":"S","title":"A bill to enhance the participation of precision agriculture in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/507?format=json","number":"507","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6765","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"5761","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-16","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Disaster Housing Reform for American Families Act","url":"https://api.congress.gov/v3/bill/119/s/120?format=json","number":"120","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"6766","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"6344","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To award a Congressional Gold Medal collectively to the Buffalo Soldier regiments, authorized by Congress in 1866 to serve in the United States Armed Forces, in recognition of their superior, dedicated, and vital service to our Nation.","url":"https://api.congress.gov/v3/bill/119/hr/1437?format=json","number":"1437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6767","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6768","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6769","label":"COSPONSORED","start":{"id":"4120","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Conaway, Herbert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/C001136?format=json","bioguideId":"C001136"}},"end":{"id":"5584","labels":["Legislation"],"properties":{"sponsored_by":"D000622","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to direct the Secretary of Transportation to issue rules requiring the inclusion of new safety equipment in school buses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/828?format=json","number":"828","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6770","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"6471","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the Secretary of Defense to request modifications relating to certain permits issued under the Federal Water Pollution Control Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1938?format=json","number":"1938","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6771","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6772","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6773","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6774","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6775","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6776","label":"COSPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6777","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6778","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6779","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6780","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"6983","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Veterans' Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend titles 10 and 38, United States Code, to extend certain benefits to members of the National Guard who incur disabilities while performing State active duty.","url":"https://api.congress.gov/v3/bill/119/hr/1824?format=json","number":"1824","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6781","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6782","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7139","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2023-03-22","policyArea_name":"Commerce","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Science, Space, and Technology, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Office of Manufacturing and Industrial Innovation Policy Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1710?format=json","number":"1710","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6783","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"5691","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Not One More Inch or Acre Act","url":"https://api.congress.gov/v3/bill/119/s/176?format=json","number":"176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6784","label":"COSPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"7123","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Commemorating the heroic sacrifices of the people of Ukraine 3 years after Russian President Vladimir Putin's illegal and unprovoked war against Ukraine on February 24, 2022, and recognizing the terrible cost of Russia's committing crimes against Humanity aggression.","url":"https://api.congress.gov/v3/bill/119/hres/154?format=json","number":"154","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6785","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6786","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"6360","labels":["Legislation"],"properties":{"sponsored_by":"F000471","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 5, United States Code, to clarify the nature of judicial review of agency interpretations of statutory and regulatory provisions.","url":"https://api.congress.gov/v3/bill/119/hr/1605?format=json","number":"1605","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6787","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"6788","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6789","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6790","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6791","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6792","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5687","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Focus on Learning Act","url":"https://api.congress.gov/v3/bill/119/s/404?format=json","number":"404","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6793","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5582","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Next of Kin Collections Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/274?format=json","number":"274","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6794","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6795","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"6297","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 20 - 14.","type":"HR","title":"DETERRENT Act","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","number":"1048","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6796","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5163","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to enhance compliance with hospital price transparency requirements, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/729?format=json","number":"729","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6797","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6798","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6799","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6800","label":"COSPONSORED","start":{"id":"4123","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg","district":"3","startYear":"2025","name":"Onder, Robert","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/O000177?format=json","bioguideId":"O000177"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6801","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6802","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6803","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6804","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6805","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6806","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6807","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6808","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"4926","labels":["Legislation"],"properties":{"sponsored_by":"M001198","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to prohibit the flying, draping, or other display of any flag other than the flag of the United States at covered public buildings, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/576?format=json","number":"576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6809","label":"COSPONSORED","start":{"id":"4124","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Olszewski, Johnny","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/O000176?format=json","bioguideId":"O000176"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6810","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"6498","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Venue Named Under Exception Act","url":"https://api.congress.gov/v3/bill/119/hr/194?format=json","number":"194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6811","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6812","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6813","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6814","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6815","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"5759","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protecting Students on Campus Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/163?format=json","number":"163","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6816","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6817","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"6560","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of June 12, 2024, as \"Women Veterans Appreciation Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6818","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6819","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"6892","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to conduct a study on the effectiveness of emergency alerting systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1076?format=json","number":"1076","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6820","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"4319","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2024-08-01","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5836; text: CR S5790)","type":"SRES","title":"A resolution designating August 2024 as \"National Catfish Month\".","url":"https://api.congress.gov/v3/bill/118/sres/802?format=json","number":"802","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-08-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"6821","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"6991","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","introducedDate":"2025-01-15","policyArea_name":"Taxation","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"CHILD Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/413?format=json","number":"413","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-15","latestAction_actionTime":""}}} +{"type":"relationship","id":"6822","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6823","label":"COSPONSORED","start":{"id":"4125","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67744afa0b34857ecc90913d_200.jpg","startYear":"2025","partyName":"Democratic","name":"McDonald Rivet, Kristen","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001237?format=json","bioguideId":"M001237"}},"end":{"id":"5005","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"A bill to reauthorize certain programs under the SUPPORT for Patients and Communities Act, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/500?format=json","number":"500","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6824","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6825","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6826","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"7851","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to provide for the continued implementation of the Climate and Health program by the Centers for Disease Control and Prevention.","url":"https://api.congress.gov/v3/bill/119/hr/1645?format=json","number":"1645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6827","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6828","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"4571","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"A bill to amend the Native American Tourism and Improving Visitor Experience Act to authorize grants to Indian tribes, tribal organizations, and Native Hawaiian organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/612?format=json","number":"612","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6829","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"7536","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","introducedDate":"2024-06-04","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/118/hres/1275?format=json","number":"1275","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"16:46:28"}}} +{"type":"relationship","id":"6830","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6831","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6832","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"5979","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S336-337)","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","url":"https://api.congress.gov/v3/bill/119/s/211?format=json","number":"211","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6833","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"5824","labels":["Legislation"],"properties":{"sponsored_by":"B001319","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S1499-1500)","type":"S","title":"A bill to implement or strengthen programs that increase the supply of quality child care services by enhancing the wages of child care workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/846?format=json","number":"846","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6834","label":"COSPONSORED","start":{"id":"4126","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg","startYear":"2025","partyName":"Democratic","name":"Morrison, Kelly","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/M001234?format=json","bioguideId":"M001234"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6835","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6836","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6837","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6838","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6839","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6840","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6841","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"4716","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","type":"SRES","title":"A resolution celebrating the extraordinary accomplishments and vital role of women business owners in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","number":"116","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6842","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6843","label":"COSPONSORED","start":{"id":"4127","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg","startYear":"2025","partyName":"Democratic","name":"McClain Delaney, April","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/M001232?format=json","bioguideId":"M001232"}},"end":{"id":"4838","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-30","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S526-527; text: CR S525)","type":"SRES","title":"A resolution congratulating The Ohio State University football team for winning the 2025 College Football Playoff National Championship.","url":"https://api.congress.gov/v3/bill/119/sres/48?format=json","number":"48","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"6844","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6845","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"7773","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"118","introducedDate":"2023-03-10","policyArea_name":"Taxation","latestAction_text":"Referred to the Subcommittee on Health.","type":"HR","title":"LEAP Act","url":"https://api.congress.gov/v3/bill/118/hr/1536?format=json","number":"1536","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6846","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"6892","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to conduct a study on the effectiveness of emergency alerting systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1076?format=json","number":"1076","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6847","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"4595","labels":["Legislation"],"properties":{"sponsored_by":"S000148","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1605-1606)","type":"S","title":"A bill to require the Secretary of the Treasury to mint commemorative coins in recognition of the life and legacy of Roberto Clemente.","url":"https://api.congress.gov/v3/bill/119/s/877?format=json","number":"877","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6848","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6849","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"5976","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S795-796)","type":"S","title":"A bill to amend the Omnibus Parks and Public Lands Management Act of 1996 to provide for the establishment of a Ski Area Fee Retention Account, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/472?format=json","number":"472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6850","label":"COSPONSORED","start":{"id":"4128","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg","startYear":"2025","partyName":"Republican","name":"King-Hinds, Kimberlyn","attribution":"Image courtesy of the Member","state":"Northern Mariana Islands","url":"https://api.congress.gov/v3/member/K000404?format=json","bioguideId":"K000404"}},"end":{"id":"5351","labels":["Legislation"],"properties":{"sponsored_by":"H001076","congress":"119","introducedDate":"2025-02-04","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Rural Obstetrics Readiness Act","url":"https://api.congress.gov/v3/bill/119/s/380?format=json","number":"380","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6851","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6852","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6853","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6854","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6855","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6856","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6857","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"5788","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-01-30","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 6.","type":"S","title":"Brownfields Reauthorization Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/347?format=json","number":"347","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6858","label":"COSPONSORED","start":{"id":"4129","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg","district":"3","startYear":"2025","name":"Elfreth, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/E000301?format=json","bioguideId":"E000301"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6859","label":"COSPONSORED","start":{"id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6860","label":"COSPONSORED","start":{"id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6861","label":"COSPONSORED","start":{"id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}},"end":{"id":"5096","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"ALIGN Act","url":"https://api.congress.gov/v3/bill/119/s/187?format=json","number":"187","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6862","label":"COSPONSORED","start":{"id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6863","label":"COSPONSORED","start":{"id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}},"end":{"id":"4315","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"No Taxpayer Funding for Abortion and Abortion Insurance Full Disclosure Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/186?format=json","number":"186","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6864","label":"COSPONSORED","start":{"id":"4130","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg","district":"1","startYear":"2025","name":"Bell, Wesley","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/B001324?format=json","bioguideId":"B001324"}},"end":{"id":"6641","labels":["Legislation"],"properties":{"sponsored_by":"F000468","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To protect an individuals ability to access contraceptives and to engage in contraception and to protect a health care providers ability to provide contraceptives, contraception, and information related to contraception.","url":"https://api.congress.gov/v3/bill/119/hr/999?format=json","number":"999","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6865","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"4170","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"STRATEGIC Minerals Act","url":"https://api.congress.gov/v3/bill/119/s/429?format=json","number":"429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6866","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"6867","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6868","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"6042","labels":["Legislation"],"properties":{"sponsored_by":"B001243","congress":"119","introducedDate":"2025-02-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a commission to study the relocation of certain agencies outside of the Washington, D.C. metropolitan area, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/353?format=json","number":"353","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6869","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6870","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"6890","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require certain flags of the United States to be made in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1421?format=json","number":"1421","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6871","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6872","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6873","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"4521","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S487-488; text: CR S486-487)","type":"SRES","title":"A resolution supporting the contributions of Catholic schools in the United States and celebrating the 51st annual National Catholic Schools Week.","url":"https://api.congress.gov/v3/bill/119/sres/45?format=json","number":"45","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"6874","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6875","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"5612","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1398-1399)","type":"S","title":"A bill to expand the use of open textbooks in order to achieve savings for students and improve textbook price information.","url":"https://api.congress.gov/v3/bill/119/s/740?format=json","number":"740","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6876","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6877","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6878","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"5976","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S795-796)","type":"S","title":"A bill to amend the Omnibus Parks and Public Lands Management Act of 1996 to provide for the establishment of a Ski Area Fee Retention Account, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/472?format=json","number":"472","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6879","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6880","label":"COSPONSORED","start":{"id":"4131","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg","district":"7","startYear":"2025","name":"Barrett, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/B001321?format=json","bioguideId":"B001321"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6881","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"6847","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit funds for the Armed Forces to engage in operations to invade or seize territory from Canada, the Republic of Panama, or the self-governing territory of Greenland.","url":"https://api.congress.gov/v3/bill/119/hr/1936?format=json","number":"1936","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6882","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"6498","labels":["Legislation"],"properties":{"sponsored_by":"S001224","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-03","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Venue Named Under Exception Act","url":"https://api.congress.gov/v3/bill/119/hr/194?format=json","number":"194","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6883","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6884","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6885","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6886","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6887","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"6320","labels":["Legislation"],"properties":{"sponsored_by":"B001318","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to authorize the Secretary of Health and Human Services, acting through the Assistant Secretary for Mental Health and Substance Use, to award grants for peer mental health first aid, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1448?format=json","number":"1448","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6888","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6889","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"4811","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Free Speech Protection Act","url":"https://api.congress.gov/v3/bill/119/s/188?format=json","number":"188","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6890","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6891","label":"COSPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"5755","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to improve and enhance the work opportunity tax credit, to encourage longer-service employment, and to modernize the credit to make it more effective as a hiring incentive for targeted workers, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/492?format=json","number":"492","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6892","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6893","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"5759","labels":["Legislation"],"properties":{"sponsored_by":"C001075","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Protecting Students on Campus Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/163?format=json","number":"163","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6894","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6895","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"5932","labels":["Legislation"],"properties":{"sponsored_by":"B001236","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-04-27","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Gerald’s Law Act","url":"https://api.congress.gov/v3/bill/118/s/1330?format=json","number":"1330","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-04-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6896","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"5064","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prevent use of United Nations facilities located in the United States by the ICC, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/833?format=json","number":"833","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6897","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6898","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"4719","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1400-1401)","type":"SRES","title":"A resolution condemning Beijing's destruction of Hong Kong's democracy and rule of law.","url":"https://api.congress.gov/v3/bill/119/sres/98?format=json","number":"98","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6899","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6900","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6901","label":"COSPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"4956","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Congressional Award Program Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6902","label":"COSPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6903","label":"COSPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6904","label":"COSPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6905","label":"COSPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6906","label":"COSPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6907","label":"COSPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"4420","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to prohibit United States cooperation with the International Criminal Court, the use of the Economic Support Fund to support the Palestinian Authority, and any Federal funding for the ICC.","url":"https://api.congress.gov/v3/bill/119/s/493?format=json","number":"493","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6908","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7441","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To amend the Small Business Act and the Small Business Investment Act of 1958 to increase the maximum loan amount for certain loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1893?format=json","number":"1893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6909","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6910","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"6911","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6912","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6913","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6914","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7792","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-07","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committees on Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Expressing gratitude and appreciation for the bravery and valor of the Allied forces who participated in the Normandy landings on the 80th anniversary of Operation Overlord.","url":"https://api.congress.gov/v3/bill/118/hres/1284?format=json","number":"1284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-07","latestAction_actionTime":""}}} +{"type":"relationship","id":"6915","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7006","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the resolution (H. Res. 1371) strongly condemning the Biden Administration and its Border Czar, Kamala Harris's, failure to secure the United States border.","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","number":"1376","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"21:16:52"}}} +{"type":"relationship","id":"6916","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6917","label":"COSPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6918","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7755","labels":["Legislation"],"properties":{"sponsored_by":"B001315","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To provide for the prioritization of projects that provide behavioral and mental health treatment services in selecting grantees under certain rural development programs, and extend the substance abuse disorder set-aside and priority under the programs.","url":"https://api.congress.gov/v3/bill/119/hr/1906?format=json","number":"1906","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6919","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6920","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6921","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6922","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"6297","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 20 - 14.","type":"HR","title":"DETERRENT Act","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","number":"1048","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6923","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6924","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"6218","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week beginning November 11, 2024, as \"National Pregnancy Center Week\" to recognize the vital role that community-supported pregnancy centers play in saving lives and serving women and men faced with difficult pregnancy decisions.","url":"https://api.congress.gov/v3/bill/118/hres/1509?format=json","number":"1509","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6925","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7094","labels":["Legislation"],"properties":{"sponsored_by":"T000478","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to permanently extend the new markets tax credit, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1103?format=json","number":"1103","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6926","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6927","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6928","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"7489","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to amend certain regulations to clarify that livestock auction owners may have an interest in small meatpacking businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1648?format=json","number":"1648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6929","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"6930","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6931","label":"COSPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6932","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"5535","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to restore the exemption of family farms and small businesses from the definition of assets under title IV of the Higher Education Act of 1965.","url":"https://api.congress.gov/v3/bill/119/s/469?format=json","number":"469","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6933","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6934","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6935","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6936","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7931","labels":["Legislation"],"properties":{"sponsored_by":"S001188","congress":"113","policyArea_name":"Housing and Community Development","introducedDate":"2014-09-18","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To revise the definition of \"manufactured home\" under the Manufactured Housing Construction and Safety Standards Act of 1974 to clarify the exclusion of certain recreational vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/113/hr/5658?format=json","number":"5658","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2014-09-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6937","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"6671","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"118","introducedDate":"2024-06-12","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 23 - 17.","type":"HR","title":"Dismantle DEI Act of 2024","url":"https://api.congress.gov/v3/bill/118/hr/8706?format=json","number":"8706","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6938","label":"COSPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"7468","labels":["Legislation"],"properties":{"sponsored_by":"J000307","congress":"118","policyArea_name":"Sports and Recreation","introducedDate":"2024-09-09","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Congratulating the Olympians and Paralympians of Michigan who competed in the 2024 Olympics and Paralympics in Paris, France.","url":"https://api.congress.gov/v3/bill/118/hres/1429?format=json","number":"1429","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"6939","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6940","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7774","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/hr/1896?format=json","number":"1896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6941","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"6942","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6943","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6944","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6945","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7889","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to adjust allowable direct and indirect costs for nursing and allied health education programs.","url":"https://api.congress.gov/v3/bill/119/hr/1708?format=json","number":"1708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6946","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"6947","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6948","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6949","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7512","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-10","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Small Business, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to require greater transparency for Federal regulatory decisions that impact small businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1163?format=json","number":"1163","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6950","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6951","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7614","labels":["Legislation"],"properties":{"sponsored_by":"T000482","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-04-17","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HRES","title":"Expressing support for the designation of April 17, 2025, as \"Cambodian Genocide Remembrance Day\" to remember the horrific slaughter of almost 2,000,000 Cambodian people at the hand of the Khmer Rouge regime.","url":"https://api.congress.gov/v3/bill/118/hres/1156?format=json","number":"1156","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"6952","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"6953","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6954","label":"COSPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6955","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6956","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6957","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6958","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6959","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"6660","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title 5, United States Code, to prohibit transactions involving certain financial instruments by senior Federal employees, their spouses, or dependent children, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1599?format=json","number":"1599","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6960","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"6961","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6962","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"6306","labels":["Legislation"],"properties":{"sponsored_by":"H001096","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To require the United States Postal Service to post notices of changes that will affect nationwide postal services, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1249?format=json","number":"1249","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6963","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6964","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"7347","labels":["Legislation"],"properties":{"sponsored_by":"T000469","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","type":"HR","title":"Scientific Integrity Act","url":"https://api.congress.gov/v3/bill/119/hr/1106?format=json","number":"1106","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6965","label":"COSPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"6662","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Cost Estimates Improvement Act","url":"https://api.congress.gov/v3/bill/119/hr/991?format=json","number":"991","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"6966","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7549","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To direct the Administrator of the Centers for Medicare & Medicaid Services to clarify that fully implanted active middle ear hearing devices are prosthetics and are not subject to the hearing aid coverage exclusion under the Medicare program.","url":"https://api.congress.gov/v3/bill/119/hr/1921?format=json","number":"1921","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6967","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6968","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6969","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7889","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend title XVIII of the Social Security Act to adjust allowable direct and indirect costs for nursing and allied health education programs.","url":"https://api.congress.gov/v3/bill/119/hr/1708?format=json","number":"1708","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6970","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6971","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"6972","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"5705","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to provide for increased reporting regarding Department of State Taiwan guidelines.","url":"https://api.congress.gov/v3/bill/119/s/821?format=json","number":"821","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6973","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"4225","labels":["Legislation"],"properties":{"sponsored_by":"W000790","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2024-11-14","latestAction_text":"Referred to the Committee on the Judiciary.","type":"SRES","title":"A resolution designating December 1, 2024, as \"Drive Safer Sunday\".","url":"https://api.congress.gov/v3/bill/118/sres/894?format=json","number":"894","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-11-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"6974","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"4956","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","introducedDate":"2025-01-28","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Congressional Award Program Reauthorization Act","url":"https://api.congress.gov/v3/bill/119/s/284?format=json","number":"284","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"6975","label":"COSPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6976","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"6977","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7023","labels":["Legislation"],"properties":{"sponsored_by":"J000302","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to facilitate patient access to certain pediatric technologies.","url":"https://api.congress.gov/v3/bill/119/hr/1931?format=json","number":"1931","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6978","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6979","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6980","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6981","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6982","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"6983","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6984","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"6560","labels":["Legislation"],"properties":{"sponsored_by":"K000399","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-12","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of June 12, 2024, as \"Women Veterans Appreciation Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1296?format=json","number":"1296","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"6985","label":"COSPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6986","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"6987","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"6988","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"6989","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"6008","labels":["Legislation"],"properties":{"sponsored_by":"B001230","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","type":"S","title":"A bill to amend the Agricultural Foreign Investment Disclosure Act of 1978 to remove the limitation on the amount of a civil penalty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/845?format=json","number":"845","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"6990","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"4618","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6991","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"6992","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"6993","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"6994","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"6995","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6996","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"6997","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"5954","labels":["Legislation"],"properties":{"sponsored_by":"B001299","congress":"119","introducedDate":"2025-01-23","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"End Unaccountable Amnesty Act","url":"https://api.congress.gov/v3/bill/119/s/225?format=json","number":"225","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6998","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"5095","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-01-23","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Promoting Domestic Energy Production Act","url":"https://api.congress.gov/v3/bill/119/s/224?format=json","number":"224","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"6999","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"5981","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2025-01-16","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S231-232)","type":"S","title":"Wildland Firefighters Congressional Gold Medal Act","url":"https://api.congress.gov/v3/bill/119/s/142?format=json","number":"142","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"7000","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"6512","labels":["Legislation"],"properties":{"sponsored_by":"M001224","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend title 35, United States Code, to establish a rebuttable presumption that a permanent injunction should be granted in certain circumstances, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1574?format=json","number":"1574","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7001","label":"COSPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"7723","labels":["Legislation"],"properties":{"sponsored_by":"N000193","congress":"118","introducedDate":"2024-08-02","policyArea_name":"Commerce","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend section 5336 of title 31, United States Code, to provide existing small businesses with an additional year to file beneficial ownership information, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hr/9278?format=json","number":"9278","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-08-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"7002","label":"COSPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7003","label":"COSPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7004","label":"COSPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"7416","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to require silent alarms in elementary schools and secondary schools, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","number":"1524","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7005","label":"COSPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"6778","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-22","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Hazardous and Solid Waste Management System: Disposal of Coal Combustion Residuals From Electric Utilities; Legacy CCR Surface Impoundments\".","url":"https://api.congress.gov/v3/bill/118/hjres/152?format=json","number":"152","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7006","label":"COSPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"5631","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"MAILS Act","url":"https://api.congress.gov/v3/bill/119/s/155?format=json","number":"155","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7007","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7008","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"7009","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7010","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7011","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"4579","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-19","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to suspend the entry of covered aliens in response to the fentanyl public health crisis.","url":"https://api.congress.gov/v3/bill/119/s/628?format=json","number":"628","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-19","latestAction_actionTime":""}}} +{"type":"relationship","id":"7012","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"5179","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to prohibit the Secretary of Veterans Affairs from transmitting certain information to the Department of Justice for use by the national instant criminal background check system.","url":"https://api.congress.gov/v3/bill/119/s/478?format=json","number":"478","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7013","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7014","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7015","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7016","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"4900","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-01-13","policyArea_name":"Social Welfare","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"EMPSA","url":"https://api.congress.gov/v3/bill/119/s/73?format=json","number":"73","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7017","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7018","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"5551","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to ensure State and local law enforcement officers are permitted to cooperate with Federal officials to protect our communities from violent criminals and suspected terrorists who are illegally present in the United States.","url":"https://api.congress.gov/v3/bill/119/s/685?format=json","number":"685","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7019","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7020","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"5862","labels":["Legislation"],"properties":{"sponsored_by":"B001305","congress":"118","policyArea_name":"Transportation and Public Works","introducedDate":"2023-12-18","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6029; text: CR S6024)","type":"SRES","title":"A resolution recognizing December 17 as \"Wright Brothers Day\" and commemorating the 120th anniversary of the first powered flight.","url":"https://api.congress.gov/v3/bill/118/sres/513?format=json","number":"513","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-12-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7021","label":"COSPONSORED","start":{"id":"4144","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg","startYear":"2025","partyName":"Republican","name":"Shreve, Jefferson","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/S001229?format=json","bioguideId":"S001229"}},"end":{"id":"7555","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Defund Planned Parenthood Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/271?format=json","number":"271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"7022","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7023","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7024","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"5472","labels":["Legislation"],"properties":{"sponsored_by":"G000555","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to establish the Fort Ontario Holocaust Refugee Shelter National Historical Park in the State of New York as a unit of the National Park System, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/432?format=json","number":"432","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7025","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7026","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7027","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"4957","labels":["Legislation"],"properties":{"sponsored_by":"L000571","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-24","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S372)","type":"SRES","title":"A resolution honoring the 100th anniversary of Nellie Tayloe Ross becoming the first female elected as the Governor of a State in the United States.","url":"https://api.congress.gov/v3/bill/119/sres/35?format=json","number":"35","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7028","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"6992","labels":["Legislation"],"properties":{"sponsored_by":"B000740","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-14","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"Regulation Reduction Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/377?format=json","number":"377","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"7029","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"5984","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"7030","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7031","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7032","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"7444","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-09-10","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Recognizing suicide as a serious public health problem and expressing support for the designation of September as \"National Suicide Prevention Month\" as well as September 10, 2024, as \"World Suicide Prevention Day\".","url":"https://api.congress.gov/v3/bill/118/hres/1436?format=json","number":"1436","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"7033","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7034","label":"COSPONSORED","start":{"id":"4145","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg","district":"2","startYear":"2025","name":"Schmidt, Derek","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kansas","url":"https://api.congress.gov/v3/member/S001228?format=json","bioguideId":"S001228"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"7035","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7036","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7037","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"7038","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"4667","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"118","policyArea_name":"International Affairs","introducedDate":"2024-09-12","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6024)","type":"SRES","title":"A resolution recognizing the 73rd anniversary of the signing of the Mutual Defense Treaty between the United States and the Philippines and the strong bilateral security alliance between our two nations in the wake of persistent and escalating aggression by the People's Republic of China in the South China Sea.","url":"https://api.congress.gov/v3/bill/118/sres/816?format=json","number":"816","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7039","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7040","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7041","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7042","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7043","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"7044","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"4435","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S374; text: CR S373-374)","type":"SRES","title":"A resolution to constitute the majority party's membership on certain committees for the One Hundred Nineteenth Congress, or until their successors are chosen.","url":"https://api.congress.gov/v3/bill/119/sres/38?format=json","number":"38","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7045","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"6297","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 20 - 14.","type":"HR","title":"DETERRENT Act","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","number":"1048","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7046","label":"COSPONSORED","start":{"id":"4146","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg","district":"8","startYear":"2025","name":"Messmer, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001233?format=json","bioguideId":"M001233"}},"end":{"id":"7193","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-05","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"Antisemitism Awareness Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1007?format=json","number":"1007","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7047","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"6340","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Armed Services.","type":"HR","title":"To amend title 37, United States Code, to increase the basic allowance for housing inside the United States for members of the uniformed services.","url":"https://api.congress.gov/v3/bill/119/hr/1956?format=json","number":"1956","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7048","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7416","labels":["Legislation"],"properties":{"sponsored_by":"G000583","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To amend the Elementary and Secondary Education Act of 1965 to require silent alarms in elementary schools and secondary schools, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1524?format=json","number":"1524","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7049","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"7050","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7051","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7052","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7053","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7054","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7055","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"7056","label":"COSPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"6680","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-03-03","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend title XVIII of the Social Security Act to modify the criteria for designation of rural emergency hospitals.","url":"https://api.congress.gov/v3/bill/119/hr/1775?format=json","number":"1775","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7057","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7774","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/hr/1896?format=json","number":"1896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7058","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7059","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7060","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"5581","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-01-29","policyArea_name":"Education","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A PLUS Act","url":"https://api.congress.gov/v3/bill/119/s/309?format=json","number":"309","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-29","latestAction_actionTime":""}}} +{"type":"relationship","id":"7061","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7062","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7063","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"5068","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Higher Education Act of 1965 to provide for fiscal accountability, to require institutions of higher education to publish information regarding student success, to provide for school accountability for student loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/801?format=json","number":"801","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7064","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"7065","label":"COSPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"7066","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7067","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"7068","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7069","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7070","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7071","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"7838","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Families","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","type":"HR","title":"Recruiting Families Using Data Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/579?format=json","number":"579","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7072","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"5691","labels":["Legislation"],"properties":{"sponsored_by":"C001095","congress":"119","policyArea_name":"International Affairs","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"Not One More Inch or Acre Act","url":"https://api.congress.gov/v3/bill/119/s/176?format=json","number":"176","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"7073","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7074","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7075","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7076","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"4618","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","number":"25","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7077","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"4453","labels":["Legislation"],"properties":{"sponsored_by":"S001232","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on Armed Services.","type":"S","title":"Aerial Firefighting Enhancement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/160?format=json","number":"160","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7078","label":"COSPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7079","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7441","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To amend the Small Business Act and the Small Business Investment Act of 1958 to increase the maximum loan amount for certain loans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1893?format=json","number":"1893","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7080","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7081","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7082","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7083","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7084","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"4355","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Foreign Trade and International Finance","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","type":"S","title":"FARM Act","url":"https://api.congress.gov/v3/bill/119/s/179?format=json","number":"179","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"7085","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"7086","label":"COSPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"4534","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Law","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Censorship Accountability Act","url":"https://api.congress.gov/v3/bill/119/s/67?format=json","number":"67","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"7087","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7088","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"6400","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Censuring Representative Al Green of Texas.","url":"https://api.congress.gov/v3/bill/119/hres/189?format=json","number":"189","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":"10:30:45"}}} +{"type":"relationship","id":"7089","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7090","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7551","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To prohibit the Secretary of Health and Human Services from implementing, administering, or enforcing provisions relating to minimum staffing standards for long-term care facilities and Medicaid institutional payment transparency reporting.","url":"https://api.congress.gov/v3/bill/119/hr/1303?format=json","number":"1303","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7091","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"6483","labels":["Legislation"],"properties":{"sponsored_by":"M001227","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2024-06-28","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Armed Services, Veterans' Affairs, and Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Acknowledging and apologizing for the mistreatment of, and discrimination against, lesbian, gay, bisexual, and transgender individuals who served the United States in the uniformed services, the Foreign Service, and the Federal civil service.","url":"https://api.congress.gov/v3/bill/118/hres/1329?format=json","number":"1329","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-06-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"7092","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7093","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7094","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"6257","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","introducedDate":"2024-03-01","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the need for enhanced public awareness of traumatic brain injury and support for the designation of a National Brain Injury Awareness Month.","url":"https://api.congress.gov/v3/bill/118/hres/1049?format=json","number":"1049","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"7095","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"6297","labels":["Legislation"],"properties":{"sponsored_by":"B001322","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Education","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 20 - 14.","type":"HR","title":"DETERRENT Act","url":"https://api.congress.gov/v3/bill/119/hr/1048?format=json","number":"1048","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7096","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"4884","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to expand eligibility for Post-9/11 Educational Assistance to members of the National Guard who perform certain full-time duty, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/649?format=json","number":"649","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7097","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"4776","labels":["Legislation"],"properties":{"sponsored_by":"O000174","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to encourage States to report to the Attorney General certain information regarding inmates who give birth in the custody of law enforcement agencies, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/687?format=json","number":"687","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7098","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7099","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"5787","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S672)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Environment and Public Works.","url":"https://api.congress.gov/v3/bill/119/sres/59?format=json","number":"59","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7100","label":"COSPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7101","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7007","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-06-03","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 8580) making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2025, and for other purposes, and providing for consideration of the bill (H.R. 8282) to impose sanctions with respect to the International Criminal Court engaged in any effort to investigate, arrest, detain, or prosecute any protected person of the United States and its allies.","url":"https://api.congress.gov/v3/bill/118/hres/1269?format=json","number":"1269","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-06-04","latestAction_actionTime":"11:13:26"}}} +{"type":"relationship","id":"7102","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7774","labels":["Legislation"],"properties":{"sponsored_by":"M001215","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Clean Air Act to include fuel for ocean-going vessels as additional renewable fuel for which credits may be generated under the renewable fuel program.","url":"https://api.congress.gov/v3/bill/119/hr/1896?format=json","number":"1896","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7103","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7104","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7105","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7106","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"6210","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on actions taken by the Department of Government Efficiency.","url":"https://api.congress.gov/v3/bill/119/hr/1545?format=json","number":"1545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7107","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"7108","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"7532","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-27","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of \"Macedonian American Heritage Month\" and celebrating the language, history, and culture of Macedonian Americans and their incredible contributions to the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1522?format=json","number":"1522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7109","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"7110","label":"COSPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7111","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7830","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Financial Services, Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Agricultural Foreign Investment Disclosure Act of 1978 to strengthen oversight over foreign investment in the United States agricultural industry, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1920?format=json","number":"1920","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7112","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"7113","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7114","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7115","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7116","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7510","labels":["Legislation"],"properties":{"sponsored_by":"F000475","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To prohibit the use of Federal funds to implement, administer, or enforce a final rule of the Food and Drug Administration relating to \"Medical Devices; Laboratory Developed Tests\", and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1463?format=json","number":"1463","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7117","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7810","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-02-21","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Small Business.","type":"HR","title":"To require certain reports on small business disaster assistance to be published on the website of the Small Business Administration, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1475?format=json","number":"1475","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7118","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"6218","labels":["Legislation"],"properties":{"sponsored_by":"G000595","congress":"118","introducedDate":"2024-09-25","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HRES","title":"Supporting the designation of the week beginning November 11, 2024, as \"National Pregnancy Center Week\" to recognize the vital role that community-supported pregnancy centers play in saving lives and serving women and men faced with difficult pregnancy decisions.","url":"https://api.congress.gov/v3/bill/118/hres/1509?format=json","number":"1509","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7119","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7120","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7121","label":"COSPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7122","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7123","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7124","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"6344","labels":["Legislation"],"properties":{"sponsored_by":"S001159","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To award a Congressional Gold Medal collectively to the Buffalo Soldier regiments, authorized by Congress in 1866 to serve in the United States Armed Forces, in recognition of their superior, dedicated, and vital service to our Nation.","url":"https://api.congress.gov/v3/bill/119/hr/1437?format=json","number":"1437","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7125","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7014","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-01-29","policyArea_name":"Health","latestAction_text":"Referred to the Subcommittee on Health.","type":"HRES","title":"Expressing the sense of the House of Representatives that public health authorities and tobacco control advocates should encourage American innovation and embrace harm reduction as part of the comprehensive United States approach to tobacco control.","url":"https://api.congress.gov/v3/bill/118/hres/979?format=json","number":"979","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-02","latestAction_actionTime":""}}} +{"type":"relationship","id":"7126","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7127","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"7532","labels":["Legislation"],"properties":{"sponsored_by":"M001136","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-27","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Supporting the designation of \"Macedonian American Heritage Month\" and celebrating the language, history, and culture of Macedonian Americans and their incredible contributions to the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1522?format=json","number":"1522","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7128","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"6720","labels":["Legislation"],"properties":{"sponsored_by":"B001292","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To substantially restrict the use of animal testing for cosmetics, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1657?format=json","number":"1657","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7129","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7130","label":"COSPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7131","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7132","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7892","labels":["Legislation"],"properties":{"sponsored_by":"L000585","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to provide a tax credit to encourage the replacement or modernization of inefficient, outdated freight railcars, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1200?format=json","number":"1200","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7133","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7134","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"6892","labels":["Legislation"],"properties":{"sponsored_by":"L000600","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","type":"HR","title":"To direct the Comptroller General of the United States to conduct a study on the effectiveness of emergency alerting systems, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1076?format=json","number":"1076","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7135","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7136","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7137","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7138","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"4444","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution electing Jackie Barber as Secretary of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/8?format=json","number":"8","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7139","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7140","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7191","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to increase the number of physicians who may be provided Conrad 30 waivers.","url":"https://api.congress.gov/v3/bill/119/hr/1201?format=json","number":"1201","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7141","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7142","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"7452","labels":["Legislation"],"properties":{"sponsored_by":"T000488","congress":"118","introducedDate":"2024-04-10","policyArea_name":"Civil Rights and Liberties, Minority Issues","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","number":"1131","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-04-10","latestAction_actionTime":""}}} +{"type":"relationship","id":"7143","label":"COSPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"4418","labels":["Legislation"],"properties":{"sponsored_by":"S001198","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/556?format=json","number":"556","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7144","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7143","labels":["Legislation"],"properties":{"sponsored_by":"R000622","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To amend the National Agricultural Research, Extension, and Teaching Policy Act of 1977 to extend grants and fellowships for food and agricultural sciences education.","url":"https://api.congress.gov/v3/bill/119/hr/1952?format=json","number":"1952","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7145","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7146","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7489","labels":["Legislation"],"properties":{"sponsored_by":"A000379","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To direct the Secretary of Agriculture to amend certain regulations to clarify that livestock auction owners may have an interest in small meatpacking businesses, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1648?format=json","number":"1648","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7147","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"6270","labels":["Legislation"],"properties":{"sponsored_by":"P000096","congress":"118","policyArea_name":"Crime and Law Enforcement","introducedDate":"2023-03-22","latestAction_text":"ASSUMING FIRST SPONSORSHIP - Mr. Gimenez asked unanimous consent that he may hereafter be considered as the first sponsor of H.R. 1719, a bill originally introduced by Representative Pascrell, for the purpose of adding cosponsors and requesting reprintings pursuant to clause 7 of rule XII. Agreed to without objection.","type":"HR","title":"Honoring Our Fallen Heroes Act of 2023","url":"https://api.congress.gov/v3/bill/118/hr/1719?format=json","number":"1719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-25","latestAction_actionTime":"17:53:23"}}} +{"type":"relationship","id":"7148","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7149","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"6403","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture Export Promotion Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7150","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"6571","labels":["Legislation"],"properties":{"sponsored_by":"C001131","congress":"118","introducedDate":"2024-10-01","policyArea_name":"Immigration","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","url":"https://api.congress.gov/v3/bill/118/hres/1525?format=json","number":"1525","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"7151","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7203","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"118","policyArea_name":"Agriculture and Food","introducedDate":"2024-10-01","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HRES","title":"Expressing support for the recognition of September 29, 2024, as \"International Day of Awareness of Food Loss and Waste\".","url":"https://api.congress.gov/v3/bill/118/hres/1528?format=json","number":"1528","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-10-01","latestAction_actionTime":""}}} +{"type":"relationship","id":"7152","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"5975","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S668)","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to modify the carbon oxide sequestration credit to ensure parity for different uses and utilizations of qualified carbon oxide.","url":"https://api.congress.gov/v3/bill/119/s/425?format=json","number":"425","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7153","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7154","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"6600","labels":["Legislation"],"properties":{"sponsored_by":"J000304","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"To expand and codify the Rural Hospital Technical Assistance Program of the Department of Agriculture and rename it as the Rural Health Care Facility Technical Assistance Program.","url":"https://api.congress.gov/v3/bill/119/hr/1417?format=json","number":"1417","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7155","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"4881","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to expand medical, employment, and other benefits for individuals serving as family caregivers for certain veterans, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/879?format=json","number":"879","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7156","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"6685","labels":["Legislation"],"properties":{"sponsored_by":"A000375","congress":"119","introducedDate":"2025-02-14","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the credit for new clean vehicles, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1367?format=json","number":"1367","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-14","latestAction_actionTime":""}}} +{"type":"relationship","id":"7157","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7006","labels":["Legislation"],"properties":{"sponsored_by":"R000610","congress":"118","introducedDate":"2024-07-23","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the resolution (H. Res. 1371) strongly condemning the Biden Administration and its Border Czar, Kamala Harris's, failure to secure the United States border.","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","number":"1376","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-07-24","latestAction_actionTime":"21:16:52"}}} +{"type":"relationship","id":"7158","label":"COSPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"7319","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing certain Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1347?format=json","number":"1347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":"12:16:07"}}} +{"type":"relationship","id":"7159","label":"COSPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7160","label":"COSPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7161","label":"COSPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7162","label":"COSPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7163","label":"COSPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"5008","labels":["Legislation"],"properties":{"sponsored_by":"M000355","congress":"118","policyArea_name":"Public Lands and Natural Resources","introducedDate":"2023-04-25","latestAction_text":"Held at the desk.","type":"S","title":"Mammoth Cave National Park Boundary Adjustment Act of 2023","url":"https://api.congress.gov/v3/bill/118/s/1277?format=json","number":"1277","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-12-18","latestAction_actionTime":"18:25:35"}}} +{"type":"relationship","id":"7164","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"4920","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"118","policyArea_name":"Armed Forces and National Security","introducedDate":"2023-06-08","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Don Young Veterans Advancing Conservation Act","url":"https://api.congress.gov/v3/bill/118/s/1918?format=json","number":"1918","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2023-06-08","latestAction_actionTime":""}}} +{"type":"relationship","id":"7165","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7851","labels":["Legislation"],"properties":{"sponsored_by":"U000040","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"To amend the Public Health Service Act to provide for the continued implementation of the Climate and Health program by the Centers for Disease Control and Prevention.","url":"https://api.congress.gov/v3/bill/119/hr/1645?format=json","number":"1645","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7166","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7167","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7168","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7169","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"5625","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"119","introducedDate":"2025-02-06","policyArea_name":"Congress","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S798)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Finance.","url":"https://api.congress.gov/v3/bill/119/sres/63?format=json","number":"63","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7170","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"6963","labels":["Legislation"],"properties":{"sponsored_by":"B001313","congress":"119","introducedDate":"2025-02-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Education and Workforce.","type":"HR","title":"To codify Executive Order 11246 titled \"Equal Employment Opportunity\".","url":"https://api.congress.gov/v3/bill/119/hr/989?format=json","number":"989","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7171","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7172","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"5803","labels":["Legislation"],"properties":{"sponsored_by":"C001047","congress":"118","introducedDate":"2023-03-30","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Ally’s Act","url":"https://api.congress.gov/v3/bill/118/s/1135?format=json","number":"1135","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-03-30","latestAction_actionTime":""}}} +{"type":"relationship","id":"7173","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"4311","labels":["Legislation"],"properties":{"sponsored_by":"W000437","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S862)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Armed Services.","url":"https://api.congress.gov/v3/bill/119/sres/69?format=json","number":"69","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7174","label":"COSPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"5533","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S863)","type":"SRES","title":"An original resolution authorizing expenditures by the Committee on Small Business and Entrepreneurship.","url":"https://api.congress.gov/v3/bill/119/sres/71?format=json","number":"71","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7175","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7809","labels":["Legislation"],"properties":{"sponsored_by":"H001091","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To strengthen the Department of Justice's enforcement against trade-related crimes.","url":"https://api.congress.gov/v3/bill/119/hr/1869?format=json","number":"1869","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7176","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"5577","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to amend the Mineral Leasing Act to eliminate an administrative fee, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/451?format=json","number":"451","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7177","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7178","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7179","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7180","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"6403","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Agriculture.","type":"HR","title":"Agriculture Export Promotion Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","number":"1086","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7181","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7182","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7183","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"7319","labels":["Legislation"],"properties":{"sponsored_by":"J000294","congress":"117","introducedDate":"2022-09-14","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Electing certain Members to certain standing committees of the House of Representatives.","url":"https://api.congress.gov/v3/bill/117/hres/1347?format=json","number":"1347","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2022-09-14","latestAction_actionTime":"12:16:07"}}} +{"type":"relationship","id":"7184","label":"COSPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"5250","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-04","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","number":"12","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7185","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7176","labels":["Legislation"],"properties":{"sponsored_by":"M001226","congress":"118","policyArea_name":"Arts, Culture, Religion","introducedDate":"2024-09-23","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","type":"HRES","title":"Expressing support for the designation of the week of September 23, 2024, as \"National Latino Gastronomic Cuisine Week\", and celebrating the vibrant and diverse culinary traditions of Latino gastronomy.","url":"https://api.congress.gov/v3/bill/118/hres/1488?format=json","number":"1488","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-09-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"7186","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"4428","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1607-1609)","type":"S","title":"A bill to improve disaster assistance programs of the Department of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/904?format=json","number":"904","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7187","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7188","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"5639","labels":["Legislation"],"properties":{"sponsored_by":"C000880","congress":"118","introducedDate":"2024-09-12","policyArea_name":"Congress","latestAction_text":"Message on Senate action sent to the House.","type":"SRES","title":"A resolution honoring the life of Steven D. Symms, former United States Senator for the State of Idaho.","url":"https://api.congress.gov/v3/bill/118/sres/813?format=json","number":"813","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-09-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7189","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7924","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"118","introducedDate":"2024-04-12","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 7888) to reform the Foreign Intelligence Surveillance Act of 1978; providing for consideration of the bill (H.R. 529) to extend the customs waters of the United States from 12 nautical miles to 24 nautical miles from the baselines of the United States, consistent with Presidential Proclamation 7219; providing for consideration of the resolution (H. Res. 1112) denouncing the Biden administration's immigration policies; and providing for consideration of the resolution (H. Res. 1117) opposing efforts to place one-sided pressure on Israel with respect to Gaza.","url":"https://api.congress.gov/v3/bill/118/hres/1137?format=json","number":"1137","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-04-12","latestAction_actionTime":"09:35:51"}}} +{"type":"relationship","id":"7190","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"4574","labels":["Legislation"],"properties":{"sponsored_by":"S001194","congress":"119","introducedDate":"2025-01-24","policyArea_name":"Health","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S373)","type":"SRES","title":"A resolution expressing the sense of the Senate that the people of the United States should have continuous access to timely, up-to-date, and accurate health information.","url":"https://api.congress.gov/v3/bill/119/sres/37?format=json","number":"37","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7191","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"6860","labels":["Legislation"],"properties":{"sponsored_by":"M001223","congress":"118","introducedDate":"2024-02-23","policyArea_name":"Congress","latestAction_text":"Referred to the House Committee on Rules.","type":"HRES","title":"Amending the Rules of the House of Representatives to establish a Permanent Select Committee on Aging.","url":"https://api.congress.gov/v3/bill/118/hres/1029?format=json","number":"1029","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-02-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"7192","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"7746","labels":["Legislation"],"properties":{"sponsored_by":"H001093","congress":"118","introducedDate":"2024-03-05","policyArea_name":"Congress","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","type":"HRES","title":"Providing for consideration of the bill (H.R. 2799) to make reforms to the capital markets of the United States, and for other purposes, and providing for consideration of the bill (H.R. 7511) to require the Secretary of Homeland Security to take into custody aliens who have been charged in the United States with theft, and for other purposes.","url":"https://api.congress.gov/v3/bill/118/hres/1052?format=json","number":"1052","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-03-06","latestAction_actionTime":"16:13:34"}}} +{"type":"relationship","id":"7193","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"5713","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to reauthorize the PROTECT Our Children Act of 2008, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/539?format=json","number":"539","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7194","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"5893","labels":["Legislation"],"properties":{"sponsored_by":"B001288","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to extend the temporary scheduling order for fentanyl-related substances for 6 months.","url":"https://api.congress.gov/v3/bill/119/s/724?format=json","number":"724","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7195","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7196","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"5380","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Ohkay Owingeh Rio Chama Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/563?format=json","number":"563","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7197","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"5381","labels":["Legislation"],"properties":{"sponsored_by":"H001046","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Zuni Indian Tribe Water Rights Settlement Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/564?format=json","number":"564","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7198","label":"COSPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7199","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7200","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7201","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7388","labels":["Legislation"],"properties":{"sponsored_by":"H001102","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality Act to provide that an alien who has been convicted of a crime is ineligible for asylum, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1312?format=json","number":"1312","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7202","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"4904","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","type":"S","title":"Tribal Forest Protection Act Amendments Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","number":"719","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7203","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"4758","labels":["Legislation"],"properties":{"sponsored_by":"P000145","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1350)","type":"S","title":"A bill to establish an Office of Environmental Justice within the Department of Justice, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/720?format=json","number":"720","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7204","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"4524","labels":["Legislation"],"properties":{"sponsored_by":"S001227","congress":"119","policyArea_name":"Sports and Recreation","introducedDate":"2025-01-23","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S329; text: CR S341)","type":"SRES","title":"A resolution congratulating the Washington University in St. Louis Bears women's soccer team for winning the 2024 NCAA Division III Women's Soccer Championship.","url":"https://api.congress.gov/v3/bill/119/sres/34?format=json","number":"34","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"7205","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"7912","labels":["Legislation"],"properties":{"sponsored_by":"M001184","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"Senior Citizens Tax Elimination Act","url":"https://api.congress.gov/v3/bill/119/hr/1040?format=json","number":"1040","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7206","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"5388","labels":["Legislation"],"properties":{"sponsored_by":"G000386","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"A bill to increase the penalty for prohibited provision of a phone in a correctional facility, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/736?format=json","number":"736","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"7207","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"6663","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committees on the Judiciary, Education and Workforce, Armed Services, Foreign Affairs, Financial Services, Energy and Commerce, Transportation and Infrastructure, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To ensure equal protection of the law, to prevent racism in the Federal Government, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/925?format=json","number":"925","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7208","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"5582","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-28","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"Next of Kin Collections Protection Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/274?format=json","number":"274","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-28","latestAction_actionTime":""}}} +{"type":"relationship","id":"7209","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"5613","labels":["Legislation"],"properties":{"sponsored_by":"D000563","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S1347-1348; text: CR S1348-1350)","type":"S","title":"A bill to amend title 31, United States Code, to prevent fraudulent transactions at virtual currency kiosks, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/710?format=json","number":"710","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7210","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7211","label":"COSPONSORED","start":{"id":"4161","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg","startYear":"2010","partyName":"Republican","name":"Stutzman, Marlin A.","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/S001188?format=json","bioguideId":"S001188"}},"end":{"id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7212","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7213","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"6401","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To amend the Defense Production Act of 1950 with respect to foreign investments in United States agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1576?format=json","number":"1576","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7214","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"5248","labels":["Legislation"],"properties":{"sponsored_by":"H001061","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to require the Federal Energy Regulatory Commission to reform the interconnection queue process for the prioritization and approval of certain projects, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/465?format=json","number":"465","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7215","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7832","labels":["Legislation"],"properties":{"sponsored_by":"F000446","congress":"119","introducedDate":"2025-02-13","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Ways and Means.","type":"HR","title":"To amend the Internal Revenue Code of 1986 to repeal the estate and generation-skipping transfer taxes.","url":"https://api.congress.gov/v3/bill/119/hr/1301?format=json","number":"1301","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7216","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7555","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Defund Planned Parenthood Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/271?format=json","number":"271","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"7217","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"7554","labels":["Legislation"],"properties":{"sponsored_by":"F000470","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Health","latestAction_text":"Referred to the House Committee on Energy and Commerce.","type":"HR","title":"Protecting Life and Taxpayers Act of 2025","url":"https://api.congress.gov/v3/bill/119/hr/272?format=json","number":"272","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"7218","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"6294","labels":["Legislation"],"properties":{"sponsored_by":"M001235","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To prohibit payment card networks and covered entities from requiring the use of or assigning merchant category codes that distinguish a firearms retailer from general-merchandise retailer or sporting-goods retailer, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1181?format=json","number":"1181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7219","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"5082","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","type":"SRES","title":"A resolution relating to the death of the Honorable David Lyle Boren, former Senator for the State of Oklahoma.","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","number":"115","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7220","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"4882","labels":["Legislation"],"properties":{"sponsored_by":"M000934","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to exclude from gross income interest received on certain loans secured by rural or agricultural real property.","url":"https://api.congress.gov/v3/bill/119/s/838?format=json","number":"838","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7221","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"4441","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S6; text: CR S6)","type":"SRES","title":"A resolution notifying the President of the United States of the election of a President pro tempore.","url":"https://api.congress.gov/v3/bill/119/sres/4?format=json","number":"4","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7222","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7223","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"5171","labels":["Legislation"],"properties":{"sponsored_by":"K000393","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to provide for the independent and objective conduct and supervision of audits and investigations relating to the programs and operations funded with amounts appropriated or otherwise made available to Ukraine for military, economic, and humanitarian aid.","url":"https://api.congress.gov/v3/bill/119/s/682?format=json","number":"682","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7224","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"5330","labels":["Legislation"],"properties":{"sponsored_by":"H001089","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","type":"S","title":"A bill to designate America's National Churchill Museum National Historic Landmark, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/650?format=json","number":"650","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7225","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"4656","labels":["Legislation"],"properties":{"sponsored_by":"R000618","congress":"119","policyArea_name":"Finance and Financial Sector","introducedDate":"2025-02-27","latestAction_text":"Message on Senate action sent to the House.","type":"SJRES","title":"A joint resolution disapproving the rule submitted by the Bureau of Consumer Financial Protection relating to \"Defining Larger Participants of a Market for General-Use Digital Consumer Payment Applications\".","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","number":"28","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7226","label":"COSPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"4443","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S7; text: CR S7)","type":"SRES","title":"A resolution fixing the hour of daily meeting of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/7?format=json","number":"7","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7227","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"4625","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/21?format=json","number":"21","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7228","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"5576","labels":["Legislation"],"properties":{"sponsored_by":"D000618","congress":"119","introducedDate":"2025-02-12","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","type":"S","title":"A bill to prohibit the Secretary of the Interior and the Secretary of Agriculture from prohibiting the use of lead ammunition or tackle on certain Federal land or water under the jurisdiction of the Secretary of the Interior and the Secretary of Agriculture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/537?format=json","number":"537","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-12","latestAction_actionTime":""}}} +{"type":"relationship","id":"7229","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"4722","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1135-1136)","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States'\"One China Policy\".","url":"https://api.congress.gov/v3/bill/119/sres/86?format=json","number":"86","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7230","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"4270","labels":["Legislation"],"properties":{"sponsored_by":"W000805","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend the Commander John Scott Hannon Veterans Mental Health Care Improvement Act of 2019 to modify and reauthorize the Staff Sergeant Parker Gordon Fox Suicide Prevention Grant Program of the Department of Veterans Affairs.","url":"https://api.congress.gov/v3/bill/119/s/793?format=json","number":"793","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7231","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"5099","labels":["Legislation"],"properties":{"sponsored_by":"L000575","congress":"119","policyArea_name":"Government Operations and Politics","introducedDate":"2025-01-13","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"Telework Reform Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/82?format=json","number":"82","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7232","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"5547","labels":["Legislation"],"properties":{"sponsored_by":"C001098","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Internal Revenue Code of 1986 to provide for the indexing of certain assets for purposes of determining gain or loss.","url":"https://api.congress.gov/v3/bill/119/s/798?format=json","number":"798","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7233","label":"COSPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"4718","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/771?format=json","number":"771","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7234","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7189","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Justice for United States Victims of State Sponsored Terrorism Act to clarify and supplement the funding sources for United States victims of state-sponsored terrorism to ensure consistent and meaningful distributions from the United States Victims of State Sponsored Terrorism Fund, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1530?format=json","number":"1530","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7235","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7236","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"7147","labels":["Legislation"],"properties":{"sponsored_by":"M001229","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To require the reinstatement of recently terminated probationary Federal employees, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1835?format=json","number":"1835","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7237","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"4728","labels":["Legislation"],"properties":{"sponsored_by":"R000584","congress":"119","policyArea_name":"Economics and Public Finance","introducedDate":"2025-01-22","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to require agencies submit zero-based budgets.","url":"https://api.congress.gov/v3/bill/119/s/181?format=json","number":"181","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"7238","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"6210","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the Comptroller General of the United States to submit a report to Congress on actions taken by the Department of Government Efficiency.","url":"https://api.congress.gov/v3/bill/119/hr/1545?format=json","number":"1545","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7239","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"6417","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"118","policyArea_name":"Environmental Protection","introducedDate":"2024-05-23","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to \"Endangered and Threatened Wildlife and Plants; Regulations Pertaining to Endangered and Threatened Wildlife and Plants\".","url":"https://api.congress.gov/v3/bill/118/hjres/159?format=json","number":"159","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2024-05-23","latestAction_actionTime":""}}} +{"type":"relationship","id":"7240","label":"COSPONSORED","start":{"id":"4164","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg","startYear":"1993","name":"Fields, Cleo","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Louisiana","endYear":"1997","url":"https://api.congress.gov/v3/member/F000110?format=json","bioguideId":"F000110"}},"end":{"id":"6211","labels":["Legislation"],"properties":{"sponsored_by":"S001230","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","type":"HR","title":"To direct the head of the Department of Government Efficiency to submit a report to Congress on the personnel of the Department and present information to Congress on the activities carried out by the Department, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1544?format=json","number":"1544","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7241","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"4348","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","type":"S","title":"A bill to amend title 38, United States Code, to direct the Secretary of Veterans Affairs to furnish hyperbaric oxygen therapy to certain veterans with traumatic brain injury or post-traumatic stress disorder.","url":"https://api.congress.gov/v3/bill/119/s/862?format=json","number":"862","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7242","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7243","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"4447","labels":["Legislation"],"properties":{"sponsored_by":"T000250","congress":"119","introducedDate":"2025-01-03","policyArea_name":"Congress","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S8; text: CR S8)","type":"SRES","title":"A resolution electing Robert M. Duncan, of the District of Columbia, as Secretary for the Majority of the Senate.","url":"https://api.congress.gov/v3/bill/119/sres/14?format=json","number":"14","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-03","latestAction_actionTime":""}}} +{"type":"relationship","id":"7244","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7245","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"6238","labels":["Legislation"],"properties":{"sponsored_by":"M000639","congress":"118","introducedDate":"2023-05-18","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"Tech to Save Moms Act","url":"https://api.congress.gov/v3/bill/118/s/1699?format=json","number":"1699","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2023-05-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7246","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"4840","labels":["Legislation"],"properties":{"sponsored_by":"M001242","congress":"119","introducedDate":"2025-01-21","policyArea_name":"Taxation","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to rescind the unobligated balances of amounts appropriated for Internal Revenue Service enhancements and use such funding for an External Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/175?format=json","number":"175","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7247","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"7286","labels":["Legislation"],"properties":{"sponsored_by":"S001201","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To establish the Commission to Study the Potential Creation of a National Museum of Italian American History and Culture, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1102?format=json","number":"1102","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7248","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7249","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"7250","label":"COSPONSORED","start":{"id":"4165","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg","startYear":"2025","name":"McBride, Sarah","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Delaware","url":"https://api.congress.gov/v3/member/M001238?format=json","bioguideId":"M001238"}},"end":{"id":"5081","labels":["Legislation"],"properties":{"sponsored_by":"L000577","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to improve retrospective reviews of Federal regulations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/644?format=json","number":"644","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7251","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4624","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/22?format=json","number":"22","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7252","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7253","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"7254","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7255","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4813","labels":["Legislation"],"properties":{"sponsored_by":"P000603","congress":"119","introducedDate":"2025-01-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"Repeal the TikTok Ban Act","url":"https://api.congress.gov/v3/bill/119/s/153?format=json","number":"153","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7256","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4627","labels":["Legislation"],"properties":{"sponsored_by":"S000033","congress":"119","introducedDate":"2025-02-20","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to Israel of certain defense articles and services.","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","number":"20","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-20","latestAction_actionTime":""}}} +{"type":"relationship","id":"7257","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"5103","labels":["Legislation"],"properties":{"sponsored_by":"L000570","congress":"119","introducedDate":"2025-03-05","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","type":"S","title":"A bill to amend the Communications Act of 1934 to clarify that the Federal Communications Commission may not take action against a broadcast licensee or any other person on the basis of viewpoint, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/867?format=json","number":"867","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-05","latestAction_actionTime":""}}} +{"type":"relationship","id":"7258","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4577","labels":["Legislation"],"properties":{"sponsored_by":"S001184","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Public Health Service Act to reauthorize a sickle cell disease prevention and treatment demonstration program.","url":"https://api.congress.gov/v3/bill/119/s/735?format=json","number":"735","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"7259","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"5710","labels":["Legislation"],"properties":{"sponsored_by":"C001056","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to establish a pilot program to assess the use of technology to speed up and enhance the cargo inspection process at land ports of entry along the border.","url":"https://api.congress.gov/v3/bill/119/s/703?format=json","number":"703","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7260","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4168","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-24","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to amend the Tariff Act of 1930 to improve the administration of antidumping and countervailing duty laws, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/691?format=json","number":"691","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-24","latestAction_actionTime":""}}} +{"type":"relationship","id":"7261","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4474","labels":["Legislation"],"properties":{"sponsored_by":"S001217","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"A bill to amend the Older Americans Act of 1965 to include screening for loneliness and coordination of supportive services and health care to address the negative health effects of loneliness, to require a report on loneliness, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/473?format=json","number":"473","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7262","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"5532","labels":["Legislation"],"properties":{"sponsored_by":"E000295","congress":"119","introducedDate":"2025-02-11","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","type":"S","title":"A bill to amend chapter 71 of title 5, United States Code, to charge labor organizations for the agency resources and employee time used by such labor organizations, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/511?format=json","number":"511","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-11","latestAction_actionTime":""}}} +{"type":"relationship","id":"7263","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4171","labels":["Legislation"],"properties":{"sponsored_by":"Y000064","congress":"119","introducedDate":"2025-02-06","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"A bill to require electronically prepared tax returns to include scannable code when submitted on paper, and to require the use of optical character recognition technology for paper documents received by the Internal Revenue Service.","url":"https://api.congress.gov/v3/bill/119/s/452?format=json","number":"452","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7264","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"4358","labels":["Legislation"],"properties":{"sponsored_by":"T000278","congress":"119","policyArea_name":"Armed Forces and National Security","introducedDate":"2025-01-13","latestAction_text":"Referred to the Committee on Armed Services.","type":"SRES","title":"A resolution recognizing the 4th anniversary of the Trump administration's Secretary of the Air Force announcing Redstone Arsenal in Huntsville, Alabama, as the preferred location for United States Space Command Headquarters.","url":"https://api.congress.gov/v3/bill/119/sres/23?format=json","number":"23","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-13","latestAction_actionTime":""}}} +{"type":"relationship","id":"7265","label":"COSPONSORED","start":{"id":"4166","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg","district":"3","startYear":"2025","name":"Jack, Brian","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Georgia","url":"https://api.congress.gov/v3/member/J000311?format=json","bioguideId":"J000311"}},"end":{"id":"5208","labels":["Legislation"],"properties":{"sponsored_by":"H001079","congress":"119","introducedDate":"2025-01-22","policyArea_name":"Health","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S302-303)","type":"SRES","title":"A resolution honoring Mississippi's Gestational Age Act.","url":"https://api.congress.gov/v3/bill/119/sres/30?format=json","number":"30","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-22","latestAction_actionTime":""}}} +{"type":"relationship","id":"7266","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"6799","labels":["Legislation"],"properties":{"sponsored_by":"T000490","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To amend the Immigration and Nationality to clarify that aliens who have been convicted of defrauding the United States Government or the unlawful receipt of public benefits are inadmissible and deportable.","url":"https://api.congress.gov/v3/bill/119/hr/1958?format=json","number":"1958","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7267","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"7629","labels":["Legislation"],"properties":{"sponsored_by":"E000294","congress":"119","introducedDate":"2025-03-06","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Financial Services.","type":"HR","title":"To amend the Federal Reserve Act to prohibit the Federal reserve banks from offering certain products or services directly to an individual, to prohibit the use of central bank digital currency for monetary policy, and for other purposes,.","url":"https://api.congress.gov/v3/bill/119/hr/1919?format=json","number":"1919","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7268","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"7435","labels":["Legislation"],"properties":{"sponsored_by":"O000177","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on the Judiciary.","type":"HR","title":"To require aliens seeking admission to the United States as nonimmigrants to pay a bond or cash payment and to impose penalties on such aliens who fail to timely depart the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1837?format=json","number":"1837","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7269","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"5507","labels":["Legislation"],"properties":{"sponsored_by":"C001114","congress":"119","introducedDate":"2025-03-04","policyArea_name":"NONE","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","type":"S","title":"A bill to counter efforts by Hezbollah to conduct terrorist activities in Latin America, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/s/842?format=json","number":"842","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-03-04","latestAction_actionTime":""}}} +{"type":"relationship","id":"7270","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"6761","labels":["Legislation"],"properties":{"sponsored_by":"G000568","congress":"119","policyArea_name":"Environmental Protection","introducedDate":"2025-02-25","latestAction_text":"Received in the Senate.","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"National Emission Standards for Hazardous Air Pollutants: Rubber Tire Manufacturing\".","url":"https://api.congress.gov/v3/bill/119/hjres/61?format=json","number":"61","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-03-06","latestAction_actionTime":""}}} +{"type":"relationship","id":"7271","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"7190","labels":["Legislation"],"properties":{"sponsored_by":"L000599","congress":"119","introducedDate":"2025-02-18","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To impose sanctions with respect to persons engaged in logistical transactions and sanctions evasion relating to oil, gas, liquefied natural gas, and related petrochemical products from the Islamic Republic of Iran, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1422?format=json","number":"1422","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-18","latestAction_actionTime":""}}} +{"type":"relationship","id":"7272","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"7128","labels":["Legislation"],"properties":{"sponsored_by":"K000009","congress":"118","introducedDate":"2024-05-15","policyArea_name":"Commerce","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","type":"HRES","title":"Supporting the designation of May 15, 2024, as \"National Senior Fraud Awareness Day\" to raise awareness about the increasing number of fraudulent scams targeted at seniors in the United States, to encourage the implementation of policies to prevent those scams from happening, and to improve protections from those scams for seniors.","url":"https://api.congress.gov/v3/bill/118/hres/1229?format=json","number":"1229","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2024-05-17","latestAction_actionTime":""}}} +{"type":"relationship","id":"7273","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"5984","labels":["Legislation"],"properties":{"sponsored_by":"B001261","congress":"119","introducedDate":"2025-01-09","policyArea_name":"Immigration","latestAction_text":"Read twice and referred to the Committee on Finance.","type":"S","title":"Build the Wall Act of 2025","url":"https://api.congress.gov/v3/bill/119/s/42?format=json","number":"42","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-09","latestAction_actionTime":""}}} +{"type":"relationship","id":"7274","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"6659","labels":["Legislation"],"properties":{"sponsored_by":"C001115","congress":"119","introducedDate":"2025-02-27","policyArea_name":"NONE","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committees on Financial Services, and Transportation and Infrastructure, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","type":"HR","title":"To terminate the Shelter and Services Program of the Federal Emergency Management Agency, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1668?format=json","number":"1668","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-27","latestAction_actionTime":""}}} +{"type":"relationship","id":"7275","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"4396","labels":["Legislation"],"properties":{"sponsored_by":"T000476","congress":"119","policyArea_name":"Crime and Law Enforcement","introducedDate":"2025-01-21","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","type":"S","title":"Justice for Fallen Law Enforcement Act","url":"https://api.congress.gov/v3/bill/119/s/166?format=json","number":"166","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-01-21","latestAction_actionTime":""}}} +{"type":"relationship","id":"7276","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"6441","labels":["Legislation"],"properties":{"sponsored_by":"M001239","congress":"119","introducedDate":"2025-02-26","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Natural Resources.","type":"HR","title":"To provide for the inclusion of uranium on the list of critical minerals, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1622?format=json","number":"1622","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-26","latestAction_actionTime":""}}} +{"type":"relationship","id":"7277","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"4917","labels":["Legislation"],"properties":{"sponsored_by":"M001153","congress":"119","introducedDate":"2025-01-16","policyArea_name":"Health","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","type":"S","title":"FASD Respect Act","url":"https://api.congress.gov/v3/bill/119/s/139?format=json","number":"139","latestAction":"","amendmentNumber":"","latestAction_actionDate":"2025-01-16","latestAction_actionTime":""}}} +{"type":"relationship","id":"7278","label":"COSPONSORED","start":{"id":"4167","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:53Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg","startYear":"2025","partyName":"Republican","name":"Haridopolos, Mike","attribution":"Image courtesy of the Member","state":"Florida","url":"https://api.congress.gov/v3/member/H001099?format=json","bioguideId":"H001099"}},"end":{"id":"6402","labels":["Legislation"],"properties":{"sponsored_by":"N000189","congress":"119","introducedDate":"2025-02-25","policyArea_name":"NONE","latestAction_text":"Referred to the House Committee on Foreign Affairs.","type":"HR","title":"To prohibit certain businesses and persons from purchasing real estate adjacent to covered Federal lands in the United States, and for other purposes.","url":"https://api.congress.gov/v3/bill/119/hr/1575?format=json","number":"1575","amendmentNumber":"","latestAction":"","latestAction_actionDate":"2025-02-25","latestAction_actionTime":""}}} +{"type":"relationship","id":"7279","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"8517","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1917, Hazard Eligibility and Local Projects Act","sponsors.0.lastName":"Biggs","cboCostEstimates.0.pubDate":"2021-05-17T20:04:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1917/summaries?format=json","type":"HR","bill.summaries.count":5,"bill.amendments.count":1,"number":"1917","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"amendments.count":1,"sponsors.0.bioguideId":"B001302","laws.0.number":"117-332","bill.subjects.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1917/relatedbills?format=json","latestAction.actionDate":"2023-03-29","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","laws":[],"bill.originChamber":"House","bill.latestAction.text":"Became Public Law No: 117-332.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-05-17T20:04:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1917/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-170","updateDate":"2024-11-09T01:57:51Z","committees.count":1,"request.billNumber":"1917","committees.url":"https://api.congress.gov/v3/bill/118/hr/1917/committees?format=json","bill.updateDateIncludingText":"2025-01-14T19:10:36Z","bill.number":"1917","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on March 24, 2021\n","committeeReports":[],"latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1917/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1917/summaries?format=json","cboCostEstimates.0.title":"H.R. 1917, Hazard Eligibility and Local Projects Act","bill.titles.count":7,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2023-03-29","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Lizzie","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1917/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1917?format=json","constitutionalAuthorityStatementText":"\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1917.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","bill.sponsors.0.district":7,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1917/cosponsors?format=json","bill.textVersions.count":7,"bill.latestAction.actionDate":"2023-01-05","latestAction_text":"Became Public Law No: 117-332.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-170","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 49 (Tuesday, March 16, 2021)]\n[House]\n[Pages H1413-H1414]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FLETCHER:\nH.R. 1917.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United\n[[Page H1414]]\nStates, or in any Department or Officer thereof.\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1917/cosponsors?format=json","bill.amendments.url":"https://api.congress.gov/v3/bill/117/hr/1917/amendments?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1917/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"F000468","amendments.url":"https://api.congress.gov/v3/bill/117/hr/1917/amendments?format=json","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on March 24, 2021\n","bill.actions.count":41,"titles.count":2,"cosponsors.count":4,"bill.laws.0.type":"Public Law","bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/170?format=json","bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1917/text?format=json","bill.updateDate":"2025-01-14T19:03:55Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1917/subjects?format=json","bill.laws.0.number":"117-332","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1917/subjects?format=json","title":"To provide for a limitation on availability of funds for Library of Congress, Government Publishing Office, Salaries and Expenses for fiscal year 2024.","bill.title":"Hazard Eligibility and Local Projects Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57223","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1917/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/170?format=json","request.billType":"hr","bill.cosponsors.count":6,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1917/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-16","sponsors.0.district":5,"bill.sponsors.0.state":"TX","sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T01:57:51Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1917/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57223","bill.sponsors.0.lastName":"Fletcher"}}} +{"type":"relationship","id":"7280","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"8669","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9049/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9049/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9049","bill.cosponsors.countIncludingWithdrawnCosponsors":33,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9049/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9049/actions?format=json","latestAction.actionDate":"2024-07-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9049/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"F000468","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9049/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9049/text?format=json","bill.updateDate":"2025-01-03T08:02:14Z","updateDate":"2024-08-20T17:40:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9049/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"9049","committees.url":"https://api.congress.gov/v3/bill/118/hr/9049/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9049/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:14Z","title":"HEALTH for MOM Act of 2024","bill.title":"RISEE Act of 2022","bill.number":"9049","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9049/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9049/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9049/summaries?format=json","bill.cosponsors.count":33,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lizzie","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9049/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9049/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9049?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 9049.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend title XIX of the Social Security Act to provide\nStates with the option to provide coordinated care through a\npregnancy medical home for high-risk pregnant women, and for\nother purposes.\n[Page H4634]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":7,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-08-20T17:40:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9049/text?format=json","bill.sponsors.0.lastName":"Fletcher"}}} +{"type":"relationship","id":"7281","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"8852","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6562/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6562","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FLETCHER:\nH.R. 6562.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6562/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6562/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"F000468","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6562/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-09-13T15:34:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6562/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"6562","committees.url":"https://api.congress.gov/v3/bill/118/hr/6562/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6562/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"REST Act of 2023","bill.title":"CLEAR Act","bill.number":"6562","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6562/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6562/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6562/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2023-12-01","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lizzie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6562/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6562/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6562?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 198 (Friday, December 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 6562.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo allow airports to set curfews for certain flights\n[Page H6081]\n","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":7,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-09-13T15:34:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6562/text?format=json","bill.sponsors.0.lastName":"Fletcher"}}} +{"type":"relationship","id":"7282","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"8526","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8487/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Van Drew","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 512.","policyArea.name":"Social Welfare","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8487/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"K.","number":"8487","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 124 (Tuesday, July 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DELBENE:\nH.R. 8487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7171]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8487/cosponsors?format=json","sponsors.0.bioguideId":"V000133","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8487/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8487/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","bill.sponsors.0.bioguideId":"D000617","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 512.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8487/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8487/text?format=json","bill.updateDate":"2025-01-03T07:56:21Z","updateDate":"2024-12-19T09:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8487/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","request.billNumber":"8487","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8487/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8487/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:21Z","title":"HEROS Act","bill.title":"Improving Seniors’ Timely Access to Care Act of 2022","bill.number":"8487","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8487/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-12-30","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8487/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8487/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","introducedDate":"2024-05-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzan","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8487/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8487/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8487?format=json","bill.introducedDate":"2022-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 88 (Tuesday, May 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 8487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo amend title II of the Social Security Act to exempt\nwidows and widowers of police officers, firefighters, and\ncorrectional officers from the government pension offset.\n[Page H3399]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jefferson","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8487/text?format=json","bill.sponsors.0.lastName":"DelBene"}}} +{"type":"relationship","id":"7283","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"9002","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Davidson","bill.latestAction.actionDate":"2021-07-22","cboCostEstimates.0.pubDate":"2023-11-14T16:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4639/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"K.","number":"4639","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DelBENE:\nH.R. 4639.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3845]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4639/cosponsors?format=json","amendments.count":3,"sponsors.0.bioguideId":"D000626","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4639/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4639/relatedbills?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":4,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Davidson, Warren [R-OH-8]","bill.sponsors.0.bioguideId":"D000617","amendments.url":"https://api.congress.gov/v3/bill/118/hr/4639/amendments?format=json","bill.actions.count":3,"bill.originChamber":"House","titles.count":5,"cosponsors.count":7,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-459","bill.sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4639/text?format=json","bill.updateDate":"2025-01-03T07:23:39Z","updateDate":"2025-01-28T17:04:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4639/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":34,"sponsors.0.url":"https://api.congress.gov/v3/member/D000626?format=json","request.billNumber":"4639","committees.url":"https://api.congress.gov/v3/bill/118/hr/4639/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4639/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:39Z","title":"Fourth Amendment Is Not For Sale Act","bill.title":"Tax Credit Restoration Act of 2021","bill.number":"4639","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on\nJuly 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59756","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4639/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-07-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/459?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4639/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4639/summaries?format=json","cboCostEstimates.0.title":"H.R. 4639, Fourth Amendment Is Not For Sale Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","introducedDate":"2023-07-14","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Suzan","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4639/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4639/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4639?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 121 (Friday, July 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVIDSON:\nH.R. 4639.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n``To make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.''\nThe single subject of this legislation is:\nThe single subject is federal governmnet surveillance.\n[Page H3612]\n","sponsors.0.district":8,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Warren","bill.type":"HR","updateDateIncludingText":"2025-01-28T17:04:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4639/text?format=json","bill.sponsors.0.lastName":"DelBene"}}} +{"type":"relationship","id":"7284","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"8533","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7918/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Frost","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 500.","policyArea.name":"Arts, Culture, Religion","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7918/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":2,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"7918","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committeeReports.0.citation":"H. Rept. 117-683","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 94 (Tuesday, May 31, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEATING:\nH.R. 7918.\nCongress has the power to enact this legislation pursuant\nto the following:\n[The Congress shall have Power . . . ] To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.\n[Page H5228]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7918/cosponsors?format=json","sponsors.0.bioguideId":"F000476","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7918/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7918/relatedbills?format=json","bill.policyArea.name":"Animals","sponsors.0.fullName":"Rep. Frost, Maxwell [D-FL-10]","bill.sponsors.0.bioguideId":"K000375","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 500.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7918/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/683?format=json","committeeReports.0.citation":"H. Rept. 117-683","bill.sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7918/text?format=json","bill.updateDate":"2025-01-03T07:51:44Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7918/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000476?format=json","request.billNumber":"7918","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7918/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7918/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:51:44Z","title":"CREATE Art Act","bill.title":"Sea Turtle Rescue Assistance Act of 2022","bill.number":"7918","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7918/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/683?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7918/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7918/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","introducedDate":"2024-04-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"William","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7918/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7918/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7918?format=json","bill.introducedDate":"2022-05-31","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 61 (Wednesday, April 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FROST:\nH.R. 7918.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 and 18 of the U.S.\nConstitution\nThe single subject of this legislation is:\nTo direct the Secretary of Labor to award grants to\nemerging artists to support their early development.\n[Page H2290]\n","sponsors.0.district":10,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Maxwell","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7918/text?format=json","bill.sponsors.0.lastName":"Keating"}}} +{"type":"relationship","id":"7285","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"8574","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7650/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-12-18T21:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7650/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by the Yeas and Nays: 26 - 21.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"7650","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 73 (Tuesday, May 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEATING:\nH.R. 7650.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H4714]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7650/cosponsors?format=json","sponsors.0.bioguideId":"C001103","bill.subjects.count":27,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7650/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7650/relatedbills?format=json","latestAction.actionDate":"2024-03-20","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Carter, Earl L. \"Buddy\" [R-GA-1]","bill.sponsors.0.bioguideId":"K000375","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7650/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7650/text?format=json","bill.updateDate":"2025-01-03T07:49:00Z","updateDate":"2025-01-29T21:12:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7650/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/C001103?format=json","request.billNumber":"7650","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7650/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:49:00Z","title":"Air Quality Standards Implementation Act of 2024","bill.title":"International Press Freedom Act of 2022","bill.number":"7650","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 20, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61133","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7650/committees?format=json","request.format":"json","sponsors.0.middleName":"L. \"Buddy\"","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7650/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7650/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 7650, Air Quality Standards Implementation Act of 2024","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","introducedDate":"2024-03-13","bill.originChamberCode":"H","subjects.count":15,"bill.committees.count":2,"bill.sponsors.0.firstName":"William","sponsors.0.state":"GA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7650/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7650/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7650?format=json","bill.introducedDate":"2022-05-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 45 (Wednesday, March 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Georgia:\nH.R. 7650.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the Constitution of the\nUnited States which gives Congress the power to regulate\ninterstate commerce.\nThe single subject of this legislation is:\nThis bill reforms the National Ambient Air Quality\nStandards process for more efficient implementation of the\nstandards.\n[Page H1181]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Earl","bill.type":"HR","updateDateIncludingText":"2025-01-29T21:12:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7650/text?format=json","bill.sponsors.0.lastName":"Keating"}}} +{"type":"relationship","id":"7286","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8541","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9596/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Donalds","bill.latestAction.actionDate":"2022-12-15","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9596/summaries?format=json","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 755.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9596","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9596/cosponsors?format=json","sponsors.0.bioguideId":"D000032","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9596/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9596/relatedbills?format=json","latestAction.actionDate":"2024-12-19","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Donalds, Byron [R-FL-19]","bill.sponsors.0.bioguideId":"P000048","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9596/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"S. Rept. 118-335","bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9596/text?format=json","bill.updateDate":"2025-01-03T08:06:34Z","updateDate":"2025-02-21T22:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9596/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/D000032?format=json","request.billNumber":"9596","committees.url":"https://api.congress.gov/v3/bill/118/hr/9596/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9596/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:34Z","title":"Value Over Cost Act","bill.title":"Uyghur Human Rights Sanctions Review Act","bill.number":"9596","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on November 20, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61094","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9596/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/335?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9596/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9596/summaries?format=json","bill.cosponsors.count":9,"cboCostEstimates.0.title":"H.R. 9596, Value Over Cost Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2024-09-16","bill.originChamberCode":"H","subjects.count":2,"bill.committees.count":2,"bill.sponsors.0.firstName":"August","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9596/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9596/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9596?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 143 (Monday, September 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DONALDS:\nH.R. 9596.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8 of the U.S. Constitution\nThe single subject of this legislation is:\nFederal Procurement\n[Page H5239]\n","bill.introducedDate":"2022-12-15","sponsors.0.district":19,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":11,"sponsors.0.firstName":"Byron","bill.type":"HR","updateDateIncludingText":"2025-02-21T22:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9596/text?format=json","bill.sponsors.0.lastName":"Pfluger"}}} +{"type":"relationship","id":"7287","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8737","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8045/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hageman","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8045/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8045","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 8045.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII\n[Page H5487]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8045/cosponsors?format=json","sponsors.0.bioguideId":"H001096","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8045/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","bill.sponsors.0.bioguideId":"P000048","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8045/text?format=json","bill.updateDate":"2025-01-03T07:52:31Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8045/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","request.billNumber":"8045","committees.url":"https://api.congress.gov/v3/bill/118/hr/8045/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8045/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:31Z","title":"POSTAL Act","bill.title":"Critical Minerals Classification Improvement Act of 2022","bill.number":"8045","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8045/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","sponsors.0.middleName":"M.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8045/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8045/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"August","sponsors.0.state":"WY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8045/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8045/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8045?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 8045.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nPreserving USPS Processing\n[Page H2502]\n","sponsors.0.district":11,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":11,"sponsors.0.firstName":"Harriet","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8045/text?format=json","bill.sponsors.0.lastName":"Pfluger"}}} +{"type":"relationship","id":"7288","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8937","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1311, Energy Diplomacy Act","sponsors.0.lastName":"McClain","cboCostEstimates.0.pubDate":"2022-01-18T16:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1311/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"1311","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"M001136","bill.subjects.count":11,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1311/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-01-18T16:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1311/relatedbills?format=json","bill.congress":117,"updateDate":"2025-02-04T16:28:27Z","committees.count":1,"request.billNumber":"1311","committees.url":"https://api.congress.gov/v3/bill/118/hr/1311/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:48:12Z","bill.number":"1311","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1311/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1311/summaries?format=json","cboCostEstimates.0.title":"H.R. 1311, Energy Diplomacy Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2023-03-01","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"August","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1311/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1311?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to direct the\nSecretary of Education to publish requirements for financial\naid offers to be provided by institutions of higher education\nto enrolled and prospective students.\n[Page H1052]\n","bill.sponsors.0.district":11,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1311/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-30","latestAction_text":"Ordered to be Reported by Voice Vote.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H618]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1311/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1311/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"P000048","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1311/text?format=json","bill.updateDate":"2025-01-03T04:48:12Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1311/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1311/subjects?format=json","title":"College Cost Transparency and Student Protection Act","bill.title":"Energy Diplomacy Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57738","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1311/committees?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1311/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-24","sponsors.0.district":9,"bill.sponsors.0.state":"TX","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1311/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57738","bill.sponsors.0.lastName":"Pfluger"}}} +{"type":"relationship","id":"7289","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"8553","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9567/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lieu","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9567/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"9567","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9567/cosponsors?format=json","sponsors.0.bioguideId":"L000582","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9567/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9567/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","bill.sponsors.0.bioguideId":"C001114","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9567/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9567/text?format=json","bill.updateDate":"2025-01-03T08:06:31Z","updateDate":"2024-10-17T19:04:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9567/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","request.billNumber":"9567","committees.url":"https://api.congress.gov/v3/bill/118/hr/9567/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9567/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:31Z","title":"Protecting Data at the Border Act","bill.title":"Increasing Access to Dental Insurance Act","bill.number":"9567","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9567/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9567/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9567/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9567/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9567/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9567?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 9567.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nData privacy\n[Page H5231]\n","sponsors.0.district":36,"bill.sponsors.0.state":"UT","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ted","bill.type":"HR","updateDateIncludingText":"2024-10-17T19:04:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9567/text?format=json","bill.sponsors.0.lastName":"Curtis"}}} +{"type":"relationship","id":"7290","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"8564","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9407/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moylan","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9407/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9407","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9407/cosponsors?format=json","sponsors.0.bioguideId":"M001219","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9407/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9407/relatedbills?format=json","latestAction.actionDate":"2024-08-24","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Del. Moylan, James C. [R-GU-At Large]","bill.sponsors.0.bioguideId":"G000595","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9407/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9407/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-24T09:05:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9407/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001219?format=json","request.billNumber":"9407","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9407/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9407/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend title 49, United States Code, to except from certain requirements relating to eligibility for essential air service Guam and the Northern Mariana Islands, and for other purposes.","bill.title":"Developing America’s Workforce Act","bill.number":"9407","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9407/committees?format=json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9407/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9407/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bob","sponsors.0.state":"GU","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9407/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9407/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9407?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOYLAN:\nH.R. 9407.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the Constitution.\nThe single subject of this legislation is:\nTo amend title 49, United States Code, to except from\ncertain requirements relating to eligibility for essential\nair service Guam and the Northern Mariana Islands, and for\nother purposes.\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":5,"sponsors.0.firstName":"James","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9407/text?format=json","bill.sponsors.0.lastName":"Good"}}} +{"type":"relationship","id":"7291","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"8688","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8767/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thanedar","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8767/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8767","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8767.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8767/cosponsors?format=json","sponsors.0.bioguideId":"T000488","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.sponsors.0.bioguideId":"G000595","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8767/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-29T12:31:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8767/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","request.billNumber":"8767","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8767/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Improving Access to Institutional Mental Health Care Act","bill.title":"Empowering Parents Act","bill.number":"8767","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8767/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8767/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8767/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bob","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8767/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8767/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8767?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 8767.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have . . . power to make all laws. Article 1\nSection 8\nThe single subject of this legislation is:\nTo amend title XIX of the Social Security Act to remove the\nexclusion from medical assistance under the Medicaid program\nof items and services for patients in an institution for\nmental diseases.\n[Page H4109]\n","sponsors.0.district":13,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Shri","bill.type":"HR","updateDateIncludingText":"2025-02-27T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8767/text?format=json","bill.sponsors.0.lastName":"Good"}}} +{"type":"relationship","id":"7292","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"8570","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9389/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Jackson","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9389/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9389","bill.cosponsors.countIncludingWithdrawnCosponsors":29,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9389/cosponsors?format=json","sponsors.0.bioguideId":"J000308","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9389/actions?format=json","latestAction.actionDate":"2024-08-20","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Jackson, Jeff [D-NC-14]","bill.sponsors.0.bioguideId":"J000304","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9389/text?format=json","bill.updateDate":"2022-12-29T08:48:26Z","updateDate":"2024-11-15T14:56:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9389/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000308?format=json","request.billNumber":"9389","committees.url":"https://api.congress.gov/v3/bill/118/hr/9389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9389/subjects?format=json","bill.updateDateIncludingText":"2022-12-29T08:48:26Z","title":"No Gratuities for Governing Act of 2024","bill.title":"To amend title 10, United States Code, to restrict the Secretary of Defense from paying or reimbursing expenses relating to abortion services.","bill.number":"9389","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9389/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9389/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9389/summaries?format=json","bill.cosponsors.count":29,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","introducedDate":"2024-08-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9389/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9389/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9389?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 132 (Tuesday, August 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of North Carolina:\nH.R. 9389.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIllegal bribes and gratuities for state, local, and tribal\nofficials\n[Page H5001]\n","bill.introducedDate":"2022-12-01","sponsors.0.district":14,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Jeff","bill.type":"HR","updateDateIncludingText":"2024-11-15T14:56:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9389/text?format=json","bill.sponsors.0.lastName":"Jackson"}}} +{"type":"relationship","id":"7293","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"8865","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6306/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mills","bill.latestAction.actionDate":"2021-12-17","cboCostEstimates.0.pubDate":"2024-01-05T18:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6306/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6306","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON:\nH.R. 6306.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6306/cosponsors?format=json","sponsors.0.bioguideId":"M001216","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6306/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-03-20","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Mills, Cory [R-FL-7]","bill.sponsors.0.bioguideId":"J000304","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6306/text?format=json","bill.updateDate":"2025-01-03T07:37:55Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6306/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":13,"sponsors.0.url":"https://api.congress.gov/v3/member/M001216?format=json","request.billNumber":"6306","committees.url":"https://api.congress.gov/v3/bill/118/hr/6306/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6306/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:55Z","title":"Embassy Construction Integrity Act of 2023","bill.title":"POLAR Response Act","bill.number":"6306","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on December 13, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59849","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6306/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6306/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6306/summaries?format=json","bill.cosponsors.count":9,"cboCostEstimates.0.title":"H.R. 6306, Embassy Construction Integrity Act of 2023","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6306/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6306/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6306?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MILLS:\nH.R. 6306.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo amend the State Department Basic Authorities Act of 1956\nto prohibit the acquisition or lease of a consular or\ndiplomatic post built or owned by an entity beneficially\nowned by the People's Republic of China, and for other\npurposes.\n[Page H5653]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Cory","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6306/text?format=json","bill.sponsors.0.lastName":"Jackson"}}} +{"type":"relationship","id":"7294","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"8893","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6033/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steel","bill.latestAction.actionDate":"2021-11-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6033/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6033","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON:\nH.R. 6033.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6033/cosponsors?format=json","sponsors.0.bioguideId":"S001135","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6033/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6033/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","bill.sponsors.0.bioguideId":"J000304","bill.originChamber":"House","bill.actions.count":8,"titles.count":10,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6033/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-621","bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6033/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-01-16T06:06:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6033/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","request.billNumber":"6033","committees.url":"https://api.congress.gov/v3/bill/118/hr/6033/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6033/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"SPEAK Act of 2024","bill.title":"CRUCIAL Act of 2021","bill.number":"6033","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6033/committees?format=json","latestAction_actionDate":"2021-11-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/621?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6033/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6033/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":5,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6033/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6033/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6033?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\n[Pages H5043-H5044]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 6033.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H5044]]\nArticle I, Section 8\nThe single subject of this legislation is:\nHealth Care\n","sponsors.0.district":45,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michelle","bill.type":"HR","updateDateIncludingText":"2025-01-16T06:06:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6033/text?format=json","bill.sponsors.0.lastName":"Jackson"}}} +{"type":"relationship","id":"7295","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"9077","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3507/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kilmer","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2024-07-16T20:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3507/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 542.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3507","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON:\nH.R. 3507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3507/cosponsors?format=json","sponsors.0.bioguideId":"K000381","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3507/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3507/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-08-30","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","bill.sponsors.0.bioguideId":"J000304","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":45,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-645","bill.sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3507/text?format=json","bill.updateDate":"2025-01-03T05:04:45Z","updateDate":"2025-01-16T07:06:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3507/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","request.billNumber":"3507","committees.url":"https://api.congress.gov/v3/bill/118/hr/3507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3507/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:04:45Z","title":"Yes In My Backyard Act","bill.title":"Stop Cancel Culture from Degrading Honor Act","bill.number":"3507","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Financial Services on May 16, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":45,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60529","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3507/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/645?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3507/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3507/summaries?format=json","bill.cosponsors.count":11,"cboCostEstimates.0.title":"H.R. 3507, Yes in My Backyard Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ronny","sponsors.0.state":"WA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3507/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3507/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3507?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 3507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution\nThe single subject of this legislation is:\nHousing is the single subject of this bill.\n[Page H2458]\n","sponsors.0.district":6,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":13,"sponsors.0.firstName":"Derek","bill.type":"HR","updateDateIncludingText":"2025-01-16T07:06:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3507/text?format=json","bill.sponsors.0.lastName":"Jackson"}}} +{"type":"relationship","id":"7296","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9661","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1052/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"1052","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1052/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1052/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Administrative Pay-As-You-Go Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1052","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1052/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1052/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1052/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1052/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1052?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7297","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9729","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7298","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"
Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"8576","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7604/summaries?format=json","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H1064)","bill.summaries.count":1,"sponsors.0.party":"D","number":"7604","sponsors":[],"bill.constitutionalAuthorityStatementText":"\n[Congressional Record Volume 168, Number 69 (Wednesday, April 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MULLIN:\nH.R. 7604.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill is based is\nCongress's power under the Commerce Clause in Article I,\nSection 8, of the Constitution and under the Constitution's\ngrant of powers to Congress under the Equal Protection, Due\nProcess, and Enforcement Clauses of the Fourteenth Amendment.\n[Page H4575]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7604/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7604/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7604/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"M001190","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Mullin, Markwayne [R-OK-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7604/text?format=json","bill.updateDate":"2025-01-03T07:48:28Z","updateDate":"2024-06-11T15:47:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7604/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"7604","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7604/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7604/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:28Z","title":"Hawaii Wildfire Disaster Unemployment Assistance Continuity Act","bill.title":"Partial Birth Abortion Is Murder Act","bill.number":"7604","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7604/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7604/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7604/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","introducedDate":"2024-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Markwayne","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7604/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7604/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7604?format=json","bill.introducedDate":"2022-04-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 42 (Friday, March 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 7604.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo provide enhanced disaster unemployment assistance to\nvictims of the Hawaii wildfires of 2023, and for other\npurposes.\n[Page H1058]\n","sponsors.0.district":2,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:47:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7604/text?format=json","bill.sponsors.0.lastName":"Mullin"}}} +{"type":"relationship","id":"7299","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"8590","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7510/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Velázquez","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7510/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7510","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 7510.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7510/cosponsors?format=json","sponsors.0.bioguideId":"V000081","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7510/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7510/relatedbills?format=json","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Velázquez, Nydia M. [D-NY-7]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7510/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7510/text?format=json","bill.updateDate":"2025-01-03T07:47:47Z","updateDate":"2024-10-04T15:08:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7510/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","request.billNumber":"7510","committees.url":"https://api.congress.gov/v3/bill/118/hr/7510/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7510/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:47Z","title":"Survivor Financial Safety and Inclusion Working Group Act","bill.title":"National Education Association Charter Repeal Act","bill.number":"7510","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7510/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7510/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7510/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7510/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7510/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7510?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 7510.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power . . . To regulate Commerce\nwith Foreign Nations, and among the several states, and with\nthe Indian Tribes.\nThe single subject of this legislation is:\nThis bill establishes an interagency working group amongst\nthe financial regulators and task them with collecting data\non the impacts of economic abuse of survivors carried out\nthrough regulated financial institutions. The working group\nwould also provide recommendations on how Congress and\nfederal regulators can help financial institutions improve\nexisting products and services and launch new ones to meet\nsurvivors' financial and safety needs\n[Page H774]\n","sponsors.0.district":7,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Nydia","bill.type":"HR","updateDateIncludingText":"2024-10-04T15:08:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7510/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}}} +{"type":"relationship","id":"7300","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"8615","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8930/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sessions","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8930/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8930","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 152 (Wednesday, September 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 8930.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[[Page H8066]]\n[Page H8065]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8930/cosponsors?format=json","sponsors.0.bioguideId":"S000250","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8930/actions?format=json","latestAction.actionDate":"2024-07-02","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Sessions, Pete [R-TX-17]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8930/text?format=json","bill.updateDate":"2025-01-03T08:00:39Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8930/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S000250?format=json","request.billNumber":"8930","committees.url":"https://api.congress.gov/v3/bill/118/hr/8930/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8930/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:39Z","title":"Accessibility Constituent Communication Act of 2024","bill.title":"Keeping Violent Offenders Off Our Streets Act","bill.number":"8930","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8930/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8930/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8930/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8930/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8930/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8930?format=json","bill.introducedDate":"2022-09-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\n[Pages H4452-H4453]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SESSIONS:\nH.R. 8930.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the\n[[Page H4453]]\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo require that each agency provide any communication in\nalternative accessible communication formats.\n","sponsors.0.district":17,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8930/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}}} +{"type":"relationship","id":"7301","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"8964","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5162/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5162/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5162","bill.cosponsors.countIncludingWithdrawnCosponsors":57,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 5162.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5162/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5162/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5162/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5162/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5162/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5162/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"5162","committees.url":"https://api.congress.gov/v3/bill/118/hr/5162/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5162/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Parity for Alaska Native and Native Hawaiian Students in Agriculture Act","bill.title":"CRT Transparency Act","bill.number":"5162","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5162/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5162/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5162/summaries?format=json","bill.cosponsors.count":57,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5162/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5162/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5162?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 5162.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nAmending the National Agricultural Research, Extension, and\nTeaching Policy Act of 1977 to extend education grant\nprograms for Alaska Native serving institutions and Native\nHawaiian serving institutions.\n[Page H4166]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5162/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}}} +{"type":"relationship","id":"7302","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"9123","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2978/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Spanberger","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2978/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2978","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 2978.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2978/cosponsors?format=json","sponsors.0.bioguideId":"S001209","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2978/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Spanberger, Abigail Davis [D-VA-7]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2978/text?format=json","bill.updateDate":"2025-01-03T05:01:00Z","updateDate":"2024-07-24T15:22:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2978/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001209?format=json","request.billNumber":"2978","committees.url":"https://api.congress.gov/v3/bill/118/hr/2978/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2978/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:01:00Z","title":"Cutting Paperwork for Taxpayers Act","bill.title":"BRIDGE Act","bill.number":"2978","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2978/committees?format=json","sponsors.0.middleName":"Davis","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2978/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2978/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2978/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2978/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2978?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPANBERGER:\nH.R. 2978.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe bill would make the interest received on a delayed tax\nrefund non-taxable income for individual filers and small\nbusinesses.\n[Page H2088]\n","sponsors.0.district":7,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Abigail","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2978/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}}} +{"type":"relationship","id":"7303","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"8594","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6536/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Soto","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6536/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6536","bill.cosponsors.countIncludingWithdrawnCosponsors":31,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 20 (Tuesday, February 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 6536.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment XIII states ``Neither slavery nor involuntary\nservitude, except as a punishment for crime whereof the party\nshall have been duly convicted, shall exist within the United\nStates, or any place subject to their jurisdiction. Congress\nshall have power to enforce this article by appropriate\nlegislation.''\nClause 3 of Section 8 of Article I grants that grants that\nCongress shall ``regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes;''\n[Page H331]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6536/cosponsors?format=json","sponsors.0.bioguideId":"S001200","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6536/actions?format=json","latestAction.actionDate":"2023-12-01","textVersions.count":1,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Soto, Darren [D-FL-9]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6536/text?format=json","bill.updateDate":"2025-01-03T07:39:52Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6536/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001200?format=json","request.billNumber":"6536","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6536/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6536/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:52Z","title":"REBATE Act","bill.title":"Stopping Traffickers and Their Accomplices Act of 2022","bill.number":"6536","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6536/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6536/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6536/summaries?format=json","bill.cosponsors.count":31,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2023-11-30","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6536/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6536/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6536?format=json","bill.introducedDate":"2022-02-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 20 (Tuesday, February 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 6536.\nCongress has the power to enact this legislation pursuant\nto the following:\nAmendment XIII states ``Neither slavery nor involuntary\nservitude, except as a punishment for crime whereof the party\nshall have been duly convicted, shall exist within the United\nStates, or any place subject to their jurisdiction. Congress\nshall have power to enforce this article by appropriate\nlegislation.''\nClause 3 of Section 8 of Article I grants that grants that\nCongress shall ``regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes;''\n[Page H331]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Darren","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6536/text?format=json","bill.sponsors.0.lastName":"Budd"}}} +{"type":"relationship","id":"7304","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"8692","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8753/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Boebert","bill.latestAction.actionDate":"2022-08-30","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8753/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8753","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 140 (Tuesday, August 30, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 8753.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress taxes and spends (which is applied to numerous\ngovernment programs, including grant programs) under Article\nI, Sec. 8, Cl. ``The Congress shall have Power To lay and\ncollect Taxes, Duties, Imposts and Excises, to pay the Debts\nand provide for the common Defence and general Welfare of the\nUnited States. . . .''\n[Page H7731]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8753/cosponsors?format=json","sponsors.0.bioguideId":"B000825","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8753/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8753/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8753/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8753/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":12,"sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","request.billNumber":"8753","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8753/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8753/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To direct the United States Postal Service to designate single, unique ZIP Codes for certain communities, and for other purposes.","bill.title":"Critical Health Careers Act of 2022","bill.number":"8753","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8753/committees?format=json","request.format":"json","latestAction_actionDate":"2022-08-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8753/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8753/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8753/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8753/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8753?format=json","bill.introducedDate":"2022-08-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BOEBERT:\nH.R. 8753.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nEstablishes zip codes for these 31 individual communities.\n[Page H4109]\n","sponsors.0.district":3,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8753/text?format=json","bill.sponsors.0.lastName":"Budd"}}} +{"type":"relationship","id":"7305","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"8712","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Casten","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8523/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8523","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 8523.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress taxes and spends (which is applied to numerous\ngovernment programs) under Article I, Sec. 8, Cl. ``The\nCongress shall have Power to lay and collect Taxes, Duties,\nImposts, and Excises, to pay the Debts and provide for the\ncommon Defence and general Welfare of the United States. . .\n.''\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8523/cosponsors?format=json","sponsors.0.bioguideId":"C001117","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8523/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8523/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-31","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Casten, Sean [D-IL-6]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8523/text?format=json","bill.updateDate":"2025-01-03T07:56:48Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8523/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001117?format=json","request.billNumber":"8523","committees.url":"https://api.congress.gov/v3/bill/118/hr/8523/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8523/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:48Z","title":"REDUCE Act","bill.title":"Promote Work and Improve Health Act of 2022","bill.number":"8523","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8523/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8523/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8523/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8523/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8523/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8523?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTEN:\nH.R. 8523.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require Electricity Transmission Organizations to allow\nbids from aggregators of certain retail electricity\ncustomers, and for other purposes.\n[Page H3524]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Sean","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8523/text?format=json","bill.sponsors.0.lastName":"Budd"}}} +{"type":"relationship","id":"7306","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9233","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1486/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castor","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1486/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1486","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 1486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec. 8\n[Page H1014]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1486/cosponsors?format=json","sponsors.0.bioguideId":"C001066","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1486/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1486/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Castor, Kathy [D-FL-14]","bill.sponsors.0.bioguideId":"B001305","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1486/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1486/text?format=json","bill.updateDate":"2025-01-03T04:49:42Z","updateDate":"2024-09-25T08:05:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1486/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C001066?format=json","request.billNumber":"1486","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1486/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1486/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:42Z","title":"Traditional Cigar Manufacturing and Small Business Jobs Preservation Act of 2023","bill.title":"To repeal the Office of Financial Research, and for other purposes.","bill.number":"1486","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1486/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1486/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1486/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-09","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1486/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1486/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1486?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CASTOR of Florida:\nH.R. 1486.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTobacco\n[Page H1250]\n","sponsors.0.district":14,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Kathy","bill.type":"HR","updateDateIncludingText":"2024-09-25T08:05:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1486/text?format=json","bill.sponsors.0.lastName":"Budd"}}} +{"type":"relationship","id":"7307","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9249","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1100/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Posey","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1100/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1100","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1100/cosponsors?format=json","sponsors.0.bioguideId":"P000599","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1100/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"bill.policyArea.name":"Civil Rights and Liberties, Minority Issues","sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":16,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1100/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1100/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","request.billNumber":"1100","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1100/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SAFE for America Act of 2023","bill.title":"Online Accessibility Act","bill.number":"1100","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1100/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1100/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1100/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1100/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1100/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1100?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POSEY:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nA Visa Lottery Immigration Bill\n[Page H856]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-12-04T09:05:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1100/text?format=json","bill.sponsors.0.lastName":"Budd"}}} +{"type":"relationship","id":"7308","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9869","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1100/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Posey","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1100/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1100","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUDD:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1100/cosponsors?format=json","sponsors.0.bioguideId":"P000599","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1100/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"bill.policyArea.name":"Civil Rights and Liberties, Minority Issues","sponsors.0.fullName":"Rep. Posey, Bill [R-FL-8]","bill.sponsors.0.bioguideId":"B001305","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":16,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Budd, Ted [R-NC-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1100/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1100/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000599?format=json","request.billNumber":"1100","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1100/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1100/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SAFE for America Act of 2023","bill.title":"Online Accessibility Act","bill.number":"1100","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1100/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1100/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1100/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1100/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1100/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1100?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. POSEY:\nH.R. 1100.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nA Visa Lottery Immigration Bill\n[Page H856]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":13,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-12-04T09:05:25Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1100/text?format=json","bill.sponsors.0.lastName":"Budd"}}} +{"type":"relationship","id":"7309","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"8595","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6522/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hinson","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6522/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6522","bill.cosponsors.countIncludingWithdrawnCosponsors":38,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 18 (Friday, January 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6522.\nCongress has the power to enact this legislation pursuant\nto the following:\nUS Constitution Article I, Section 9, Clause 7\n[Page H308]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6522/cosponsors?format=json","sponsors.0.bioguideId":"H001091","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6522/actions?format=json","latestAction.actionDate":"2023-11-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6522/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-2]","bill.sponsors.0.bioguideId":"H001091","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":37,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6522/text?format=json","bill.updateDate":"2025-01-03T07:39:33Z","updateDate":"2024-07-24T15:19:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6522/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","request.billNumber":"6522","committees.url":"https://api.congress.gov/v3/bill/118/hr/6522/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6522/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:33Z","title":"PRINTS Act","bill.title":"Stop the Betrayal Act of 2022","bill.number":"6522","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":37,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6522/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6522/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6522/summaries?format=json","bill.cosponsors.count":38,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-30","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ashley","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6522/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6522/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6522?format=json","bill.introducedDate":"2022-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 197 (Thursday, November 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6522.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nAllows DHS and Customs and Border Protection the authority\nto fingerprint non-citzens under the age of 14 in order to\ncombat trafficking and child recycling, and criminalizes\nchild recycling.\n[Page H6050]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Ashley","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6522/text?format=json","bill.sponsors.0.lastName":"Hinson"}}} +{"type":"relationship","id":"7310","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"8884","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sánchez","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6031/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6031","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6031.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nArticle I, Section 8, Clause 1\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6031/cosponsors?format=json","sponsors.0.bioguideId":"S001156","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6031/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6031/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Sánchez, Linda T. [D-CA-38]","bill.sponsors.0.bioguideId":"H001091","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":195,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6031/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6031/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6031/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001156?format=json","request.billNumber":"6031","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6031/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6031/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Safe Schools Improvement Act","bill.title":"HEALING Mothers and Fathers Act","bill.number":"6031","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":195,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6031/committees?format=json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6031/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6031/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Ashley","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6031/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6031/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6031?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SANCHEZ:\nH.R. 6031.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution, to\n``provide for the common Defence and general Welfare of the\nUnited States.''\nThe single subject of this legislation is:\nEducation\n[Page H5043]\n","sponsors.0.district":38,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Linda","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6031/text?format=json","bill.sponsors.0.lastName":"Hinson"}}} +{"type":"relationship","id":"7311","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8611","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6422/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cartwright","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6422/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6422","bill.cosponsors.countIncludingWithdrawnCosponsors":46,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 12 (Wednesday, January 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 6422.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6422/cosponsors?format=json","sponsors.0.bioguideId":"C001090","bill.subjects.count":38,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6422/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6422/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Cartwright, Matt [D-PA-8]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":46,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6422/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6422/text?format=json","bill.updateDate":"2025-01-03T07:39:04Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6422/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001090?format=json","request.billNumber":"6422","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6422/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6422/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:04Z","title":"Locality Pay Equity Act of 2023","bill.title":"Putin Accountability Act","bill.number":"6422","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":46,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6422/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6422/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6422/summaries?format=json","bill.cosponsors.count":46,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6422/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6422/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6422?format=json","bill.introducedDate":"2022-01-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 190 (Wednesday, November 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTWRIGHT:\nH.R. 6422.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nThis bill amends title 5, United States Code, to limit the\nnumber of local wage areas allowable within a General\nSchedule pay locality.\n[Page H5893]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Matt","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6422/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7312","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8646","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9241/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cárdenas","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9241/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9241","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9241/cosponsors?format=json","sponsors.0.bioguideId":"C001097","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9241/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9241/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committees on Armed Services, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9241/text?format=json","bill.updateDate":"2025-01-03T08:03:23Z","updateDate":"2024-10-02T13:19:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9241/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","request.billNumber":"9241","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9241/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9241/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:23Z","title":"Safeguarding Infants from Dangerous Sleep Act","bill.title":"Prioritizing National Security in Export Controls Act of 2022","bill.number":"9241","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9241/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9241/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9241/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9241/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9241/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9241?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 9241.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\nThe single subject of this legislation is:\nTo provide that weighted sleep products for infants shall\nbe considered banned hazardous products under section 8 of\nthe Consumer Product Safety Act, and for other purposes.\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":29,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2024-10-02T13:19:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9241/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7313","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8649","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9240/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bishop","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9240/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9240","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9240/cosponsors?format=json","sponsors.0.bioguideId":"B000490","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9240/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9240/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Bishop, Sanford D. [D-GA-2]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9240/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9240/text?format=json","bill.updateDate":"2025-01-03T08:03:21Z","updateDate":"2024-09-30T21:39:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9240/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B000490?format=json","request.billNumber":"9240","committees.url":"https://api.congress.gov/v3/bill/118/hr/9240/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9240/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:21Z","title":"Protecting Our Produce Act","bill.title":"Concerned Citizens Bill of Rights Act","bill.number":"9240","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9240/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","sponsors.0.middleName":"D.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9240/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9240/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"GA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9240/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9240/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9240?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BISHOP of Georgia:\nH.R. 9240.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 8, cls. 1, 3, 18\nThe single subject of this legislation is:\nspecialty crops (seasonal and perishable crops)\n[Page H4972]\n","bill.introducedDate":"2022-10-28","sponsors.0.district":2,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Sanford","bill.type":"HR","updateDateIncludingText":"2024-10-05T16:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9240/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7314","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8736","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8029/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8029","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 8029.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H5486]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8029/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8029/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8029/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8029/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8029/text?format=json","bill.updateDate":"2025-01-03T07:52:35Z","updateDate":"2024-12-16T20:39:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8029/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"8029","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8029/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:35Z","title":"VA Abortion Transparency Act of 2024","bill.title":"Taiwan Weapons Exports Act of 2022","bill.number":"8029","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8029/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8029/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8029/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8029/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8029/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8029?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 8029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation requires the Department of Veterans\nAffairs to report abortion data to Congress on a quarterly\nbasis.\n[Page H2444]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8029/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7315","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8888","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6017/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Steel","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6017/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6017","bill.cosponsors.countIncludingWithdrawnCosponsors":30,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\n[Pages H6608-H6609]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 6017.\n[[Page H6609]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6017/cosponsors?format=json","sponsors.0.bioguideId":"S001135","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6017/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6017/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Steel, Michelle [R-CA-45]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6017/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6017/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6017/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/S001135?format=json","request.billNumber":"6017","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6017/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6017/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To revoke the waiver determination submitted to Congress on September 11, 2023, with respect to certain sanctions imposed with respect to Iran.","bill.title":"Parental Rights Protection Act","bill.number":"6017","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6017/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6017/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6017/summaries?format=json","bill.cosponsors.count":30,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-10-20","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6017/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6017/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6017?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 173 (Friday, October 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. STEEL:\nH.R. 6017.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nForeign Affairs\n[Page H5039]\n","sponsors.0.district":45,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Michelle","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6017/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7316","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8973","labels":["Bill"],"properties":{"relatedBills.count":33,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4792/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kamlager-Dove","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy and Mineral Resources.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":33,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4792/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4792","bill.cosponsors.countIncludingWithdrawnCosponsors":55,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 133 (Thursday, July 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 4792.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H4293]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4792/cosponsors?format=json","sponsors.0.bioguideId":"K000400","bill.subjects.count":67,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4792/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4792/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Kamlager-Dove, Sydney [D-CA-37]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":21,"titles.count":5,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4792/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4792/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-20T09:06:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4792/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/K000400?format=json","request.billNumber":"4792","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4792/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4792/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Childhood Offenders Rehabilitation and Safety Act of 2023","bill.title":"Countering Communist China Act","bill.number":"4792","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4792/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4792/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4792/summaries?format=json","bill.cosponsors.count":55,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-07-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":14,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4792/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4792/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4792?format=json","bill.introducedDate":"2021-07-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAMLAGER-DOVE:\nH.R. 4792.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7 of Rule XII of the Rules of the House\nof Representatives, the following statement is submitted\nregarding the specific powers granted to Congress in the\nConstitution to enact the accompanying bill.\nThis bill is introduced pursuant to the powers granted to\nCongress under the General Welfare\nThe single subject of this legislation is:\nThis bill will reform the federal juvenile justice system\nto better address the needs of juvenile offenders and provide\nholistic pathways for rehabilitation.\n[Page H3890]\n","sponsors.0.district":37,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Sydney","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4792/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7317","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9097","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3295/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Griffith","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3295/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3295","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 3295.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3295/cosponsors?format=json","sponsors.0.bioguideId":"G000568","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3295/actions?format=json","latestAction.actionDate":"2023-05-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3295/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3295/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3295/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3295/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","request.billNumber":"3295","committees.url":"https://api.congress.gov/v3/bill/118/hr/3295/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3295/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"BROADBAND Leadership Act","bill.title":"Prohibiting TSP Investment in China Act","bill.number":"3295","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3295/committees?format=json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3295/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3295/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3295/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3295/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3295?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 3295\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo expedite broadband deployment by streamlining permitting\nreviews\n[Page H2348]\n","sponsors.0.district":9,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"H.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:08Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3295/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7318","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9251","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1092/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1092","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1092/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1092/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1092/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1092/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-09-26T08:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1092/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"1092","committees.url":"https://api.congress.gov/v3/bill/118/hr/1092/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1092/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"BENEFIT Act of 2023","bill.title":"To place temporary restrictions on acquisitions by the People's Republic of China, and for other purposes.","bill.number":"1092","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1092/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1092/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1092/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1092/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1092/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1092?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo strengthen the use of patient-experience data within the\nbenefit-risk framework for approval of new drugs.\n[Page H856]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-09-26T08:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1092/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7319","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9252","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lieu","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1090/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1090","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 1090.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1090/cosponsors?format=json","sponsors.0.bioguideId":"L000582","bill.subjects.count":22,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1090/actions?format=json","latestAction.actionDate":"2023-02-24","textVersions.count":1,"bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-36]","bill.sponsors.0.bioguideId":"B001299","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1090/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:23:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1090/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","request.billNumber":"1090","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1090/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1090/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"DEVICE Act of 2023","bill.title":"Online Consumer Protection Act of 2021","bill.number":"1090","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1090/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1090/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1090/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1090/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1090/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1090?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 1090.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const., Art. 1, Sec. 8\nThe single subject of this legislation is:\nHealth care\n[Page H856]\n","sponsors.0.district":36,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ted","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1090/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7320","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9872","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1092/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1092","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1092/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1092/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1092/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1092/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-09-26T08:06:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1092/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"1092","committees.url":"https://api.congress.gov/v3/bill/118/hr/1092/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1092/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"BENEFIT Act of 2023","bill.title":"To place temporary restrictions on acquisitions by the People's Republic of China, and for other purposes.","bill.number":"1092","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1092/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-05-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1092/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1092/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1092/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1092/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1092?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 1092.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo strengthen the use of patient-experience data within the\nbenefit-risk framework for approval of new drugs.\n[Page H856]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-09-26T08:06:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1092/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"7321","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9702","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"427","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/427/committees?format=json","title":"Financial Freedom Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"427","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/427/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/427/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/427/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/427?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7322","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9947","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Referred to the House Committee on Ethics.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","title":"SPR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"7323","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4886/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"4886","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4886/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4886/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"Native Arts and Culture Promotion Act","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"4886","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4886/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4886/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4886/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4886/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4886/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4886?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:13:01Z"}}} +{"type":"relationship","id":"7324","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10034","labels":["Order"],"properties":{"date_enacted":"2025-02-26","date_repealed":"None","description":"nan","id":"EO 14222","title":"Implementing the Presidents \"Department of Government Efficiency\" Cost Efficiency Initiative","url":"https://www.federalregister.gov/d/2025-03527"}}} +{"type":"relationship","id":"7325","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"8634","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9047/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nehls","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9047/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9047","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9047/cosponsors?format=json","sponsors.0.bioguideId":"N000026","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9047/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9047/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Nehls, Troy E. [R-TX-22]","bill.sponsors.0.bioguideId":"F000446","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Commodity Exchanges, Energy, and Credit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9047/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9047/text?format=json","bill.updateDate":"2025-01-03T08:02:04Z","updateDate":"2024-11-25T19:35:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9047/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000026?format=json","request.billNumber":"9047","committees.url":"https://api.congress.gov/v3/bill/118/hr/9047/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9047/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:04Z","title":"To amend title 18, United States Code, to modify provisions relating to kidnapping, sexual abuse, and illicit sexual conduct with respect to minors.","bill.title":"Precision Agriculture Loan Program Act of 2022","bill.number":"9047","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9047/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9047/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9047/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Randy","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9047/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9047/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9047?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEHLS:\nH.R. 9047.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to modify provisions\nrelating to kidnapping, sexual abuse, and illicit sexual\nconduct with respect to minors.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":22,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2024-11-25T19:35:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9047/text?format=json","bill.sponsors.0.lastName":"Feenstra"}}} +{"type":"relationship","id":"7326","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9427","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4206/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4206","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4206/committees?format=json","policyArea.name":"Animals","type":"S","title":"Captive Primate Safety Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"4206","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4206/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4206/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4206/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4206?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7327","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9295","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5329/text?format=json","relatedBills.count":2,"updateDate":"2024-12-17T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"5329","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Became Public Law No: 117-362.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5329/subjects?format=json","policyArea.name":"Agriculture and Food","committees.url":"https://api.congress.gov/v3/bill/118/s/5329/committees?format=json","title":"FIGHTING for America Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5329","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5329/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5329/titles?format=json","laws.0.number":"117-362","summaries.url":"https://api.congress.gov/v3/bill/117/s/5329/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5329/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5329/relatedbills?format=json","latestAction.actionDate":"2024-11-14","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"cosponsors.count":5,"introducedDate":"2024-11-14","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5329?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-18T17:27:14Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7328","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1217/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"1217","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1217/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1217/committees?format=json","policyArea.name":"Health","type":"S","title":"Ending the Prescription Drug Kickback Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1217","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1217/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1217/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1217/relatedbills?format=json","latestAction.actionDate":"2023-04-19","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-04-19","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1217?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7329","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9625","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1619/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1619","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1619/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1619/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Disrupt Fentanyl Trafficking Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1619","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1619/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1619/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1619/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1619/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1619?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7330","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"9876","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-12-10","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}}} +{"type":"relationship","id":"7331","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4890/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4890","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4890/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4890/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Access to Small Business Investor Capital Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"4890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4890/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4890/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4890/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4890?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7332","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9810","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S2283-2284)","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2022-05-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"7333","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9700","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"434","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/434/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"PAID OFF Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S427)","sponsors.0.party":"R","number":"434","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/434/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/434/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/434/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/434?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7334","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9465","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3707/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3707","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/3707/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3707/committees?format=json","type":"S","title":"Peace and Tolerance in Palestinian Education Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3707","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3707/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3707/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3707/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3707/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3707/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3707?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7335","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9631","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1609/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1609","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/1609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1609/committees?format=json","title":"Support Our Election Workers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1609","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1609/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1609/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1609/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1609/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1609/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1609?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"7336","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9443","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/567/text?format=json","relatedBills.count":1,"updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Obernolte","sponsors.0.isByRequest":"N","request.billNumber":"567","sponsors.0.url":"https://api.congress.gov/v3/member/O000019?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/567/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/567/committees?format=json","policyArea.name":"Public Lands and Natural Resources","title":"SALVAGE Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"567","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/567/cosponsors?format=json","sponsors.0.bioguideId":"O000019","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/567/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/567/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/567/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/567/relatedbills?format=json","latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Obernolte, Jay [R-CA-23]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/567?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OBERNOLTE:\nH.R. 567.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H430]\n","sponsors.0.district":23,"sponsors.0.firstName":"Jay","updateDateIncludingText":"2025-01-24T18:06:37Z"}}} +{"type":"relationship","id":"7337","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9339","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5080/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"5080","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/5080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Postmaster General Reform Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5080","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5080/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5080/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5080/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2024-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5080?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7338","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9543","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2723/text?format=json","relatedBills.count":2,"updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"2723","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","latestAction_text":"Read twice and referred to the Committee on the Budget.","committees.url":"https://api.congress.gov/v3/bill/118/s/2723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2723/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Modernizing Agricultural and Manufacturing Bonds Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2723","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2723/cosponsors?format=json","sponsors.0.bioguideId":"B000944","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2723/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2723/actions?format=json","latestAction.actionDate":"2023-09-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2723/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2723?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-14T16:56:14Z"}}} +{"type":"relationship","id":"7339","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9651","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1357/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"1357","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1357/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1357/committees?format=json","type":"HR","title":"Congressional Oversight of Russian Sanctions Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1357","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1357/cosponsors?format=json","sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1357/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1357/relatedbills?format=json","latestAction.actionDate":"2023-03-03","sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1357?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 1357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nCongressional Oversight\n[Page H1115]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:23:28Z"}}} +{"type":"relationship","id":"7340","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"9975","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/644/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T22:37:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Boyle","sponsors.0.isByRequest":"N","request.billNumber":"644","sponsors.0.url":"https://api.congress.gov/v3/member/B001296?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S2624)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hres/644/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/644/committees?format=json","type":"HRES","title":"Calling on the Judicial Conference of the United States to authorize that the trial of former President Donald J. Trump for his alleged crimes related to his efforts to overturn the 2020 election and his role in the January 6, 2021, insurrection be broadcast to the American public.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"644","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-05-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/644/cosponsors?format=json","sponsors.0.bioguideId":"B001296","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/644/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/644/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/644/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/644/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-04","sponsors.0.fullName":"Rep. Boyle, Brendan F. [D-PA-2]","titles.count":2,"introducedDate":"2023-08-04","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/644?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Brendan","updateDateIncludingText":"2024-12-04T22:37:05Z"}}} +{"type":"relationship","id":"7341","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9641","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/164/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"164","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Became Public Law No: 117-8.","subjects.url":"https://api.congress.gov/v3/bill/118/s/164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/164/committees?format=json","policyArea.name":"Health","title":"Doss's Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"164","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/164/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/164/titles?format=json","laws.0.number":"117-8","summaries.url":"https://api.congress.gov/v3/bill/118/s/164/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/164/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/164/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":5,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/164?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7342","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9811","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S2248)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-05-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/37/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"cosponsors.count":3,"introducedDate":"2023-01-09","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"7343","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9701","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/433/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"433","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/433/subjects?format=json","type":"S","title":"A bill to require the Secretary of Agriculture to convene a blue ribbon panel to review the forest inventory and analysis program of the Forest Service, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"433","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/433/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/433/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/433/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/433?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7344","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9586","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","title":"SPR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"7345","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"13","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"LaHood","cboCostEstimates.0.pubDate":"2024-10-23T18:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-258.","policyArea.name":"Families","type":"HR","latestAction.text":"Became Public Law No: 118-258.","sponsors.0.party":"R","number":"9076","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9076/cosponsors?format=json","sponsors.0.bioguideId":"L000585","laws.0.number":"118-258","actions.url":"https://api.congress.gov/v3/bill/118/hr/9076/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2025-01-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9076/relatedbills?format=json","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","titles.count":8,"cosponsors.count":23,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-679","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9076/text?format=json","updateDate":"2025-02-27T20:23:56Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":29,"request.billNumber":"9076","sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9076/committees?format=json","title":"Supporting America’s Children and Families Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 24, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60853","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2025-01-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/679?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9076/summaries?format=json","cboCostEstimates.0.title":"H.R. 9076, Protecting America’s Children by Strengthening Families Act","introducedDate":"2024-07-22","subjects.count":25,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 9076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution--Congress has\nthe power ``To make all laws which shall be necessary and\nproper for carrying into execution the foregoing powers, and\nall other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.''\nThe single subject of this legislation is:\nThe bill would reauthorize and modernize part B of title IV\nof the Social Security Act to strengthen child welfare\nservices, expand the availability of prevention services to\nbetter meet the needs of vulnerable families.\n[Page H4730]\n","sponsors.0.district":16,"sponsors.0.firstName":"Darin","updateDateIncludingText":"2025-02-27T20:23:56Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7346","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"8653","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9245/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cleaver","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","policyArea.name":"Finance and Financial Sector","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9245/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"F.","number":"9245","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9245/cosponsors?format=json","sponsors.0.bioguideId":"C001061","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9245/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9245/relatedbills?format=json","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Cleaver, Emanuel [D-MO-5]","bill.sponsors.0.bioguideId":"G000592","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":20,"bill.latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9245/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Golden, Jared F. [D-ME-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9245/text?format=json","bill.updateDate":"2025-01-03T08:03:24Z","updateDate":"2024-09-30T14:23:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9245/subjects?format=json","committees.count":4,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/C001061?format=json","request.billNumber":"9245","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9245/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9245/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:03:24Z","title":"American Housing and Economic Mobility Act of 2024","bill.title":"Fire Grants and Safety Act","bill.number":"9245","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9245/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9245/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9245/summaries?format=json","bill.cosponsors.count":26,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000592?format=json","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jared","sponsors.0.state":"MO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9245/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9245/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9245?format=json","bill.introducedDate":"2022-10-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CLEAVER:\nH.R. 9245.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo make housing more affordable, and for other purposes.\n[Page H4972]\n","sponsors.0.district":5,"bill.sponsors.0.state":"ME","bill.sponsors.0.district":2,"sponsors.0.firstName":"Emanuel","bill.type":"HR","updateDateIncludingText":"2024-09-30T14:23:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9245/text?format=json","bill.sponsors.0.lastName":"Golden"}}} +{"type":"relationship","id":"7347","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"8660","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9030/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Alford","bill.latestAction.actionDate":"2022-09-29","cboCostEstimates.0.pubDate":"2024-11-15T17:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9030/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Reported by the Committee on Small Business. H. Rept. 118-852, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"9030","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9030/cosponsors?format=json","sponsors.0.bioguideId":"A000379","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9030/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9030/relatedbills?format=json","latestAction.actionDate":"2024-12-10","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9030/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-852","bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9030/text?format=json","bill.updateDate":"2025-01-03T08:02:12Z","updateDate":"2025-02-13T01:11:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9030/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","request.billNumber":"9030","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9030/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9030/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:12Z","title":"Regulatory Agenda Clarity Act","bill.title":"Repealing the Ill-Conceived and Problematic (RIP) Book Minimum Tax Act","bill.number":"9030","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60990","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9030/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-29","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/852?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9030/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9030/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 9030, Regulatory Agenda Clarity Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"MO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9030/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9030/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9030?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 9030.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 ``The Congress shall have\npower to . . . provide for the . . . general welfare of the\nUnited States; . . .''\nThe single subject of this legislation is:\nRequires agencies to fully report on the impact of their\nrules.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-13T01:11:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9030/text?format=json","bill.sponsors.0.lastName":"Arrington"}}} +{"type":"relationship","id":"7348","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"9281","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/497/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Duncan","bill.latestAction.actionDate":"2021-01-28","cboCostEstimates.0.pubDate":"2023-01-30T18:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/497/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"497","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/497/cosponsors?format=json","sponsors.0.bioguideId":"D000615","bill.subjects.count":20,"actions.url":"https://api.congress.gov/v3/bill/118/hr/497/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/497/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":3,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":5,"cosponsors.count":75,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/497/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/497/text?format=json","bill.updateDate":"2025-01-03T04:43:07Z","updateDate":"2024-12-21T09:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/497/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","request.billNumber":"497","subjects.url":"https://api.congress.gov/v3/bill/118/hr/497/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/497/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:07Z","title":"Freedom for Health Care Workers Act","bill.title":"To prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization.","bill.number":"497","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As introduced on January 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":75,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58922","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/497/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-01-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/497/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/497/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 497, Freedom for Healthcare Workers Act","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/497/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/497/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/497?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nSingle Subject Statement:\nThis legislation eliminates the COVID-19 Vaccine mandate on\nhealth care providers furnishing items and services under\ncertain Federal health care programs.\n[Page H324]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Jeff","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/497/text?format=json","bill.sponsors.0.lastName":"Arrington"}}} +{"type":"relationship","id":"7349","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"9417","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/497/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Duncan","bill.latestAction.actionDate":"2021-01-28","cboCostEstimates.0.pubDate":"2023-01-30T18:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-121.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/497/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"497","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/497/cosponsors?format=json","sponsors.0.bioguideId":"D000615","bill.subjects.count":20,"actions.url":"https://api.congress.gov/v3/bill/118/hr/497/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/497/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":3,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":5,"cosponsors.count":75,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/497/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/497/text?format=json","bill.updateDate":"2025-01-03T04:43:07Z","updateDate":"2024-12-21T09:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/497/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","request.billNumber":"497","subjects.url":"https://api.congress.gov/v3/bill/118/hr/497/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/497/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:07Z","title":"Freedom for Health Care Workers Act","bill.title":"To prohibit the use of funds to seek membership in the World Health Organization or to provide assessed or voluntary contributions to the World Health Organization.","bill.number":"497","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As introduced on January 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":75,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58922","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/497/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-05-12","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/497/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/497/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 497, Freedom for Healthcare Workers Act","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/497/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/497/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/497?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 497.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nSingle Subject Statement:\nThis legislation eliminates the COVID-19 Vaccine mandate on\nhealth care providers furnishing items and services under\ncertain Federal health care programs.\n[Page H324]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Jeff","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/497/text?format=json","bill.sponsors.0.lastName":"Arrington"}}} +{"type":"relationship","id":"7350","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8665","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Guthrie","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9077/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9077","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9077/cosponsors?format=json","sponsors.0.bioguideId":"G000558","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9077/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","bill.sponsors.0.bioguideId":"S001208","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9077/text?format=json","bill.updateDate":"2025-01-03T08:02:16Z","updateDate":"2024-09-03T17:33:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9077/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","request.billNumber":"9077","committees.url":"https://api.congress.gov/v3/bill/118/hr/9077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9077/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:16Z","title":"Fair and Efficient Regulatory Commonsense Act","bill.title":"Canine Members of the Armed Forces Act","bill.number":"9077","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9077/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9077/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9077/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"KY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9077/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9077/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9077?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 9077.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the U.S. Constitution\nThe single subject of this legislation is:\nThis legislation would remove existing authorities of the\nFederal Energy Regulatory Commission (FERC) to compensate\nindividuals seeking to intervene in Commission proceedings\nand re-designate the Office of Public Participation as a\nDivision under the existing Office of External Affairs\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":2,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Brett","bill.type":"HR","updateDateIncludingText":"2024-09-03T17:33:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9077/text?format=json","bill.sponsors.0.lastName":"Slotkin"}}} +{"type":"relationship","id":"7351","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8671","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9078/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Aderholt","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9078/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9078","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9078/cosponsors?format=json","sponsors.0.bioguideId":"A000055","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9078/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9078/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","bill.sponsors.0.bioguideId":"S001208","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9078/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9078/text?format=json","bill.updateDate":"2025-01-03T08:02:10Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9078/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","request.billNumber":"9078","committees.url":"https://api.congress.gov/v3/bill/118/hr/9078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9078/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:10Z","title":"Deliver for Democracy Act","bill.title":"PRIMED Act","bill.number":"9078","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9078/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9078/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9078/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9078/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9078/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9078?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ADERHOLT:\nH.R. 9078.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 and Article 1, Section 8\nThe single subject of this legislation is:\nTo require on-time delivery of periodicals to unlock\nadditional rate authority, and for other purposes.\n[Page H4730]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9078/text?format=json","bill.sponsors.0.lastName":"Slotkin"}}} +{"type":"relationship","id":"7352","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8721","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8272/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Huizenga","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8272/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8272","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 8272.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8272/cosponsors?format=json","sponsors.0.bioguideId":"H001058","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8272/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8272/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-4]","bill.sponsors.0.bioguideId":"S001208","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8272/text?format=json","bill.updateDate":"2025-01-03T07:54:22Z","updateDate":"2024-08-10T08:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8272/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","request.billNumber":"8272","committees.url":"https://api.congress.gov/v3/bill/118/hr/8272/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8272/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:22Z","title":"Runway Integrity and Military Readiness Act of 2024","bill.title":"REEShore Act of 2022","bill.number":"8272","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8272/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8272/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8272/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8272/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8272/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8272?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUIZENGA:\nH.R. 8272.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo prohibit the Secretary of Transportation from\nconditioning the receipt of Federal financial assistance on\nreducing the dimensions of a runway, an apron, or a taxiway\nof certian airports.\n[Page H2937]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Bill","bill.type":"HR","updateDateIncludingText":"2024-08-10T08:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8272/text?format=json","bill.sponsors.0.lastName":"Slotkin"}}} +{"type":"relationship","id":"7353","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9592","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2180/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"2180","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/2180/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2180/committees?format=json","title":"Small Farm Conservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2180","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2180/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2180/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2180/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2180/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2180/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":15,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2180?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7354","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9711","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/417/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"417","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/417/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/417/committees?format=json","type":"S","title":"Francis G. Newlands Memorial Removal Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"417","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/417/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/417/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/417/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/417/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/417/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/417?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"7355","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9478","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3439/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"3439","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3439/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Concrete and Asphalt Innovation Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3439","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3439/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3439/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3439/relatedbills?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3439?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"7356","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9767","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/58/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"58","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/58/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/58/committees?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Furnaces\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"58","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2022-08-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/58/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/58/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/58/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/58/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/58/relatedbills?format=json","latestAction.actionDate":"2024-05-22","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"13:28:58","titles.count":2,"cosponsors.count":36,"introducedDate":"2024-02-01","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/58?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-03T20:58:56Z"}}} +{"type":"relationship","id":"7357","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9797","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/50/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"50","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7075)","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/sjres/50/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/50/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"50","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/50/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/50/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/50/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/50/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/50/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-09","sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"cosponsors.count":8,"introducedDate":"2023-11-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/50?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7358","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"9769","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/56/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"56","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/56/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/56/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sales to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"56","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-07-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/56/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/56/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/56/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/56/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/56/relatedbills?format=json","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/56?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7359","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"8687","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8769/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8769/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8769","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 8769.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8769/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"V000133","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":25,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8769/text?format=json","bill.updateDate":"2025-01-03T07:58:45Z","updateDate":"2024-09-03T16:18:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8769/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"8769","committees.url":"https://api.congress.gov/v3/bill/118/hr/8769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8769/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:45Z","title":"State Industrial Competitiveness Act of 2024","bill.title":"IRS Reduction Act","bill.number":"8769","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8769/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8769/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8769/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jefferson","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8769/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8769/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8769?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 8769\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nTo support State Energy Offices with industrial energy\nefficiency\n[Page H4110]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":2,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-09-03T16:18:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8769/text?format=json","bill.sponsors.0.lastName":"Van Drew"}}} +{"type":"relationship","id":"7360","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"9234","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1186/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lynch","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1186/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1186","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 1186.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States.\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1186/cosponsors?format=json","sponsors.0.bioguideId":"L000562","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1186/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","bill.sponsors.0.bioguideId":"V000133","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1186/text?format=json","bill.updateDate":"2025-01-03T04:46:41Z","updateDate":"2024-07-24T15:23:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1186/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","request.billNumber":"1186","committees.url":"https://api.congress.gov/v3/bill/118/hr/1186/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1186/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:41Z","title":"Embassy Construction Accountability Act of 2023","bill.title":"Supply Chain Security and Pharmaceutical Authentication Act of 2021","bill.number":"1186","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1186/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1186/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1186/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jefferson","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1186/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1186/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1186?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 1186.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8, Cl. 18\nThe single subject of this legislation is:\nEmbassy Construction Oversight\n[Page H876]\n","sponsors.0.district":8,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":2,"sponsors.0.firstName":"Stephen","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1186/text?format=json","bill.sponsors.0.lastName":"Van Drew"}}} +{"type":"relationship","id":"7361","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1527/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1527","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1527/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Access to Contraception for Servicemembers and Dependents Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1527","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1527/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1527/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1527/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1527/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":30,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1527?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7362","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9969","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (consideration: CR S7082-7083; text of amendment in the nature of a substitute: CR S7082-7083)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7363","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9315","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2022-11-16T20:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2510","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2510/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/2510/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2510/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2510/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2510","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2510/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2510/subjects?format=json","title":"RAPID Reserve Act","cboCostEstimates.0.description":"As ordered reported on June 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58783","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-12-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2510/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2510/summaries?format=json","cboCostEstimates.0.title":"S. 2510,\t Preventing HEAT Illness and Deaths Act of 2021","introducedDate":"2023-07-26","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2510?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7364","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"600","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3787/text?format=json","relatedBills.count":2,"updateDate":"2024-06-11T15:11:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LaHood","sponsors.0.isByRequest":"N","request.billNumber":"3787","sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3787/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3787/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Modernizing Agricultural and Manufacturing Bonds Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"3787","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3787/cosponsors?format=json","sponsors.0.bioguideId":"L000585","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3787/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3787/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3787/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3787/relatedbills?format=json","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","titles.count":3,"introducedDate":"2023-06-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3787?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 95 (Thursday, June 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 3787.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 1: ``The\nCongress shall have Power to lay and collect Taxes . . .''\nThe single subject of this legislation is:\nThis bill modifies certain rules applicable to qualified\nsmall issue manufacturing bonds and expands certain\nexceptions to the private activity bond rules for first-time\nfarmers.\n[Page H2713]\n","sponsors.0.district":16,"sponsors.0.firstName":"Darin","updateDateIncludingText":"2024-06-11T15:11:24Z"}}} +{"type":"relationship","id":"7365","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9588","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1771/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"1771","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/1771/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1771/subjects?format=json","policyArea.name":"Law","type":"S","title":"CASE LOAD Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1846)","sponsors.0.party":"D","number":"1771","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1771/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1771/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1771/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1771/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1771/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":4,"introducedDate":"2023-05-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1771?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"7366","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4432/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4432","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4432/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4432/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","sponsors.0.party":"R","number":"4432","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4432/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4432/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4432/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4432/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4432/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":5,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4432?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"7367","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9513","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3213/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3213","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/3213/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3213/committees?format=json","type":"S","title":"Tech Safety for Victims of Domestic Violence, Dating Violence, Sexual Assault, and Stalking Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3213","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3213/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3213/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3213/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":30,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3213?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-07-23T16:18:13Z"}}} +{"type":"relationship","id":"7368","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9617","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1627/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:08Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1627","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1627/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1627/committees?format=json","policyArea.name":"Taxation","type":"S","title":"PRECEPT Nurses Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1627","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1627/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1627/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1627/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1627/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1627/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1627?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:08Z"}}} +{"type":"relationship","id":"7369","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"8711","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Matsui","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8543/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8543","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCALISE:\nH.R. 8543.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\n[Page H7256]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8543/cosponsors?format=json","sponsors.0.bioguideId":"M001163","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8543/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8543/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Matsui, Doris O. [D-CA-7]","bill.sponsors.0.bioguideId":"S001176","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8543/text?format=json","bill.updateDate":"2025-01-03T07:56:48Z","updateDate":"2024-12-19T09:06:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8543/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001163?format=json","request.billNumber":"8543","committees.url":"https://api.congress.gov/v3/bill/118/hr/8543/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8543/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:48Z","title":"Ensuring Excellence in Mental Health Act","bill.title":"EAVESDROP Act","bill.number":"8543","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8543/committees?format=json","request.format":"json","sponsors.0.middleName":"O.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8543/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8543/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Steve","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8543/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8543/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8543?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\n[Pages H3524-H3525]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MATSUI:\nH.R. 8543.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H3525]]\nsection 8 of article I of the Constitution\nThe single subject of this legislation is:\nhealth care\n","sponsors.0.district":7,"bill.sponsors.0.state":"LA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Doris","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8543/text?format=json","bill.sponsors.0.lastName":"Scalise"}}} +{"type":"relationship","id":"7370","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"745","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1785/text?format=json","relatedBills.count":1,"updateDate":"2024-10-05T08:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"LaHood","sponsors.0.isByRequest":"N","request.billNumber":"1785","sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1785/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1785/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Historic Tax Credit Growth and Opportunity Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"1785","cosponsors.countIncludingWithdrawnCosponsors":68,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1785/cosponsors?format=json","sponsors.0.bioguideId":"L000585","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1785/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1785/relatedbills?format=json","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":68,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1785?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 1785.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article 1, Section 8, Clause 1: ``The\nCongress shall have Power To lay and collect Taxes . . .''\nThe single subject of this legislation is:\nThis bill temporarily increases the rehabilitation credit,\nmodifies the rehabilitation credit for certain small\nprojects, and eliminates the requirement that the taxpayer's\nbasis in a building be reduced by the amount of the\nrehabilitation credit determined with respect to such\nbuilding.\n[Page H1438]\n","sponsors.0.district":16,"sponsors.0.firstName":"Darin","updateDateIncludingText":"2024-10-05T08:05:29Z"}}} +{"type":"relationship","id":"7371","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"8663","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9076/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2022-09-29","cboCostEstimates.0.pubDate":"2024-10-23T18:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9076/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-258.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9076","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9076/cosponsors?format=json","sponsors.0.bioguideId":"L000585","laws.0.number":"118-258","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9076/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9076/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2025-01-04","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"S001216","bill.originChamber":"House","bill.actions.count":3,"titles.count":8,"cosponsors.count":23,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-679","bill.sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9076/text?format=json","bill.updateDate":"2025-01-03T08:02:12Z","updateDate":"2025-02-27T20:23:56Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9076/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"9076","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9076/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:12Z","title":"Supporting America’s Children and Families Act","bill.title":"Tax Credit for Student Parents Act","bill.number":"9076","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 24, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":23,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60853","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9076/committees?format=json","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/679?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9076/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9076/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 9076, Protecting America’s Children by Strengthening Families Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":25,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kim","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9076/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9076/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 9076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution--Congress has\nthe power ``To make all laws which shall be necessary and\nproper for carrying into execution the foregoing powers, and\nall other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.''\nThe single subject of this legislation is:\nThe bill would reauthorize and modernize part B of title IV\nof the Social Security Act to strengthen child welfare\nservices, expand the availability of prevention services to\nbetter meet the needs of vulnerable families.\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":16,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2025-02-27T20:23:56Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9076/text?format=json","bill.sponsors.0.lastName":"Schrier"}}} +{"type":"relationship","id":"7372","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"8732","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8274/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Taxation","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8274/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"8274","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 8274.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8274/cosponsors?format=json","sponsors.0.bioguideId":"L000585","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8274/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8274/relatedbills?format=json","latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"S001196","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8274/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8274/text?format=json","bill.updateDate":"2025-01-03T07:54:25Z","updateDate":"2024-08-02T16:26:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8274/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"8274","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8274/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:25Z","title":"Bringing Back American Jobs Through Intellectual Property Repatriation Act","bill.title":"PASS Act of 2022","bill.number":"8274","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8274/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8274/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8274/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Elise","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8274/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8274/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8274?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 8274.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 1: ``The\nCongress shall have Power to lay and collect Taxes. . .''\nThe single subject of this legislation is:\nThis bill would amend the tax code to encourage the\ntransfer of intellectual property from controlled foreign\ncorporations to U.S. shareholders.\n[Page H2937]\n","sponsors.0.district":16,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":21,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2024-08-02T16:26:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8274/text?format=json","bill.sponsors.0.lastName":"Stefanik"}}} +{"type":"relationship","id":"7373","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9550","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2024-02-08T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"2717","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2717/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/2717/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2717/relatedbills?format=json","latestAction.actionDate":"2024-04-26","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2717/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"2717","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2717/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2717/subjects?format=json","title":"A bill to designate the facility of the United States Postal Service located at 231 North Franklin Street in Greensburg, Indiana, as the \"Brigadier General John T. Wilder Post Office\".","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59960","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-13","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2717/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2717/summaries?format=json","cboCostEstimates.0.title":"S. 2717, a bill to designate the facility of the United States Postal Service located at 231 North Franklin Street in Greensburg, Indiana, as the “Brigadier General John T. Wilder Post Office”","latestAction.actionTime":"10:11:14","introducedDate":"2023-09-05","subjects.count":5,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2717?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7374","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9515","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2975/text?format=json","relatedBills.count":2,"updateDate":"2024-08-16T13:46:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Schrier","sponsors.0.isByRequest":"N","request.billNumber":"2975","sponsors.0.url":"https://api.congress.gov/v3/member/S001216?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2975/committees?format=json","policyArea.name":"Agriculture and Food","title":"ENABLE Conservation Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"2975","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2975/cosponsors?format=json","sponsors.0.bioguideId":"S001216","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2975/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2975/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2975/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2975/relatedbills?format=json","latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Schrier, Kim [D-WA-8]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2975?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCHRIER:\nH.R. 2975.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the United States Constitution.\nThe single subject of this legislation is:\nConservation\n[Page H2088]\n","sponsors.0.district":8,"sponsors.0.firstName":"Kim","updateDateIncludingText":"2024-08-16T13:46:50Z"}}} +{"type":"relationship","id":"7375","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9666","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1050/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Stevens","sponsors.0.isByRequest":"N","request.billNumber":"1050","sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1050/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1050/committees?format=json","policyArea.name":"Education","type":"HR","title":"Data Science and Literacy Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"1050","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1050/cosponsors?format=json","sponsors.0.bioguideId":"S001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1050/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1050/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1050/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1050/relatedbills?format=json","latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1050?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEVENS:\nH.R. 1050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nImproving data science and literacy education.\n[Page H842]\n","sponsors.0.district":11,"sponsors.0.firstName":"Haley","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7376","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"8713","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DeLauro","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8529/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8529","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VICENTE GONZALEZ of Texas:\nH.R. 8529 .\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8529/cosponsors?format=json","sponsors.0.bioguideId":"D000216","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8529/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","bill.sponsors.0.bioguideId":"G000581","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Vicente [D-TX-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8529/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-08-22T12:23:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","request.billNumber":"8529","committees.url":"https://api.congress.gov/v3/bill/118/hr/8529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8529/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Physician Education for Fistula Treatment Act","bill.title":"To designate the facility of the United States Postal Service located at 110 East Alexander Street in Three Rivers, Texas, as the \"Private Felix Z. Longoria Veterans' Memorial Post Office\".","bill.number":"8529","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8529/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8529/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000581?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicente","sponsors.0.state":"CT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8529?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 8529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I of the United States Constitution and its\nsubsequent amendments, and further clarified and interpreted\nby the Supreme Court of the United States.\nThe single subject of this legislation is:\nTo authorize assistance to train and retain obstetrician-\ngynecologists and sub-specialists in urogynecology and to\nhelp improve the quality of care to meet the health care\nneeds of women in least developed countries.\n[Page H3524]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":15,"sponsors.0.firstName":"Rosa","bill.type":"HR","updateDateIncludingText":"2024-08-22T12:23:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8529/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}}} +{"type":"relationship","id":"7377","label":"SPONSORED","start":{"id":"4064","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"34","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gonzalez, Vicente","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/G000581?format=json","bioguideId":"G000581"}},"end":{"id":"8800","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6810/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Franklin","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-09-27T18:30:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6810/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Became Public Law No: 118-223.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6810","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 34 (Tuesday, February 22, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VICENTE GONZALEZ of Texas:\nH.R. 6810.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, To make all laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof\n[Page H1140]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6810/cosponsors?format=json","sponsors.0.bioguideId":"F000472","laws.0.number":"118-223","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6810/actions?format=json","textVersions.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6810/relatedbills?format=json","latestAction.actionDate":"2025-01-02","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Franklin, Scott [R-FL-18]","bill.sponsors.0.bioguideId":"G000581","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":27,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6810/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzalez, Vicente [D-TX-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6810/text?format=json","bill.updateDate":"2025-01-03T07:42:09Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6810/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":25,"sponsors.0.url":"https://api.congress.gov/v3/member/F000472?format=json","request.billNumber":"6810","committees.url":"https://api.congress.gov/v3/bill/118/hr/6810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6810/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:09Z","title":"To designate the facility of the United States Postal Service located at 518 North Ridgewood Drive in Sebring, Florida, as the \"U.S. Army Air Corps Major Thomas B. McGuire Post Office Building\".","bill.title":"Housing our Veterans Act","bill.number":"6810","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60790","cosponsors.countIncludingWithdrawnCosponsors":27,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6810/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6810/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6810/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 6810, an act to designate the facility of the United States Postal Service located at 518 North Ridgewood Drive in Sebring, Florida, as the “U.S. Army Air Corps Major Thomas B. McGuire Post Office Building","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000581?format=json","introducedDate":"2023-12-14","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicente","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6810/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6810/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6810?format=json","bill.introducedDate":"2022-02-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 206 (Thursday, December 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT FRANKLIN of Florida:\nH.R. 6810.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress is granted the authority to introduce and enact\nlegislation pursuant to Article 1, Section 8 of the U.S.\nConstitution\nThe single subject of this legislation is:\nTo designate the facility of the United States Postal\nService located at 518 North Ridgewood Drive in Sebring,\nFlorida, as the ``U.S. Army Air Corps Major Thomas B. McGuire\nPost Office Building''.\n[Page H6987]\n","sponsors.0.district":18,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":15,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:16Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6810/text?format=json","bill.sponsors.0.lastName":"Gonzalez"}}} +{"type":"relationship","id":"7378","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9768","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Sinema","cboCostEstimates.0.pubDate":"2024-10-15T15:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-188.","sponsors.0.party":"I","number":"59","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/59/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"S001191","laws.0.number":"118-188","actions.url":"https://api.congress.gov/v3/bill/118/s/59/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"sponsors.0.fullName":"Sen. Sinema, Kyrsten [I-AZ]","amendments.url":"https://api.congress.gov/v3/bill/118/s/59/amendments?format=json","titles.count":6,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-250","textVersions.url":"https://api.congress.gov/v3/bill/118/s/59/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"59","sponsors.0.url":"https://api.congress.gov/v3/member/S001191?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/59/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/59/committees?format=json","title":"Chance to Compete Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60824","request.format":"json","latestAction_actionDate":"2022-08-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/250?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/59/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/59/summaries?format=json","cboCostEstimates.0.title":"S. 59, Chance to Compete Act of 2024","introducedDate":"2023-01-24","subjects.count":12,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/59?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"Kyrsten","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7379","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9806","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/41/text?format=json","updateDate":"2024-11-21T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"41","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 29 - 67. Record Vote Number: 228. (CR S2960)","committees.url":"https://api.congress.gov/v3/bill/118/hr/41/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/41/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Same-Day Scheduling Act of 2023","latestAction.text":"Subcommittee Consideration and Mark-up Session Held.","sponsors.0.party":"R","number":"41","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-06-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/41/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/41/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/41/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/41/actions?format=json","latestAction.actionDate":"2023-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":71,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/41?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 41.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nauthorized by Congress' power to ``provide for the common\nDefense and general Welfare of the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-21T09:05:49Z"}}} +{"type":"relationship","id":"7380","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4411/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4411","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Became Public Law No: 117-352.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4411/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4411/committees?format=json","policyArea.name":"Energy","title":"REDUCE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S3886)","sponsors.0.party":"D","number":"4411","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4411/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4411/titles?format=json","laws.0.number":"117-352","summaries.url":"https://api.congress.gov/v3/bill/117/s/4411/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4411/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4411/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4411?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-03T20:51:24Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7381","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"8727","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8268/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Doggett","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8268/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8268","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 8268.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18 of the United States\nConstitution\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8268/cosponsors?format=json","sponsors.0.bioguideId":"D000399","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8268/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8268/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Doggett, Lloyd [D-TX-37]","bill.sponsors.0.bioguideId":"G000578","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8268/text?format=json","bill.updateDate":"2025-01-03T07:54:24Z","updateDate":"2024-09-03T15:14:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8268/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000399?format=json","request.billNumber":"8268","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8268/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8268/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:24Z","title":"Stop Corporate Inversions Act of 2024","bill.title":"Disarm the IRS Act","bill.number":"8268","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8268/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8268/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8268/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matt","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8268/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8268/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8268?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DOGGETT:\nH.R. 8268.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the United States\nConstitution.\nThe single subject of this legislation is:\nTo prevent American domiciled multinational corporations\nfrom inverting to evade U.S. taxes.\n[Page H2937]\n","sponsors.0.district":37,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":1,"sponsors.0.firstName":"Lloyd","bill.type":"HR","updateDateIncludingText":"2024-09-03T15:14:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8268/text?format=json","bill.sponsors.0.lastName":"Gaetz"}}} +{"type":"relationship","id":"7382","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"8730","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8265/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Caraveo","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Social Welfare","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8265/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8265","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 8265.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 for the Commerce Clause\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8265/cosponsors?format=json","sponsors.0.bioguideId":"C001134","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8265/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8265/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Caraveo, Yadira [D-CO-8]","bill.sponsors.0.bioguideId":"C001119","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8265/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8265/text?format=json","bill.updateDate":"2025-01-03T07:54:24Z","updateDate":"2024-12-19T09:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8265/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001134?format=json","request.billNumber":"8265","committees.url":"https://api.congress.gov/v3/bill/118/hr/8265/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8265/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:24Z","title":"Social Security Overpayment Fairness Act","bill.title":"TEAM Volunteers Act","bill.number":"8265","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8265/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8265/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8265/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Angie","sponsors.0.state":"CO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8265/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8265/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8265?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CARAVEO:\nH.R. 8265.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause\n(Art. 1, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe single subject of this legislation is:\nTo amend the Social Security Act to require a 120-day\nperiod between notice of an overpayment of benefits under\ntitles II and XVI and begin- ning recovery of such\noverpayment, and to require the Commissioner of Social\nSecurity to submit a report to Congress on a strategy related\nto recovery of such overpayments.\n[Page H2937]\n","sponsors.0.district":8,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Yadira","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8265/text?format=json","bill.sponsors.0.lastName":"Craig"}}} +{"type":"relationship","id":"7383","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"9245","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1113/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bera","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1113/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1113","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nARTICLE 1, SECTION 8.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1113/cosponsors?format=json","sponsors.0.bioguideId":"B001287","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1113/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","bill.sponsors.0.bioguideId":"C001119","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1113/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1113/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-21T09:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1113/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","request.billNumber":"1113","committees.url":"https://api.congress.gov/v3/bill/118/hr/1113/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1113/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Easy Enrollment in Health Care Act","bill.title":"Renewable Fuel Standard Integrity Act of 2021","bill.number":"1113","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1113/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1113/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1113/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":1,"bill.sponsors.0.firstName":"Angie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1113/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1113/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1113?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHealth\n[Page H875]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ami","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1113/text?format=json","bill.sponsors.0.lastName":"Craig"}}} +{"type":"relationship","id":"7384","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"9856","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1113/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bera","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1113/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1113","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nARTICLE 1, SECTION 8.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1113/cosponsors?format=json","sponsors.0.bioguideId":"B001287","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1113/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","bill.sponsors.0.bioguideId":"C001119","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1113/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1113/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-21T09:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1113/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","request.billNumber":"1113","committees.url":"https://api.congress.gov/v3/bill/118/hr/1113/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1113/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Easy Enrollment in Health Care Act","bill.title":"Renewable Fuel Standard Integrity Act of 2021","bill.number":"1113","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1113/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1113/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1113/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":1,"bill.sponsors.0.firstName":"Angie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1113/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1113/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1113?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERA:\nH.R. 1113.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHealth\n[Page H875]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Ami","bill.type":"HR","updateDateIncludingText":"2024-12-21T09:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1113/text?format=json","bill.sponsors.0.lastName":"Craig"}}} +{"type":"relationship","id":"7385","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9447","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3963/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3963","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Environmental Protection","committees.url":"https://api.congress.gov/v3/bill/118/s/3963/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3963/subjects?format=json","title":"Native Species Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"3963","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3963/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3963/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3963/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3963/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3963/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3963?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7386","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9479","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3438/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"3438","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3438/committees?format=json","policyArea.name":"Families","title":"SAFE Home Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3438","request.format":"json","latestAction_actionDate":"2022-01-04","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3438/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3438/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3438?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:19:32Z"}}} +{"type":"relationship","id":"7387","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9582","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2187/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2187","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2187/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2187/subjects?format=json","policyArea.name":"Education","type":"S","title":"Endowment Transparency Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2187","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2187/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2187/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2187/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2187/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2187/relatedbills?format=json","latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2187?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7388","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9668","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1049/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"1049","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1049/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1049/committees?format=json","policyArea.name":"Emergency Management","title":"REAADI for Disasters Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1049","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1049/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1049/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1049/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1049/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1049/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1049?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7389","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"10008","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6593; text: CR S6592)","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}}} +{"type":"relationship","id":"7390","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9692","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/749/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"749","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hr/749/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/749/committees?format=json","type":"HR","title":"Turn OFF THE TAP Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"749","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/749/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/749/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/749/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/749/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/749/relatedbills?format=json","latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2023-02-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/749?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nThe subject of this bill is preventing federal funds from\ngoing to sanctioned entities.\n[Page H680]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7391","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9940","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z","latestAction_actionTime":"21:15:00"}}} +{"type":"relationship","id":"7392","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9703","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Welch","cboCostEstimates.0.pubDate":"2023-10-24T18:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"432","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/432/cosponsors?format=json","sponsors.0.bioguideId":"W000800","actions.url":"https://api.congress.gov/v3/bill/118/s/432/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/432/relatedbills?format=json","latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-149","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59700","textVersions.url":"https://api.congress.gov/v3/bill/118/s/432/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"cboCostEstimates.1.pubDate":"2023-10-24T18:27:00Z","request.congress":"118","actions.count":12,"request.billNumber":"432","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/432/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/432/subjects?format=json","title":"Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023","cboCostEstimates.1.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cboCostEstimates.0.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59700","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/149?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/432/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/432/summaries?format=json","cboCostEstimates.0.title":"S. 432, Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023","latestAction.actionTime":"18:04:11","introducedDate":"2023-02-15","subjects.count":6,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/432?format=json","cboCostEstimates.1.title":"S. 432, Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023 ","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"7393","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9589","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1527/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1527","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1527/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Access to Contraception for Servicemembers and Dependents Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1527","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1527/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1527/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1527/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1527/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":30,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1527?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7394","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"8776","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7438/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7438/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-143.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7438","bill.cosponsors.countIncludingWithdrawnCosponsors":22,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 62 (Thursday, April 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HARTZLER:\nH.R. 7438.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, clause 18 of the United States\nConstitution\n[Page H4433]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7438/cosponsors?format=json","sponsors.0.bioguideId":"L000585","laws.0.number":"118-143","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7438/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7438/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"H001053","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":294,"bill.latestAction.text":"Referred to the Subcommittee on Livestock and Foreign Agriculture.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hartzler, Vicky [R-MO-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7438/text?format=json","bill.updateDate":"2025-01-03T07:47:28Z","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7438/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":21,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"7438","committees.url":"https://api.congress.gov/v3/bill/118/hr/7438/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7438/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:28Z","title":"FIFA World Cup 2026 Commemorative Coin Act","bill.title":"A–PLUS Act","bill.number":"7438","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":294,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7438/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7438/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7438/summaries?format=json","bill.cosponsors.count":22,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001053?format=json","introducedDate":"2024-02-23","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Vicky","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7438/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7438/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7438?format=json","bill.introducedDate":"2022-04-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 33 (Friday, February 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 7438.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 5 of the U.S. Constitution.\n``The Congress shall have power . . . To coin Money, regulate\nthe Value thereof, and of foreign Coin, and fix the Standard\nof Weights and Measures . . .''\nThe single subject of this legislation is:\nThe bill would require the Secretary of the Treasury to\nmint coins in commemoration of the FIFA World Cup 2026.\n[Page H692]\n","sponsors.0.district":16,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":4,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:24:05Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7438/text?format=json","bill.sponsors.0.lastName":"Hartzler"}}} +{"type":"relationship","id":"7395","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9763","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/64/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"64","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/64/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/64/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"The Infrastructure Investment and Jobs Act: Prevention and Elimination of Digital Discrimination\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"64","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/64/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/64/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/64/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/64/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/64/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/64?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7396","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9754","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/70/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"70","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/70/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/70/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Credit Card Penalty Fees (Regulation Z)\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"70","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/70/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/70/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/70/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/70/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/70/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2024-04-08","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/70?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7397","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9521","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2969/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"2969","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/2969/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2969/committees?format=json","type":"S","title":"A bill to ensure that United States diplomats and officials of the U.S. Section of the International Boundary and Water Commission are able to advance efforts seeking compliance by the United Mexican States with the 1944 Treaty on Utilization of Waters of the Colorado and Tijuana Rivers and of the Rio Grande.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2969","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2969/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2969/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2969/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2969/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2969/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2969?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7398","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"8742","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8024/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kelly","bill.latestAction.actionDate":"2022-06-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8024/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8024","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 8024.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution.\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8024/cosponsors?format=json","sponsors.0.bioguideId":"K000388","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8024/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8024/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","bill.sponsors.0.bioguideId":"T000478","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8024/text?format=json","bill.updateDate":"2025-01-03T07:52:20Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8024/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","request.billNumber":"8024","committees.url":"https://api.congress.gov/v3/bill/118/hr/8024/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8024/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:20Z","title":"Emergency Pine Beetle Response Act of 2024","bill.title":"Stop CCP Infrastructure Act of 2022","bill.number":"8024","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8024/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8024/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8024/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Claudia","sponsors.0.state":"MS","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8024/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8024/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8024?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 8024.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nAgriculture\n[Page H2444]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":22,"sponsors.0.firstName":"Trent","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8024/text?format=json","bill.sponsors.0.lastName":"Tenney"}}} +{"type":"relationship","id":"7399","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"8936","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5102/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 5102, Flights for Freedom Act","bill.textVersions.count":1,"sponsors.0.lastName":"Dingell","bill.latestAction.actionDate":"2021-09-30","cboCostEstimates.0.pubDate":"2021-11-29T16:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5102/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5102","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 150 (Tuesday, August 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5102.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority upon which this bill rests is\nthe power of Congress to make appropriations that place a\ncondition on an expenditure, as enumerated in Article I,\nSection 8, Clause 18 of the United States Constitution.\n[Page H4489]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5102/cosponsors?format=json","sponsors.0.bioguideId":"D000624","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5102/actions?format=json","latestAction.actionDate":"2023-08-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5102/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","bill.sponsors.0.bioguideId":"T000478","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-11-29T16:03:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-22]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5102/text?format=json","bill.updateDate":"2025-01-03T07:27:18Z","updateDate":"2024-07-24T15:20:41Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5102/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","request.billNumber":"5102","committees.url":"https://api.congress.gov/v3/bill/118/hr/5102/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5102/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:18Z","title":"ABLE MATCH (Making Able a Tool to Combat Hardship) Act","bill.title":"Flights for Freedom Act","bill.number":"5102","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57639","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5102/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5102/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5102/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 5102, Flights for Freedom Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","introducedDate":"2023-08-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Claudia","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5102/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5102/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5102?format=json","bill.introducedDate":"2021-08-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 132 (Tuesday, August 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. DINGELL:\nH.R. 5102.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nTo make it easier for individuals living with disabilities\nwith lower incomes to save.\n[Page H4158]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":22,"sponsors.0.firstName":"Debbie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5102/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57639","bill.sponsors.0.lastName":"Tenney"}}} +{"type":"relationship","id":"7400","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"8743","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8016/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Stanton","bill.latestAction.actionDate":"2022-06-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8016/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8016","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 8016.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4 of the United States\nConstitution\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8016/cosponsors?format=json","sponsors.0.bioguideId":"S001211","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8016/actions?format=json","latestAction.actionDate":"2024-04-16","textVersions.count":1,"bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Stanton, Greg [D-AZ-4]","bill.sponsors.0.bioguideId":"N000189","bill.actions.count":5,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8016/text?format=json","bill.updateDate":"2025-01-03T07:52:20Z","updateDate":"2024-12-16T20:39:09Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8016/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001211?format=json","request.billNumber":"8016","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8016/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8016/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:20Z","title":"To exclude the Arizona Families Tax Rebate from Federal income tax.","bill.title":"Federal Columbia River Power System Certainty Act","bill.number":"8016","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8016/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8016/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8016/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8016/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8016/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8016?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STANTON:\nH.R. 8016\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\nThe single subject of this legislation is:\nTax rebates\n[Page H2444]\n","sponsors.0.district":4,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Greg","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:09Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8016/text?format=json","bill.sponsors.0.lastName":"Newhouse"}}} +{"type":"relationship","id":"7401","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"8895","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5741/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Flood","bill.latestAction.actionDate":"2021-11-04","sponsors.0.isByRequest":"N","latestAction_text":"Sponsor introductory remarks on measure. (CR H6186)","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5741/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5741","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 188 (Tuesday, October 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 5741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4 of the United States\nConstitution\n[Page H5932]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5741/cosponsors?format=json","sponsors.0.bioguideId":"F000474","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5741/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Flood, Mike [R-NE-1]","bill.sponsors.0.bioguideId":"N000189","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Sponsor introductory remarks on measure. (CR H6186)","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5741/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-20T09:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5741/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000474?format=json","request.billNumber":"5741","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5741/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5741/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Uniform Treatment of Custodial Assets Act","bill.title":"Options Over Terminations Act","bill.number":"5741","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5741/committees?format=json","latestAction_actionDate":"2021-11-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5741/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5741/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2023-09-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"NE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5741/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5741/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5741?format=json","bill.introducedDate":"2021-10-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 157 (Wednesday, September 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FLOOD:\nH.R. 5741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThe bill would standardize the treatment of custodial\nassets for banks, credit unions and trusts.\n[Page H4714]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-11-20T09:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5741/text?format=json","bill.sponsors.0.lastName":"Newhouse"}}} +{"type":"relationship","id":"7402","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"9098","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Crawford","bill.latestAction.actionDate":"2021-05-18","cboCostEstimates.0.pubDate":"2023-07-20T20:43:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3316/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 760.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3316","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 3316.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section 8, United States Constitution\n[Page H2542]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3316/cosponsors?format=json","sponsors.0.bioguideId":"C001087","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3316/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3316/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Crawford, Eric A. \"Rick\" [R-AR-1]","bill.sponsors.0.bioguideId":"N000189","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3316/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3316/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2025-02-05T13:26:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3316/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/C001087?format=json","request.billNumber":"3316","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3316/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3316/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"To amend titles 46 and 49, United States Code, to streamline the environmental review process for major projects, and for other purposes.","bill.title":"National Signing Bonus Act of 2021","bill.number":"3316","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59395","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3316/committees?format=json","request.format":"json","sponsors.0.middleName":"A. \"Rick\"","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3316/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3316/summaries?format=json","cboCostEstimates.0.title":"H.R. 3316, a bill to amend titles 46 and 49, United States Code, to streamline the environmental review process for major projects, and for other purposes","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"AR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3316/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3316/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3316?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRAWFORD:\nH.R. 3316.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nStreamlines the environmental review process for major\ninfrastructure projects.\n[Page H2348]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Eric","bill.type":"HR","updateDateIncludingText":"2025-02-05T13:26:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3316/text?format=json","bill.sponsors.0.lastName":"Newhouse"}}} +{"type":"relationship","id":"7403","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8760","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5673/cosponsors?format=json","congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"MCGOVERN","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Star Print ordered on the bill.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5673/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":3,"sponsors.0.party":"D","number":"5673","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committeeReports.0.citation":"H. Rept. 117-275","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 185 (Thursday, October 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 5673.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 18 of\nSection 8 of Article I of the United States Constitution.\n[Page H5792]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5673/cosponsors?format=json","sponsors.0.bioguideId":"M000312","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5673/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","bill.sponsors.0.bioguideId":"T000468","bill.originChamber":"House","bill.actions.count":20,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Star Print ordered on the bill.","request.contentType":"application/json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/275?format=json","committeeReports.0.citation":"H. Rept. 117-275","bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5673/text?format=json","bill.updateDate":"2025-01-14T19:03:55Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5673/subjects?format=json","committees.count":21,"request.congress":"118","actions.count":26,"sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","request.billNumber":"5673","committees.url":"https://api.congress.gov/v3/bill/118/hr/5673/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5673/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T19:03:55Z","title":"Responsible Legislating Act","bill.title":"Safeguarding Tomorrow through Ongoing Risk Mitigation Technical Corrections Act","bill.number":"5673","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5673/committees?format=json","latestAction_actionDate":"2022-05-16","sponsors.0.middleName":"P.","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/275?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/5673/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5673/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":5,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-09-22","bill.originChamberCode":"H","subjects.count":52,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5673/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5673/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5673?format=json","bill.introducedDate":"2021-10-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 154 (Friday, September 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 5673\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\nThe single subject of this legislation is:\nTo advance responsible policies.\n[Page H4463]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"JAMES","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5673/text?format=json","bill.sponsors.0.lastName":"Titus"}}} +{"type":"relationship","id":"7404","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8795","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7001/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tiffany","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7001/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7001","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 41 (Tuesday, March 8, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 7001.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Article I,\nSection 8 of the United States Constitution.\n[Page H1375]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7001/cosponsors?format=json","sponsors.0.bioguideId":"T000165","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7001/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7001/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","bill.sponsors.0.bioguideId":"T000468","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7001/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7001/text?format=json","bill.updateDate":"2025-01-03T07:43:30Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7001/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","request.billNumber":"7001","committees.url":"https://api.congress.gov/v3/bill/118/hr/7001/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7001/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:30Z","title":"Wabeno Economic Development Act","bill.title":"FEMA Intermittent Personnel Employment and Reemployment Rights Act of 2022","bill.number":"7001","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7001/committees?format=json","latestAction_actionDate":"2022-03-28","sponsors.0.middleName":"P.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7001/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7001/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2024-01-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7001/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7001/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7001?format=json","bill.introducedDate":"2022-03-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 7001.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nForest Service land conveyance\n[Page H148]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7001/text?format=json","bill.sponsors.0.lastName":"Titus"}}} +{"type":"relationship","id":"7405","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8880","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5574/cosponsors?format=json","congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Pettersen","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Taxation","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5574/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":2,"sponsors.0.party":"D","number":"5574","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 179 (Tuesday, October 12, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 5574.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H5632]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5574/cosponsors?format=json","sponsors.0.bioguideId":"P000620","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5574/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5574/relatedbills?format=json","latestAction.actionDate":"2023-09-19","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Pettersen, Brittany [D-CO-7]","bill.sponsors.0.bioguideId":"T000468","bill.originChamber":"House","bill.actions.count":16,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5574/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5574/text?format=json","bill.updateDate":"2025-01-14T18:51:33Z","updateDate":"2024-11-09T01:57:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5574/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000620?format=json","request.billNumber":"5574","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5574/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5574/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:51:33Z","title":"Natural Disaster Property Protection Act of 2023","bill.title":"TRANSLATE Act","bill.number":"5574","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5574/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5574/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5574/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":8,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5574/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5574/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5574?format=json","bill.introducedDate":"2021-10-12","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PETTERSEN:\nH.R. 5574.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article 1. To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTax\n[Page H4409]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Brittany","bill.type":"HR","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5574/text?format=json","bill.sponsors.0.lastName":"Titus"}}} +{"type":"relationship","id":"7406","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"9063","labels":["Bill"],"properties":{"relatedBills.count":7,"congress":118,"sponsors.0.lastName":"Hern","cboCostEstimates.0.pubDate":"2023-06-20T16:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3799/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"3799","sponsors":[],"amendments.count":3,"sponsors.0.bioguideId":"H001082","bill.subjects.count":7,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3799/relatedbills?format=json","latestAction.actionDate":"2023-06-21","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.originChamber":"House","bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","cboCostEstimates.2.url":"https://www.cbo.gov/publication/59315","cboCostEstimates.2.description":"As ordered reported by the House Committee on Ways and Means on\nJune 7, 2023\n","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-107","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59315","updateDate":"2025-01-17T03:11:15Z","committees.count":1,"cboCostEstimates.1.pubDate":"2023-06-26T18:17:00Z","request.billNumber":"3799","committees.url":"https://api.congress.gov/v3/bill/118/hr/3799/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:58Z","cboCostEstimates.1.description":"As ordered reported by the House Committee on Ways and Means on\nJune 7, 2023\n","bill.number":"3799","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nJune 13, 2023\nhttps://rules.house.gov/bill/118/hr-3799\n","latestAction_actionDate":"2021-06-09","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3799/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3799/summaries?format=json","cboCostEstimates.0.title":"Estimated Direct Spending and Revenue Effects of Rules Committee Print 118-9 (H.R. 3799, CHOICE Arrangement Act), as amended by Amendment 8 (Smith","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-06-05","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3799/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/3799?format=json","cboCostEstimates.1.title":"H.R. 3799, the Custom Health Option and Individual Care Expense Arrangement Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 3799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nhealth\n[Page H2742]\n","bill.sponsors.0.district":1,"bill.type":"HR","cboCostEstimates.2.pubDate":"2023-06-26T18:17:00Z","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-06-09","latestAction_text":"Referred to the Subcommittee on Health.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","cboCostEstimates.2.title":"H.R. 3799, the Custom Health Option and Individual Care Expense Arrangement Act ","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nspecifically Clause 1.\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3799/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3799/actions?format=json","textVersions.count":3,"bill.sponsors.0.bioguideId":"T000468","amendments.url":"https://api.congress.gov/v3/bill/118/hr/3799/amendments?format=json","bill.actions.count":5,"titles.count":8,"cosponsors.count":1,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3799/text?format=json","bill.updateDate":"2025-01-03T05:06:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3799/subjects?format=json","request.congress":"118","actions.count":34,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3799/subjects?format=json","title":"CHOICE Arrangement Act","bill.title":"Take Your Shot Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59277","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3799/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/107?format=json","request.billType":"hr","latestAction.actionTime":"18:39:50","bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3799/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-06-08","sponsors.0.district":1,"bill.sponsors.0.state":"NV","sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-01-17T03:11:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3799/text?format=json","bill.sponsors.0.lastName":"Titus"}}} +{"type":"relationship","id":"7407","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"9134","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2824/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Castro","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2824/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2824","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 2824.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Article 1,\nSection 8, Clause 3 of the United States Constitution.\n[Page H2109]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2824/cosponsors?format=json","sponsors.0.bioguideId":"C001091","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2824/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","bill.sponsors.0.bioguideId":"T000468","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2824/text?format=json","bill.updateDate":"2025-01-03T04:59:14Z","updateDate":"2024-07-24T15:22:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2824/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","request.billNumber":"2824","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2824/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2824/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:14Z","title":"FIGDA Act of 2023","bill.title":"Mongolia Third Neighbor Trade Act","bill.number":"2824","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2824/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2824/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2824/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-04-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dina","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2824/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2824/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2824?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 2824.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the Constitution of the\nUnited States\nThe single subject of this legislation is:\nThe purpose of the bill is on the issue of international\naffairs and international development.\n[Page H1948]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NV","bill.sponsors.0.district":1,"sponsors.0.firstName":"Joaquin","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2824/text?format=json","bill.sponsors.0.lastName":"Titus"}}} +{"type":"relationship","id":"7408","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"8770","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7775/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7775/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7775","bill.cosponsors.countIncludingWithdrawnCosponsors":64,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 7775.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7775/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7775/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7775/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7775/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7775/text?format=json","bill.updateDate":"2025-01-03T07:50:06Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7775/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"7775","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7775/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7775/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:06Z","title":"PFAS-Free Procurement Act of 2024","bill.title":"NAPA Reauthorization Act","bill.number":"7775","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7775/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7775/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7775/summaries?format=json","bill.cosponsors.count":64,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7775/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7775/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7775?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 7775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo prohibit the procurement of certain items containing\nperfluorooctane sulfonate (PFOS) or perfluorooctanoic acid\n(PFOA) and prioritize the procurement of products not\ncontaining PFAS.\n[Page H1354]\n","sponsors.0.district":17,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7775/text?format=json","bill.sponsors.0.lastName":"Tonko"}}} +{"type":"relationship","id":"7409","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"9126","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2948/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gooden","bill.latestAction.actionDate":"2021-05-03","cboCostEstimates.0.pubDate":"2023-07-20T20:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2948/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 789.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2948","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 75 (Friday, April 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2948.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\n[Page H2136]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2948/cosponsors?format=json","sponsors.0.bioguideId":"G000589","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2948/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2948/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Gooden, Lance [R-TX-5]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2948/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2948/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2025-02-05T13:26:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2948/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/G000589?format=json","request.billNumber":"2948","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2948/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2948/committees?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"CARS Act","bill.title":"Electric Vehicle Infrastructure Rebate Act of 2021","bill.number":"2948","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on May 23, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59400","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2948/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2948/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2948/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 2948, the CARS Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2948/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2948/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2948?format=json","bill.introducedDate":"2021-04-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\n[Pages H2086-H2087]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOODEN of Texas:\nH.R. 2948.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill rests is\nthe power of Congress to lay and collect taxes, duties,\nimposts, and excises to pay the debts and provide for the\ncommon Defense and general welfare of the United States, as\nenumerated in Article I, Section 8, Clause 1. Thus, Congress\nhas the authority not only to increase taxes, but also, to\nreduce taxes to promote the general welfare of the United\nStates of America and her citizens. Additionally, Congress\nhas the Constitutional authority to regulate commerce among\nthe States and with Indian Tribes, as enumerated in Article\nI, Section 8, Clause 3.\nThe single subject of this legislation is:\nThis bill would increase gross vehicle weight limits for\nstinger-steered automobile\n[[Page H2087]]\ntransporters by 10%, which is 8,000 pounds, while capping\nsingle and tandem axle groups at a 10% increase. The bill\nwould therefore allow automobile carriers to regain lost load\ncapacity and reduce annual truck traffic by an estimated 16\nmillion miles, eliminate the consumption of 3.2 million\ngallons of diesel fuel and prevent 32 metric tons of diesel\nemissions\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Lance","bill.type":"HR","updateDateIncludingText":"2025-02-05T13:26:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2948/text?format=json","bill.sponsors.0.lastName":"Tonko"}}} +{"type":"relationship","id":"7410","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"9210","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1716/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Molinaro","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1716/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1716","bill.cosponsors.countIncludingWithdrawnCosponsors":33,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 1716.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1716/cosponsors?format=json","sponsors.0.bioguideId":"M001221","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1716/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1716/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":57,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1716/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1716/text?format=json","bill.updateDate":"2025-01-03T04:50:58Z","updateDate":"2024-12-19T09:05:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1716/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","request.billNumber":"1716","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1716/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1716/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:58Z","title":"Global Aircraft Maintenance Safety Improvement Act","bill.title":"COVID–19 Mental Health Research Act","bill.number":"1716","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":57,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1716/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1716/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1716/summaries?format=json","bill.cosponsors.count":33,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1716/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1716/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1716?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 1716.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3, and Clause 18 of\nthe Constitution\nThe single subject of this legislation is:\nTransportation\n[Page H1329]\n","sponsors.0.district":19,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Marcus","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1716/text?format=json","bill.sponsors.0.lastName":"Tonko"}}} +{"type":"relationship","id":"7411","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"9236","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1184/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Johnson","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Animals","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1184/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1184","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 1184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H538]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1184/cosponsors?format=json","sponsors.0.bioguideId":"J000301","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1184/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1184/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Johnson, Dusty [R-SD-At Large]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":27,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1184/text?format=json","bill.updateDate":"2025-01-03T04:46:48Z","updateDate":"2024-09-10T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1184/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000301?format=json","request.billNumber":"1184","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1184/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1184/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:48Z","title":"Healthy Dog Importation Act","bill.title":"Helping Experts Accelerate Rare Treatments Act of 2021","bill.number":"1184","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1184/committees?format=json","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1184/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1184/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2023-02-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"SD","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1184/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1184/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1184?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of South Dakota:\nH.R. 1184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticie 1, Section 8, Clause 3 of the Constitution\nThe single subject of this legislation is:\nTo improve governmental coordination and accountability for\nthe importation of live dogs.\n[Page H876]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Dusty","bill.type":"HR","updateDateIncludingText":"2024-09-10T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1184/text?format=json","bill.sponsors.0.lastName":"Tonko"}}} +{"type":"relationship","id":"7412","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"8774","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7534/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Auchincloss","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7534/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7534","bill.cosponsors.countIncludingWithdrawnCosponsors":21,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 65 (Monday, April 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: ``[The Congress shall have\nthe power . . .] To make all Laws which shall be necessary\nand proper for carrying into Execution the foregoing Powers,\nand all other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\n[Page H4448]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7534/cosponsors?format=json","sponsors.0.bioguideId":"A000148","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7534/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-08","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Auchincloss, Jake [D-MA-4]","bill.sponsors.0.bioguideId":"G000574","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":21,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7534/text?format=json","bill.updateDate":"2025-01-03T07:47:59Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7534/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/A000148?format=json","request.billNumber":"7534","committees.url":"https://api.congress.gov/v3/bill/118/hr/7534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7534/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:59Z","title":"Verifying Kids’ Online Privacy Act","bill.title":"Excess Urban Heat Mitigation Act of 2022","bill.number":"7534","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":21,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7534/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7534/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7534/summaries?format=json","bill.cosponsors.count":21,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ruben","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7534/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7534/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7534?format=json","bill.introducedDate":"2022-04-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AUCHINCLOSS:\nH.R. 7534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3\nThe single subject of this legislation is:\nTo amend the Children's Online Privacy Protection Act\n(COPPA) to raise the age of data privacy protections and\nrequire privacy-protective methods of age verification.\n[Page H822]\n","sponsors.0.district":4,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":7,"sponsors.0.firstName":"Jake","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7534/text?format=json","bill.sponsors.0.lastName":"Gallego"}}} +{"type":"relationship","id":"7413","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"8775","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7456/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallego","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Immigration","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7456/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7456","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 62 (Thursday, April 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 7456.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4434]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7456/cosponsors?format=json","sponsors.0.bioguideId":"G000574","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7456/actions?format=json","latestAction.actionDate":"2024-02-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7456/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","bill.sponsors.0.bioguideId":"F000470","bill.originChamber":"House","bill.actions.count":13,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7456/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7456/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-07-24T15:19:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7456/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","request.billNumber":"7456","committees.url":"https://api.congress.gov/v3/bill/118/hr/7456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7456/subjects?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"First Responders Emergency Assistance Act","bill.title":"SHIP IT Act","bill.number":"7456","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7456/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7456/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7456/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":6,"bill.sponsors.0.firstName":"Michelle","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7456/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7456/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7456?format=json","bill.introducedDate":"2022-04-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 34 (Monday, February 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7456.\nCongress has the power to enact this legislation pursuant\nto the following:\n``Article I, Section 8, Clause 18: [The Congress shall have\nPower . . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nImmigration\n[Page H696]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":7,"sponsors.0.firstName":"Ruben","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7456/text?format=json","bill.sponsors.0.lastName":"Fischbach"}}} +{"type":"relationship","id":"7414","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"10012","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/371/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"371","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sres/371/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/371/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the designation of the week of September 18 through September 22, 2023, as \"Malnutrition Awareness Week\".","latestAction.text":"Referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S4724)","sponsors.0.party":"D","number":"371","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/371/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/371/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/371/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/371/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/371/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":2,"introducedDate":"2023-09-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/371?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7415","label":"SPONSORED","start":{"id":"4159","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg","district":"16","startYear":"2015","name":"LaHood, Darin","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Illinois","url":"https://api.congress.gov/v3/member/L000585?format=json","bioguideId":"L000585"}},"end":{"id":"9113","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"LaHood","bill.latestAction.actionDate":"2021-05-17","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Taxation","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3238/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3238","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 84 (Friday, May 14, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESCOBAR:\nH.R. 3238.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power . . . To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H2357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3238/cosponsors?format=json","sponsors.0.bioguideId":"L000585","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3238/actions?format=json","latestAction.actionDate":"2023-05-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3238/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. LaHood, Darin [R-IL-16]","bill.sponsors.0.bioguideId":"E000299","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":273,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3238/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Escobar, Veronica [D-TX-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3238/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-12-19T09:06:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3238/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000585?format=json","request.billNumber":"3238","committees.url":"https://api.congress.gov/v3/bill/118/hr/3238/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3238/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Affordable Housing Credit Improvement Act of 2023","bill.title":"Colonia Infrastructure Improvement Act of 2021","bill.number":"3238","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":273,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3238/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-17","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3238/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3238/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000299?format=json","introducedDate":"2023-05-11","bill.originChamberCode":"H","subjects.count":28,"bill.committees.count":2,"bill.sponsors.0.firstName":"Veronica","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3238/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3238/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3238?format=json","bill.introducedDate":"2021-05-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LaHOOD:\nH.R. 3238.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution Article I, Section 8, Clause 1: ``The\nCongress shall have Power to lay and collect Taxes . . .''\nThe single subject of this legislation is:\nThe bill expands and makes reforms to the low-income\nhousing tax credit.\n[Page H2312]\n","sponsors.0.district":16,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":16,"sponsors.0.firstName":"Darin","bill.type":"HR","updateDateIncludingText":"2024-12-27T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3238/text?format=json","bill.sponsors.0.lastName":"Escobar"}}} +{"type":"relationship","id":"7416","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10084","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14171","title":"Restoring Accountability to Policy-Influencing Positions Within the Federal Workforce","url":"https://www.federalregister.gov/d/2025-02095"}}} +{"type":"relationship","id":"7417","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"10013","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/370/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"370","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/370/subjects?format=json","policyArea.name":"Immigration","title":"Protecting America From Spies Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"370","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2021-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/370/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/370/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/370/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/370?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:48Z"}}} +{"type":"relationship","id":"7418","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9368","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4785/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"4785","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Became Public Law No: 117-177.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4785/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/s/4785/committees?format=json","type":"S","title":"Responsibility in Drug Advertising Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"4785","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-16","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4785/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4785/titles?format=json","laws.0.number":"117-177","summaries.url":"https://api.congress.gov/v3/bill/117/s/4785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4785/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4785/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-25","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-07-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4785?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7419","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"8797","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bean","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6958/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6958","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6958.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6958/cosponsors?format=json","sponsors.0.bioguideId":"B001314","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6958/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Bean, Aaron [R-FL-4]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6958/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6958/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001314?format=json","request.billNumber":"6958","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6958/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6958/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Cabinet Accountability and Transparency Act","bill.title":"A Chance To Serve Act","bill.number":"6958","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6958/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6958/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6958/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6958/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6958/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6958?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEAN of Florida:\nH.R. 6958.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: The Congress shall have\nPower . . . To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nTo require cabinet officials to notify Congress in the\nevent such an official is temporarily unable to perform the\nfunctions and duties of their position.\n[Page H107]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Aaron","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6958/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"7420","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"8818","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6956/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6956","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6956/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6956/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-12","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6956/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-06-11T15:45:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6956/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"6956","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6956/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6956/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Opioid Settlement Accountability Act","bill.title":"Service Starts At Home Act","bill.number":"6956","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6956/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6956/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6956/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6956/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6956/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6956?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section VIII, to regulate commerce\nThe single subject of this legislation is:\nCommerce\n[Page H107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:45:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6956/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"7421","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"8819","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Rutherford","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Appropriations.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6955/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6955","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6955.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6955/cosponsors?format=json","sponsors.0.bioguideId":"R000609","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6955/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Rutherford, John H. [R-FL-5]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Appropriations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6955/text?format=json","bill.updateDate":"2025-01-03T07:43:17Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6955/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000609?format=json","request.billNumber":"6955","committees.url":"https://api.congress.gov/v3/bill/118/hr/6955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6955/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:17Z","title":"Investing in Uniformed Division Leadership Act","bill.title":"Learn and Serve American Reinvestment Act","bill.number":"6955","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6955/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6955/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6955/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6955/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6955/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6955?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RUTHERFORD:\nH.R. 6955.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nAdding the Chief and Assistant Chief of the Uniformed\nDivision of the United States Secret Service to the Senior\nExecutive Service.\n[Page H107]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6955/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"7422","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"8820","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Smucker","bill.latestAction.actionDate":"2022-03-07","cboCostEstimates.0.pubDate":"2024-01-24T22:21:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6957/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6957","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6957.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6957/cosponsors?format=json","sponsors.0.bioguideId":"S001199","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6957/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6957/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-18","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Smucker, Lloyd [R-PA-11]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6957/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-19T08:05:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6957/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001199?format=json","request.billNumber":"6957","committees.url":"https://api.congress.gov/v3/bill/118/hr/6957/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6957/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Debt-to-GDP Transparency and Stabilization Act","bill.title":"To expand opportunities for employment of recent graduates in Federal Government positions, and for other purposes.","bill.number":"6957","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Budget on\nJanuary 18, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59913","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6957/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6957/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6957/summaries?format=json","cboCostEstimates.0.title":"H.R. 6957, Debt-to-GDP Transparency and Stabilization Act","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6957/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6957/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6957?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMUCKER:\nH.R. 6957.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 article 1 of the Constitution\nThe single subject of this legislation is:\nThe Debt-to-GDP Stabilization Act requires that the\nPresident's annual budget submission to Congress and any\nconcurrent resolution on the budget include the current ratio\nof the public debt to the estimated gross domestic product\n(GDP).\n[Page H107]\n","sponsors.0.district":11,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Lloyd","bill.type":"HR","updateDateIncludingText":"2024-09-19T08:05:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6957/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"7423","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"8821","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brownley","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6959/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6959","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6959.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6959/cosponsors?format=json","sponsors.0.bioguideId":"B001285","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6959/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6959/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6959/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","request.billNumber":"6959","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6959/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6959/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Fix FEDVIP Age Act","bill.title":"American Volunteering Corporation Act","bill.number":"6959","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6959/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6959/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6959/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6959/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6959/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6959?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 6959.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nHealthcare\n[Page H107]\n","sponsors.0.district":26,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Julia","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6959/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"7424","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"9115","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2982/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2982/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"D","number":"2982","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 2982.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2982/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2982/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2982/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"K000394","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2982/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2982/text?format=json","bill.updateDate":"2025-01-03T05:00:49Z","updateDate":"2024-12-17T09:05:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2982/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"2982","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2982/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2982/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:49Z","title":"New York-New Jersey Watershed Protection Act","bill.title":"National Guard Cybersecurity Support Act","bill.number":"2982","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2982/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2982/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2982/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":24,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2982/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2982/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2982?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2982.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nThis legislation establishes the New York-New Jersey\nWatershed Restoration Program to coordinate and fund\nrestoration activities throughout the Watershed.\n[Page H2088]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2982/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"7425","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9481","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3377","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Became Public Law No: 117-77.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/3377/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3377/committees?format=json","type":"S","title":"Disadvantaged Business Enterprise Supportive Services Expansion Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S5694-5695)","sponsors.0.party":"D","number":"3377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-12-22","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3377/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3377/titles?format=json","laws.0.number":"117-77","summaries.url":"https://api.congress.gov/v3/bill/117/s/3377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3377/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3377/relatedbills?format=json","latestAction.actionDate":"2023-11-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-11-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3377?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-07-24T15:19:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7426","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9491","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wyden","cboCostEstimates.0.pubDate":"2024-12-04T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 216.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1890","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1890/cosponsors?format=json","sponsors.0.bioguideId":"W000779","actions.url":"https://api.congress.gov/v3/bill/118/s/1890/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1890/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-222","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1890/text?format=json","updateDate":"2025-01-17T03:11:18Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1890","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1890/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1890/committees?format=json","title":"Malheur Community Empowerment for the Owyhee Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61052","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/222?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1890/summaries?format=json","cboCostEstimates.0.title":"S. 1890, Malheur Community Empowerment for the Owyhee Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-06-08","subjects.count":16,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1890?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-17T03:11:18Z"}}} +{"type":"relationship","id":"7427","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"8815","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6951/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foxx","bill.latestAction.actionDate":"2022-03-07","cboCostEstimates.0.pubDate":"2024-05-10T13:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6951/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 624.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6951","bill.cosponsors.countIncludingWithdrawnCosponsors":56,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 6951.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article I, Section 8, Clause 18: To make\nall laws that shall be necessary and proper for carrying into\nexecution the foregoing powers, and all powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6951/cosponsors?format=json","sponsors.0.bioguideId":"F000450","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6951/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6951/relatedbills?format=json","latestAction.actionDate":"2024-11-18","textVersions.count":2,"bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Foxx, Virginia [R-NC-5]","bill.sponsors.0.bioguideId":"G000583","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":153,"bill.latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6951/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-739","bill.sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6951/text?format=json","bill.updateDate":"2025-01-03T07:43:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6951/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/F000450?format=json","request.billNumber":"6951","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6951/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6951/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:13Z","title":"College Cost Reduction Act","bill.title":"Ban Russian Energy Imports Act","bill.number":"6951","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":153,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60285","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6951/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/739?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6951/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6951/summaries?format=json","bill.cosponsors.count":56,"cboCostEstimates.0.title":"H.R. 6951, College Cost Reduction Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":26,"bill.committees.count":2,"bill.sponsors.0.firstName":"Josh","sponsors.0.state":"NC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6951/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6951/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6951?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. FOXX:\nH.R. 6951.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo lower the cost of postsecondary education for students\nand families.\n[Page H107]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":5,"sponsors.0.firstName":"Virginia","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6951/text?format=json","bill.sponsors.0.lastName":"Gottheimer"}}} +{"type":"relationship","id":"7428","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9710","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/428/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"428","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/428/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/428/committees?format=json","type":"S","title":"FIND Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"428","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/428/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/428/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/428/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/428/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/428/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":22,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/428?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7429","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9652","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1356/text?format=json","updateDate":"2024-07-24T15:23:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meuser","sponsors.0.isByRequest":"N","request.billNumber":"1356","sponsors.0.url":"https://api.congress.gov/v3/member/M001204?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1356/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1356/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"Public Diplomacy Modernization Act of 2023","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1356","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"sponsors.0.bioguideId":"M001204","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1356/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1356/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1356/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","sponsors.0.fullName":"Rep. Meuser, Daniel [R-PA-9]","titles.count":3,"introducedDate":"2023-03-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1356?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MEUSER:\nH.R. 1356.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8\nThe single subject of this legislation is:\nState Department modernization.\n[Page H1115]\n","sponsors.0.district":9,"sponsors.0.firstName":"Daniel","updateDateIncludingText":"2024-07-24T15:23:28Z"}}} +{"type":"relationship","id":"7430","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"16","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Tokuda","cboCostEstimates.0.pubDate":"2024-09-24T14:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-255.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-255.","sponsors.0.party":"D","number":"8909","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8909/cosponsors?format=json","sponsors.0.bioguideId":"T000487","laws.0.number":"118-255","actions.url":"https://api.congress.gov/v3/bill/118/hr/8909/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8909/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8909","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8909/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8909/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 82-6110 Mamalahoa Highway in Captain Cook, Hawaii, as the \"Army 1st Lt. John Kuulei Kauhaihao Post Office Building\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60752","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8909/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8909/summaries?format=json","cboCostEstimates.0.title":"H.R. 8909, a bill to designate the facility of the United States Postal Service located at 82–6110 Mamalahoa Highway in Captain Cook, Hawaii, as the “Army 1st Lt. John Kuulei Kauhaihao Post Office Building","introducedDate":"2024-06-28","subjects.count":5,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8909?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 8909.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 7 of the United States\nConstitution\nThe single subject of this legislation is:\nRenaming the Captain Cook Hawaii post office as the ``Army\n1st Lt. John Kuulei Kauhaihao Post Office Building''\n[Page H4445]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7431","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9733","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7432","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9446","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3964/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"3964","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3964/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3964/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Sarah Debbink Langenkamp Active Transportation Safety Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"3964","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3964/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3964/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3964/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3964/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3964/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3964?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7433","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"58","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3198/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:30Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Tokuda","sponsors.0.isByRequest":"N","request.billNumber":"3198","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3198/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Equitable Payments for Nursing Facilities Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3198","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3198/cosponsors?format=json","sponsors.0.bioguideId":"T000487","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3198/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3198/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3198/relatedbills?format=json","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3198?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to\nauthorize the Secretary of Health and Human Services to make\nadjustments to payment rates for skilled nursing facilities\nunder the Medicare program to account for certain unique\ncircumstances.\n[Page H2246]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2024-12-20T09:05:30Z"}}} +{"type":"relationship","id":"7434","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9713","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wicker","cboCostEstimates.0.pubDate":"2023-08-08T21:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 147.","sponsors.0.party":"R","number":"416","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/416/cosponsors?format=json","sponsors.0.bioguideId":"W000437","actions.url":"https://api.congress.gov/v3/bill/118/s/416/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/416/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/416/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"416","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/416/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/416/committees?format=json","title":"HARM Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations\non July 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59428","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-02-24","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/416/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/416/summaries?format=json","cboCostEstimates.0.title":"S. 416, Holding Accountable Russian Mercenaries Act","introducedDate":"2023-02-14","subjects.count":15,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/416?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7435","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9677","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Boebert","cboCostEstimates.0.pubDate":"2023-06-02T21:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Animals","type":"HR","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","number":"764","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/764/cosponsors?format=json","sponsors.0.bioguideId":"B000825","actions.url":"https://api.congress.gov/v3/bill/118/hr/764/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/764/relatedbills?format=json","latestAction.actionDate":"2024-05-01","textVersions.count":4,"sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":5,"cosponsors.count":25,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-206","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/764/text?format=json","updateDate":"2024-11-09T04:56:36Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"764","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/764/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/764/subjects?format=json","title":"Trust the Science Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on April 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":25,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59239","request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/206?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/764/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/764/summaries?format=json","cboCostEstimates.0.title":"H.R. 764, Trust the Science Act","introducedDate":"2023-02-02","subjects.count":6,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/764?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 764.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defense and general welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nPermanelty Delists Gray Wolves in the lower 48 United\nStates.\n[Page H681]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-01-09T00:18:25Z"}}} +{"type":"relationship","id":"7436","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9488","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2022-04-20T20:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 221.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2699","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2699/cosponsors?format=json","sponsors.0.bioguideId":"S001217","actions.url":"https://api.congress.gov/v3/bill/118/s/2699/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2699/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2699/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2699","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2699/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2699/committees?format=json","title":"Opioid RADAR Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58014","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2699/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2699/summaries?format=json","cboCostEstimates.0.title":"S. 2699, American Cybersecurity Literacy Act of 2021","introducedDate":"2023-07-27","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2699?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7437","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9783","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","title":"No Vaccine Passports Act","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7438","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9716","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":41,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7439","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10035","labels":["Order"],"properties":{"date_enacted":"2025-02-25","date_repealed":"None","description":"nan","id":"EO 14221","title":"Making America Healthy Again by Empowering Patients With Clear, Accurate, and Actionable Healthcare Pricing Information","url":"https://www.federalregister.gov/d/2025-03440"}}} +{"type":"relationship","id":"7440","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9720","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7441","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9714","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/136/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"136","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/136/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"ISA Student Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"136","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/136/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/136/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/136/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/136?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"7442","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9489","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2424/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"2424","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 220.","policyArea.name":"Native Americans","subjects.url":"https://api.congress.gov/v3/bill/118/s/2424/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2424/committees?format=json","type":"S","title":"Indian Programs Advance Appropriations Act of 2023","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"2424","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2424/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2424/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2424/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2424/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2424/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2424?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:13:01Z"}}} +{"type":"relationship","id":"7443","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9784","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/117/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"117","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/117/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/117/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To prohibit any entity that receives Federal funds from the COVID relief packages from mandating employees receive a COVID-19 vaccine, and for other purposes.","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"117","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-11-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/117/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/117/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/117/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/117/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":4,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/117?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 117.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7444","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9340","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5079/text?format=json","relatedBills.count":2,"updateDate":"2024-11-27T19:32:06Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Romney","sponsors.0.isByRequest":"N","request.billNumber":"5079","sponsors.0.url":"https://api.congress.gov/v3/member/R000615?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5079/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5079/committees?format=json","policyArea.name":"Taxation","title":"ERTC Repeal Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5079","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5079/cosponsors?format=json","sponsors.0.bioguideId":"R000615","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5079/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/5079/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5079/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5079/relatedbills?format=json","sponsors.0.fullName":"Sen. Romney, Mitt [R-UT]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5079?format=json","sponsors.0.firstName":"Mitt","updateDateIncludingText":"2024-11-27T19:32:06Z"}}} +{"type":"relationship","id":"7445","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10059","labels":["Order"],"properties":{"date_enacted":"2025-02-03","date_repealed":"None","description":"nan","id":"EO 14196","title":"A Plan for Establishing a United States Sovereign Wealth Fund","url":"https://www.federalregister.gov/d/2025-02477"}}} +{"type":"relationship","id":"7446","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9796","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/16/text?format=json","relatedBills.count":1,"updateDate":"2024-07-09T18:13:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DeSaulnier","sponsors.0.isByRequest":"N","request.billNumber":"16","sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","latestAction_text":"Held at the desk.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hconres/16/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/16/subjects?format=json","type":"HCONRES","title":"Recognizing the victims of the Port Chicago explosion of July 17, 1944, the 79th anniversary of the greatest homeland loss of life of World War II, and exonerating the 50 African-American sailors unjustly court-martialed by the Navy.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"16","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/16/cosponsors?format=json","sponsors.0.bioguideId":"D000623","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/16/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/16/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/16/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/16/relatedbills?format=json","sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-10]","latestAction.actionTime":"12:11:03","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":13,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/16?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-09T18:13:39Z","latestAction_actionTime":"12:11:03"}}} +{"type":"relationship","id":"7447","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9965","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/869/text?format=json","relatedBills.count":1,"updateDate":"2025-01-30T13:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"869","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7150; text: CR S7135-7136)","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/869/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/869/committees?format=json","type":"S","title":"CDFI Bond Guarantee Program Improvement Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"869","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/869/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/869/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/869/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/869/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/869/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":10,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/869?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-30T13:23:50Z"}}} +{"type":"relationship","id":"7448","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"614","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3126/text?format=json","relatedBills.count":1,"updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Tokuda","sponsors.0.isByRequest":"N","request.billNumber":"3126","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3126/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3126/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Keep Kupuna Fed Act","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"D","number":"3126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3126/cosponsors?format=json","sponsors.0.bioguideId":"T000487","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3126/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3126/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3126?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3126.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nAmending the Food and Nutrition Act of 2008 to exclude from\nincomes certain funds received under the Social Security Act.\n[Page H2138]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2025-01-23T18:51:26Z"}}} +{"type":"relationship","id":"7449","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"1090","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3198/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:30Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Tokuda","sponsors.0.isByRequest":"N","request.billNumber":"3198","sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3198/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Equitable Payments for Nursing Facilities Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3198","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3198/cosponsors?format=json","sponsors.0.bioguideId":"T000487","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3198/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3198/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3198/relatedbills?format=json","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"HI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3198?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to\nauthorize the Secretary of Health and Human Services to make\nadjustments to payment rates for skilled nursing facilities\nunder the Medicare program to account for certain unique\ncircumstances.\n[Page H2246]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jill","updateDateIncludingText":"2024-12-20T09:05:30Z"}}} +{"type":"relationship","id":"7450","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9341","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5078/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5078","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5078/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5078/committees?format=json","policyArea.name":"Housing and Community Development","title":"Homes Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5078/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5078/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5078/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5078?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7451","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10085","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14170","title":"Reforming the Federal Hiring Process and Restoring Merit to Government Service","url":"https://www.federalregister.gov/d/2025-02094"}}} +{"type":"relationship","id":"7452","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"8831","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6901/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6901/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6901","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 6901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6901/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6901/actions?format=json","latestAction.actionDate":"2023-12-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6901/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"L000273","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6901/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6901/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6901/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6901","committees.url":"https://api.congress.gov/v3/bill/118/hr/6901/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6901/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"To direct the Secretary of Defense to submit to Congress a report on Department of Defense restrictions on the employment of former Department employees by certain countries.","bill.title":"To prohibit the use of Federal funds for the private interim storage of spent nuclear fuel, and for other purposes.","bill.number":"6901","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6901/committees?format=json","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6901/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6901/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Teresa","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6901/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6901/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6901?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to submit to Congress a\nreport on Department of Defense restrictions on the\nemployment of former Department employees by certain\ncountries\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NM","bill.sponsors.0.district":3,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6901/text?format=json","bill.sponsors.0.lastName":"Leger Fernandez"}}} +{"type":"relationship","id":"7453","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"8834","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6591/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ellzey","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-02-26T16:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6591/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"6591","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 22 (Thursday, February 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 6591.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H947]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6591/cosponsors?format=json","sponsors.0.bioguideId":"E000071","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6591/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-02-29","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Ellzey, Jake [R-TX-6]","bill.sponsors.0.bioguideId":"M001136","bill.originChamber":"House","bill.actions.count":4,"titles.count":6,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-379","bill.sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6591/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-01-17T03:06:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6591/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":15,"sponsors.0.url":"https://api.congress.gov/v3/member/E000071?format=json","request.billNumber":"6591","committees.url":"https://api.congress.gov/v3/bill/118/hr/6591/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6591/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Encouraging Success Act","bill.title":"PIPES Act","bill.number":"6591","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60008","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6591/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-02-04","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/379?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6591/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6591/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 6591, Encouraging Success Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lisa","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6591/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6591/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6591?format=json","bill.introducedDate":"2022-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ELLZEY:\nH.R. 6591.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nwhich states ``[t]he Congress shall have power to lay and\ncollect taxes, duties, imposts and excises, to pay the debts\nand provide for the common defense and general welfare of the\nUnited States; but all duties, imposts and excises shall be\nuniform throughout the United States''.\nThe single subject of this legislation is:\nAmends section 8(a) of the Small Business Act to require\nthe Administrator of the Small Business Administration to\nregularly reassess the asset and net worth thresholds for\nqualifying as an economically disadvantaged individual.\n[Page H6144]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":10,"sponsors.0.firstName":"Jake","bill.type":"HR","updateDateIncludingText":"2025-01-17T03:06:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6591/text?format=json","bill.sponsors.0.lastName":"McClain"}}} +{"type":"relationship","id":"7454","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"8849","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6576/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lee","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6576/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6576","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WELCH:\nH.R. 6576.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: The Congress shall have\nPower To . . . make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer therof . .\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6576/cosponsors?format=json","sponsors.0.bioguideId":"L000590","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6576/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6576/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lee, Susie [D-NV-3]","bill.sponsors.0.bioguideId":"W000800","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":20,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6576/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Welch, Peter [D-VT-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6576/text?format=json","bill.updateDate":"2025-01-03T07:40:03Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6576/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000590?format=json","request.billNumber":"6576","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6576/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6576/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:03Z","title":"Full-Service Community School Expansion Act of 2023","bill.title":"SURS Extension Act","bill.number":"6576","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":20,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6576/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6576/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6576/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Peter","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6576/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6576/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6576?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 199 (Monday, December 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of Nevada:\nH.R. 6576.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 provides Congress with the\npower to ``lay and collect Taxes Duties, Imposts, and\nExcises''\nThe single subject of this legislation is:\nEducation\n[Page H6110]\n","bill.sponsors.0.state":"VT","sponsors.0.district":3,"sponsors.0.firstName":"Susie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6576/text?format=json","bill.sponsors.0.lastName":"Welch"}}} +{"type":"relationship","id":"7455","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9601","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1923/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1923","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1923/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1923/committees?format=json","policyArea.name":"Environmental Protection","title":"POPP Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"1923","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1923/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1923/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1923/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1923/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1923/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":4,"introducedDate":"2023-06-12","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1923?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7456","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9760","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/65/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"McConnell","sponsors.0.isByRequest":"N","request.billNumber":"65","sponsors.0.url":"https://api.congress.gov/v3/member/M000355?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/65/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/65/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","sponsors.0.party":"R","number":"65","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/65/cosponsors?format=json","sponsors.0.bioguideId":"M000355","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/65/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/65/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/65/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/65/relatedbills?format=json","sponsors.0.fullName":"Sen. McConnell, Mitch [R-KY]","titles.count":2,"cosponsors.count":49,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/65?format=json","sponsors.0.firstName":"Mitch","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7457","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9506","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3216/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cammack","sponsors.0.isByRequest":"N","request.billNumber":"3216","sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3216/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3216/committees?format=json","type":"HR","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3216","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3216/cosponsors?format=json","sponsors.0.bioguideId":"C001039","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3216/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3216/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3216/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3216/relatedbills?format=json","sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":13,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3216?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 80 (Thursday, May 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAMMACK:\nH.R. 3216.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nThis bill amends the Rural Electrification Act of 1936 to\nreauthorize and improve the ReConnect loan and grant program.\n[Page H2311]\n","sponsors.0.district":3,"sponsors.0.firstName":"Kat","updateDateIncludingText":"2024-07-24T15:22:14Z"}}} +{"type":"relationship","id":"7458","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"8853","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6560/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Panetta","bill.latestAction.actionDate":"2022-02-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6560/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"6560","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 21 (Wednesday, February 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWN of Ohio:\nH.R. 6560.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\n[Page H917]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6560/cosponsors?format=json","sponsors.0.bioguideId":"P000613","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6560/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-19]","bill.sponsors.0.bioguideId":"B001313","bill.originChamber":"House","bill.actions.count":11,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Shontel M. [D-OH-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6560/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-09-13T15:32:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6560/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","request.billNumber":"6560","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6560/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6560/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"NOTIFIED Act","bill.title":"GAO Audit Mandates Revision Act of 2022","bill.number":"6560","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6560/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6560/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6560/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001313?format=json","introducedDate":"2023-12-01","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":7,"bill.sponsors.0.firstName":"Shontel","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6560/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6560/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6560?format=json","bill.introducedDate":"2022-02-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 198 (Friday, December 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 6560.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nFAA responsiveness to requests from Congress\n[Page H6081]\n","sponsors.0.district":19,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":11,"sponsors.0.firstName":"Jimmy","bill.type":"HR","updateDateIncludingText":"2024-09-13T15:32:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6560/text?format=json","bill.sponsors.0.lastName":"Brown"}}} +{"type":"relationship","id":"7459","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9477","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3440/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"3440","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Environmental Protection","subjects.url":"https://api.congress.gov/v3/bill/118/s/3440/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3440/committees?format=json","title":"Farewell to Foam Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3440","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3440/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3440/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3440/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3440/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3440/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":10,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3440?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7460","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"8576","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7604/summaries?format=json","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H1064)","bill.summaries.count":1,"sponsors.0.party":"D","number":"7604","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 69 (Wednesday, April 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MULLIN:\nH.R. 7604.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority on which this bill is based is\nCongress's power under the Commerce Clause in Article I,\nSection 8, of the Constitution and under the Constitution's\ngrant of powers to Congress under the Equal Protection, Due\nProcess, and Enforcement Clauses of the Fourteenth Amendment.\n[Page H4575]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7604/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7604/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7604/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"M001190","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Mullin, Markwayne [R-OK-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7604/text?format=json","bill.updateDate":"2025-01-03T07:48:28Z","updateDate":"2024-06-11T15:47:18Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7604/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"7604","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7604/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7604/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:28Z","title":"Hawaii Wildfire Disaster Unemployment Assistance Continuity Act","bill.title":"Partial Birth Abortion Is Murder Act","bill.number":"7604","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7604/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7604/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7604/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","introducedDate":"2024-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Markwayne","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7604/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7604/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7604?format=json","bill.introducedDate":"2022-04-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 42 (Friday, March 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 7604.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo provide enhanced disaster unemployment assistance to\nvictims of the Hawaii wildfires of 2023, and for other\npurposes.\n[Page H1058]\n","sponsors.0.district":2,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:47:18Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7604/text?format=json","bill.sponsors.0.lastName":"Mullin"}}} +{"type":"relationship","id":"7461","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9775","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Rules.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"7462","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"10028","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1717; text: 3/18/2021 CR S1654-1655)","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"7463","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"8878","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6044/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bonamici","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6044/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6044","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 6044.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6044/cosponsors?format=json","sponsors.0.bioguideId":"B001278","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6044/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6044/relatedbills?format=json","bill.policyArea.name":"Emergency Management","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","bill.sponsors.0.bioguideId":"M001188","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6044/text?format=json","bill.updateDate":"2025-01-03T07:35:41Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6044/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","request.billNumber":"6044","committees.url":"https://api.congress.gov/v3/bill/118/hr/6044/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6044/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:41Z","title":"PARTNERS Act of 2023","bill.title":"FEMA Emergency Management Performance Grants Program Reauthorization Act of 2021","bill.number":"6044","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6044/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6044/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6044/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Grace","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6044/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6044/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6044?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 6044.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article 1 of the Constitution\nThe single subject of this legislation is:\nWorkforce development\n[Page H5107]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":6,"sponsors.0.firstName":"Suzanne","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6044/text?format=json","bill.sponsors.0.lastName":"Meng"}}} +{"type":"relationship","id":"7464","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"8689","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Appropriations.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8768/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8768","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORMAN:\nH.R. 8768.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8768/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8768/actions?format=json","latestAction.actionDate":"2024-06-14","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"N000190","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":16,"bill.latestAction.text":"Referred to the House Committee on Appropriations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Norman, Ralph [R-SC-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8768/text?format=json","bill.updateDate":"2025-01-03T07:58:46Z","updateDate":"2024-08-07T14:59:24Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8768/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"8768","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8768/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8768/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:46Z","title":"Restoring Trust in Public Safety Act","bill.title":"Fighting Cancer in Children Act","bill.number":"8768","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8768/committees?format=json","sponsors.0.middleName":"N.","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8768/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8768/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000190?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ralph","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8768/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8768/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8768?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\n[Pages H4109-H4110]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 8768\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H4110]]\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo authorize the Attorney General to make grants available\nto support State, Tribal, and local firearm destruction\nactivities.\n","sponsors.0.district":2,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-08-07T14:59:24Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8768/text?format=json","bill.sponsors.0.lastName":"Norman"}}} +{"type":"relationship","id":"7465","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"8964","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5162/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5162/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5162","bill.cosponsors.countIncludingWithdrawnCosponsors":57,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 5162.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5162/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5162/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5162/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"F000471","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5162/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5162/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5162/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"5162","committees.url":"https://api.congress.gov/v3/bill/118/hr/5162/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5162/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Parity for Alaska Native and Native Hawaiian Students in Agriculture Act","bill.title":"CRT Transparency Act","bill.number":"5162","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5162/committees?format=json","request.format":"json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5162/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5162/summaries?format=json","bill.cosponsors.count":57,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"HI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5162/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5162/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5162?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 5162.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nAmending the National Agricultural Research, Extension, and\nTeaching Policy Act of 1977 to extend education grant\nprograms for Alaska Native serving institutions and Native\nHawaiian serving institutions.\n[Page H4166]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5162/text?format=json","bill.sponsors.0.lastName":"Fitzgerald"}}} +{"type":"relationship","id":"7466","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9717","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":44,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7467","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"10024","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1776-1777)","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7468","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9406","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cassidy","cboCostEstimates.0.pubDate":"2022-06-13T15:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-146.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3580","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3580/cosponsors?format=json","sponsors.0.bioguideId":"C001075","laws.0.number":"117-146","actions.url":"https://api.congress.gov/v3/bill/118/s/3580/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3580/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3580/amendments?format=json","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3580/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3580","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3580/subjects?format=json","title":"Protecting Students on Campus Act of 2024","cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 10, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58204","request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3580/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of S. 3580, the Ocean Shipping Reform Act of 2022","introducedDate":"2024-01-11","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3580?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7469","label":"SPONSORED","start":{"id":"4147","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/t000487_200.jpg","startYear":"2023","partyName":"Democratic","name":"Tokuda, Jill N.","attribution":"Image courtesy of the Member","state":"Hawaii","url":"https://api.congress.gov/v3/member/T000487?format=json","bioguideId":"T000487"}},"end":{"id":"9061","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3830/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tokuda","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3830/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"3830","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGEVIN:\nH.R. 3830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3830/cosponsors?format=json","sponsors.0.bioguideId":"T000487","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3830/actions?format=json","latestAction.actionDate":"2023-06-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3830/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Tokuda, Jill N. [D-HI-2]","bill.sponsors.0.bioguideId":"L000559","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Langevin, James R. [D-RI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3830/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:21:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3830/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000487?format=json","request.billNumber":"3830","committees.url":"https://api.congress.gov/v3/bill/118/hr/3830/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3830/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To require the Administrator of the Small Business Administration to expand eligibility for certain contracts, and for other purposes.","bill.title":"SPELL Act","bill.number":"3830","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3830/committees?format=json","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3830/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3830/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000559?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"HI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3830/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3830/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3830?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TOKUDA:\nH.R. 3830.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clauses 1 and 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nRequiring the Administrator of the Small Business\nAdministration to expand eligibility for certain contracts,\nand for other purposes.\n[Page H2743]\n","sponsors.0.district":2,"bill.sponsors.0.state":"RI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jill","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3830/text?format=json","bill.sponsors.0.lastName":"LANGEVIN"}}} +{"type":"relationship","id":"7470","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"18","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Fischbach","cboCostEstimates.0.pubDate":"2024-09-24T14:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-253.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Became Public Law No: 118-253.","sponsors.0.party":"R","number":"8841","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8841/cosponsors?format=json","sponsors.0.bioguideId":"F000470","laws.0.number":"118-253","actions.url":"https://api.congress.gov/v3/bill/118/hr/8841/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8841/relatedbills?format=json","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","titles.count":2,"cosponsors.count":7,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8841/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":23,"request.billNumber":"8841","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8841/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8841/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the \"Floyd B. Olson Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60750","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8841/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8841/summaries?format=json","cboCostEstimates.0.title":"H.R. 8841, a bill to designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the “Floyd B. Olson Post Office","introducedDate":"2024-06-26","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8841?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 107 (Wednesday, June 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 8841.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nRenaming the Roseau Post Office.\n[Page H4321]\n","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2025-02-04T17:03:49Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7471","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9460","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Thune","cboCostEstimates.0.pubDate":"2022-11-21T16:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 286.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1629)","sponsors.0.party":"R","number":"1583","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1583/cosponsors?format=json","sponsors.0.bioguideId":"T000250","actions.url":"https://api.congress.gov/v3/bill/118/s/1583/actions?format=json","latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1583/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":2,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-85","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1583/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1583","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1583/subjects?format=json","title":"A bill to require the Secretary of State to submit to Congress classified dissent cables relating to the withdrawal of the United States Armed Forces from Afghanistan.","cboCostEstimates.0.description":"As reported on February 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58810","request.format":"json","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/85?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1583/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1583/summaries?format=json","cboCostEstimates.0.title":"S. 1583, Lake Tahoe Restoration Reauthorization Act","introducedDate":"2023-05-11","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1583?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7472","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9484","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"McCaul","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Health","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3433","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3433/cosponsors?format=json","sponsors.0.bioguideId":"M001157","actions.url":"https://api.congress.gov/v3/bill/118/hr/3433/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3433/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. McCaul, Michael T. [R-TX-10]","titles.count":6,"cosponsors.count":235,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-700","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3433/text?format=json","updateDate":"2025-01-16T07:06:17Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":18,"request.billNumber":"3433","sponsors.0.url":"https://api.congress.gov/v3/member/M001157?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3433/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3433/committees?format=json","title":"Give Kids a Chance Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":235,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-12-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/700?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3433/summaries?format=json","introducedDate":"2023-05-17","subjects.count":9,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3433?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 83 (Wednesday, May 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McCAUL:\nH.R. 3433.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo expand cancer research for children.\n[Page H2428]\n","sponsors.0.district":10,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-16T07:06:17Z"}}} +{"type":"relationship","id":"7473","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9595","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1921/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"1921","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/117/s/1921/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1921/committees?format=json","policyArea.name":"Energy","type":"S","title":"Children Don't Belong on Tobacco Farms Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1921","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1921/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1921/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1921/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1921/actions?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1921/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":3,"request.contentType":"application/json","subjects.count":30,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1921?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7474","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9681","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/761/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"761","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/761/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/761/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Stop Forced Organ Harvesting Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"761","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/761/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/761/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/761/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/761/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/761/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":21,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/761?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7475","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"9538","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/354/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"354","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/354/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/354/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Strengthening Local Processing Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S317-319)","sponsors.0.party":"R","number":"354","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/354/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/354/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/354/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/354/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/354/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/354?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7476","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9696","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/445/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"445","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/445/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/445/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Grizzly Bear State Management Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"445","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/445/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/445/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/445?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7477","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4736/text?format=json","updateDate":"2024-07-23T13:50:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Fischbach","sponsors.0.isByRequest":"N","request.billNumber":"4736","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4736/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4736/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Investing in Rural America Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"4736","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4736/cosponsors?format=json","sponsors.0.bioguideId":"F000470","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4736/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4736/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4736/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","titles.count":3,"introducedDate":"2023-07-19","cosponsors.count":22,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4736?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 124 (Wednesday, July 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 4736.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAmends USDA Rural Development authorities and requires\nreporting of activities authorized therein.\n[Page H3858]\n","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-07-23T13:50:31Z"}}} +{"type":"relationship","id":"7478","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9704","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/425/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"425","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/425/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/425/committees?format=json","policyArea.name":"Immigration","type":"S","title":"Secure and Protect Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"425","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/425/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/425/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/425/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/425/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/425/relatedbills?format=json","latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/425?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:44Z"}}} +{"type":"relationship","id":"7479","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9590","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1526/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1526","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1526/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"NTIA Policy and Cybersecurity Coordination Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1526","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1526/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1526/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1526/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1526?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7480","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"8589","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7513/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fischbach","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-06-26T18:15:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7513/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 769.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"7513","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Ohio:\nH.R. 7513.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, and\nArticle I, Section 8, Clause 3, and\nArticle I, Section 8, Clause 1.\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7513/cosponsors?format=json","sponsors.0.bioguideId":"F000470","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7513/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7513/relatedbills?format=json","latestAction.actionDate":"2024-12-19","textVersions.count":2,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","bill.sponsors.0.bioguideId":"J000295","bill.originChamber":"House","bill.actions.count":10,"titles.count":4,"cosponsors.count":37,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7513/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-745","bill.sponsors.0.fullName":"Rep. Joyce, David P. [R-OH-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7513/text?format=json","bill.updateDate":"2025-01-03T07:47:51Z","updateDate":"2024-12-31T01:38:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7513/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","request.billNumber":"7513","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7513/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7513/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:51Z","title":"Protecting American Seniors’ Access to Care Act","bill.title":"PREPARE Act of 2022","bill.number":"7513","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Ways and Means on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60467","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7513/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/745?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7513/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7513/summaries?format=json","bill.cosponsors.count":6,"cboCostEstimates.0.title":"Estimated Direct Spending Effects of H.R. 7513","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000295?format=json","introducedDate":"2024-03-01","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":5,"bill.sponsors.0.firstName":"David","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7513/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7513/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7513?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 7513.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt I, Sec 8\nThe single subject of this legislation is:\nA bill related to the proposed rule entitled ``Medicare\nPrograms: Minimum Staffing Standards for Long-Term Care\nFacilities and Medicaid Institutional Payment Transparency\nReporting.''\n[Page H781]\n","sponsors.0.district":7,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":14,"sponsors.0.firstName":"Michelle","bill.type":"HR","updateDateIncludingText":"2024-12-31T01:48:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7513/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"7481","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"8890","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6057/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClain","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6057/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"6057","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 6057.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6057/cosponsors?format=json","sponsors.0.bioguideId":"M001136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6057/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6057/text?format=json","bill.updateDate":"2025-01-03T07:35:51Z","updateDate":"2024-07-24T15:20:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6057/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","request.billNumber":"6057","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6057/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6057/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:51Z","title":"Iran Nuclear Verification Act","bill.title":"Tax Simplification for Americans Abroad Act","bill.number":"6057","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6057/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6057/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6057/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6057/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6057/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6057?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 6057.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis legislation is solely for preventing the US from\nreestablishing the JCPOA without Iran allowing UN nuclear\ninspectors from inspecting and confirming that Iran is in\n100% compliance with the JCPOA.\n[Page H5107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6057/text?format=json","bill.sponsors.0.lastName":"Beyer"}}} +{"type":"relationship","id":"7482","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"9049","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"MCGOVERN","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4034/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"4034","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 4034.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4034/cosponsors?format=json","sponsors.0.bioguideId":"M000312","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4034/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4034/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":32,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4034/text?format=json","bill.updateDate":"2025-01-03T05:09:08Z","updateDate":"2024-12-20T09:06:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4034/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","request.billNumber":"4034","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4034/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4034/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:08Z","title":"To amend title XVIII of the Social Security Act to provide coverage for wigs as durable medical equipment under the Medicare program, and for other purposes.","bill.title":"Pre-apprenticeship Promotion Act","bill.number":"4034","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":32,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4034/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4034/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4034/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4034/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4034/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4034?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 4034.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1.\nThe single subject of this legislation is:\nThe single subject of this legislation is: to amend title\nXVIII of the Social Security Act to provide coverage for wigs\nas durable medical equipment under the Medicare program.\n[Page H2810]\n","sponsors.0.district":2,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"JAMES","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:06:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4034/text?format=json","bill.sponsors.0.lastName":"Beyer"}}} +{"type":"relationship","id":"7483","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"9060","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3805/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3805/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3805","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2709]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3805/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3805/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3805/relatedbills?format=json","latestAction.actionDate":"2023-06-09","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3805/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3805/text?format=json","bill.updateDate":"2025-01-03T05:07:24Z","updateDate":"2024-07-31T08:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3805/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"3805","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3805/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3805/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:24Z","title":"KIDS Health Act of 2023","bill.title":"Millionaires Surtax Act","bill.number":"3805","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3805/committees?format=json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3805/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3805/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3805/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3805/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3805?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 3805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nChildren's Health\n[Page H2742]\n","sponsors.0.district":8,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-31T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3805/text?format=json","bill.sponsors.0.lastName":"Beyer"}}} +{"type":"relationship","id":"7484","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"9088","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3474/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bonamici","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3474/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3474","bill.cosponsors.countIncludingWithdrawnCosponsors":116,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3474.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\n[[Page H2667]]\n[Page H2666]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3474/cosponsors?format=json","sponsors.0.bioguideId":"B001278","bill.subjects.count":30,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3474/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3474/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":46,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3474/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3474/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3474/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","request.billNumber":"3474","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3474/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3474/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Senior Hunger Prevention Act of 2023","bill.title":"Keeping All Students Safe Act","bill.number":"3474","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":46,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3474/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3474/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3474/summaries?format=json","bill.cosponsors.count":116,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":17,"bill.committees.count":2,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3474/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3474/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3474?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 3474.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nHunger\n[Page H2457]\n","sponsors.0.district":1,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Suzanne","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3474/text?format=json","bill.sponsors.0.lastName":"Beyer"}}} +{"type":"relationship","id":"7485","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 168.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","policyArea.name":"Taxation","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","title":"Senior Citizens Tax Elimination Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"cosponsors.count":36,"introducedDate":"2023-05-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}}} +{"type":"relationship","id":"7486","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"8643","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 8801, DHS Joint Task Force Reauthorization Act of 2022","sponsors.0.lastName":"Fischbach","cboCostEstimates.0.pubDate":"2022-10-06T20:45:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Health","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8801/summaries?format=json","type":"HR","bill.summaries.count":2,"bill.sponsors.0.middleName":"Luis","number":"8801","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"sponsors.0.bioguideId":"F000470","bill.subjects.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8801/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","bill.originChamber":"House","bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 391.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-10-06T20:45:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8801/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-545","updateDate":"2024-12-19T09:06:42Z","committees.count":2,"request.billNumber":"8801","committees.url":"https://api.congress.gov/v3/bill/118/hr/8801/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:16Z","bill.number":"8801","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 14, 2022\n","committeeReports":[],"sponsors.0.middleName":"Luis","latestAction_actionDate":"2022-10-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8801/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8801/summaries?format=json","cboCostEstimates.0.title":"H.R. 8801, DHS Joint Task Force Reauthorization Act of 2022","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001110?format=json","introducedDate":"2024-06-21","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"J.","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8801/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/8801?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 105 (Friday, June 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 8801.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo make improvements in prenatal and maternal care.\n[Page H4120]\n","bill.sponsors.0.district":46,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8801/cosponsors?format=json","bill.textVersions.count":2,"bill.latestAction.actionDate":"2022-10-28","latestAction_text":"Placed on the Union Calendar, Calendar No. 391.","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-545","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 147 (Tuesday, September 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CORREA:\nH.R. 8801.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H7784]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8801/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8801/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001110","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 14, 2022\n","bill.actions.count":10,"titles.count":4,"cosponsors.count":11,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/545?format=json","bill.sponsors.0.fullName":"Rep. Correa, J. Luis [D-CA-46]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8801/text?format=json","bill.updateDate":"2025-01-03T07:59:16Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8801/subjects?format=json","request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8801/subjects?format=json","title":"MOMS Act","bill.title":"DHS Joint Task Force Reauthorization Act of 2022","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58550","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8801/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/545?format=json","request.billType":"hr","bill.cosponsors.count":2,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8801/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-09-13","sponsors.0.district":7,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-12-19T09:06:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8801/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58550","bill.sponsors.0.lastName":"Correa"}}} +{"type":"relationship","id":"7487","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9778","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Received in the Senate.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/124?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"Brian"}}} +{"type":"relationship","id":"7488","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9424","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4211/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","request.billNumber":"4211","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4211/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4211/committees?format=json","policyArea.name":"Education","type":"S","title":"High School Voter Empowerment Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4211","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4211/cosponsors?format=json","sponsors.0.bioguideId":"B001320","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4211/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4211/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4211/actions?format=json","latestAction.actionDate":"2024-04-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4211/relatedbills?format=json","sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4211?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7489","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9935","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/41/text?format=json","updateDate":"2024-11-21T09:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Baird","sponsors.0.isByRequest":"N","request.billNumber":"41","sponsors.0.url":"https://api.congress.gov/v3/member/B001307?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/41/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/41/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"VA Same-Day Scheduling Act of 2023","latestAction.text":"Subcommittee Consideration and Mark-up Session Held.","sponsors.0.party":"R","number":"41","cosponsors.countIncludingWithdrawnCosponsors":71,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-01-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/41/cosponsors?format=json","sponsors.0.bioguideId":"B001307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/41/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/41/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/41/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-18","sponsors.0.fullName":"Rep. Baird, James R. [R-IN-4]","titles.count":3,"cosponsors.count":71,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/41?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BAIRD:\nH.R. 41.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nauthorized by Congress' power to ``provide for the common\nDefense and general Welfare of the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-21T09:05:49Z","latestAction_actionTime":"12:24:00"}}} +{"type":"relationship","id":"7490","label":"SPONSORED","start":{"id":"4138","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/f000470_200.jpg","startYear":"2021","partyName":"Republican","name":"Fischbach, Michelle","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000470?format=json","bioguideId":"F000470"}},"end":{"id":"9883","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/838/text?format=json","relatedBills.count":5,"updateDate":"2024-11-09T04:52:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"Fischbach","sponsors.0.isByRequest":"N","request.billNumber":"838","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/838/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/838/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for consideration of the bill (H.R. 4821) making appropriations for the Department of the Interior, environment, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the bill (H.R. 4820) making appropriations for the Departments of Transportation, and Housing and Urban Development, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; and providing for consideration of the bill (H.R. 6126) making emergency supplemental appropriations to respond to the attacks in Israel for the fiscal year ending September 30, 2024, and for other purposes.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"838","request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2021-12-07","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/261?format=json","sponsors.0.bioguideId":"F000470","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/838/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/838/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/838/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/838/relatedbills?format=json","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","latestAction.actionTime":"11:00:55","titles.count":2,"introducedDate":"2023-11-02","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/838?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-11-09T04:52:00Z","latestAction_actionTime":"19:27:57","committeeReports.0.citation":"H. Rept. 118-261"}}} +{"type":"relationship","id":"7491","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"20","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10470/text?format=json","updateDate":"2025-01-30T13:32:52Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"10470","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10470/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10470/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"PAID Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10470","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10470/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10470/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10470/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","titles.count":4,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10470?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-01-30T13:32:52Z"}}} +{"type":"relationship","id":"7492","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"8903","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5852/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Norcross","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5852/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5852","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 193 (Wednesday, November 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 5852.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6179]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5852/cosponsors?format=json","sponsors.0.bioguideId":"N000188","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5852/actions?format=json","latestAction.actionDate":"2023-09-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5852/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Norcross, Donald [D-NJ-1]","bill.sponsors.0.bioguideId":"W000823","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5852/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5852/text?format=json","bill.updateDate":"2025-01-03T07:34:02Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5852/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000188?format=json","request.billNumber":"5852","committees.url":"https://api.congress.gov/v3/bill/118/hr/5852/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5852/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:34:02Z","title":"21st Century SKILLS Act","bill.title":"Extending Limits of U.S. Customs Waters Act","bill.number":"5852","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5852/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5852/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5852/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","introducedDate":"2023-09-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5852/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5852/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5852?format=json","bill.introducedDate":"2021-11-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 159 (Friday, September 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NORCROSS:\nH.R. 5852.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Art. 1, Sec. 8, Cl. 18)\nThe single subject of this legislation is:\nWorkforce Development\n[Page H4911]\n","sponsors.0.district":1,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":6,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5852/text?format=json","bill.sponsors.0.lastName":"Waltz"}}} +{"type":"relationship","id":"7493","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"8914","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2137/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2137/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2137","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 54 (Tuesday, March 23, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CUELLAR:\nH.R. 2137.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H1621]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2137/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2137/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2137/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"C001063","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2137/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cuellar, Henry [D-TX-28]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2137/text?format=json","bill.updateDate":"2025-01-03T04:54:13Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2137/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2137","committees.url":"https://api.congress.gov/v3/bill/118/hr/2137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2137/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:54:13Z","title":"To provide for a limitation on availability of funds for Independent Agencies, Office of Special Counsel, Salaries and Expenses for fiscal year 2024.","bill.title":"Jaime Zapata and Victor Avila Federal Law Enforcement Protection Act","bill.number":"2137","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2137/committees?format=json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2137/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2137/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001063?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Henry","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2137/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2137/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2137?format=json","bill.introducedDate":"2021-03-23","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2137.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1651]\n","sponsors.0.district":5,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":28,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2137/text?format=json","bill.sponsors.0.lastName":"Cuellar"}}} +{"type":"relationship","id":"7494","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"8923","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2067/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Biggs","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2067/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committees on Foreign Affairs, and Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2067","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 51 (Thursday, March 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. TRAHAN:\nH.R. 2067.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle. I, Section 8, Clause 18\n[Page H1584]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2067/cosponsors?format=json","sponsors.0.bioguideId":"B001302","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2067/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","bill.sponsors.0.bioguideId":"T000482","bill.actions.count":6,"bill.originChamber":"House","titles.count":2,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Trahan, Lori [D-MA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2067/text?format=json","bill.updateDate":"2025-01-03T04:53:29Z","updateDate":"2024-07-24T15:22:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2067/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","request.billNumber":"2067","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2067/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2067/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:53:29Z","title":"To provide for a limitation on availability of funds for Executive Office of the President, National Security Council and Homeland Security Council for fiscal year 2024.","bill.title":"MATE Act of 2021","bill.number":"2067","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2067/committees?format=json","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2067/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2067/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000482?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lori","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2067/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2067/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2067?format=json","bill.introducedDate":"2021-03-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 2067.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1649]\n","sponsors.0.district":5,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2067/text?format=json","bill.sponsors.0.lastName":"Trahan"}}} +{"type":"relationship","id":"7495","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"8926","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ross","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2905/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"2905","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2905/cosponsors?format=json","sponsors.0.bioguideId":"R000305","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2905/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-26","bill.policyArea.name":"Private Legislation","sponsors.0.fullName":"Rep. Ross, Deborah K. [D-NC-2]","bill.sponsors.0.bioguideId":"G000586","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2905/text?format=json","bill.updateDate":"2025-01-03T05:00:08Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2905/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/R000305?format=json","request.billNumber":"2905","committees.url":"https://api.congress.gov/v3/bill/118/hr/2905/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2905/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:08Z","title":"End Prison Gerrymandering Act","bill.title":"For the relief of Francisca Burciaga-Amaro.","bill.number":"2905","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2905/committees?format=json","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2905/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2905/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jesus","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2905/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2905/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2905?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2905.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Deborah","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2905/text?format=json","bill.sponsors.0.lastName":"Garcia"}}} +{"type":"relationship","id":"7496","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"8927","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pressley","bill.latestAction.actionDate":"2021-10-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2904/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"G.","number":"2904","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2904/cosponsors?format=json","sponsors.0.bioguideId":"P000617","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2904/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2904/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","bill.policyArea.name":"Private Legislation","sponsors.0.fullName":"Rep. Pressley, Ayanna [D-MA-7]","bill.sponsors.0.bioguideId":"G000586","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":52,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2904/text?format=json","bill.updateDate":"2025-01-03T05:00:08Z","updateDate":"2024-06-11T16:02:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2904/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000617?format=json","request.billNumber":"2904","committees.url":"https://api.congress.gov/v3/bill/118/hr/2904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2904/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:08Z","title":"Anti-Racism in Public Health Act of 2023","bill.title":"For the relief of Jose Garcia Alarcon.","bill.number":"2904","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":52,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2904/committees?format=json","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-10-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2904/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2904/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":29,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jesus","sponsors.0.state":"MA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2904/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2904/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2904?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 2904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":7,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Ayanna","bill.type":"HR","updateDateIncludingText":"2024-06-11T16:02:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2904/text?format=json","bill.sponsors.0.lastName":"Garcia"}}} +{"type":"relationship","id":"7497","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"8953","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Walberg","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5419/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"5419","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 170 (Wednesday, September 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 5419.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H5553]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5419/cosponsors?format=json","sponsors.0.bioguideId":"W000798","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5419/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5419/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-12","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Walberg, Tim [R-MI-5]","bill.sponsors.0.bioguideId":"G000586","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":36,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5419/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5419/text?format=json","bill.updateDate":"2025-01-03T07:30:21Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5419/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000798?format=json","request.billNumber":"5419","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5419/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5419/committees?format=json","bill.updateDateIncludingText":"2025-01-11T17:27:14Z","title":"Direct Seller and Real Estate Agent Harmonization Act","bill.title":"Bank Merger Review Modernization Act of 2021","bill.number":"5419","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5419/committees?format=json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5419/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5419/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jesus","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5419/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5419/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5419?format=json","bill.introducedDate":"2021-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALBERG:\nH.R. 5419.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nTo amend the Fair Labor Standards Act of 1938 to clarify\nthe definition of employee as it relates to direct sellers\nand real estate agents\n[Page H4265]\n","sponsors.0.district":5,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":4,"sponsors.0.firstName":"Tim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5419/text?format=json","bill.sponsors.0.lastName":"Garcia"}}} +{"type":"relationship","id":"7498","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"211","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7221/text?format=json","updateDate":"2024-08-30T08:05:16Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"7221","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7221/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Wildlife Corridors and USDA Conservation Programs Act of 2024","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7221","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7221/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7221/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7221/actions?format=json","latestAction.actionDate":"2024-08-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":3,"introducedDate":"2024-02-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 20 (Monday, February 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 7221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nEnvironmental Conservation\n[Page H431]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-30T08:05:16Z"}}} +{"type":"relationship","id":"7499","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"213","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7076/text?format=json","relatedBills.count":2,"updateDate":"2024-08-30T08:05:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"7076","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7076/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Innovative Practices for Soil Health Act of 2024","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"7076","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7076/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7076/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7076/actions?format=json","latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7076/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":3,"introducedDate":"2024-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7076?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 14 (Thursday, January 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 7076.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nAgriculture\n[Page H252]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-30T08:05:20Z"}}} +{"type":"relationship","id":"7500","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"269","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8623/text?format=json","relatedBills.count":1,"updateDate":"2024-09-11T08:05:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"8623","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8623/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8623/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"PROVE Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"8623","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8623/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8623/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8623/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8623/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-05","sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8623?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 8623.\nCongress has the power to enact this legislation pursuant\nto the following:\narticle 1 section 8\nThe single subject of this legislation is:\nvoter registration reform\n[Page H3674]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-09-11T08:05:34Z"}}} +{"type":"relationship","id":"7501","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10086","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14169","title":"Reevaluating and Realigning United States Foreign Aid","url":"https://www.federalregister.gov/d/2025-02091"}}} +{"type":"relationship","id":"7502","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9719","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}}} +{"type":"relationship","id":"7503","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4881/text?format=json","relatedBills.count":1,"updateDate":"2025-02-11T14:06:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"4881","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4881/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4881/committees?format=json","type":"S","title":"A bill to repeal the Military Selective Service Act.","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4881","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4881/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4881/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4881/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4881/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4881?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-02-11T14:06:28Z"}}} +{"type":"relationship","id":"7504","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9762","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/63/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"63","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/63/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/63/committees?format=json","policyArea.name":"Labor and Employment","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Employee or Independent Contractor Classification Under the Fair Labor Standards Act\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"63","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2022-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/63/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/63/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/63/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/63/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/63/relatedbills?format=json","latestAction.actionDate":"2024-03-06","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","latestAction.actionTime":"16:08:39","titles.count":2,"introducedDate":"2024-03-06","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/63?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"16:08:39"}}} +{"type":"relationship","id":"7505","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9764","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/55/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"55","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Star Print ordered on the joint resolution.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/55/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/55/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"55","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2022-09-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/55/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/55/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/55/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/55/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/55/relatedbills?format=json","latestAction.actionDate":"2024-01-22","textVersions.count":1,"sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/55?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7506","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"8942","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2883, the Stop Stalling Access to Affordable Medications Act","sponsors.0.lastName":"CLYBURN","cboCostEstimates.0.pubDate":"2022-07-22T17:23:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2883/summaries?format=json","bill.relatedBills.count":1,"type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"S.","number":"2883","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"sponsors.0.bioguideId":"C000537","bill.subjects.count":11,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2883/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Clyburn, James E. [D-SC-6]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 31 - 9.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-07-22T17:23:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2883/relatedbills?format=json","bill.congress":117,"updateDate":"2024-12-20T09:05:49Z","committees.count":1,"request.billNumber":"2883","committees.url":"https://api.congress.gov/v3/bill/118/hr/2883/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:06Z","bill.number":"2883","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2883/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2883/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2883, the Stop Stalling Access to Affordable Medications Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000294?format=json","introducedDate":"2023-04-26","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Hakeem","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2883/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/2883?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JEFFRIES:\nH.R. 2883.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18, to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H2128]\n","bill.sponsors.0.district":8,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2883/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 31 - 9.","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JEFFRIES:\nH.R. 2883.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18, to make all laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2883/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2883/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"J000294","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":8,"bill.sponsors.0.fullName":"Rep. Jeffries, Hakeem S. [D-NY-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2883/text?format=json","bill.updateDate":"2025-01-03T05:00:06Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2883/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/C000537?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2883/subjects?format=json","title":"Domestic Reinvestment Act of 2023","bill.title":"Stop Stalling Access to Affordable Medications","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58328","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2883/committees?format=json","request.billType":"hr","bill.cosponsors.count":8,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"SC","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2883/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-28","sponsors.0.district":6,"bill.sponsors.0.state":"NY","sponsors.0.firstName":"JAMES","updateDateIncludingText":"2024-12-20T09:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2883/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58328","bill.sponsors.0.lastName":"Jeffries"}}} +{"type":"relationship","id":"7507","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"8946","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1693/cosponsors?format=json","congress":118,"bill.textVersions.count":4,"sponsors.0.lastName":"Aguilar","bill.latestAction.actionDate":"2021-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1693/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on the National Intelligence Enterprise.","bill.summaries.count":3,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"1693","bill.cosponsors.countIncludingWithdrawnCosponsors":56,"bill.committeeReports.0.citation":"H. Rept. 117-128","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JEFFRIES:\nH.R. 1693.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 clause 18 of the United\nStates Constitution.\n[Page H1190]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1693/cosponsors?format=json","sponsors.0.bioguideId":"A000371","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1693/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1693/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Aguilar, Pete [D-CA-33]","bill.sponsors.0.bioguideId":"J000294","bill.originChamber":"House","bill.actions.count":23,"titles.count":4,"cosponsors.count":56,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on the Judiciary.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1693/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/128?format=json","committeeReports.0.citation":"H. Rept. 117-128","bill.sponsors.0.fullName":"Rep. Jeffries, Hakeem S. [D-NY-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1693/text?format=json","bill.updateDate":"2025-01-03T04:50:58Z","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1693/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/A000371?format=json","request.billNumber":"1693","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1693/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1693/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:58Z","title":"REPORT Act of 2023","bill.title":"EQUAL Act of 2021","bill.number":"1693","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":56,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1693/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/128?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1693/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1693/summaries?format=json","bill.cosponsors.count":56,"bill.titles.count":10,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000294?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":3,"bill.sponsors.0.firstName":"Hakeem","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1693/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1693/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1693?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. AGUILAR:\nH.R. 1693.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the Executive Branch to report to Congress on\nacts of terrorism.\n[Page H1327]\n","sponsors.0.district":33,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":8,"sponsors.0.firstName":"Pete","bill.type":"HR","updateDateIncludingText":"2025-03-03T20:01:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1693/text?format=json","bill.sponsors.0.lastName":"Jeffries"}}} +{"type":"relationship","id":"7508","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"319","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8062/text?format=json","updateDate":"2024-08-03T08:05:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"8062","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8062/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8062/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Stream Protection and Vegetation Restoration Act","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"8062","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8062/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8062/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8062/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8062?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 68 (Thursday, April 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 8062.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLegislating\n[Page H2521]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-03T08:05:49Z"}}} +{"type":"relationship","id":"7509","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"813","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/856/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"856","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Veterans' Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/856/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/856/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Comprehensive Paid Leave for Federal Employees Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Veterans' Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"856","cosponsors.countIncludingWithdrawnCosponsors":56,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/856/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/856/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/856/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/856/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/856/relatedbills?format=json","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":3,"introducedDate":"2023-02-07","cosponsors.count":56,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/856?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 25 (Tuesday, February 7, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 856.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nFederal Government Reform\n[Page H738]\n","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7510","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"8951","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5390/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-09-29","cboCostEstimates.0.pubDate":"2024-03-01T18:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5390/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"5390","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 5390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1 provides Congress with the\npower to ``lay and collect Taxes, Duties, Imposts and\nExcises'' in order to ``provide for the . . . general Welfare\nof the United States.''\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5390/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5390/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":4,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"M001214","bill.originChamber":"House","bill.actions.count":7,"titles.count":6,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-499","bill.sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5390/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5390/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":19,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"5390","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5390/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5390/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Critical Infrastructure Manufacturing Feasibility Act","bill.title":"COBRA Subsidy Extension for Workers and Families Act","bill.number":"5390","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on December 6, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60048","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5390/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/499?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5390/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5390/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 5390, Critical Infrastructure Manufacturing Feasibility Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Frank","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5390/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5390/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5390?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 5390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nDirects the Secretary of Commerce to conduct a study on the\nfeasibility of manufacturing more goods in the United States\nthat are key to our critical infrastructure sector.\n[Page H4264]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5390/text?format=json","bill.sponsors.0.lastName":"Mrvan"}}} +{"type":"relationship","id":"7511","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"1473","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/881/text?format=json","relatedBills.count":1,"updateDate":"2024-08-17T08:05:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Beyer","sponsors.0.isByRequest":"N","request.billNumber":"881","sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hres/881/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/881/subjects?format=json","policyArea.name":"Animals","type":"HRES","title":"Commemorating the 50th anniversary of the passage of the Endangered Species Act of 1973.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"881","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/881/cosponsors?format=json","sponsors.0.bioguideId":"B001292","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/881/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/881/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/881/relatedbills?format=json","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":55,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/881?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Donald","updateDateIncludingText":"2024-08-17T08:05:26Z"}}} +{"type":"relationship","id":"7512","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9728","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/125/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"125","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hr/125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/125/committees?format=json","type":"HR","title":"Travel Mask Mandate Repeal Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"125","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/125/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"7513","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9831","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1526/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1526","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1526/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"NTIA Policy and Cybersecurity Coordination Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1526","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1526/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1526/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1526/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1526?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7514","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"8961","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5175/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Emergency Management","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5175/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"5175","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 5175\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5175/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5175/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5175/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-09","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"S001201","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":34,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5175/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5175/text?format=json","bill.updateDate":"2025-01-03T07:27:40Z","updateDate":"2024-08-14T08:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5175/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5175","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5175/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5175/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:40Z","title":"PETSAFE Act of 2023","bill.title":"Incentivizing Solar Deployment Act of 2021","bill.number":"5175","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5175/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5175/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5175/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5175/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5175/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5175?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5175.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEmergency Preparedness\n[Page H4172]\n","sponsors.0.district":28,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-14T08:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5175/text?format=json","bill.sponsors.0.lastName":"Suozzi"}}} +{"type":"relationship","id":"7515","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"9000","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4672/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"ADERHOLT","bill.latestAction.actionDate":"2021-07-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4672/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"4672","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 4672.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I. Section 8 of the United States Constitution\n[Page H3846]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4672/cosponsors?format=json","sponsors.0.bioguideId":"A000055","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4672/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4672/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Aderholt, Robert B. [R-AL-4]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":19,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4672/text?format=json","bill.updateDate":"2025-01-03T07:23:35Z","updateDate":"2024-07-24T15:21:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4672/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/A000055?format=json","request.billNumber":"4672","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4672/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4672/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:35Z","title":"To amend title 40, United States Code, to prohibit the Administrator of General Services from constructing or acquiring public buildings or entering into leases based on the legality or availability of abortion, and for other purposes.","bill.title":"ABLE Employment Flexibility Act","bill.number":"4672","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4672/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-07-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4672/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4672/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-07-17","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"AL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4672/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4672/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4672?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ADERHOLT:\nH.R. 4672.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2 of the U.S. Constitution.\nThe Congress shall have Power to dispose of and make all\nneedful Rules and Regulations respecting the Territory or\nother Property belonging to the United States; and nothing in\nthis Constituition shall be so construed as to Prejudice any\nClaims of the United States, or any particular State.\nThe single subject of this legislation is:\nAcquisition of Buildings and Sites\n[Page H3641]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"ROBERT","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4672/text?format=json","bill.sponsors.0.lastName":"Suozzi"}}} +{"type":"relationship","id":"7516","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"9045","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4069/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kean","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4069/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"4069","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 4069.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3007]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4069/cosponsors?format=json","sponsors.0.bioguideId":"K000398","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4069/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4069/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Kean, Thomas H. [R-NJ-7]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4069/text?format=json","bill.updateDate":"2025-01-03T05:09:03Z","updateDate":"2024-11-09T04:56:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4069/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/K000398?format=json","request.billNumber":"4069","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4069/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4069/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:03Z","title":"Protecting Coasts and Cities from Severe Weather Act","bill.title":"Septic Upgrade Grant Act","bill.number":"4069","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4069/committees?format=json","request.format":"json","sponsors.0.middleName":"H.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4069/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4069/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4069/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4069/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4069?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 103 (Tuesday, June 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KEAN of New Jersey:\nH.R. 4069.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 8 clause 3 of the U.S. Constituion.\nThe single subject of this legislation is:\nTo increase observations, understanding, and forecasting of\ncoastal flooding and storm surge.\n[Page H2885]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4069/text?format=json","bill.sponsors.0.lastName":"Suozzi"}}} +{"type":"relationship","id":"7517","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"9293","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/613/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Torres","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Civil Rights and Liberties, Minority Issues","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/613/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"613","bill.cosponsors.countIncludingWithdrawnCosponsors":106,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1. The Congress shall have\nPower To lay and collect Taxes, Duties, Imposts and Excises,\nto pay the Debts and provide for the common Defence and\ngeneral Welfare of the United States; but all Duties, Imposts\nand Excises shall be uniform throughout the United States\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/613/cosponsors?format=json","sponsors.0.bioguideId":"T000486","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/613/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/613/text?format=json","bill.updateDate":"2025-01-03T04:43:25Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/613/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","request.billNumber":"613","subjects.url":"https://api.congress.gov/v3/bill/118/hr/613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/613/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:25Z","title":"Wayne Ford Racial Impact Statement Act of 2023","bill.title":"SALT Deductibility Act","bill.number":"613","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/613/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/613/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/613/summaries?format=json","bill.cosponsors.count":106,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/613/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/613/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/613?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H491]\n","sponsors.0.district":15,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ritchie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/613/text?format=json","bill.sponsors.0.lastName":"Suozzi"}}} +{"type":"relationship","id":"7518","label":"SPONSORED","start":{"id":"4108","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg","startYear":"2017","partyName":"Democratic","name":"Suozzi, Thomas R.","attribution":"Congressional Pictorial Directory","state":"New York","url":"https://api.congress.gov/v3/member/S001201?format=json","bioguideId":"S001201"}},"end":{"id":"9576","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/613/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Torres","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","policyArea.name":"Civil Rights and Liberties, Minority Issues","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/613/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"613","bill.cosponsors.countIncludingWithdrawnCosponsors":106,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1. The Congress shall have\nPower To lay and collect Taxes, Duties, Imposts and Excises,\nto pay the Debts and provide for the common Defence and\ngeneral Welfare of the United States; but all Duties, Imposts\nand Excises shall be uniform throughout the United States\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/613/cosponsors?format=json","sponsors.0.bioguideId":"T000486","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/613/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-27","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","bill.sponsors.0.bioguideId":"S001201","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/613/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/613/text?format=json","bill.updateDate":"2025-01-03T04:43:25Z","updateDate":"2024-07-24T15:23:55Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/613/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","request.billNumber":"613","subjects.url":"https://api.congress.gov/v3/bill/118/hr/613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/613/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:25Z","title":"Wayne Ford Racial Impact Statement Act of 2023","bill.title":"SALT Deductibility Act","bill.number":"613","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/613/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/613/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/613/summaries?format=json","bill.cosponsors.count":106,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/613/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/613/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/613?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 613.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H491]\n","sponsors.0.district":15,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"Ritchie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:55Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/613/text?format=json","bill.sponsors.0.lastName":"Suozzi"}}} +{"type":"relationship","id":"7519","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"8627","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6021/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Beyer","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6021/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Trade.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6021","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 6021.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8: The Congress shall have power to lay\nand collect taxes, duties, imposts and excises, to pay the\ndebts and provide for the common defense and general welfare\nof the United States; but all duties, imposts and excises\nshall be uniform throughout the United States;\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6021/cosponsors?format=json","sponsors.0.bioguideId":"B001292","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6021/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","bill.sponsors.0.bioguideId":"B000825","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6021/text?format=json","bill.updateDate":"2025-01-03T07:35:33Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6021/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":9,"sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","request.billNumber":"6021","committees.url":"https://api.congress.gov/v3/bill/118/hr/6021/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6021/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:33Z","title":"Ejiao Act of 2023","bill.title":"We’re Not Paying You To Break Our Laws Act","bill.number":"6021","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6021/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6021/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6021/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6021/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6021/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6021?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 6021.\nCongress has the power to enact this legislation pursuant\nto the following:\nsection 1 article 8\nThe single subject of this legislation is:\nAnimal protection\n[Page H5043]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6021/text?format=json","bill.sponsors.0.lastName":"Boebert"}}} +{"type":"relationship","id":"7520","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"8656","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9079/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Beyer","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9079/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9079","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9079/cosponsors?format=json","sponsors.0.bioguideId":"B001292","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9079/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Beyer, Donald S. [D-VA-8]","bill.sponsors.0.bioguideId":"S000510","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9079/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-09-25T17:10:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9079/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","request.billNumber":"9079","committees.url":"https://api.congress.gov/v3/bill/118/hr/9079/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9079/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"NURSE Visa Act of 2024","bill.title":"Community and Technical College Investment Act of 2022","bill.number":"9079","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9079/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9079/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9079/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ADAM","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9079/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9079/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9079?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 9079.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nLegislating\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":8,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-09-25T17:10:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9079/text?format=json","bill.sponsors.0.lastName":"SMITH"}}} +{"type":"relationship","id":"7521","label":"SPONSORED","start":{"id":"4065","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/b001292_200.jpg","startYear":"2015","partyName":"Democratic","name":"Beyer, Donald S.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/B001292?format=json","bioguideId":"B001292"}},"end":{"id":"9072","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3759/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Beyer","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3759/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3759","bill.cosponsors.countIncludingWithdrawnCosponsors":67,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeGETTE:\nH.R. 3759.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3759/cosponsors?format=json","sponsors.0.bioguideId":"B001292","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3759/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3759/relatedbills?format=json","latestAction.actionDate":"2023-06-01","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","bill.sponsors.0.bioguideId":"D000197","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":28,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3759/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeGette, Diana [D-CO-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3759/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2024-11-19T09:05:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3759/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","request.billNumber":"3759","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3759/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3759/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Barriers to Suicide Act of 2023","bill.title":"Physical Therapist Workforce and Patient Access Act of 2021","bill.number":"3759","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":28,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3759/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","sponsors.0.middleName":"S.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3759/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3759/summaries?format=json","bill.cosponsors.count":67,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000197?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"DIANA","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3759/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3759/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3759?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3759.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nLegislating\n[Page H2708]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":1,"sponsors.0.firstName":"Donald","bill.type":"HR","updateDateIncludingText":"2024-11-19T09:05:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3759/text?format=json","bill.sponsors.0.lastName":"DEGETTE"}}} +{"type":"relationship","id":"7522","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10060","labels":["Order"],"properties":{"date_enacted":"2025-02-01","date_repealed":"None","description":"nan","id":"EO 14195","title":"Imposing Duties To Address the Synthetic Opioid Supply Chain in the Peoples Republic of China","url":"https://www.federalregister.gov/d/2025-02408"}}} +{"type":"relationship","id":"7523","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"8969","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5172/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5172/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5172","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5172/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5172/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5172/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"R000610","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5172/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5172/text?format=json","bill.updateDate":"2025-01-03T07:27:44Z","updateDate":"2024-12-18T09:05:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5172/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"5172","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5172/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5172/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:44Z","title":"To amend the Consolidated Farm and Rural Development Act to reduce the eligibility requirement for direct farm real estate loans, and for other purposes.","bill.title":"Honoring Purple Heart Recipients Act","bill.number":"5172","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5172/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5172/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5172/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Guy","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5172/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5172/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5172?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nreduce the eligibility requirement for direct farm real\nestate loans, and for other purposes.\n[Page H4172]\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5172/text?format=json","bill.sponsors.0.lastName":"Reschenthaler"}}} +{"type":"relationship","id":"7524","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9605","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1913/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1913","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1913/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1913/committees?format=json","policyArea.name":"Commerce","type":"HR","title":"To provide for a limitation on availability of funds for Library of Congress, Copyright Office Salaries and Expenses for fiscal year 2024.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1913","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1913/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1913/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1913/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1913/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1913/relatedbills?format=json","latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1913?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1913.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:22:55Z"}}} +{"type":"relationship","id":"7525","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9503","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-02T20:21:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3222","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3222/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/s/3222/committees?format=json","policyArea.name":"Congress","type":"S","title":"A bill to ensure the security of office space rented by Senators, and for other purposes.","latestAction.text":"Became Public Law No: 118-36.","sponsors.0.party":"D","number":"3222","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3222/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3222/titles?format=json","laws.0.number":"118-36","summaries.url":"https://api.congress.gov/v3/bill/118/s/3222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3222/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3222/relatedbills?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3222?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-02T20:21:22Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7526","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9634","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1366/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7527","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9682","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/760/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"760","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/760/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/760/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Healthy Food Financing Initiative Reauthorization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"760","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/760/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/760/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/760/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/760/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/760/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/760?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7528","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"9539","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1815/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1815","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1815/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1815/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Filing Relief for Natural Disasters Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1815","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1815/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1815/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1815/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1815/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1815/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-06-06","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1815?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"7529","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9343","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2022-10-24T20:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 543.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1009","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1009/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/1009/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1009/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-28","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-192","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1009/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1009","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1009/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1009/committees?format=json","title":"A bill to authorize the posthumous honorary promotion to general of Lieutenant General Frank Maxwell Andrews, United States Army.","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 14, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58590","request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/192?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1009/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1009/summaries?format=json","cboCostEstimates.0.title":"S. 1009, Homeland Procurement Reform Act","introducedDate":"2023-03-28","subjects.count":2,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1009?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7530","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"21","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10499/text?format=json","updateDate":"2025-01-26T05:23:19Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"10499","sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","latestAction_text":"Referred to the House Committee on Homeland Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10499/committees?format=json","type":"HR","title":"CBP Canine Home Kenneling Pilot Act","latestAction.text":"Referred to the House Committee on Homeland Security.","sponsors.0.party":"D","number":"10499","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10499/cosponsors?format=json","sponsors.0.bioguideId":"M001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10499/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10499/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10499?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-26T05:23:19Z"}}} +{"type":"relationship","id":"7531","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9705","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/431/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"431","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/431/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/431/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"UNRWA Accountability and Transparency Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"431","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/431/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/431/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/431/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/431/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/431/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":24,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/431?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7532","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"82","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2614/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"2614","sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2614/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2614/subjects?format=json","policyArea.name":"Social Welfare","type":"HR","title":"Working Families Task Force Act of 2023","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"D","number":"2614","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2614/cosponsors?format=json","sponsors.0.bioguideId":"M001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2614/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2614/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2614/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","titles.count":3,"introducedDate":"2023-04-13","cosponsors.count":16,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2614?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 62 (Thursday, April 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MENENDEZ:\nH.R. 2614.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo establish a national task force to expand opportunities\nand improve the standard of living for working families in\nAmerica.\n[Page H1728]\n","sponsors.0.district":8,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7533","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"432","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6449/text?format=json","updateDate":"2024-10-17T14:36:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"6449","sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6449/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6449/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Providing Robust Organics and Diets for Urban Communities Everywhere Act","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"D","number":"6449","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6449/cosponsors?format=json","sponsors.0.bioguideId":"M001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6449/actions?format=json","latestAction.actionDate":"2023-11-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","titles.count":3,"introducedDate":"2023-11-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6449?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 191 (Friday, November 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MENENDEZ:\nH.R. 6449.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nincreases discretionary funding for the Office of Urban\nAgriculture and Innovative Production\n[Page H5900]\n","sponsors.0.district":8,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-31T17:27:13Z"}}} +{"type":"relationship","id":"7534","label":"SPONSORED","start":{"id":"4102","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/m001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Menendez, Robert","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/M001226?format=json","bioguideId":"M001226"}},"end":{"id":"9051","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4037/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Menendez","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Trade.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4037/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4037","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRADY:\nH.R. 4037.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1 Section 8\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4037/cosponsors?format=json","sponsors.0.bioguideId":"M001226","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4037/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4037/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Menendez, Robert [D-NJ-8]","bill.sponsors.0.bioguideId":"B000755","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Trade.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4037/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brady, Kevin [R-TX-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4037/text?format=json","bill.updateDate":"2025-01-03T05:08:58Z","updateDate":"2024-07-24T15:21:36Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4037/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001226?format=json","request.billNumber":"4037","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4037/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4037/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:08:58Z","title":"Airline Employee Assault Prevention Act","bill.title":"Trade Preferences and American Manufacturing Competitiveness Act of 2021","bill.number":"4037","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4037/committees?format=json","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4037/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4037/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000755?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"KEVIN","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4037/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4037/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4037?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\n[Pages H2810-H2811]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MENENDEZ:\nH.R. 4037.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H2811]]\nArticle 1, Section 8\nThe single subject of this legislation is:\ncorrects a jurisdictoinal issue to prevent airline employee\nassault.\n","sponsors.0.district":8,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":8,"sponsors.0.firstName":"Robert","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:36Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4037/text?format=json","bill.sponsors.0.lastName":"BRADY"}}} +{"type":"relationship","id":"7535","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"26","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10484/text?format=json","updateDate":"2025-01-25T04:53:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gottheimer","sponsors.0.isByRequest":"N","request.billNumber":"10484","sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10484/committees?format=json","type":"HR","title":"SEARCH Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10484","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10484/cosponsors?format=json","sponsors.0.bioguideId":"G000583","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10484/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10484/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","titles.count":4,"introducedDate":"2024-12-18","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10484?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-25T04:53:18Z"}}} +{"type":"relationship","id":"7536","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4709/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gottheimer","sponsors.0.isByRequest":"N","request.billNumber":"4709","sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4709/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"U.S.-Israel Anti-Killer Drone Act of 2023","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"4709","cosponsors.countIncludingWithdrawnCosponsors":48,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4709/cosponsors?format=json","sponsors.0.bioguideId":"G000583","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4709/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4709/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4709/actions?format=json","latestAction.actionDate":"2023-07-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":48,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4709?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 4709.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all laws that\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all powers vested by this Constitution\nin the government of the United States, or in any department\nor officer thereof.\nThe single subject of this legislation is:\nForeign Affairs\n[Page H3701]\n","sponsors.0.district":5,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2024-11-09T01:57:48Z"}}} +{"type":"relationship","id":"7537","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9722","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","policyArea.name":"Health","type":"HR","title":"Defund Planned Parenthood Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}}} +{"type":"relationship","id":"7538","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9308","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-350.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4120","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4120/cosponsors?format=json","sponsors.0.bioguideId":"C001070","laws.0.number":"117-350","actions.url":"https://api.congress.gov/v3/bill/118/s/4120/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4120/relatedbills?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4120/amendments?format=json","titles.count":3,"cosponsors.count":25,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4120/text?format=json","updateDate":"2024-11-09T01:28:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4120","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4120/subjects?format=json","title":"Long-Term Care Workforce Support Act","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4120/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4120/summaries?format=json","introducedDate":"2024-04-15","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4120?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-11-09T01:28:27Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7539","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"8558","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gottheimer","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9415/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9415","sponsors":[],"sponsors.0.bioguideId":"G000583","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9415/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9415/text?format=json","bill.updateDate":"2025-01-03T08:05:03Z","updateDate":"2024-11-15T15:54:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9415/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","request.billNumber":"9415","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9415/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9415/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:03Z","title":"To amend title 38, United States Code, to require that domiciliary facilities of the Department of Veterans Affairs and State homes that provide housing to veterans have resident advocates.","bill.title":"SHIELD Act","bill.number":"9415","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9415/committees?format=json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9415/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9415/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9415/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9415/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9415?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 9415.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend title 38, United States Code, to require that\ndomiciliary facilities of the Department of Veterans Affairs\nand State homes that provide housing to veterans have\nresident advocates.\n[Page H5016]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-11-15T15:54:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9415/text?format=json","bill.sponsors.0.lastName":"Neguse"}}} +{"type":"relationship","id":"7540","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"8559","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gottheimer","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9416/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9416","sponsors":[],"sponsors.0.bioguideId":"G000583","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9416/actions?format=json","latestAction.actionDate":"2024-08-27","textVersions.count":1,"bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","bill.sponsors.0.bioguideId":"P000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perlmutter, Ed [D-CO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9416/text?format=json","bill.updateDate":"2024-02-07T11:39:48Z","updateDate":"2024-11-12T14:18:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9416/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","request.billNumber":"9416","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9416/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9416/committees?format=json","bill.updateDateIncludingText":"2024-02-07T11:39:48Z","title":"SAFE Act","bill.title":"To establish an allowance to provide a housing stipend for Members of the House of Representatives.","bill.number":"9416","bill.sponsors.0.isByRequest":"N","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9416/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9416/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9416/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000593?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9416/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9416/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9416?format=json","bill.introducedDate":"2022-12-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 9416.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nThe SAFE Act recognizes the right to assisted reproductive\ntechnology and limits liability for certain actions committed\nduring the course of providing assisted reproductive\ntechnology.\n[Page H5016]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-11-12T14:18:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9416/text?format=json","bill.sponsors.0.lastName":"Perlmutter"}}} +{"type":"relationship","id":"7541","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"9027","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4371/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Carter","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4371/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4371","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 4371.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\n[Page H3611]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4371/cosponsors?format=json","sponsors.0.bioguideId":"C001125","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4371/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-30","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Carter, Troy [D-LA-2]","bill.sponsors.0.bioguideId":"U000040","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4371/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4371/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001125?format=json","request.billNumber":"4371","committees.url":"https://api.congress.gov/v3/bill/118/hr/4371/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4371/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"School Sports Safety Study Act","bill.title":"Chronic Condition Copay Elimination Act","bill.number":"4371","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4371/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4371/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4371/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","introducedDate":"2023-06-27","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":3,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"LA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4371/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4371/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4371?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARTER of Louisiana:\nH.R. 4371.\nCongress has the power to enact this legislation pursuant\nto the following:\nthe Spending Clause, Article 1, Section 8, Cl. 1 and the\nNecessary and Proper Clause, Article I, Section 8, Cl. 18.\nThe single subject of this legislation is:\nSchool sports safety.\n[Page H3152]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":14,"sponsors.0.firstName":"Troy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4371/text?format=json","bill.sponsors.0.lastName":"Underwood"}}} +{"type":"relationship","id":"7542","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"9156","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2439/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Neguse","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2439/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2439","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 2439.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2439/cosponsors?format=json","sponsors.0.bioguideId":"N000191","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2439/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2439/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","bill.sponsors.0.bioguideId":"U000040","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":67,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2439/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2439/text?format=json","bill.updateDate":"2025-01-03T04:56:06Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2439/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","request.billNumber":"2439","committees.url":"https://api.congress.gov/v3/bill/118/hr/2439/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2439/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:06Z","title":"Ally’s Act","bill.title":"SALT Fairness for Working Families Act","bill.number":"2439","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":67,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2439/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2439/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2439/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Lauren","sponsors.0.state":"CO","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2439/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2439/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2439?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 2439.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo require the coverage of hearing devices and systems in\ncertain private health insurance plans.\n[Page H1695]\n","sponsors.0.district":2,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":14,"sponsors.0.firstName":"Joe","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2439/text?format=json","bill.sponsors.0.lastName":"Underwood"}}} +{"type":"relationship","id":"7543","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9718","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2023-04-17T17:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Committee on Veterans' Affairs. Ordered to be reported with an amendment in the nature of a substitute favorably.","sponsors.0.party":"D","number":"132","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/132/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/132/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/132/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/132/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"132","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/132/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/132/committees?format=json","title":"Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59068","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/132/summaries?format=json","cboCostEstimates.0.title":"S. 132, Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","introducedDate":"2023-01-30","subjects.count":15,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/132?format=json","updateDateIncludingText":"2025-01-14T17:05:14Z","sponsors.0.firstName":"Sherrod"}}} +{"type":"relationship","id":"7544","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"10026","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1775-1776; text: CR S1775)","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":44,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-24","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7545","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"9280","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/603/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gottheimer","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Education","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/603/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"C. \"Bobby\"","number":"603","bill.cosponsors.countIncludingWithdrawnCosponsors":202,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCOTT of Virginia:\nH.R. 603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/603/cosponsors?format=json","sponsors.0.bioguideId":"G000583","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/603/actions?format=json","latestAction.actionDate":"2023-01-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/603/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Gottheimer, Josh [D-NJ-5]","bill.sponsors.0.bioguideId":"S000185","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":183,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/603/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Scott, Robert C. \"Bobby\" [D-VA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/603/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/603/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000583?format=json","request.billNumber":"603","committees.url":"https://api.congress.gov/v3/bill/118/hr/603/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/603/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"HEAL Act","bill.title":"Raise the Wage Act of 2021","bill.number":"603","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":183,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/603/committees?format=json","sponsors.0.middleName":"C. \"Bobby\"","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/603/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/603/summaries?format=json","bill.cosponsors.count":202,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000185?format=json","introducedDate":"2023-01-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/603/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/603/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/603?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 18 (Friday, January 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOTTHEIMER:\nH.R. 603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all laws that\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all powers vested by this Constitution\nin the government of the United States, or in any department\nor officer thereof.\n[Page H490]\n","sponsors.0.district":5,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/603/text?format=json","bill.sponsors.0.lastName":"Scott"}}} +{"type":"relationship","id":"7546","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9960","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/874/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T16:59:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"874","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7305; text: CR S7312-7313)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/874/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/874/committees?format=json","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","latestAction.text":"Sponsor introductory remarks on measure. (CR H5940-5941)","sponsors.0.party":"D","number":"874","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/874/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/874/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/874/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/874/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/874/relatedbills?format=json","latestAction.actionDate":"2023-11-29","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":37,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/874?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-06T16:59:43Z"}}} +{"type":"relationship","id":"7547","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9385","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3769/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"3769","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3769/subjects?format=json","policyArea.name":"Families","type":"S","title":"Alternative Pathways to Child Abuse Prevention Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3769","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3769/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3769/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3769/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-08","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-02-08","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3769?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7548","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"33","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10472/text?format=json","updateDate":"2025-01-25T05:08:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Brecheen","sponsors.0.isByRequest":"N","request.billNumber":"10472","sponsors.0.url":"https://api.congress.gov/v3/member/B001317?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10472/committees?format=json","type":"HR","title":"Quapaw Tribal Settlement Act of 2024","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"R","number":"10472","request.format":"json","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"B001317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10472/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10472/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Rep. Brecheen, Josh [R-OK-2]","titles.count":3,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10472?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-25T05:08:24Z"}}} +{"type":"relationship","id":"7549","label":"SPONSORED","start":{"id":"4086","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001317_200.jpg","district":"2","startYear":"2023","name":"Brecheen, Josh","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B001317?format=json","bioguideId":"B001317"}},"end":{"id":"8659","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brecheen","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9080/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9080","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9080/cosponsors?format=json","sponsors.0.bioguideId":"B001317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9080/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Brecheen, Josh [R-OK-2]","bill.sponsors.0.bioguideId":"S000929","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":17,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Spartz, Victoria [R-IN-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9080/text?format=json","bill.updateDate":"2025-01-03T08:02:21Z","updateDate":"2024-09-19T19:10:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9080/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001317?format=json","request.billNumber":"9080","committees.url":"https://api.congress.gov/v3/bill/118/hr/9080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9080/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:21Z","title":"Secret Service Readiness Act of 2024","bill.title":"Non-Profit Hospital Tax Exemption Transparency Act","bill.number":"9080","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":17,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9080/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9080/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9080/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000929?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Victoria","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9080/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9080/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9080?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRECHEEN:\nH.R. 9080.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nTo direct the Director of the United States Secret Service\nto implement a uniform fitness standard for Secret Service\nSpecial Agents and Uniformed Division Officers.\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":2,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":5,"sponsors.0.firstName":"Josh","bill.type":"HR","updateDateIncludingText":"2024-09-19T19:10:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9080/text?format=json","bill.sponsors.0.lastName":"Spartz"}}} +{"type":"relationship","id":"7550","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"34","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10496/text?format=json","updateDate":"2025-01-30T14:06:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"10496","sponsors.0.url":"https://api.congress.gov/v3/member/L000602?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10496/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10496/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"True Justice Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10496","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10496/cosponsors?format=json","sponsors.0.bioguideId":"L000602","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10496/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10496/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Lee, Summer L. [D-PA-12]","titles.count":3,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10496?format=json","sponsors.0.district":12,"sponsors.0.firstName":"Summer","updateDateIncludingText":"2025-01-30T14:06:07Z"}}} +{"type":"relationship","id":"7551","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9735","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-01-26","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"7552","label":"SPONSORED","start":{"id":"4082","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000602_200.jpg","district":"12","startYear":"2023","name":"Lee, Summer L.","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/L000602?format=json","bioguideId":"L000602"}},"end":{"id":"155","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9998/text?format=json","relatedBills.count":1,"updateDate":"2024-12-24T09:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"9998","sponsors.0.url":"https://api.congress.gov/v3/member/L000602?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9998/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9998/committees?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Rail Bridge Safety and Transparency Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"9998","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-10-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9998/cosponsors?format=json","sponsors.0.bioguideId":"L000602","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9998/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9998/actions?format=json","latestAction.actionDate":"2024-10-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9998/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Lee, Summer L. [D-PA-12]","titles.count":3,"introducedDate":"2024-10-18","cosponsors.count":24,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9998?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 157 (Friday, October 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of Pennsylvania:\nH.R. 9998.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nTransportation and Public Works\n[Page H5878]\n","sponsors.0.district":12,"sponsors.0.firstName":"Summer","updateDateIncludingText":"2024-12-24T09:05:29Z"}}} +{"type":"relationship","id":"7553","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"36","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10492/text?format=json","updateDate":"2025-01-26T05:18:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"10492","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10492/committees?format=json","type":"HR","title":"To amend the Act of August 9, 1955 (commonly known as the \"Long-Term Leasing Act\"), to authorize leases of up to 99 years for land held in trust for the Mashpee Wampanoag Tribe and the Wampanoag Tribe of Gay Head (Aquinnah), and for other purposes.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"10492","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"K000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10492/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10492/actions?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":2,"introducedDate":"2024-12-18","request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10492?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2025-01-26T05:18:17Z"}}} +{"type":"relationship","id":"7554","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"780","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1132/text?format=json","updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"1132","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1132/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Transparent and Accessible Sanctions Coordinating Office Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1132","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1132/cosponsors?format=json","sponsors.0.bioguideId":"K000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1132/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":3,"introducedDate":"2023-02-21","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1132?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:22:51Z"}}} +{"type":"relationship","id":"7555","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"1457","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1132/text?format=json","updateDate":"2024-07-24T15:22:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"1132","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1132/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1132/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Transparent and Accessible Sanctions Coordinating Office Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1132","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-04-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1132/cosponsors?format=json","sponsors.0.bioguideId":"K000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1132/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1132/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":3,"introducedDate":"2023-02-21","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1132?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:22:51Z"}}} +{"type":"relationship","id":"7556","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"9918","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/274/text?format=json","updateDate":"2024-07-24T15:18:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Keating","sponsors.0.isByRequest":"N","request.billNumber":"274","sponsors.0.url":"https://api.congress.gov/v3/member/K000375?format=json","latestAction_text":"Motion to Discharge Committee filed by Mrs. Cammack. Petition No: 117-1. (Discharge petition text with signatures.)","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/274/committees?format=json","type":"HRES","title":"Calling on major United States companies still operating in the Russian Federation to reconsider their continued presence given Russia's full-scale invasion of Ukraine.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"274","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-04-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/274/cosponsors?format=json","sponsors.0.bioguideId":"K000375","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/274/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/274/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/274/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-03","sponsors.0.fullName":"Rep. Keating, William R. [D-MA-9]","titles.count":2,"introducedDate":"2023-04-03","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/274?format=json","sponsors.0.district":9,"sponsors.0.firstName":"William","updateDateIncludingText":"2024-07-24T15:18:54Z"}}} +{"type":"relationship","id":"7557","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"43","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3068/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:05:45Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"3068","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3068/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3068/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Equal Health Care for All Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3068","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3068/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3068/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3068/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3068/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3068/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-05-02","cosponsors.count":21,"request.contentType":"application/json","subjects.count":22,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3068?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 74 (Tuesday, May 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 3068.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article I, Section 8,\nclause 18 of the United States Constitution\nThe single subject of this legislation is:\nto enusre the provision of equitable health care services\n[Page H2128]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-12-20T09:05:45Z"}}} +{"type":"relationship","id":"7558","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"276","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"SCHIFF","cboCostEstimates.0.pubDate":"2023-07-21T17:50:12Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"1687","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1687/cosponsors?format=json","sponsors.0.bioguideId":"S001150","actions.url":"https://api.congress.gov/v3/bill/118/hr/1687/actions?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":3,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":2,"cosponsors.count":50,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1687/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":12,"request.billNumber":"1687","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1687/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1687/subjects?format=json","title":"To designate the facility of the United States Postal Service located at 6444 San Fernando Road in Glendale, California, as the \"Paul Ignatius Post Office\".","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":50,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59413","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-06-04","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1687/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1687/summaries?format=json","cboCostEstimates.0.title":"H.R. 1687, a bill to designate the facility of the United States Postal Service located at 6444 San Fernando Road in Glendale, California, as the “Paul Ignatius Post Office”","introducedDate":"2023-03-21","subjects.count":6,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1687?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 1687.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 7\nThe single subject of this legislation is:\nPostal\n[Page H1302]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-02-04T17:04:03Z"}}} +{"type":"relationship","id":"7559","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"463","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5815/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5815","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5815/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5815/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Head Start Expansion and Improvement Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5815","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5815/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5815/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5815/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5815/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5815?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5815.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V of the United States Constitution\nThe single subject of this legislation is:\nHead Start and Early Head Start\n[Page H4856]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7560","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"476","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5816/text?format=json","updateDate":"2024-06-11T16:02:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5816","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5816/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5816/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Eviction Protection Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"5816","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5816/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5816/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5816/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H4856]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-06-11T16:02:39Z"}}} +{"type":"relationship","id":"7561","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"9068","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3774/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 240.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3774","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3774/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3774/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-11-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3774/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":8,"cosponsors.count":241,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3774/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:18:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3774/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":16,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3774","committees.url":"https://api.congress.gov/v3/bill/118/hr/3774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3774/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SHIP Act","bill.title":"Advancing Gig Economy Act","bill.number":"3774","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":241,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3774/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3774/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3774/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3774/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3774/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3774?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo impose additional sanctions with respect to the\nimportation or facilitation of the importation of petroleum\nproducts from Iran, and for other purposes.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-08-09T16:27:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3774/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"7562","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"9069","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3773","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8 Clause 3--Commerce clause\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3773/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3773/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3773/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3773/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Stop Anti-Semitism on College Campuses Act","bill.title":"PACT Act of 2021","bill.number":"3773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3773/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3773/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3773?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to prohibit\ninstitutions of higher education that authorize Anti-Semitic\nevents on campus from participating in the student loan and\ngrant programs under title IV of such Act.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3773/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"7563","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"9242","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1141/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 8.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1141","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution.\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1141/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1141/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1141/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":41,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1141/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-15","bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1141/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1141/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"1141","committees.url":"https://api.congress.gov/v3/bill/118/hr/1141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1141/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Natural Gas Tax Repeal Act","bill.title":"Broadband Competition and Efficient Deployment Act","bill.number":"1141","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":41,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1141/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/15?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1141/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1141/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"John","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1141/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1141/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1141?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing the natural gas tax.\n[Page H868]\n","sponsors.0.district":11,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1141/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"7564","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"9312","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-346.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3773","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8 Clause 3--Commerce clause\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3773/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3773/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3773/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3773/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Stop Anti-Semitism on College Campuses Act","bill.title":"PACT Act of 2021","bill.number":"3773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3773/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3773/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3773?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to prohibit\ninstitutions of higher education that authorize Anti-Semitic\nevents on campus from participating in the student loan and\ngrant programs under title IV of such Act.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3773/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"7565","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"477","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5814/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5814","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5814/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5814/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Affordable Housing Stability During Shutdowns Act of 2023","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"D","number":"5814","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5814/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5814/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5814/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5814?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5814.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H4856]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-07-24T15:20:13Z"}}} +{"type":"relationship","id":"7566","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"9790","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/86/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"86","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/86/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/86/committees?format=json","policyArea.name":"Congress","type":"S","title":"Members of Congress Pension Opt Out Clarification Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"86","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/86/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/86/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/86/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/86/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/86/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/86?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.J. Res. 86.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 7\n[Page H4723]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7567","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4390/text?format=json","updateDate":"2025-01-14T20:56:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"4390","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4390/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4390/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Housing Navigators Act of 2023","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"D","number":"4390","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-06-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4390/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4390/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4390/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":18,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4390?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 4390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H3153]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2025-01-14T20:56:18Z"}}} +{"type":"relationship","id":"7568","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9350","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Fry","cboCostEstimates.0.pubDate":"2022-11-21T16:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 534.","policyArea.name":"Crime and Law Enforcement","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3141","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3141/cosponsors?format=json","sponsors.0.bioguideId":"F000478","actions.url":"https://api.congress.gov/v3/bill/118/hr/3141/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3141/relatedbills?format=json","latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. Fry, Russell [R-SC-7]","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-183","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3141/text?format=json","updateDate":"2024-07-24T15:22:17Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"3141","sponsors.0.url":"https://api.congress.gov/v3/member/F000478?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3141/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3141/committees?format=json","title":"Targeting Child Predators Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58818","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-10-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/183?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3141/summaries?format=json","cboCostEstimates.0.title":"S. 3141, New Philadelphia National Historical Park Act","introducedDate":"2023-05-09","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FRY:\nH.R. 3141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nPreventing child exploitation\n[Page H2173]\n","sponsors.0.district":7,"sponsors.0.firstName":"Russell","updateDateIncludingText":"2024-07-24T15:22:17Z"}}} +{"type":"relationship","id":"7569","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9669","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1029/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"1029","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1029/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Protecting Military Servicemembers' Data Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1029","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1029/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1029/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1029/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1029/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1029/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-03-29","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1029?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7570","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4391/text?format=json","updateDate":"2024-07-25T08:05:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"4391","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4391/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4391/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Equal Access to Reproductive Care Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"4391","cosponsors.countIncludingWithdrawnCosponsors":54,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4391/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4391/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4391/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4391/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":54,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4391?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 112 (Tuesday, June 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 4391.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTax\n[Page H3153]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-07-25T08:05:39Z"}}} +{"type":"relationship","id":"7571","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"931","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5176/text?format=json","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5176","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5176/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Affordable and Homeless Housing Incentives Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"D","number":"5176","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-09-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5176/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5176/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5176/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5176/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":3,"introducedDate":"2023-08-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5176?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H4172]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-07-24T15:20:39Z"}}} +{"type":"relationship","id":"7572","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"932","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5175/text?format=json","updateDate":"2024-08-14T08:05:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"SCHIFF","sponsors.0.isByRequest":"N","request.billNumber":"5175","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5175/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5175/committees?format=json","policyArea.name":"Emergency Management","title":"PETSAFE Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"5175","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2024-09-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5175/cosponsors?format=json","sponsors.0.bioguideId":"S001150","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5175/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5175/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5175/actions?format=json","latestAction.actionDate":"2023-08-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":4,"introducedDate":"2023-08-08","cosponsors.count":34,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5175?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5175.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEmergency Preparedness\n[Page H4172]\n","sponsors.0.district":28,"sponsors.0.firstName":"ADAM","updateDateIncludingText":"2024-08-14T08:05:31Z"}}} +{"type":"relationship","id":"7573","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"9086","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3501/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3501","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 3501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3501/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3501/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3501/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"G000558","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3501/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3501/text?format=json","bill.updateDate":"2025-01-03T05:05:06Z","updateDate":"2024-07-23T08:06:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3501/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"3501","committees.url":"https://api.congress.gov/v3/bill/118/hr/3501/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3501/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:06Z","title":"Law Enforcement Training for Mental Health Crisis Response Act of 2023","bill.title":"To amend the Harmonized Tariff Schedule of the United States to provide for permanent duty-free treatment on imports of basketballs.","bill.number":"3501","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3501/committees?format=json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3501/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3501/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brett","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3501/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3501/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3501?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 3501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, to provide for the common defense\nThe single subject of this legislation is:\nDefense\n[Page H2458]\n","sponsors.0.district":9,"bill.sponsors.0.state":"KY","bill.sponsors.0.district":2,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2024-07-23T08:06:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3501/text?format=json","bill.sponsors.0.lastName":"Guthrie"}}} +{"type":"relationship","id":"7574","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8521","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schiff","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9706/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9706","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9706/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9706/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9706/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-19","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-28]","bill.sponsors.0.bioguideId":"B001281","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9706/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beatty, Joyce [D-OH-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9706/text?format=json","bill.updateDate":"2025-01-03T08:09:23Z","updateDate":"2024-12-16T19:14:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9706/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"9706","subjects.url":"https://api.congress.gov/v3/bill/117/hr/9706/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9706/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:09:23Z","title":"CARE Act","bill.title":"Ensuring Diverse Leadership Act of 2022","bill.number":"9706","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9706/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9706/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9706/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001281?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joyce","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9706/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9706/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9706?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BEATTY:\nH.R. 9706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":28,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":3,"sponsors.0.firstName":"Adam","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9706/text?format=json","bill.sponsors.0.lastName":"Beatty"}}} +{"type":"relationship","id":"7575","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9731","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/118/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"118","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/118/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/118/committees?format=json","type":"HR","title":"No Vaccine Passports Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"118","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/118/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/118/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/118/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/118/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/118/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/118?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 118.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7576","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8524","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Schiff","bill.latestAction.actionDate":"2023-01-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Families","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9707/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9707","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9707/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9707/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-19","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-28]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9707/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-16T19:14:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9707/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"9707","subjects.url":"https://api.congress.gov/v3/bill/117/hr/9707/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9707/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Transnational Repression Reporting Act of 2024","bill.title":"MOM Act","bill.number":"9707","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9707/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2023-01-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9707/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9707/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-09-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9707/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9707/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9707?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 204 (Tuesday, January 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOHMERT:\nH.R. 9707.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H10550]\n","bill.introducedDate":"2023-01-03","sponsors.0.district":28,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Adam","bill.type":"HR","updateDateIncludingText":"2024-12-16T19:14:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9707/text?format=json","bill.sponsors.0.lastName":"Gohmert"}}} +{"type":"relationship","id":"7577","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8807","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7121/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7121/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7121","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 48 (Thursday, March 17, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLAGHER:\nH.R. 7121.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Interstate Commerce Clause: Clause 3 of Section 8 of\nArticle I.\n[Page H3828]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7121/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7121/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7121/relatedbills?format=json","latestAction.actionDate":"2024-01-29","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"G000579","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7121/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gallagher, Mike [R-WI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7121/text?format=json","bill.updateDate":"2025-01-03T07:44:45Z","updateDate":"2024-09-20T13:59:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7121/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"7121","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7121/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7121/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:44:45Z","title":"Financial Regulators Revolving Door Enforcement Act","bill.title":"Protecting our Pharmaceutical Supply Chain from China Act of 2022","bill.number":"7121","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7121/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7121/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7121/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000579?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-01-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7121/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7121/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7121?format=json","bill.introducedDate":"2022-03-17","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 16 (Monday, January 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 7121.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nFinancial Services\n[Page H272]\n","sponsors.0.district":28,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":8,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-09-20T13:59:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7121/text?format=json","bill.sponsors.0.lastName":"Gallagher"}}} +{"type":"relationship","id":"7578","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"9090","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1297/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 1297, Air America Act of 2021","bill.textVersions.count":1,"sponsors.0.lastName":"Jackson","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2021-09-24T20:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1297/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1297","bill.cosponsors.countIncludingWithdrawnCosponsors":235,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1297.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H617]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1297/cosponsors?format=json","sponsors.0.bioguideId":"J000304","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1297/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1297/relatedbills?format=json","latestAction.actionDate":"2023-03-01","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","bill.sponsors.0.bioguideId":"G000576","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":80,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-09-24T20:18:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1297/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1297/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-09T04:42:21Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1297/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","request.billNumber":"1297","committees.url":"https://api.congress.gov/v3/bill/118/hr/1297/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1297/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"To amend title 10, United States Code, to prohibit the Secretary of Defense from paying or reimbursing expenses relating to abortion services, and for other purposes.","bill.title":"Air America Act of 2021","bill.number":"1297","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":80,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57501","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1297/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1297/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1297/summaries?format=json","bill.cosponsors.count":230,"cboCostEstimates.0.title":"H.R. 1297, Air America Act of 2021","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","introducedDate":"2023-03-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Glenn","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1297/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1297/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1297?format=json","bill.introducedDate":"2021-02-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 1297.\n=========================== NOTE ===========================\nOn page H1051, March 1, 2023, the following appeared: By Mr.\nJACKSON: H.R. 1297.\nThe online version has been corrected to read: By Mr. JACKSON of\nTexas: H.R. 1297.\n========================= END NOTE =========================\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nProhibiting the Department of Defense from paying for\nexpenses relating to abortion services.\n[Page H1051]\n","sponsors.0.district":13,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":6,"sponsors.0.firstName":"Ronny","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:42:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1297/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57501","bill.sponsors.0.lastName":"Grothman"}}} +{"type":"relationship","id":"7579","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9610","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1902/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1902","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/1902/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1902/subjects?format=json","title":"Hydrogen Aviation Strategy Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1902","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1902/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1902/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1902/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1902/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1902/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1902?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7580","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9516","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2974/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"2974","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2974/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2974/committees?format=json","policyArea.name":"Education","type":"S","title":"Pregnant Students’ Rights Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2974","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2974/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2974/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2974/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2974/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2974/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":7,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2974?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7581","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9679","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2023-04-19T19:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-97.","sponsors.0.party":"R","number":"679","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/679/cosponsors?format=json","sponsors.0.bioguideId":"S001217","laws.0.number":"118-97","actions.url":"https://api.congress.gov/v3/bill/118/s/679/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/679/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-25","textVersions.url":"https://api.congress.gov/v3/bill/118/s/679/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"679","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/679/committees?format=json","title":"GAO Database Modernization Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59087","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/25?format=json","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/679/summaries?format=json","cboCostEstimates.0.title":"S. 679, GAO Database Modernization Act of 2023","introducedDate":"2023-03-07","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/679?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7582","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9694","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"446","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/446/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/446/committees?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Trading System Preservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"446","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/446/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/446/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/446/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/446?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-07-24T15:23:45Z"}}} +{"type":"relationship","id":"7583","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"9686","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/757/text?format=json","updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"757","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/757/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/757/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Kids from Candy-Flavored Drugs Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"757","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/757/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/757/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/757/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/757/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/757/relatedbills?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/757?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 757.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact thIs\nlegislation is provided by Article 1, section 8 of the United\nStatos Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carring out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nTo amend the Controlled Substanes Act to prohibit\nmanufacturing or distributing candy-flavored controlled\nsubstances for mInors, and for other purposes.\n[Page H680]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:23:51Z"}}} +{"type":"relationship","id":"7584","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9354","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4872/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4872","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Housing, Transportation, and Community Development. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4872/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4872/committees?format=json","policyArea.name":"Sports and Recreation","title":"WAGER Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4872","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4872/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4872/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4872/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4872?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T18:59:41Z"}}} +{"type":"relationship","id":"7585","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8899","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5816/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5816/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5816","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5816/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5816/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"G000552","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5816/text?format=json","bill.updateDate":"2025-01-03T07:33:45Z","updateDate":"2024-06-11T16:02:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5816/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5816","committees.url":"https://api.congress.gov/v3/bill/118/hr/5816/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5816/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:45Z","title":"Eviction Protection Act of 2023","bill.title":"National Informed Consent Exemption (NICE) Act","bill.number":"5816","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5816/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","sponsors.0.middleName":"B.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5816/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5816/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5816/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5816/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nHousing\n[Page H4856]\n","bill.introducedDate":"2021-11-02","sponsors.0.district":28,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-06-11T16:02:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5816/text?format=json","bill.sponsors.0.lastName":"Gohmert"}}} +{"type":"relationship","id":"7586","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9707","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/430/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"430","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/430/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/430/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to provide authority to enter into a cooperative agreement to protect civilians in Iraq and the Arabian Peninsula from weaponized unmanned aerial systems.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"430","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/430/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/430/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/430/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/430/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/430/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/430?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7587","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8960","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5158/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"International Affairs","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5158/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5158","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 5158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5158/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5158/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5158/relatedbills?format=json","latestAction.actionDate":"2023-08-04","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"C001121","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5158/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5158/text?format=json","bill.updateDate":"2025-01-03T07:27:38Z","updateDate":"2024-08-30T15:16:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5158/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5158","committees.url":"https://api.congress.gov/v3/bill/118/hr/5158/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5158/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:38Z","title":"Accountability for Endless Wars Act of 2023","bill.title":"Accurate Data for Defense (ADD) Resiliency Act","bill.number":"5158","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5158/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5158/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5158/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5158/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5158/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5158?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5158.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nForeign policy\n[Page H4166]\n","sponsors.0.district":28,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-30T15:16:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5158/text?format=json","bill.sponsors.0.lastName":"Crow"}}} +{"type":"relationship","id":"7588","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8961","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5175/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Emergency Management","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5175/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"5175","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SUOZZI:\nH.R. 5175\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5175/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5175/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5175/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-09","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"S001201","bill.actions.count":3,"bill.originChamber":"House","titles.count":4,"cosponsors.count":34,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5175/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Suozzi, Thomas R. [D-NY-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5175/text?format=json","bill.updateDate":"2025-01-03T07:27:40Z","updateDate":"2024-08-14T08:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5175/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5175","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5175/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5175/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:40Z","title":"PETSAFE Act of 2023","bill.title":"Incentivizing Solar Deployment Act of 2021","bill.number":"5175","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5175/committees?format=json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5175/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5175/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001201?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5175/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5175/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5175?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5175.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEmergency Preparedness\n[Page H4172]\n","sponsors.0.district":28,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":3,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-14T08:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5175/text?format=json","bill.sponsors.0.lastName":"Suozzi"}}} +{"type":"relationship","id":"7589","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9988","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/631/text?format=json","updateDate":"2024-07-24T15:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Veasey","sponsors.0.isByRequest":"N","request.billNumber":"631","sponsors.0.url":"https://api.congress.gov/v3/member/V000131?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S2495)","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/hres/631/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/631/subjects?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"D","number":"631","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","summaries.count":1,"sponsors.0.bioguideId":"V000131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/631/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/631/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/631/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-28","sponsors.0.fullName":"Rep. Veasey, Marc A. [D-TX-33]","titles.count":2,"introducedDate":"2023-07-27","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/631?format=json","sponsors.0.district":33,"sponsors.0.firstName":"Marc","updateDateIncludingText":"2024-07-24T15:21:20Z"}}} +{"type":"relationship","id":"7590","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"8966","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5176/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5176","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of California:\nH.R. 5176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5176/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5176/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"T000460","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Mike [D-CA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5176/text?format=json","bill.updateDate":"2025-01-03T07:27:46Z","updateDate":"2024-07-24T15:20:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5176/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"5176","committees.url":"https://api.congress.gov/v3/bill/118/hr/5176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5176/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:46Z","title":"Affordable and Homeless Housing Incentives Act of 2023","bill.title":"Local Food Production Enhancement Act of 2021","bill.number":"5176","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5176/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5176/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5176/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000460?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"MIKE","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5176/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5176/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5176?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 5176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H4172]\n","sponsors.0.district":28,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":5,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5176/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}}} +{"type":"relationship","id":"7591","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"9021","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3534/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Law","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3534/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3534","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 3534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3534/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":37,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3534/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3534/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"P000613","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3534/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3534/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-03T08:06:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3534/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"3534","committees.url":"https://api.congress.gov/v3/bill/118/hr/3534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3534/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Justice is BLIND Act of 2023","bill.title":"Wildfire Emergency Act of 2021","bill.number":"3534","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3534/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3534/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3534/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"CA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3534/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3534/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3534?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 3534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nJudiciary\n[Page H2459]\n","sponsors.0.district":28,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2024-08-03T08:06:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3534/text?format=json","bill.sponsors.0.lastName":"Panetta"}}} +{"type":"relationship","id":"7592","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"10014","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1845; text: 3/23/2021 CR S1713)","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7593","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"10022","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/136/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"136","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1831-1832)","subjects.url":"https://api.congress.gov/v3/bill/118/s/136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/136/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"ISA Student Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"136","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/136/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/136/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/136/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/136?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"7594","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10036","labels":["Order"],"properties":{"date_enacted":"2025-02-25","date_repealed":"None","description":"nan","id":"EO 14220","title":"Addressing the Threat to National Security From Imports of Copper","url":"https://www.federalregister.gov/d/2025-03439"}}} +{"type":"relationship","id":"7595","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"9147","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2786/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"SCHIFF","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2786/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2786","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 2786.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H2108]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2786/cosponsors?format=json","sponsors.0.bioguideId":"S001150","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2786/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2786/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2786/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2786/text?format=json","bill.updateDate":"2025-01-03T04:59:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2786/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","request.billNumber":"2786","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2786/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2786/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:13Z","title":"Climate Change Relief for Urban Areas Act of 2023","bill.title":"Tobacco Tax Equity Act of 2021","bill.number":"2786","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2786/committees?format=json","request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2786/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2786/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-04-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"CA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2786/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2786/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2786?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.R. 2786.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nEnvironmental Programs\n[Page H1912]\n","sponsors.0.district":28,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"ADAM","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2786/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}}} +{"type":"relationship","id":"7596","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9360","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4887/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"4887","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4887/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4887/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"Continued Presence Improvement Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4887","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4887/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4887/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4887/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4887/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4887/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4887?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"7597","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"9836","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Schiff","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 133.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1274","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1274/cosponsors?format=json","sponsors.0.bioguideId":"S001150","actions.url":"https://api.congress.gov/v3/bill/118/hres/1274/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1274/relatedbills?format=json","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":2,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 117-527","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1274/text?format=json","updateDate":"2024-08-19T13:16:49Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"1274","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1274/committees?format=json","title":"Responding to the promulgation of the Safeguarding National Security Ordinance, under Article 23 of the Basic Law, by the Hong Kong Special Administrative Region Government on March 19, 2024.","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/527?format=json","summaries.count":2,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1274/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1274/summaries?format=json","introducedDate":"2024-06-03","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1274?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Adam","updateDateIncludingText":"2024-08-19T13:16:49Z"}}} +{"type":"relationship","id":"7598","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"46","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3095/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"James","sponsors.0.isByRequest":"N","request.billNumber":"3095","sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3095/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Address Iran’s Malign Posture Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"R","number":"3095","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3095/cosponsors?format=json","sponsors.0.bioguideId":"J000307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3095/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3095/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3095/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3095/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. James, John [R-MI-10]","titles.count":3,"introducedDate":"2023-05-05","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3095?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JAMES:\nH.R. 3095.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H2137]\n","sponsors.0.district":10,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7599","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9989","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"427","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and with a preamble by Voice Vote. (consideration: CR S2459; text: CR S2459-2460)","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/427/committees?format=json","title":"Financial Freedom Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"427","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/427/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/427/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/427/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/427?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7600","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"104","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10365/text?format=json","updateDate":"2025-01-16T13:08:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"James","sponsors.0.isByRequest":"N","request.billNumber":"10365","sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10365/committees?format=json","type":"HR","title":"PEPFAR Extension and Reform Act of 2024","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"10365","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"J000307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10365/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10365/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. James, John [R-MI-10]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10365?format=json","sponsors.0.district":10,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-16T13:08:17Z"}}} +{"type":"relationship","id":"7601","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10087","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14168","title":"Defending Women From Gender Ideology Extremism and Restoring Biological Truth to the Federal Government","url":"https://www.federalregister.gov/d/2025-02090"}}} +{"type":"relationship","id":"7602","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"107","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10364/text?format=json","updateDate":"2025-01-16T02:38:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"James","sponsors.0.isByRequest":"N","request.billNumber":"10364","sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10364/committees?format=json","type":"HR","title":"App Store Accountability Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"10364","request.format":"json","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"J000307","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10364/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10364/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-11","sponsors.0.fullName":"Rep. James, John [R-MI-10]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10364?format=json","sponsors.0.district":10,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-16T02:38:17Z"}}} +{"type":"relationship","id":"7603","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"10027","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2023-04-17T17:13:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1775)","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Committee on Veterans' Affairs. Ordered to be reported with an amendment in the nature of a substitute favorably.","sponsors.0.party":"D","number":"132","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/132/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/132/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/132/relatedbills?format=json","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/132/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"132","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/132/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/132/committees?format=json","title":"Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59068","request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/132/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/132/summaries?format=json","cboCostEstimates.0.title":"S. 132, Daniel J. Harvey Jr. and Adam Lambert Improving Servicemember Transition to Reduce Veteran Suicide Act","introducedDate":"2023-01-30","subjects.count":15,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/132?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-01-14T17:05:14Z"}}} +{"type":"relationship","id":"7604","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9772","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/52/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"52","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/52/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/52/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency entitled \"Finding That Lead Emissions From Aircraft Engines That Operate on Leaded Fuel Cause or Contribute to Air Pollution That May Reasonably Be Anticipated To Endanger Public Health and Welfare\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"52","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/52/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/52/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/52/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/52/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-06","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":2,"introducedDate":"2023-12-06","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/52?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7605","label":"SPONSORED","start":{"id":"4133","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000307_200.jpg","district":"10","startYear":"2023","name":"James, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/J000307?format=json","bioguideId":"J000307"}},"end":{"id":"8809","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7089/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"James","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-02-15T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7089/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"T.","number":"7089","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 46 (Tuesday, March 15, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILDEE:\nH.R. 7089.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3744]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7089/cosponsors?format=json","sponsors.0.bioguideId":"J000307","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7089/actions?format=json","latestAction.actionDate":"2024-09-10","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7089/relatedbills?format=json","textVersions.count":3,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. James, John [R-MI-10]","bill.sponsors.0.bioguideId":"K000380","bill.originChamber":"House","bill.actions.count":4,"titles.count":5,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7089/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kildee, Daniel T. [D-MI-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7089/text?format=json","bill.updateDate":"2025-01-03T07:44:23Z","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7089/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":12,"sponsors.0.url":"https://api.congress.gov/v3/member/J000307?format=json","request.billNumber":"7089","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7089/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7089/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:44:23Z","title":"Global Anti-Human Trafficking Enhancement Act","bill.title":"VET PFAS Act","bill.number":"7089","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59976","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7089/committees?format=json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7089/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7089/summaries?format=json","bill.cosponsors.count":15,"cboCostEstimates.0.title":"H.R. 7089, Global Anti-Human Trafficking Enhancement Act","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000380?format=json","introducedDate":"2024-01-25","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Daniel","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7089/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7089/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7089?format=json","bill.introducedDate":"2022-03-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 14 (Thursday, January 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JAMES:\nH.R. 7089.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nForeign Affairs\n[Page H253]\n","sponsors.0.district":10,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":5,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2025-01-14T19:00:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7089/text?format=json","bill.sponsors.0.lastName":"Kildee"}}} +{"type":"relationship","id":"7606","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"48","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Kiggans","cboCostEstimates.0.pubDate":"2024-12-11T19:39:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 711.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 711.","sponsors.0.party":"R","number":"6972","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6972/cosponsors?format=json","sponsors.0.bioguideId":"K000399","actions.url":"https://api.congress.gov/v3/bill/118/hr/6972/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":4,"sponsors.0.fullName":"Rep. Kiggans, Jennifer A [R-VA-2]","titles.count":6,"cosponsors.count":14,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-305","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6972/text?format=json","updateDate":"2025-02-19T01:41:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"6972","sponsors.0.url":"https://api.congress.gov/v3/member/K000399?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6972/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6972/subjects?format=json","title":"Securing Chain of Command Continuity Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on November 20, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":14,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61090","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-17","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/305?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6972/summaries?format=json","cboCostEstimates.0.title":"H.R. 6972, Securing Chain of Command Continuity Act","introducedDate":"2024-01-11","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6972?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIGGANS of Virginia:\nH.R. 6972.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis legislation only pertains to: oversight of the\nNational Security Council\n[Page H108]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-02-19T01:41:13Z"}}} +{"type":"relationship","id":"7607","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"166","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8108/text?format=json","updateDate":"2025-01-16T07:06:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Kiggans","sponsors.0.isByRequest":"N","request.billNumber":"8108","sponsors.0.url":"https://api.congress.gov/v3/member/K000399?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8108/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8108/committees?format=json","policyArea.name":"Health","type":"HR","title":"To amend title XIX of the Social Security Act to add a Medicaid State plan requirement with respect to the determination of residency of certain individuals serving in the Armed Forces.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"8108","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-09-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/697?format=json","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8108/cosponsors?format=json","sponsors.0.bioguideId":"K000399","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8108/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8108/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8108/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-09-24","sponsors.0.fullName":"Rep. Kiggans, Jennifer A. [R-VA-2]","titles.count":2,"introducedDate":"2024-04-23","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8108?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 71 (Tuesday, April 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIGGANS of Virginia:\nH.R. 8108.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8. United States Constitution.\nThe single subject of this legislation is:\nProvides Medicaid for dependents with disabilities of\nmembers of the armed services.\n[Page H2628]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-01-16T07:06:17Z","committeeReports.0.citation":"H. Rept. 118-697"}}} +{"type":"relationship","id":"7608","label":"SPONSORED","start":{"id":"4056","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg","startYear":"2023","partyName":"Republican","name":"Kiggans, Jennifer A.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/K000399?format=json","bioguideId":"K000399"}},"end":{"id":"438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5956/text?format=json","updateDate":"2025-01-07T14:04:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Kiggans","sponsors.0.isByRequest":"N","request.billNumber":"5956","sponsors.0.url":"https://api.congress.gov/v3/member/K000399?format=json","latestAction_text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5956/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5956/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Transparency for Student Veterans Act of 2023","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","sponsors.0.party":"R","number":"5956","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-11-15","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5956/cosponsors?format=json","sponsors.0.bioguideId":"K000399","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5956/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5956/actions?format=json","latestAction.actionDate":"2023-11-15","textVersions.count":1,"sponsors.0.fullName":"Rep. Kiggans, Jennifer A [R-VA-2]","titles.count":3,"introducedDate":"2023-10-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5956?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 168 (Friday, October 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. KIGGANS of Virginia:\nH.R. 5956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo improve the GI Bill comparison Tool to include more\ninformation relevant to veterans.\n[Page H5013]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2025-01-07T14:04:31Z"}}} +{"type":"relationship","id":"7609","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"53","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3134/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"3134","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3134/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3134/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Emergency Access to Insulin Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"3134","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3134/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3134/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3134/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3134/relatedbills?format=json","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":27,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3134?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 3134.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nLowering insulin costs\n[Page H2172]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2024-12-20T09:06:27Z"}}} +{"type":"relationship","id":"7610","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/507/text?format=json","relatedBills.count":6,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"507","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committees on the Judiciary, Ethics, Rules, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/507/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"HUMBLE Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on the Judiciary, Ethics, Rules, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"507","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/507/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/507/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/507/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/507/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/507/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/507?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nGovernment ethics.\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7611","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"9136","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2728/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thompson","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2728/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2728","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 3\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2728/cosponsors?format=json","sponsors.0.bioguideId":"T000467","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2728/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","bill.sponsors.0.bioguideId":"G000594","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2728/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2728/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","request.billNumber":"2728","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2728/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2728/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Young Farmer Success Act","bill.title":"Protecting Military Installations from Foreign Espionage Act","bill.number":"2728","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2728/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2728/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2728/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2728/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2728/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2728?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto add farmers and ranchers to the Public Service Loan\nForgiveness program.\n[Page H1888]\n","sponsors.0.district":15,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":23,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2728/text?format=json","bill.sponsors.0.lastName":"Gonzales"}}} +{"type":"relationship","id":"7612","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"9534","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2728/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thompson","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2728/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2728","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 3\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2728/cosponsors?format=json","sponsors.0.bioguideId":"T000467","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2728/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","bill.sponsors.0.bioguideId":"G000594","bill.originChamber":"House","bill.actions.count":9,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2728/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2728/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2728/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","request.billNumber":"2728","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2728/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2728/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Young Farmer Success Act","bill.title":"Protecting Military Installations from Foreign Espionage Act","bill.number":"2728","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2728/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2728/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2728/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":5,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2728/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2728/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2728?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 2728.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nto add farmers and ranchers to the Public Service Loan\nForgiveness program.\n[Page H1888]\n","sponsors.0.district":15,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":23,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2728/text?format=json","bill.sponsors.0.lastName":"Gonzales"}}} +{"type":"relationship","id":"7613","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"9154","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2378/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2378/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"I.","number":"2378","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE of Oklahoma:\nH.R. 2378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 14, 15, and 16 of the U.S.\nConstitution.\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2378/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2378/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2378/relatedbills?format=json","latestAction.actionDate":"2023-04-25","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"B000740","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2378/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2378/text?format=json","bill.updateDate":"2025-01-03T04:55:58Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2378/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"2378","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2378/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:58Z","title":"Farmers’ Market and Food Bank Local Revitalization Act of 2023","bill.title":"Protecting Military Families with Disabilities Act","bill.number":"2378","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2378/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2378/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2378/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephanie","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2378/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2378/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2378?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 2378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, To regulate Commerce\nThe single subject of this legislation is:\nCommerce\n[Page H1659]\n","sponsors.0.district":9,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":5,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2378/text?format=json","bill.sponsors.0.lastName":"Bice"}}} +{"type":"relationship","id":"7614","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"864","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Became Public Law No: 118-210.","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","policyArea.name":"Congress","title":"No Pay for Disarray Act","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","request.format":"json","latestAction_actionDate":"2025-01-02","summaries.count":1,"sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7615","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"1693","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1488/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"1488","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1488/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1488/subjects?format=json","policyArea.name":"Health","title":"Affordable Insulin Now Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1488","cosponsors.countIncludingWithdrawnCosponsors":102,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1488/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1488/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1488/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1488/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1488/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":102,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1488?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 1488.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the U.S. Constitution\nThe single subject of this legislation is:\nLowering insulin costs\n[Page H1250]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7616","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"9174","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1147/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thompson","bill.latestAction.actionDate":"2021-03-22","cboCostEstimates.0.pubDate":"2023-06-13T20:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1147/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 293.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"E.","number":"1147","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1147.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1:\nThe Congress shall have the Power . . . to pay the Debts\nand provide for the common Defense and general Welfare of the\nUnited States.\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H537]\n","amendments.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1147/cosponsors?format=json","sponsors.0.bioguideId":"T000467","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1147/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1147/relatedbills?format=json","latestAction.actionDate":"2023-12-18","textVersions.count":4,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Thompson, Glenn [R-PA-15]","bill.sponsors.0.bioguideId":"L000566","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1147/amendments?format=json","bill.actions.count":4,"bill.originChamber":"House","titles.count":6,"cosponsors.count":134,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-131","bill.sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1147/text?format=json","bill.updateDate":"2025-01-03T04:46:43Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1147/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":27,"sponsors.0.url":"https://api.congress.gov/v3/member/T000467?format=json","request.billNumber":"1147","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1147/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1147/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:46:43Z","title":"Whole Milk for Healthy Kids Act of 2023","bill.title":"Veterans Right to Expediency Act","bill.number":"1147","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 6, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":134,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59266","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1147/committees?format=json","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-03-22","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/131?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1147/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1147/summaries?format=json","bill.cosponsors.count":10,"cboCostEstimates.0.title":"H.R. 1147, Whole Milk for Healthy Kids Act of 2023","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1147/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1147/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1147?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Pennsylvania:\nH.R. 1147.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by that clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers and all other Powers vested by the\nConstitution in the Government of the United States or any\nDepartment or Office thereof.''\nThe single subject of this legislation is:\nAllowing additional milk varieties into school lunch\n[Page H868]\n","sponsors.0.district":15,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":5,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1147/text?format=json","bill.sponsors.0.lastName":"Latta"}}} +{"type":"relationship","id":"7617","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"1760","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/507/text?format=json","relatedBills.count":6,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"507","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/507/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/507/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"HUMBLE Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committees on the Judiciary, Ethics, Rules, and Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"507","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/507/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/507/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/507/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/507/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/507/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":4,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/507?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 507.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nGovernment ethics.\n[Page H324]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7618","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"10030","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Brown","cboCostEstimates.0.pubDate":"2024-12-11T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1713-1714)","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 705.","sponsors.0.party":"D","number":"131","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/131/cosponsors?format=json","sponsors.0.bioguideId":"B000944","actions.url":"https://api.congress.gov/v3/bill/118/s/131/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/131/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":4,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-299","textVersions.url":"https://api.congress.gov/v3/bill/118/s/131/text?format=json","updateDate":"2025-02-15T21:26:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"131","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/131/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/131/committees?format=json","title":"Improving Access to Workers’ Compensation for Injured Federal Workers Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61095","request.format":"json","latestAction_actionDate":"2021-03-23","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/299?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/131/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/131/summaries?format=json","cboCostEstimates.0.title":"S. 131, Improving Access to Workers’ Compensation for Injured Federal Workers Act ","introducedDate":"2023-01-30","subjects.count":7,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/131?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-02-15T21:26:11Z"}}} +{"type":"relationship","id":"7619","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9773","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/50/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"50","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/sjres/50/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/50/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"50","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2022-06-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/50/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/50/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/50/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/50/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/50/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-09","sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"cosponsors.count":8,"introducedDate":"2023-11-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/50?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7620","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"1782","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","policyArea.name":"Congress","type":"HR","title":"No Pay for Disarray Act","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":1,"sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7621","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"8883","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6047/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Craig","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6047/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6047","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROY:\nH.R. 6047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution--to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6047/cosponsors?format=json","sponsors.0.bioguideId":"C001119","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6047/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6047/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","bill.sponsors.0.bioguideId":"R000614","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6047/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Roy, Chip [R-TX-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6047/text?format=json","bill.updateDate":"2025-01-03T07:35:35Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6047/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","request.billNumber":"6047","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6047/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6047/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:35Z","title":"To require the Postal Service to implement recommendations from the Inspector General of the United States Postal Service for improving identification and notification of undelivered and partially delivered routes, and for other purposes.","bill.title":"Natural Immunity Transparency Act","bill.number":"6047","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6047/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6047/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6047/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000614?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chip","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6047/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6047/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6047?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 6047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nUSPS Service Standard Transparency\n[Page H5107]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":21,"sponsors.0.firstName":"Angie","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6047/text?format=json","bill.sponsors.0.lastName":"Roy"}}} +{"type":"relationship","id":"7622","label":"SPONSORED","start":{"id":"4140","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001119_200.jpg","district":"2","startYear":"2019","name":"Craig, Angie","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/C001119?format=json","bioguideId":"C001119"}},"end":{"id":"10018","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Committee on Indian Affairs. (text: CR S1834-1835)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","policyArea.name":"Congress","title":"No Pay for Disarray Act","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/141/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7623","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"55","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3135/text?format=json","updateDate":"2024-12-20T09:06:33Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Cuellar","sponsors.0.isByRequest":"N","request.billNumber":"3135","sponsors.0.url":"https://api.congress.gov/v3/member/C001063?format=json","latestAction_text":"Referred to the Subcommittee on Trade.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3135/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"LPOE Modernization Trust Fund Act","latestAction.text":"Referred to the Subcommittee on Trade.","sponsors.0.party":"D","number":"3135","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3135/cosponsors?format=json","sponsors.0.bioguideId":"C001063","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3135/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Cuellar, Henry [D-TX-28]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3135?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CUELLAR:\nH.R. 3135.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish the Land Port of Entry Modernization Trust\nFund\n[Page H2172]\n","sponsors.0.district":28,"sponsors.0.firstName":"Henry","updateDateIncludingText":"2024-12-20T09:06:33Z"}}} +{"type":"relationship","id":"7624","label":"SPONSORED","start":{"id":"4068","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg","district":"28","startYear":"2005","name":"Cuellar, Henry","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001063?format=json","bioguideId":"C001063"}},"end":{"id":"8638","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9006/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Cuellar","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Labor and Employment","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9006/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9006","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9006/cosponsors?format=json","sponsors.0.bioguideId":"C001063","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9006/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9006/relatedbills?format=json","latestAction.actionDate":"2024-07-11","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Cuellar, Henry [D-TX-28]","bill.sponsors.0.bioguideId":"H001084","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9006/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Herrell, Yvette [R-NM-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9006/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9006/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/C001063?format=json","request.billNumber":"9006","committees.url":"https://api.congress.gov/v3/bill/118/hr/9006/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9006/subjects?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Hazardous Workplace Accountability Act of 2024","bill.title":"To establish deadlines for the Secretary of the Interior and the Secretary of Agriculture to complete certain environmental reviews, to establish notification rules for receipt of onshore right-of-way applications, and for other purposes.","bill.number":"9006","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9006/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9006/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9006/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001084?format=json","introducedDate":"2024-07-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Yvette","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9006/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9006/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9006?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 115 (Thursday, July 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CUELLAR:\nH.R. 9006.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Occupational Safety and Health Act of 1970 to\nrequire that safety data sheets be provided in English and\nSpanish.\n[Page H4626]\n","bill.introducedDate":"2022-09-28","sponsors.0.district":28,"bill.sponsors.0.state":"NM","bill.sponsors.0.district":2,"sponsors.0.firstName":"Henry","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9006/text?format=json","bill.sponsors.0.lastName":"Herrell"}}} +{"type":"relationship","id":"7625","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9598","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1926/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1926","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1926/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"To provide for a limitation on availability of funds for Department of Labor, Employment and Training Administration, Ex-Offender Activities for fiscal year 2024.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1926","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1926/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1926/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1926/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1926/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"cosponsors.count":4,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1926?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1644]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7626","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9708","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/429/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"429","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/429/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/429/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Abandoned Well Remediation Research and Development Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"429","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/429/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/429/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/429/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/429/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/429/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-02-15","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/429?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"7630","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9624","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1615/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"1615","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/1615/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1615/committees?format=json","type":"S","title":"Regulatory Accountability Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1615","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1615/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1615/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1615/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1615/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1615/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1615?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"James"}}} +{"type":"relationship","id":"7631","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9794","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/52/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"52","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/52/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/52/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency entitled \"Finding That Lead Emissions From Aircraft Engines That Operate on Leaded Fuel Cause or Contribute to Air Pollution That May Reasonably Be Anticipated To Endanger Public Health and Welfare\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"52","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/52/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/52/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/52/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/52/actions?format=json","latestAction.actionDate":"2023-12-06","textVersions.count":1,"sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":2,"introducedDate":"2023-12-06","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/52?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T17:12:38Z","latestAction_actionTime":"13:16:31"}}} +{"type":"relationship","id":"7634","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"9745","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/80/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"80","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/hr/80/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/80/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To terminate the designation of the Islamic Republic of Pakistan as a major non-NATO ally, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"80","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/80/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/80/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/80/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/80/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":51,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/80?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.J. Res. 80.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H3865]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"7636","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9369","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Merkley","cboCostEstimates.0.pubDate":"2022-08-10T18:19:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-176.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"3103","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3103/cosponsors?format=json","sponsors.0.bioguideId":"M001176","laws.0.number":"117-176","actions.url":"https://api.congress.gov/v3/bill/118/s/3103/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3103/relatedbills?format=json","latestAction.actionDate":"2023-10-19","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3103/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3103","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3103/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3103/subjects?format=json","title":"Medical Debt Relief Act of 2023","cboCostEstimates.0.description":"As passed by the Senate on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58380","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-16","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3103/summaries?format=json","cboCostEstimates.0.title":"S. 3103, Eliminating Limits to Justice for Child Sex Abuse Victims Act of 2022","introducedDate":"2023-10-19","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3103?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7639","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"59","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Referred to the Subcommittee on Social Security.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Senior Citizens Tax Elimination Act","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}}} +{"type":"relationship","id":"7640","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"1081","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","policyArea.name":"Taxation","title":"Senior Citizens Tax Elimination Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-05-11","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}}} +{"type":"relationship","id":"7641","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"1445","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1137/text?format=json","relatedBills.count":9,"updateDate":"2024-11-09T04:56:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"1137","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1137/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1137/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for consideration of the bill (H.R. 7888) to reform the Foreign Intelligence Surveillance Act of 1978; providing for consideration of the bill (H.R. 529) to extend the customs waters of the United States from 12 nautical miles to 24 nautical miles from the baselines of the United States, consistent with Presidential Proclamation 7219; providing for consideration of the resolution (H. Res. 1112) denouncing the Biden administration's immigration policies; and providing for consideration of the resolution (H. Res. 1117) opposing efforts to place one-sided pressure on Israel with respect to Gaza.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1137","request.format":"json","latestAction_actionDate":"2024-04-12","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/456?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1137/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1137/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1137/actions?format=json","latestAction.actionDate":"2024-04-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1137/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","latestAction.actionTime":"09:35:51","titles.count":2,"introducedDate":"2024-04-12","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1137?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-11-09T04:56:39Z","latestAction_actionTime":"09:35:51","committeeReports.0.citation":"H. Rept. 118-456"}}} +{"type":"relationship","id":"7642","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"1795","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/24/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"24","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/24/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/24/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Federal Reserve Transparency Act of 2023","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"24","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/24/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/24/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/24/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/24/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/24/relatedbills?format=json","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":72,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/24?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 24.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is authorized by Article 1, Section 8 of the\nConstitution, which gives Congress the power ``to coin money,\nregulate the value therof, and of foreign coin, and fix the\nstandard of weights and measures,'' and ``to provide for the\npunishment of counterfeiting the securities and current coin\nof the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7643","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"1938","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/24/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"24","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/hr/24/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/24/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Federal Reserve Transparency Act of 2023","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"24","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/24/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/24/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/24/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/24/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/24/relatedbills?format=json","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":72,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sjres/24?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 24.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is authorized by Article 1, Section 8 of the\nConstitution, which gives Congress the power ``to coin money,\nregulate the value therof, and of foreign coin, and fix the\nstandard of weights and measures,'' and ``to provide for the\npunishment of counterfeiting the securities and current coin\nof the United States.''\n[Page H108]\n","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7644","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"8983","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Massie","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4926","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","sponsors.0.bioguideId":"M001184","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4926/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4926/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4926/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4926/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","request.billNumber":"4926","committees.url":"https://api.congress.gov/v3/bill/118/hr/4926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4926/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"Members of Congress Pension Opt Out Clarification Act","bill.title":"LEAVE Act","bill.number":"4926","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4926/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4926/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4926/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4926/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4926?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFiscal Reform\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4926/text?format=json","bill.sponsors.0.lastName":"Speier"}}} +{"type":"relationship","id":"7645","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"8984","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4925/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Massie","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4925/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4925","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4925.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4925/cosponsors?format=json","sponsors.0.bioguideId":"M001184","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4925/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4925/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4925/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4925/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","request.billNumber":"4925","committees.url":"https://api.congress.gov/v3/bill/118/hr/4925/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4925/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"EPIC Act","bill.title":"F-AIR Act","bill.number":"4925","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4925/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4925/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4925/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4925/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4925/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4925?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 4925.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFiscal Reform\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4925/text?format=json","bill.sponsors.0.lastName":"Speier"}}} +{"type":"relationship","id":"7646","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9675","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/767/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"767","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/767/committees?format=json","policyArea.name":"International Affairs","title":"MINDS Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"767","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/767/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/767/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/767/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/767/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":4,"introducedDate":"2023-03-09","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/767?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7647","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9541","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2725/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"2725","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2725/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2725/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to authorize the establishment of the US-ASEAN Center to support United States economic and cultural engagement with Southeast Asia.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"2725","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2725/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2725/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2725/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2725/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2725/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":2,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2725?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7648","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9342","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5076/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"5076","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/5076/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5076/committees?format=json","title":"Iran Internet Freedom Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"5076","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5076/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5076/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5076/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5076/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-17","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-09-17","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5076?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7649","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"9303","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Massie","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-354.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4926","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4926/cosponsors?format=json","sponsors.0.bioguideId":"M001184","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4926/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4926/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4926/text?format=json","bill.updateDate":"2025-01-03T07:25:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4926/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","request.billNumber":"4926","committees.url":"https://api.congress.gov/v3/bill/118/hr/4926/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4926/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:37Z","title":"Members of Congress Pension Opt Out Clarification Act","bill.title":"LEAVE Act","bill.number":"4926","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4926/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4926/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4926/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"KY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4926/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4926/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/4926?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MASSIE:\nH.R. 4926.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nFiscal Reform\n[Page H4032]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Thomas","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4926/text?format=json","bill.sponsors.0.lastName":"Speier"}}} +{"type":"relationship","id":"7650","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9374","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4661/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4661","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4661/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4661/committees?format=json","policyArea.name":"Economics and Public Finance","title":"Improper Payments Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"4661","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4661/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4661/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4661/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4661/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4661/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"cosponsors.count":6,"introducedDate":"2024-07-10","subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4661?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:22:18Z"}}} +{"type":"relationship","id":"7651","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9500","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-06-15T17:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","sponsors.0.party":"D","number":"1564","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1564/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1564/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1564/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1564/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1564","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1564/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1564/subjects?format=json","title":"AI Leadership Training Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 17, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59204","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-11-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/109?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1564/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1564/summaries?format=json","cboCostEstimates.0.title":"S. 1564, AI Leadership Training Act","introducedDate":"2023-05-11","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1564?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7652","label":"SPONSORED","start":{"id":"4160","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001184_200.jpg","district":"4","startYear":"2012","name":"Massie, Thomas","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/M001184?format=json","bioguideId":"M001184"}},"end":{"id":"9509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3206/text?format=json","updateDate":"2024-12-20T09:06:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Massie","sponsors.0.isByRequest":"N","request.billNumber":"3206","sponsors.0.url":"https://api.congress.gov/v3/member/M001184?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 168.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3206/subjects?format=json","policyArea.name":"Taxation","committees.url":"https://api.congress.gov/v3/bill/118/hr/3206/committees?format=json","title":"Senior Citizens Tax Elimination Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","sponsors.0.party":"R","number":"3206","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3206/cosponsors?format=json","sponsors.0.bioguideId":"M001184","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3206/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Massie, Thomas [R-KY-4]","titles.count":3,"cosponsors.count":36,"introducedDate":"2023-05-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3206?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-12-20T09:06:31Z"}}} +{"type":"relationship","id":"7653","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9709","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/423/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"423","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/423/subjects?format=json","policyArea.name":"Health","title":"Easy Enrollment in Health Care Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"423","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/423/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/423/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/423/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/423/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/423/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/423?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:23:45Z"}}} +{"type":"relationship","id":"7654","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"62","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4115/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T09:06:23Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"4115","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4115/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4115/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Lower Drug Costs for Families Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4115/cosponsors?format=json","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4115/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4115/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4115?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 4115.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority of Congress to enact this\nlegislation is provided by Article 1, Section 8 of the United\nStates Constitution.\nThe single subject of this legislation is:\nHealthcare\n[Page H2933]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-20T09:06:23Z"}}} +{"type":"relationship","id":"7655","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"137","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10214/text?format=json","updateDate":"2024-12-16T19:26:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"10214","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10214/committees?format=json","type":"HR","title":"Dads Matter Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"10214","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10214/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10214/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":3,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10214?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-16T19:26:31Z"}}} +{"type":"relationship","id":"7656","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9676","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/766/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"766","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/766/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/766/subjects?format=json","policyArea.name":"Education","title":"Pay Teachers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"766","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/766/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/766/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/766/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/766/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/766/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/766?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7657","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9583","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2188/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2188","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2188/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2188/committees?format=json","policyArea.name":"Health","title":"PrEP Access and Coverage Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2188","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2188/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2188/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2188/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2188/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":22,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2188?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7658","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9472","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3703/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"3703","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3703/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3703/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"RESPITE for Businesses Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3703","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3703/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3703/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3703/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3703/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3703/relatedbills?format=json","latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":4,"introducedDate":"2024-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3703?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7659","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"202","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9433/text?format=json","updateDate":"2024-12-10T19:58:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"9433","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9433/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To direct the Secretary of Defense to conduct a threat analysis of any potential threats the illicit fentanyl drug trade poses to the defense interests of the United States.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"9433","request.format":"json","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9433/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9433/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":2,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9433?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 9433.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nArmed Services\n[Page H5021]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-10T19:58:16Z"}}} +{"type":"relationship","id":"7660","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9495","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2405/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"2405","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2405/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2405/committees?format=json","policyArea.name":"Health","type":"S","title":"Strengthening Pharmacy Access for Seniors Act","latestAction.text":"Read twice and referred to the Committee on Finance. (text: CR S3461-3462)","sponsors.0.party":"R","number":"2405","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2405/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2405/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2405/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2405/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2405/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2405?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:21Z"}}} +{"type":"relationship","id":"7661","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9572","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2445/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2445","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/s/2445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2445/subjects?format=json","type":"S","title":"Community-Based Gang Intervention Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2445","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2445/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2445/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2445?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:57Z"}}} +{"type":"relationship","id":"7662","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"9520","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2970/text?format=json","relatedBills.count":1,"updateDate":"2024-11-26T19:30:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"2970","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/2970/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2970/committees?format=json","type":"S","title":"Indigenous Peoples' Day Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2970","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2970/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2970/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2970/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2970/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2970/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":13,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2970?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-11-26T19:30:33Z"}}} +{"type":"relationship","id":"7663","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"323","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7715/text?format=json","updateDate":"2024-12-16T20:37:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"7715","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7715/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7715/subjects?format=json","policyArea.name":"Health","type":"HR","title":"VAPE Imports Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"7715","request.format":"json","latestAction_actionDate":"2024-03-22","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7715/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7715/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":4,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7715?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 48 (Tuesday, March 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7715.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Constitutional authority to enact this legislation is\nprovided by Article 1, Section 8 of the United States\nConstitution.\nThe single subject of this legislation is:\nTobacco Control\n[Page H1235]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-12-16T20:37:54Z"}}} +{"type":"relationship","id":"7664","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"401","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6723/text?format=json","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"6723","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6723/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"To reaffirm the applicability of the Act of June 18, 1934, to the Samish Indian Nation, and for other purposes.","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"6723","request.format":"json","latestAction_actionDate":"2023-12-12","summaries.count":1,"sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6723/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6723/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-12","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":2,"introducedDate":"2023-12-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6723?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 204 (Tuesday, December 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 6723.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: ``[The Congress shall have\nthe power . . .] To make all Laws which shall be necessary\nand proper for carrying into Execution the foregoing Powers,\nand all other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nTribal Issues\n[Page H6860]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-07-24T15:19:34Z"}}} +{"type":"relationship","id":"7665","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"656","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3143/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"3143","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3143/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3143/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Teachers LEAD Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3143","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3143/cosponsors?format=json","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3143/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3143/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3143/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3143/relatedbills?format=json","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3143?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 3143.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 allows Congress to make all\nlaws ``which shall be necessary and proper for carrying into\nexecution'' any of Congress's enumerated powers.\nThe single subject of this legislation is\nTeacher leadership\n[Page H2173]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7666","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"776","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1451/text?format=json","updateDate":"2024-07-24T15:23:25Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gallego","sponsors.0.isByRequest":"N","request.billNumber":"1451","sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1451/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1451/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Fight for the American Dream Act","latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1451","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1451/cosponsors?format=json","sponsors.0.bioguideId":"G000574","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1451/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1451?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 1451.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: ``[The Congress shall have\nthe power. . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nArmed Services\n[Page H1207]\n","sponsors.0.district":3,"sponsors.0.firstName":"Ruben","updateDateIncludingText":"2024-07-24T15:23:25Z"}}} +{"type":"relationship","id":"7667","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"8668","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallego","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9065/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9065","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9065/cosponsors?format=json","sponsors.0.bioguideId":"G000574","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9065/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","bill.sponsors.0.bioguideId":"M001166","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McNerney, Jerry [D-CA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9065/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-10-02T08:05:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9065/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","request.billNumber":"9065","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9065/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9065/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend the Internal Revenue Code of 1986 to include room air conditioners as qualified energy property for purposes of the energy efficient home improvement credit.","bill.title":"Student Loan Earned Relief Act","bill.number":"9065","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9065/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9065/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9065/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001166?format=json","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jerry","sponsors.0.state":"AZ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9065/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9065/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9065?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 9065.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution.\nThe single subject of this legislation is:\nTaxation\n[Page H4641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Ruben","bill.type":"HR","updateDateIncludingText":"2024-10-02T08:05:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9065/text?format=json","bill.sponsors.0.lastName":"McNerney"}}} +{"type":"relationship","id":"7668","label":"SPONSORED","start":{"id":"3987","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg","startYear":"2015","name":"Gallego, Ruben","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Arizona","endYear":"2025","url":"https://api.congress.gov/v3/member/G000574?format=json","bioguideId":"G000574"}},"end":{"id":"8775","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7456/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gallego","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Immigration","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7456/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7456","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 62 (Thursday, April 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FISCHBACH:\nH.R. 7456.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H4434]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7456/cosponsors?format=json","sponsors.0.bioguideId":"G000574","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7456/actions?format=json","latestAction.actionDate":"2024-02-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7456/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Gallego, Ruben [D-AZ-3]","bill.sponsors.0.bioguideId":"F000470","bill.originChamber":"House","bill.actions.count":13,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7456/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7456/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-07-24T15:19:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7456/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000574?format=json","request.billNumber":"7456","committees.url":"https://api.congress.gov/v3/bill/118/hr/7456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7456/subjects?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"First Responders Emergency Assistance Act","bill.title":"SHIP IT Act","bill.number":"7456","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7456/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7456/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7456/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-02-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":6,"bill.sponsors.0.firstName":"Michelle","sponsors.0.state":"AZ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7456/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7456/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7456?format=json","bill.introducedDate":"2022-04-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 34 (Monday, February 26, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GALLEGO:\nH.R. 7456.\nCongress has the power to enact this legislation pursuant\nto the following:\n``Article I, Section 8, Clause 18: [The Congress shall have\nPower . . .] To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nImmigration\n[Page H696]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":7,"sponsors.0.firstName":"Ruben","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7456/text?format=json","bill.sponsors.0.lastName":"Fischbach"}}} +{"type":"relationship","id":"7669","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"65","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8855/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"8855","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8855/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8855/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend title 18, United States Code, to protect unborn children.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"8855","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8855/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8855/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8855/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":2,"introducedDate":"2024-06-27","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8855?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8855.\nCongress has the power to enact this legislation pursuant\nto the following:\nSpending Clause--Article I, Section 8, Clause 1\nCommerce Clause--Article I, Section 8, Clause 3\n14th Amendment\nThe single subject of this legislation is:\nProtecting the lives of the unborn from the moment of\nconception.\n[Page H4410]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7670","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"258","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Good","cboCostEstimates.0.pubDate":"2024-06-18T20:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 474.","policyArea.name":"Sports and Recreation","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 474.","sponsors.0.party":"R","number":"8534","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8534/cosponsors?format=json","sponsors.0.bioguideId":"G000595","actions.url":"https://api.congress.gov/v3/bill/118/hr/8534/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-05","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"cosponsors.count":10,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-573","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8534/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"8534","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8534/subjects?format=json","title":"Protecting Student Athletes’ Economic Freedom Act of 2024","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60430","request.format":"json","latestAction_actionDate":"2024-07-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/573?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8534/titles?format=json","cboCostEstimates.0.title":"H.R. 8534, Protecting Student Athletes’ Economic Freedom Act","introducedDate":"2024-05-23","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8534?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8534.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nProhibiting student athletes from being classified as\nemployees under federal law.\n[Page H3524]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-02-04T16:39:01Z"}}} +{"type":"relationship","id":"7671","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"802","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H746)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"PISTOL Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-02-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}}} +{"type":"relationship","id":"7672","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"10032","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/128/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Boebert","sponsors.0.isByRequest":"N","request.billNumber":"128","sponsors.0.url":"https://api.congress.gov/v3/member/B000825?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/128/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/128/committees?format=json","policyArea.name":"Health","title":"Defund Planned Parenthood Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"128","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/128/cosponsors?format=json","sponsors.0.bioguideId":"B000825","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/128/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/128/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/128/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Boebert, Lauren [R-CO-3]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":40,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BOEBERT:\nH.R. 128.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States;\n[Page H110]\n","sponsors.0.district":3,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-07-24T15:24:12Z"}}} +{"type":"relationship","id":"7673","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9537","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/808/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"808","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/808/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/808/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Expediting Forest Restoration and Recovery Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S802)","sponsors.0.party":"R","number":"808","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/808/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/808/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/808/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/808/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/808/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-03-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/808?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7674","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"826","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/512/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"512","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/512/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/512/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"One Citizen One Vote Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"512","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/512/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/512/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/512/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/512/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/512?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nElection Integrity\n[Page H325]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"7675","label":"SPONSORED","start":{"id":"3943","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg","startYear":"2001","partyName":"Democratic","name":"Schiff, Adam B.","attribution":"Official U.S. Senate Photo","state":"California","endYear":"2024","url":"https://api.congress.gov/v3/member/S001150?format=json","bioguideId":"S001150"}},"end":{"id":"9792","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/80/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"80","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/80/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/80/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"To terminate the designation of the Islamic Republic of Pakistan as a major non-NATO ally, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"80","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/80/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/80/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/80/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/80/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":51,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hconres/80?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCHIFF:\nH.J. Res. 80.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H3865]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"7676","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"1505","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"PISTOL Act","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-08","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}}} +{"type":"relationship","id":"7677","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9482","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3437/text?format=json","updateDate":"2025-01-13T22:02:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"3437","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3437/subjects?format=json","policyArea.name":"Social Welfare","committees.url":"https://api.congress.gov/v3/bill/118/s/3437/committees?format=json","title":"Addressing SILO Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3437","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3437/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","latestAction.actionTime":"10:46:16","titles.count":4,"introducedDate":"2023-12-07","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3437?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-13T22:02:39Z","latestAction_actionTime":"10:46:16"}}} +{"type":"relationship","id":"7678","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9732","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-01-26","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"7679","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"9263","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/512/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Good","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/512/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"512","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H250]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/512/cosponsors?format=json","sponsors.0.bioguideId":"G000595","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/512/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/512/text?format=json","bill.updateDate":"2025-01-03T04:43:38Z","updateDate":"2024-07-24T15:24:01Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/512/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","request.billNumber":"512","committees.url":"https://api.congress.gov/v3/bill/118/hr/512/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/512/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:38Z","title":"One Citizen One Vote Act","bill.title":"Green Bus Act of 2021","bill.number":"512","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/512/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/512/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/512/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-01-25","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/512/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/512/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/512?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nElection Integrity\n[Page H325]\n","sponsors.0.district":5,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Bob","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:01Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/512/text?format=json","bill.sponsors.0.lastName":"Brownley"}}} +{"type":"relationship","id":"7680","label":"SPONSORED","start":{"id":"4029","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:38:16Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/g000595_200.jpg","startYear":"2021","name":"Good, Bob","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Virginia","endYear":"2025","url":"https://api.congress.gov/v3/member/G000595?format=json","bioguideId":"G000595"}},"end":{"id":"10004","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S6666; text: CR S6678-6679)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","policyArea.name":"Taxation","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","title":"PISTOL Act","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/381/relatedbills?format=json","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}}} +{"type":"relationship","id":"7681","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"78","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8921/text?format=json","updateDate":"2025-01-17T03:11:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Hern","sponsors.0.isByRequest":"N","request.billNumber":"8921","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","latestAction_text":"Referred to the Subcommittee on Work and Welfare.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8921/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8921/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Tribal Child Welfare Support Act","latestAction.text":"Referred to the Subcommittee on Work and Welfare.","sponsors.0.party":"R","number":"8921","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8921/cosponsors?format=json","sponsors.0.bioguideId":"H001082","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8921/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8921/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":3,"introducedDate":"2024-07-02","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8921?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 8921.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nChild Welfare\n[Page H4452]\n","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-01-17T03:11:14Z"}}} +{"type":"relationship","id":"7682","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"257","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Hern","cboCostEstimates.0.pubDate":"2024-06-18T20:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 475.","policyArea.name":"Education","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 475.","sponsors.0.party":"R","number":"6816","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6816/cosponsors?format=json","sponsors.0.bioguideId":"H001082","actions.url":"https://api.congress.gov/v3/bill/118/hr/6816/actions?format=json","latestAction.actionDate":"2024-07-05","textVersions.count":2,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":6,"cosponsors.count":37,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-574","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6816/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":8,"request.billNumber":"6816","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6816/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6816/committees?format=json","title":"PROTECT Our Kids Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on June 13, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60429","request.format":"json","latestAction_actionDate":"2024-07-05","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/574?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6816/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6816/summaries?format=json","cboCostEstimates.0.title":"H.R. 6816, PROTECT Our Kids Act","introducedDate":"2023-12-14","subjects.count":7,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 206 (Thursday, December 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 6816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nEducation\n[Page H6987]\n","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-02-04T16:39:01Z"}}} +{"type":"relationship","id":"7683","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"837","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/469/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hern","sponsors.0.isByRequest":"N","request.billNumber":"469","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/469/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/469/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Asylum Abuse Reduction Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"469","request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"sponsors.0.bioguideId":"H001082","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/469/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/469/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/469/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/469/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/469?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2024-07-24T15:24:02Z"}}} +{"type":"relationship","id":"7684","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"1669","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/469/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hern","sponsors.0.isByRequest":"N","request.billNumber":"469","sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/469/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/469/committees?format=json","policyArea.name":"Immigration","title":"Asylum Abuse Reduction Act","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"469","request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"sponsors.0.bioguideId":"H001082","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/469/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/469/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/469/actions?format=json","latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/469/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/469?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Kevin","updateDateIncludingText":"2024-07-24T15:24:02Z"}}} +{"type":"relationship","id":"7685","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"8622","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hern","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-08-07T17:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Taxation","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8915/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 799.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8915","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CAWTHORN:\nH.R. 8915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H8010]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8915/cosponsors?format=json","sponsors.0.bioguideId":"H001082","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8915/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8915/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.sponsors.0.bioguideId":"C001104","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8915/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-950","bill.sponsors.0.fullName":"Rep. Cawthorn, Madison [R-NC-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8915/text?format=json","bill.updateDate":"2025-01-03T08:00:27Z","updateDate":"2025-02-27T00:26:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8915/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","request.billNumber":"8915","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8915/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8915/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:27Z","title":"Education and Workforce Freedom Act","bill.title":"BOND Act of 2022","bill.number":"8915","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 9, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60601","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8915/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/950?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8915/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8915/summaries?format=json","cboCostEstimates.0.title":"H.R. 8915, Education and Workforce Freedom Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001104?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madison","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8915/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8915/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8915?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 8915.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTaxation\n[Page H4452]\n","sponsors.0.district":1,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":11,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2025-02-27T00:26:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8915/text?format=json","bill.sponsors.0.lastName":"Cawthorn"}}} +{"type":"relationship","id":"7686","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"9723","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","type":"S","title":"Preventive Health Savings Act","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z"}}} +{"type":"relationship","id":"7687","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9726","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S201)","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/127/relatedbills?format=json","latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/127?format=json","updateDateIncludingText":"2025-01-14T18:51:33Z","sponsors.0.firstName":"Maria"}}} +{"type":"relationship","id":"7688","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"8876","labels":["Bill"],"properties":{"relatedBills.count":5,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6050/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hern","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6050/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6050","bill.cosponsors.countIncludingWithdrawnCosponsors":18,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Washington:\nH.R. 6050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6050/cosponsors?format=json","sponsors.0.bioguideId":"H001082","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6050/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6050/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.sponsors.0.bioguideId":"S000510","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Adam [D-WA-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6050/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2024-08-14T18:47:23Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6050/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","request.billNumber":"6050","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6050/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6050/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Student Empowerment Act","bill.title":"Aviation Noise and Emissions Mitigation Act","bill.number":"6050","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6050/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6050/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6050/summaries?format=json","bill.cosponsors.count":18,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000510?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"ADAM","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6050/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6050/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6050?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 6050.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo encourage saving for education\n[Page H5107]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":9,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2024-08-14T18:47:23Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6050/text?format=json","bill.sponsors.0.lastName":"SMITH"}}} +{"type":"relationship","id":"7689","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"9040","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4029/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hern","bill.latestAction.actionDate":"2021-06-23","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4029/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4029","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 108 (Tuesday, June 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOHNSON of Ohio:\nH.R. 4029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\n[Page H3006]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4029/cosponsors?format=json","sponsors.0.bioguideId":"H001082","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4029/actions?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4029/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.sponsors.0.bioguideId":"J000292","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Johnson, Bill [R-OH-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4029/text?format=json","bill.updateDate":"2025-01-03T05:09:08Z","updateDate":"2024-07-24T15:21:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4029/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","request.billNumber":"4029","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4029/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:09:08Z","title":"Supply Chain Security Act","bill.title":"TEAM TELECOM Act","bill.number":"4029","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4029/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4029/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4029/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000292?format=json","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4029/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4029/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4029?format=json","bill.introducedDate":"2021-06-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 4029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo encourage economic growth\n[Page H2810]\n","sponsors.0.district":1,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":6,"sponsors.0.firstName":"Kevin","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4029/text?format=json","bill.sponsors.0.lastName":"Johnson"}}} +{"type":"relationship","id":"7690","label":"SPONSORED","start":{"id":"4091","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001082_200.jpg","district":"1","startYear":"2018","name":"Hern, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/H001082?format=json","bioguideId":"H001082"}},"end":{"id":"9063","labels":["Bill"],"properties":{"relatedBills.count":7,"congress":118,"sponsors.0.lastName":"Hern","cboCostEstimates.0.pubDate":"2023-06-20T16:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3799/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"3799","sponsors":[],"amendments.count":3,"sponsors.0.bioguideId":"H001082","bill.subjects.count":7,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3799/relatedbills?format=json","latestAction.actionDate":"2023-06-21","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Hern, Kevin [R-OK-1]","bill.originChamber":"House","bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","cboCostEstimates.2.url":"https://www.cbo.gov/publication/59315","cboCostEstimates.2.description":"As ordered reported by the House Committee on Ways and Means on\nJune 7, 2023\n","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-107","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59315","updateDate":"2025-01-17T03:11:15Z","committees.count":1,"cboCostEstimates.1.pubDate":"2023-06-26T18:17:00Z","request.billNumber":"3799","committees.url":"https://api.congress.gov/v3/bill/118/hr/3799/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:58Z","cboCostEstimates.1.description":"As ordered reported by the House Committee on Ways and Means on\nJune 7, 2023\n","bill.number":"3799","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nJune 13, 2023\nhttps://rules.house.gov/bill/118/hr-3799\n","latestAction_actionDate":"2021-06-09","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3799/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3799/summaries?format=json","cboCostEstimates.0.title":"Estimated Direct Spending and Revenue Effects of Rules Committee Print 118-9 (H.R. 3799, CHOICE Arrangement Act), as amended by Amendment 8 (Smith","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","introducedDate":"2023-06-05","subjects.count":4,"bill.committees.count":2,"bill.sponsors.0.firstName":"Dina","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3799/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/3799?format=json","cboCostEstimates.1.title":"H.R. 3799, the Custom Health Option and Individual Care Expense Arrangement Act","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HERN:\nH.R. 3799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nhealth\n[Page H2742]\n","bill.sponsors.0.district":1,"bill.type":"HR","cboCostEstimates.2.pubDate":"2023-06-26T18:17:00Z","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-06-09","latestAction_text":"Referred to the Subcommittee on Health.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","cboCostEstimates.2.title":"H.R. 3799, the Custom Health Option and Individual Care Expense Arrangement Act ","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3799.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution,\nspecifically Clause 1.\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3799/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3799/actions?format=json","textVersions.count":3,"bill.sponsors.0.bioguideId":"T000468","amendments.url":"https://api.congress.gov/v3/bill/118/hr/3799/amendments?format=json","bill.actions.count":5,"titles.count":8,"cosponsors.count":1,"bill.sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3799/text?format=json","bill.updateDate":"2025-01-03T05:06:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3799/subjects?format=json","request.congress":"118","actions.count":34,"sponsors.0.url":"https://api.congress.gov/v3/member/H001082?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3799/subjects?format=json","title":"CHOICE Arrangement Act","bill.title":"Take Your Shot Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59277","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3799/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/107?format=json","request.billType":"hr","latestAction.actionTime":"18:39:50","bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3799/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-06-08","sponsors.0.district":1,"bill.sponsors.0.state":"NV","sponsors.0.firstName":"Kevin","updateDateIncludingText":"2025-01-17T03:11:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3799/text?format=json","bill.sponsors.0.lastName":"Titus"}}} +{"type":"relationship","id":"7691","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"81","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4816/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Underwood","sponsors.0.isByRequest":"N","request.billNumber":"4816","sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4816/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4816/subjects?format=json","policyArea.name":"Health","type":"HR","title":"To amend title XXVII of the Public Health Service Act to require group health plans and health insurance issuers offering group or individual health insurance coverage to permit enrollees to obtain a 365-day supply of contraceptives.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4816","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4816/cosponsors?format=json","sponsors.0.bioguideId":"U000040","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4816/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4816/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4816/relatedbills?format=json","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4816?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 4816.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nHealth Care\n[Page H3891]\n","sponsors.0.district":14,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7692","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"147","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9773/text?format=json","updateDate":"2024-12-16T19:17:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Underwood","sponsors.0.isByRequest":"N","request.billNumber":"9773","sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9773/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9773/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Copay Fairness for Veterans Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"9773","request.format":"json","latestAction_actionDate":"2024-10-22","sponsors.0.bioguideId":"U000040","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9773/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9773/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-22","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","titles.count":3,"introducedDate":"2024-09-24","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9773?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 149 (Tuesday, September 24, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 9773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 38, United States Code, eliminate copayments\nby the Department of Veterans Affairs for medicines relating\nto preventive health services, and for other purposes.\n[Page H5747]\n","sponsors.0.district":14,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2024-12-16T19:17:04Z"}}} +{"type":"relationship","id":"7693","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"522","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5060/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Underwood","sponsors.0.isByRequest":"N","request.billNumber":"5060","sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","latestAction_text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5060/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5060/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Women's Retirement Protection Act","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committees on Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"5060","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5060/cosponsors?format=json","sponsors.0.bioguideId":"U000040","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5060/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5060/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5060/relatedbills?format=json","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5060?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 5060.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nRetirement\n[Page H4146]\n","sponsors.0.district":14,"sponsors.0.firstName":"Lauren","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7694","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"8780","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7266/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7266/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7266","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 55 (Tuesday, March 29, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RODNEY DAVIS of Illinois:\nH.R. 7266.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power . . . ] To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\n[Page H3971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7266/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7266/actions?format=json","latestAction.actionDate":"2024-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7266/relatedbills?format=json","bill.policyArea.name":"Environmental Protection","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"D000619","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":14,"bill.latestAction.text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Davis, Rodney [R-IL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7266/text?format=json","bill.updateDate":"2024-02-05T11:45:06Z","updateDate":"2024-08-21T08:05:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7266/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"7266","committees.url":"https://api.congress.gov/v3/bill/118/hr/7266/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7266/subjects?format=json","bill.updateDateIncludingText":"2024-02-05T11:45:06Z","title":"FAAN Act","bill.title":"To amend the Federal Insecticide, Fungicide, and Rodenticide Act to prohibit the local regulation of pesticide use, and for other purposes.","bill.number":"7266","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":14,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7266/committees?format=json","request.format":"json","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7266/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7266/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000619?format=json","introducedDate":"2024-02-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Rodney","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7266/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7266/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7266?format=json","bill.introducedDate":"2022-03-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 22 (Wednesday, February 7, 2024)]\n[House]\n[Pages H536-H537]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 7266.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Public Health Service Act to to authorize\ngrants to support schools of\n[[Page H537]]\nnursing in increasing the number of nursing students and\nfaculty in program enhacement and infrastructure\nmodernization, and for other purposes.\n","sponsors.0.district":14,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2024-08-21T08:05:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7266/text?format=json","bill.sponsors.0.lastName":"Davis"}}} +{"type":"relationship","id":"7695","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"9096","labels":["Bill"],"properties":{"relatedBills.count":27,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3305/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3305/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3305","bill.cosponsors.countIncludingWithdrawnCosponsors":55,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FOSTER:\nH.R. 3305.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8, Clauses 1 and 18 of the\nUnited States Constitution.\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3305/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":2,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3305/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3305/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"F000454","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":194,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3305/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Foster, Bill [D-IL-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3305/text?format=json","bill.updateDate":"2025-01-03T05:03:19Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3305/subjects?format=json","committees.count":5,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"3305","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3305/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3305/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:19Z","title":"Black Maternal Health Momnibus Act","bill.title":"End the Threat of Default Act","bill.number":"3305","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":194,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3305/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3305/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3305/summaries?format=json","bill.cosponsors.count":55,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000454?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":51,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"IL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3305/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3305/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3305?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 3305.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nHealth care\n[Page H2348]\n","sponsors.0.district":14,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":11,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3305/text?format=json","bill.sponsors.0.lastName":"Foster"}}} +{"type":"relationship","id":"7696","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"9099","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3303/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3303/summaries?format=json","type":"HR","latestAction.text":"Forwarded by Subcommittee to Full Committee by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3303","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESTES:\nH.R. 3303.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution:\n``The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States''\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3303/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3303/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3303/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"E000298","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":107,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Estes, Ron [R-KS-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3303/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2024-10-26T08:05:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3303/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"3303","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3303/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3303/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"Maternal Health for Veterans Act","bill.title":"Close the Double Subsidy Loophole for Electric Vehicles Act","bill.number":"3303","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":107,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3303/committees?format=json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3303/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3303/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000298?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ron","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3303/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3303/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3303?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 3303.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nVeterans\n[Page H2348]\n","sponsors.0.district":14,"bill.sponsors.0.state":"KS","bill.sponsors.0.district":4,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2024-10-26T08:05:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3303/text?format=json","bill.sponsors.0.lastName":"Estes"}}} +{"type":"relationship","id":"7697","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9371","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4878/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4878","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4878/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4878/committees?format=json","policyArea.name":"Health","type":"S","title":"REMEDY Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5684-5685)","sponsors.0.party":"D","number":"4878","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4878/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4878/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4878/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4878/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4878/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4878?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7698","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9593","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2181/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":26,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2181","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/2181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2181/subjects?format=json","type":"S","title":"Keeping Military Families Together Act of 2024","latestAction.text":"Became Public Law No: 118-271.","sponsors.0.party":"D","number":"2181","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2181/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2181/titles?format=json","laws.0.number":"118-271","summaries.url":"https://api.congress.gov/v3/bill/118/s/2181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2181/actions?format=json","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2181/relatedbills?format=json","latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":8,"introducedDate":"2023-06-22","cosponsors.count":6,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2181?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-16T12:03:17Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7699","label":"SPONSORED","start":{"id":"4157","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/u000040_200.jpg","startYear":"2019","partyName":"Democratic","name":"Underwood, Lauren","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/U000040?format=json","bioguideId":"U000040"}},"end":{"id":"9100","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3302/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Underwood","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3302/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3302","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ESTES:\nH.R. 3302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 of the United States\nConstitution:\n``The Congress shall have Power To lay and collect Taxes,\nDuties, Imposts and Excises, to pay the Debts and provide for\nthe common Defence and general Welfare of the United States;\nbut all Duties, Imposts and Excises shall be uniform\nthroughout the United States''\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3302/cosponsors?format=json","sponsors.0.bioguideId":"U000040","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3302/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3302/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Underwood, Lauren [D-IL-14]","bill.sponsors.0.bioguideId":"E000298","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":101,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Estes, Ron [R-KS-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3302/text?format=json","bill.updateDate":"2025-01-03T05:03:18Z","updateDate":"2024-10-05T08:05:17Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3302/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/U000040?format=json","request.billNumber":"3302","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3302/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3302/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:03:18Z","title":"Protecting Moms and Babies Against Climate Change Act","bill.title":"No Subsidies for Government Purchases of Electric Vehicles Act","bill.number":"3302","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":101,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3302/committees?format=json","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3302/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3302/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000298?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":33,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ron","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3302/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3302/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3302?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. UNDERWOOD:\nH.R. 3302.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nHealth care\n[Page H2348]\n","sponsors.0.district":14,"bill.sponsors.0.state":"KS","bill.sponsors.0.district":4,"sponsors.0.firstName":"Lauren","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3302/text?format=json","bill.sponsors.0.lastName":"Estes"}}} +{"type":"relationship","id":"7701","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2462/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"2462","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2462/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Motorsports Fairness and Permanency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2462","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2462/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2462/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2462/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2462/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2462/relatedbills?format=json","latestAction.actionDate":"2023-07-25","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2462?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:20:51Z"}}} +{"type":"relationship","id":"7702","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9628","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1612/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1612","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1612/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1612/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reimburse Veterans for Domiciliary Care Act","latestAction.text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-217.","sponsors.0.party":"I","number":"1612","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1612/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1612/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1612/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1612/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1612?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:05:17Z"}}} +{"type":"relationship","id":"7703","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"9697","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/435/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"435","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/435/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/435/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Ensuring Military Readiness Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"435","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/435/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/435/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/435/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/435/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/435/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/435?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7707","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"95","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2769/text?format=json","relatedBills.count":2,"updateDate":"2024-12-21T09:05:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"2769","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2769/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Stop Penalizing Working Seniors Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"2769","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2769/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2769/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2769/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2769/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2769/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-04-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2769?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 66 (Thursday, April 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 2769.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3: Congress shall have the\npower . . . ``to regulate Commerce with foreign Nations, and\namong several States, and with the Indian tribes.''\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to allow\nindividuals only enrolled in Medicare Part A to contribute to\nhealth savings accounts.\n[Page H1911]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-12-21T09:05:34Z"}}} +{"type":"relationship","id":"7708","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9984","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/635/text?format=json","relatedBills.count":1,"updateDate":"2024-11-19T12:54:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Green","sponsors.0.isByRequest":"N","request.billNumber":"635","sponsors.0.url":"https://api.congress.gov/v3/member/G000553?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2516; text: CR S2522-2523)","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hres/635/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/635/committees?format=json","type":"HRES","title":"Original Resolution Recognizing Islam as One of the Great Religions of the World","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"635","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/635/cosponsors?format=json","sponsors.0.bioguideId":"G000553","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/635/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/635/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/635/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/635/relatedbills?format=json","sponsors.0.fullName":"Rep. Green, Al [D-TX-9]","titles.count":3,"introducedDate":"2023-07-28","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/635?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Al","updateDateIncludingText":"2024-11-19T12:54:00Z"}}} +{"type":"relationship","id":"7709","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9643","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1361/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1361","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1361/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1361/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"A bill to amend the Agricultural Credit Act of 1978 to authorize the Secretary of Agriculture to provide for floodplain easement restoration and management, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1361","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1361/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1361/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1361/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"cosponsors.count":1,"introducedDate":"2023-04-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1361?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7710","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"759","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 12.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 12.","sponsors.0.party":"R","number":"1085","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1085/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1085/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1085/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-20","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1085/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1085","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1085/subjects?format=json","title":"REFINER Act","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/20?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1085/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1085?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by directing the National Petroleum Council to\nissue a report examining the importance of petrochemical\nrefineries to energy security\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7711","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"1249","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1086/text?format=json","relatedBills.count":4,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"1086","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1086/subjects?format=json","policyArea.name":"Energy","title":"Nuclear Fuel Security Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1086","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1086/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1086/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1086/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1086/relatedbills?format=json","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nto establish and expand U.S. nuclear fuel programs to boost\ndomestic nuclear energy.\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7712","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"1250","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 12.","sponsors.0.party":"R","number":"1085","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1085/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1085/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1085/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-20","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1085/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1085","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1085/subjects?format=json","title":"REFINER Act","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-03-30","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/20?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1085/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/1085?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by directing the National Petroleum Council to\nissue a report examining the importance of petrochemical\nrefineries to energy security\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7713","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"1705","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Latta","cboCostEstimates.0.pubDate":"2023-04-20T20:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Science, Technology, Communications","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1339","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1339/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1339/actions?format=json","latestAction.actionDate":"2023-05-01","textVersions.count":4,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-42","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1339/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":21,"request.billNumber":"1339","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1339/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1339/subjects?format=json","title":"Precision Agriculture Satellite Connectivity Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on March 24, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59093","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-13","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/42?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1339/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1339/summaries?format=json","cboCostEstimates.0.title":"H.R. 1339, Precision Agriculture Satellite Connectivity Act","introducedDate":"2023-03-03","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1339?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1339.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo modernize FCC satellite regulations as it related to\nprecision agriculture.\n[Page H1114]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7714","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"1722","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1086/text?format=json","relatedBills.count":4,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"1086","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1086/subjects?format=json","policyArea.name":"Energy","title":"Nuclear Fuel Security Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1086","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1086/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1086/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1086/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1086/relatedbills?format=json","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nto establish and expand U.S. nuclear fuel programs to boost\ndomestic nuclear energy.\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7715","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"1803","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1086/text?format=json","relatedBills.count":4,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","request.billNumber":"1086","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1086/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1086/subjects?format=json","policyArea.name":"Energy","title":"Nuclear Fuel Security Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"1086","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1086/cosponsors?format=json","sponsors.0.bioguideId":"L000566","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1086/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1086/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1086/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1086/relatedbills?format=json","sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":3,"introducedDate":"2023-02-17","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1086?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1086.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nto establish and expand U.S. nuclear fuel programs to boost\ndomestic nuclear energy.\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7716","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9456","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3712/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3712","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S838)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/3712/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3712/committees?format=json","type":"S","title":"A bill to amend the National Voter Registration Act of 1993 to treat United States Citizenship and Immigration Services field offices as voter registration agencies, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S311)","sponsors.0.party":"D","number":"3712","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3712/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3712/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3712/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3712/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3712/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":2,"introducedDate":"2024-01-31","cosponsors.count":16,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3712?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-07-24T15:19:17Z"}}} +{"type":"relationship","id":"7717","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"1806","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Latta","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 12.","sponsors.0.party":"R","number":"1085","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1085/cosponsors?format=json","sponsors.0.bioguideId":"L000566","actions.url":"https://api.congress.gov/v3/bill/118/hr/1085/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1085/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Latta, Robert E. [R-OH-5]","titles.count":6,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-20","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1085/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1085","sponsors.0.url":"https://api.congress.gov/v3/member/L000566?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1085/subjects?format=json","title":"REFINER Act","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-03-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/20?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1085/summaries?format=json","introducedDate":"2023-02-17","subjects.count":6,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1085?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LATTA:\nH.R. 1085.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18:\nThe Congress shall have Power to make all Laws which shall\nbe necessary and proper for carrying into Executive the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by directing the National Petroleum Council to\nissue a report examining the importance of petrochemical\nrefineries to energy security\n[Page H855]\n","sponsors.0.district":5,"sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7718","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"103","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10351/text?format=json","updateDate":"2025-01-14T01:23:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Flood","sponsors.0.isByRequest":"N","request.billNumber":"10351","sponsors.0.url":"https://api.congress.gov/v3/member/F000474?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10351/committees?format=json","type":"HR","title":"Housing Supply and Innovation Frameworks Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"10351","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10351/cosponsors?format=json","sponsors.0.bioguideId":"F000474","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10351/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10351/actions?format=json","latestAction.actionDate":"2024-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Flood, Mike [R-NE-1]","titles.count":3,"introducedDate":"2024-12-11","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10351?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T01:23:21Z"}}} +{"type":"relationship","id":"7719","label":"SPONSORED","start":{"id":"4025","labels":["Person"],"properties":{"updateDate":"2025-02-20T13:25:06Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg","district":"1","startYear":"2022","name":"Flood, Mike","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000474?format=json","bioguideId":"F000474"}},"end":{"id":"8895","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5741/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Flood","bill.latestAction.actionDate":"2021-11-04","sponsors.0.isByRequest":"N","latestAction_text":"Sponsor introductory remarks on measure. (CR H6186)","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5741/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5741","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 188 (Tuesday, October 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 5741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4 of the United States\nConstitution\n[Page H5932]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5741/cosponsors?format=json","sponsors.0.bioguideId":"F000474","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5741/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Flood, Mike [R-NE-1]","bill.sponsors.0.bioguideId":"N000189","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":22,"bill.latestAction.text":"Sponsor introductory remarks on measure. (CR H6186)","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5741/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-20T09:05:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5741/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000474?format=json","request.billNumber":"5741","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5741/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5741/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Uniform Treatment of Custodial Assets Act","bill.title":"Options Over Terminations Act","bill.number":"5741","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5741/committees?format=json","latestAction_actionDate":"2021-11-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5741/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5741/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","introducedDate":"2023-09-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"NE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5741/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5741/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5741?format=json","bill.introducedDate":"2021-10-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 157 (Wednesday, September 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FLOOD:\nH.R. 5741.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nThe bill would standardize the treatment of custodial\nassets for banks, credit unions and trusts.\n[Page H4714]\n","sponsors.0.district":1,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Mike","bill.type":"HR","updateDateIncludingText":"2024-11-20T09:05:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5741/text?format=json","bill.sponsors.0.lastName":"Newhouse"}}} +{"type":"relationship","id":"7720","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9727","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-01-28","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/126/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"7729","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"119","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10355/text?format=json","updateDate":"2025-01-14T01:23:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bice","sponsors.0.isByRequest":"N","request.billNumber":"10355","sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10355/committees?format=json","type":"HR","title":"Secret Service Recording Accountability Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"10355","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2024-12-11","sponsors.0.bioguideId":"B000740","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10355/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10355/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-11","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","titles.count":3,"introducedDate":"2024-12-11","request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10355?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Stephanie","updateDateIncludingText":"2025-01-14T01:23:20Z"}}} +{"type":"relationship","id":"7730","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"836","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/451/text?format=json","updateDate":"2024-12-21T09:05:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bice","sponsors.0.isByRequest":"N","request.billNumber":"451","sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/451/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Families from Fertility Fraud Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"451","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/451/cosponsors?format=json","sponsors.0.bioguideId":"B000740","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/451/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":55,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/451?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Stephanie","updateDateIncludingText":"2024-12-21T09:05:46Z"}}} +{"type":"relationship","id":"7731","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"1583","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/451/text?format=json","updateDate":"2024-12-21T09:05:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bice","sponsors.0.isByRequest":"N","request.billNumber":"451","sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S5366; text: CR S5362)","committees.url":"https://api.congress.gov/v3/bill/118/hr/451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/451/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Families from Fertility Fraud Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"451","cosponsors.countIncludingWithdrawnCosponsors":55,"request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2023-11-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/451/cosponsors?format=json","sponsors.0.bioguideId":"B000740","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/451/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":55,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"OK","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/451?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Stephanie","updateDateIncludingText":"2024-12-21T09:05:46Z"}}} +{"type":"relationship","id":"7732","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"8706","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8522/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bice","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8522/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Agriculture.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8522","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BONAMICI:\nH.R. 8522.\nCongress has the power to enact this legislation pursuant\ntc following:\nClause 1 of Section 8 of Article 1 of the Constitution\n[Page H7255]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8522/cosponsors?format=json","sponsors.0.bioguideId":"B000740","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8522/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8522/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","bill.sponsors.0.bioguideId":"B001278","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bonamici, Suzanne [D-OR-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8522/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-02T13:36:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8522/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","request.billNumber":"8522","committees.url":"https://api.congress.gov/v3/bill/118/hr/8522/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8522/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Agriculture and National Security Act of 2024","bill.title":"SIMPLE Act","bill.number":"8522","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8522/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8522/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8522/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001278?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzanne","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8522/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8522/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8522?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE:\nH.R. 8522.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8: To make all laws which shall be\nnecessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\nThe single subject of this legislation is:\nAgriculture\n[Page H3524]\n","sponsors.0.district":5,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":1,"sponsors.0.firstName":"Stephanie","bill.type":"HR","updateDateIncludingText":"2024-08-02T13:36:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8522/text?format=json","bill.sponsors.0.lastName":"Bonamici"}}} +{"type":"relationship","id":"7733","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"9083","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bice","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3471/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3471","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. AXNE:\nH.R. 3471.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution.\n[Page H2666]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3471/cosponsors?format=json","sponsors.0.bioguideId":"B000740","bill.subjects.count":26,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3471/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3471/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-19","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","bill.sponsors.0.bioguideId":"A000378","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3471/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Axne, Cynthia [D-IA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3471/text?format=json","bill.updateDate":"2025-01-03T05:05:03Z","updateDate":"2024-07-24T15:22:04Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3471/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","request.billNumber":"3471","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3471/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3471/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:03Z","title":"Access to Safe Contraception Act of 2023","bill.title":"Workforce Investment Disclosure Act of 2021","bill.number":"3471","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3471/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3471/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3471/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000378?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Cynthia","sponsors.0.state":"OK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3471/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3471/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3471?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE:\nH.R. 3471.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nthe bill allows access to safe methods of contraception\n[Page H2457]\n","sponsors.0.district":5,"bill.sponsors.0.state":"IA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Stephanie","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:04Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3471/text?format=json","bill.sponsors.0.lastName":"Axne"}}} +{"type":"relationship","id":"7734","label":"SPONSORED","start":{"id":"4088","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/b000740_200.jpg","startYear":"2021","partyName":"Republican","name":"Bice, Stephanie I.","attribution":"Image courtesy of the Member","state":"Oklahoma","url":"https://api.congress.gov/v3/member/B000740?format=json","bioguideId":"B000740"}},"end":{"id":"9122","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2995/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Bice","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2995/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"2995","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss RICE of New York:\nH.R. 2995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2995/cosponsors?format=json","sponsors.0.bioguideId":"B000740","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2995/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2995/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","bill.sponsors.0.bioguideId":"R000602","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rice, Kathleen M. [D-NY-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2995/text?format=json","bill.updateDate":"2025-01-03T05:00:50Z","updateDate":"2024-11-09T04:56:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2995/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","request.billNumber":"2995","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2995/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2995/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:50Z","title":"National Mesonet Authorization Act","bill.title":"NFIP RISC Act of 2021","bill.number":"2995","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2995/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2995/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2995/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000602?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kathleen","sponsors.0.state":"OK","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2995/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2995/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2995?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 72 (Friday, April 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE:\nH.R. 2995.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nAuthorizes the National Weather Service National Mesonet\nProgram\n[Page H2119]\n","sponsors.0.district":5,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":4,"sponsors.0.firstName":"Stephanie","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2995/text?format=json","bill.sponsors.0.lastName":"Rice"}}} +{"type":"relationship","id":"7735","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"127","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10191/text?format=json","updateDate":"2024-12-16T19:26:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"10191","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10191/subjects?format=json","policyArea.name":"Native Americans","type":"HR","title":"Nottoway Indian Tribe of Virginia Federal Recognition Act","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"10191","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"M001227","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10191/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-21","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":3,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10191?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-16T19:26:13Z"}}} +{"type":"relationship","id":"7736","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"201","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9425/text?format=json","updateDate":"2024-10-07T14:18:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"9425","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9425/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9425/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Tobacco User Fee Modernization Act of 2024","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"D","number":"9425","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"M001227","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9425/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9425/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":3,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9425?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. McCLELLAN:\nH.R. 9425.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3: To regulate Commerce with\nForeign Nations, and among several States, and with the\nIndian Tribes\nThe single subject of this legislation is:\nFDA User Fees for Tobacco Products\n[Page H5021]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-10-07T14:18:34Z"}}} +{"type":"relationship","id":"7737","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"9779","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/122?format=json","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7738","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8336/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:44:14Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"8336","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8336/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8336/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"To amend title 10, United States Code, to establish a counseling pathway in the Transition Assistance Program for members of the reserve components of the Armed Forces.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"8336","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8336/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8336/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8336/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8336/relatedbills?format=json","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2024-05-10","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8336?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. McCLELLAN:\nH.R. 8336.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 12\nThe single subject of this legislation is:\nMilitary Training\n[Page H3005]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-31T18:44:14Z"}}} +{"type":"relationship","id":"7739","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9420","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4218/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4218","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/4218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4218/subjects?format=json","type":"S","title":"A bill to designate the visitor center for the First State National Historical Park to be located at the Sheriff's House in New Castle, Delaware, as the \"Thomas R. Carper Visitor Center\".","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 615.","sponsors.0.party":"D","number":"4218","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4218/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4218/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4218/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4218?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"7740","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9653","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1355/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1355","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1355/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1355/committees?format=json","policyArea.name":"Health","type":"S","title":"PASTEUR Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1355","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1355/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1355/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1355/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1355?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7741","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"1460","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/874/text?format=json","updateDate":"2024-12-06T16:59:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"874","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H5940-5941)","committees.url":"https://api.congress.gov/v3/bill/118/hres/874/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/874/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","latestAction.text":"Sponsor introductory remarks on measure. (CR H5940-5941)","sponsors.0.party":"D","number":"874","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2023-11-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/874/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/874/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/874/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/874/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-29","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/874?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-06T16:59:43Z"}}} +{"type":"relationship","id":"7742","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"9645","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1349/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"1349","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1349/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1349/committees?format=json","policyArea.name":"Education","title":"College Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1349","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1349/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1349/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1349/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1349/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1349/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":31,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1349?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7743","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9616","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1629/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"1629","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1629/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1629/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Hatch Act Enforcement Transparency and Accountability Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"1629","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1629/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1629/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1629/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1629?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7744","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9656","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1043/text?format=json","relatedBills.count":7,"updateDate":"2024-11-09T04:51:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Rosendale","sponsors.0.isByRequest":"N","request.billNumber":"1043","sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1043/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1043/committees?format=json","policyArea.name":"Energy","type":"HR","title":"To restore onshore energy production.","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","sponsors.0.party":"R","number":"1043","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1043/cosponsors?format=json","sponsors.0.bioguideId":"R000103","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1043/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1043/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1043/actions?format=json","latestAction.actionDate":"2023-03-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1043/relatedbills?format=json","sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-2]","titles.count":2,"introducedDate":"2023-02-14","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1043?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 1043.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation restarts the federal onshore leasing\nprogram and requires replacement sales when a sale is missed.\n[Page H842]\n","sponsors.0.district":2,"sponsors.0.firstName":"Matthew","updateDateIncludingText":"2024-11-09T04:51:58Z"}}} +{"type":"relationship","id":"7745","label":"SPONSORED","start":{"id":"3997","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000880_200.jpg","startYear":"1993","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Crapo, Mike","state":"Idaho","endYear":"1999","url":"https://api.congress.gov/v3/member/C000880?format=json","bioguideId":"C000880"}},"end":{"id":"9994","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/392/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T22:54:53Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"392","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6746; text: CR S6745)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/392/subjects?format=json","policyArea.name":"Emergency Management","type":"SRES","title":"A resolution recognizing and honoring the first responders and those who lost their lives in the Maui wildfires in August 2023 that affected thousands of people.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4895; text: CR S4893)","sponsors.0.party":"D","number":"392","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-28","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/392/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/392/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/392/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/392/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/392/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2023-09-30","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/392?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-12-19T22:54:53Z"}}} +{"type":"relationship","id":"7746","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"8619","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6095/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClellan","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6095/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6095","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 206 (Tuesday, November 30, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TLAIB:\nH.R. 6095.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1 of the Constitution.\n[Page H6711]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6095/cosponsors?format=json","sponsors.0.bioguideId":"M001227","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6095/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-27","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","bill.sponsors.0.bioguideId":"T000481","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tlaib, Rashida [D-MI-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6095/text?format=json","bill.updateDate":"2025-01-03T07:36:06Z","updateDate":"2024-10-05T08:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6095/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","request.billNumber":"6095","committees.url":"https://api.congress.gov/v3/bill/118/hr/6095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6095/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:36:06Z","title":"Department of Defense PFAS Discharge Prevention Act","bill.title":"Lebanon TPS Act of 2021","bill.number":"6095","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6095/committees?format=json","request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6095/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6095/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000481?format=json","introducedDate":"2023-10-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Rashida","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6095/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6095/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6095?format=json","bill.introducedDate":"2021-11-30","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 177 (Thursday, October 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. McCLELLAN:\nH.R. 6095.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has authority for this legislation under Article\nI, Section 8, Clause 14 of the Constitution\nThe single subject of this legislation is:\nDefense, particularly regulation of DoD properties and\nfacilities.\n[Page H5176]\n","sponsors.0.district":4,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":13,"sponsors.0.firstName":"Jennifer","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6095/text?format=json","bill.sponsors.0.lastName":"Tlaib"}}} +{"type":"relationship","id":"7747","label":"SPONSORED","start":{"id":"4052","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/m001227_200.jpg","startYear":"2023","partyName":"Democratic","name":"McClellan, Jennifer L.","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/M001227?format=json","bioguideId":"M001227"}},"end":{"id":"9960","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/874/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T16:59:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"McClellan","sponsors.0.isByRequest":"N","request.billNumber":"874","sponsors.0.url":"https://api.congress.gov/v3/member/M001227?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7305; text: CR S7312-7313)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/874/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/874/committees?format=json","type":"HRES","title":"Expressing support for the designation of \"Prematurity Awareness Month\".","latestAction.text":"Sponsor introductory remarks on measure. (CR H5940-5941)","sponsors.0.party":"D","number":"874","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2022-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/874/cosponsors?format=json","sponsors.0.bioguideId":"M001227","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/874/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/874/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/874/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/874/relatedbills?format=json","latestAction.actionDate":"2023-11-29","sponsors.0.fullName":"Rep. McClellan, Jennifer L. [D-VA-4]","titles.count":2,"introducedDate":"2023-11-17","cosponsors.count":37,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/874?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Jennifer","updateDateIncludingText":"2024-12-06T16:59:43Z"}}} +{"type":"relationship","id":"7748","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"128","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10216/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"10216","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10216/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10216/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Ending Racism in Government Contracting Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committees on Small Business, Transportation and Infrastructure, and Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"10216","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10216/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10216/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10216/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-21","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10216?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7749","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"475","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5802/text?format=json","updateDate":"2024-07-24T15:20:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"5802","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5802/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5802/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Employee Business Expense Deduction Reinstatement Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"5802","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5802/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5802/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5802/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5802/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5802?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 5802.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8.\nThe single subject of this legislation is:\nReinstating the employee business expense deduction tax\nprovision.\n[Page H4856]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2024-07-24T15:20:16Z"}}} +{"type":"relationship","id":"7750","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"1331","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/223/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T14:42:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"223","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/223/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/223/committees?format=json","policyArea.name":"Environmental Protection","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"223","request.format":"json","latestAction_actionDate":"2024-11-19","sponsors.0.bioguideId":"G000576","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/223/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/223/actions?format=json","latestAction.actionDate":"2024-11-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/223/relatedbills?format=json","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":2,"introducedDate":"2024-11-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/223?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 171 (Tuesday, November 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.J. Res. 223\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Environmental\nProtection Agency relating to ``Waste Emissions Charge for\nPetroleum and Natural Gas Systems: Procedures for\nFacilitating Compliance, Including Netting and Exemptions''.\n[Page H6110]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-01-03T14:42:45Z"}}} +{"type":"relationship","id":"7751","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"1704","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1296/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"1296","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1296/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1296/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Restoration of Employment Choice for Adults with Disabilities Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1296","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1296/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1296/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1296/actions?format=json","latestAction.actionDate":"2023-03-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1296?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1296.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nDisability employment\n[Page H1051]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7752","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"1974","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/223/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T14:42:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"223","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/223/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hjres/223/committees?format=json","policyArea.name":"Environmental Protection","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"223","request.format":"json","latestAction_actionDate":"2025-03-14","sponsors.0.bioguideId":"G000576","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/223/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/223/actions?format=json","latestAction.actionDate":"2024-11-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/223/relatedbills?format=json","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":2,"introducedDate":"2024-11-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hres/223?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 171 (Tuesday, November 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.J. Res. 223\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo disapprove of the rule submitted by the Environmental\nProtection Agency relating to ``Waste Emissions Charge for\nPetroleum and Natural Gas Systems: Procedures for\nFacilitating Compliance, Including Netting and Exemptions''.\n[Page H6110]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-01-03T14:42:45Z"}}} +{"type":"relationship","id":"7753","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"8704","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8499/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8499/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8499","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 124 (Tuesday, July 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUDSON:\nH.R. 8499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: The Congress shall have\nPower to make all Laws which shall be necessary and proper\nfor carrying into Executive the foregoing Powers, and all\nother Powers vested by this Constitution in the Government of\nthe United States, or in any Department or Officer thereof.\n[Page H7171]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8499/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8499/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8499/relatedbills?format=json","latestAction.actionDate":"2024-05-22","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"H001067","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8499/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8499/text?format=json","bill.updateDate":"2025-01-03T07:56:14Z","updateDate":"2024-08-19T18:05:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8499/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"8499","committees.url":"https://api.congress.gov/v3/bill/118/hr/8499/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8499/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:14Z","title":"Clean Elections in America Act","bill.title":"Transparency and Honesty in Energy Regulations Act of 2022","bill.number":"8499","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8499/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8499/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8499/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-05-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Richard","sponsors.0.state":"WI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8499/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8499/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8499?format=json","bill.introducedDate":"2022-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 89 (Wednesday, May 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 8499.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nAbsentee Ballot Requirements\n[Page H3484]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":8,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2024-09-18T16:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8499/text?format=json","bill.sponsors.0.lastName":"Hudson"}}} +{"type":"relationship","id":"7754","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9562","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2452/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2452","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S5053)","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/2452/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2452/committees?format=json","type":"S","title":"Biomanufacturing and Jobs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2452","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2452/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2452/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2452/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2452/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2452/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":3,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2452?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7755","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9670","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1028/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"1028","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1028/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1028/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Servicemembers and Veterans Empowerment and Support Act of 2023","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"1028","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1028/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1028/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1028/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1028/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1028/relatedbills?format=json","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1028?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"7756","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"8781","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-04-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7495/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"HOLMES","number":"7495","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 63 (Monday, April 11, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 7495.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\n[Page H4438]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7495/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7495/actions?format=json","latestAction.actionDate":"2024-02-29","textVersions.count":1,"bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"N000147","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7495/text?format=json","bill.updateDate":"2025-01-03T07:47:46Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7495/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"7495","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7495/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7495/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:47:46Z","title":"Empowering Learners through Competency-Based Education Act","bill.title":"Civil War Defenses of Washington National Historical Park Act","bill.number":"7495","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7495/committees?format=json","request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2022-04-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7495/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7495/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","introducedDate":"2024-02-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7495/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7495/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7495?format=json","bill.introducedDate":"2022-04-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 37 (Thursday, February 29, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 7495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nEducation\n[Page H773]\n","sponsors.0.district":6,"bill.sponsors.0.state":"DC","sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7495/text?format=json","bill.sponsors.0.lastName":"NORTON"}}} +{"type":"relationship","id":"7757","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"9658","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1053/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Van Duyne","sponsors.0.isByRequest":"N","request.billNumber":"1053","sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1053/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1053/committees?format=json","policyArea.name":"Housing and Community Development","title":"Housing Supply Expansion Act","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1053","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1053/cosponsors?format=json","sponsors.0.bioguideId":"V000134","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1053/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1053/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1053/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1053/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":11,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1053?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VAN DUYNE:\nH.R. 1053.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8\nThe single subject of this legislation is:\nThis bill only updates regarding prevalent wage\ndeterminations in order to expand access to affordable\nhousing.\n[Page H842]\n","sponsors.0.district":24,"sponsors.0.firstName":"Beth","updateDateIncludingText":"2025-02-19T17:27:12Z"}}} +{"type":"relationship","id":"7758","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9649","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1346/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1346","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1346/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1346/committees?format=json","policyArea.name":"Health","type":"S","title":"Improving Mental Health Access from the Emergency Department Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1346","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1346/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1346/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1346/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1346/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1346/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1346?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7759","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9693","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/748/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"748","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/748/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/748/committees?format=json","type":"S","title":"American Aviator Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"748","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/748/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/748/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/748/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/748/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/748/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/748?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7760","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9431","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4203/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"4203","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/4203/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4203/committees?format=json","type":"S","title":"Agricultural Emergency Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"4203","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4203/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4203/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4203/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4203/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4203/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4203?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7761","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"8805","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7184/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-03-28","cboCostEstimates.0.pubDate":"2024-03-28T16:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Economics and Public Finance","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7184/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported (Amended) by the Yeas and Nays: 41 - 0.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7184","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 7184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[[Page H3859]]\n[Page H3858]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7184/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7184/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7184/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"L000582","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7184/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-33]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7184/text?format=json","bill.updateDate":"2024-02-07T16:12:44Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7184/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"7184","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7184/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7184/committees?format=json","bill.updateDateIncludingText":"2024-02-07T16:12:44Z","title":"Congressional Budget Office Data Access Act","bill.title":"To amend the West Los Angeles Leasing Act of 2016 with respect to the definition of land use revenue.","bill.number":"7184","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60160","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7184/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7184/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7184/summaries?format=json","bill.cosponsors.count":2,"cboCostEstimates.0.title":"H.R. 7184, Congressional Budget Office Data Access Act of 2024","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-02-01","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7184/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7184/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7184?format=json","bill.introducedDate":"2022-03-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 7184.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nData Access\n[Page H388]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":33,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T17:04:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7184/text?format=json","bill.sponsors.0.lastName":"Lieu"}}} +{"type":"relationship","id":"7762","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"8829","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4616, Adjustable Interest Rate (LIBOR) Act of 2021","bill.textVersions.count":4,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2022-03-03","cboCostEstimates.0.pubDate":"2022-03-03T16:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Education","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4616/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":3,"sponsors.0.party":"R","number":"4616","bill.committeeReports.0.citation":"H. Rept. 117-206","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 129 (Thursday, July 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SHERMAN:\nH.R. 4616.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe power granted to Congress under Article I, Section 8,\nClauses 1 and 18 of the United States Constitution.\n[Page H3844]\n","sponsors.0.bioguideId":"G000576","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4616/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4616/relatedbills?format=json","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"S000344","bill.cboCostEstimates.0.description":"As passed by the House of Representatives on December 8, 2021\n","bill.originChamber":"House","bill.actions.count":25,"titles.count":3,"bill.latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-03-03T16:03:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4616/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/206?format=json","committeeReports.0.citation":"H. Rept. 117-206","bill.sponsors.0.fullName":"Rep. Sherman, Brad [D-CA-30]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4616/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4616/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"4616","committees.url":"https://api.congress.gov/v3/bill/118/hr/4616/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4616/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:38:14Z","title":"Informed Student Borrowing Act of 2023","bill.title":"Adjustable Interest Rate (LIBOR) Act of 2021","bill.number":"4616","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As passed by the House of Representatives on December 8, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57896","committeeReports":[],"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4616/committees?format=json","latestAction_actionDate":"2022-03-03","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/206?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4616/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4616/summaries?format=json","cboCostEstimates.0.title":"H.R. 4616, Adjustable Interest Rate (LIBOR) Act of 2021","bill.titles.count":6,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S000344?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-13","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":4,"bill.sponsors.0.firstName":"BRAD","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4616/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4616/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4616?format=json","bill.introducedDate":"2021-07-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 4616.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nEducation\n[Page H3576]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":30,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4616/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57896","bill.sponsors.0.lastName":"SHERMAN"}}} +{"type":"relationship","id":"7763","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"9261","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/553/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Grothman","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/553/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"553","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LARSEN of Washington:\nH.R. 553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 1--All legislative Powers herein granted\nshall be vested in a Congress of the United States, which\nshall consist of a Senate and House of Representatives.\n[Page H251]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/553/cosponsors?format=json","sponsors.0.bioguideId":"G000576","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/553/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/553/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","bill.sponsors.0.bioguideId":"L000560","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Larsen, Rick [D-WA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/553/text?format=json","bill.updateDate":"2025-01-03T04:43:09Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/553/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","request.billNumber":"553","subjects.url":"https://api.congress.gov/v3/bill/118/hr/553/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/553/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:09Z","title":"Workplace Choice and Flexibility for Individuals with Disabilities Act","bill.title":"Aviation Manufacturing Jobs Protection Act of 2021","bill.number":"553","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/553/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/553/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/553/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000560?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"RICK","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/553/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/553/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/553?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nDisabilitiy employment\n[Page H429]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Glenn","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/553/text?format=json","bill.sponsors.0.lastName":"LARSEN"}}} +{"type":"relationship","id":"7764","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9564","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2457/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2457","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2457/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2457/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Self-Governance, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2457","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2457/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2457/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2457/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2457?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7765","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9671","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1027/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"1027","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/1027/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1027/subjects?format=json","title":"STAND with Taiwan Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1027","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1027/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1027/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1027/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1027/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1027/relatedbills?format=json","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1027?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7766","label":"SPONSORED","start":{"id":"4042","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg","startYear":"2015","partyName":"Republican","name":"Grothman, Glenn","attribution":"Congressional Pictorial Directory","state":"Wisconsin","url":"https://api.congress.gov/v3/member/G000576?format=json","bioguideId":"G000576"}},"end":{"id":"9501","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1296/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grothman","sponsors.0.isByRequest":"N","request.billNumber":"1296","sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1296/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1296/committees?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Restoration of Employment Choice for Adults with Disabilities Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1296","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1296/cosponsors?format=json","sponsors.0.bioguideId":"G000576","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1296/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1296/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1296/relatedbills?format=json","latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1296?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1296.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nDisability employment\n[Page H1051]\n","sponsors.0.district":6,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7767","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"9683","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/759/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"759","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/759/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/759/committees?format=json","title":"Beagle Brigade Act of 2023","type":"S","latestAction.text":"Became Public Law No: 118-191.","sponsors.0.party":"D","number":"759","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/759/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/759/titles?format=json","laws.0.number":"118-191","summaries.url":"https://api.congress.gov/v3/bill/118/s/759/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/759/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/759/relatedbills?format=json","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":5,"introducedDate":"2023-03-09","cosponsors.count":11,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/759?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:43:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7768","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9687","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/754/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"754","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/754/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/754/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Mental Health and Wellness in Schools Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"754","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/754/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/754/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/754/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/754/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/754/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/754?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"7769","label":"SPONSORED","start":{"id":"4081","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/m001223_200.jpg","startYear":"2023","partyName":"Democratic","name":"Magaziner, Seth","attribution":"Image courtesy of the Member","state":"Rhode Island","url":"https://api.congress.gov/v3/member/M001223?format=json","bioguideId":"M001223"}},"end":{"id":"133","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10226/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Magaziner","sponsors.0.isByRequest":"N","request.billNumber":"10226","sponsors.0.url":"https://api.congress.gov/v3/member/M001223?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10226/committees?format=json","type":"HR","title":"National Guard and Reserve Student Loan Fairness Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"10226","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10226/cosponsors?format=json","sponsors.0.bioguideId":"M001223","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10226/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10226/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Magaziner, Seth [D-RI-2]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10226?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Seth","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7770","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9432","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4202/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"4202","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S2494-2495)","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/4202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4202/subjects?format=json","title":"Embassy in a Box Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4202","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4202/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4202/actions?format=json","latestAction.actionDate":"2024-04-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4202/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":3,"introducedDate":"2024-04-23","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4202?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7780","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9334","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5085/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Helmy","sponsors.0.isByRequest":"N","request.billNumber":"5085","sponsors.0.url":"https://api.congress.gov/v3/member/H001097?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5085/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5085/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Justice for Trooper Werner Foerster Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"5085","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5085/cosponsors?format=json","sponsors.0.bioguideId":"H001097","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5085/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5085/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5085/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5085/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Helmy, George S. [D-NJ]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5085?format=json","sponsors.0.firstName":"George","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7781","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"138","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10230/text?format=json","updateDate":"2024-12-20T09:05:30Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meng","sponsors.0.isByRequest":"N","request.billNumber":"10230","sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10230/committees?format=json","type":"HR","title":"Good Samaritan Menstrual Products Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"10230","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10230/cosponsors?format=json","sponsors.0.bioguideId":"M001188","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10230/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10230/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":19,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10230?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Grace","updateDateIncludingText":"2024-12-20T09:05:30Z"}}} +{"type":"relationship","id":"7782","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"10020","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/138/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McHenry","sponsors.0.isByRequest":"N","request.billNumber":"138","sponsors.0.url":"https://api.congress.gov/v3/member/M001156?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1833)","committees.url":"https://api.congress.gov/v3/bill/118/hres/138/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/138/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing amounts for the expenses of the Committee on Financial Services in the One Hundred Eighteenth Congress.","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"138","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/138/cosponsors?format=json","sponsors.0.bioguideId":"M001156","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/138/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/138/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/138/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/138/relatedbills?format=json","sponsors.0.fullName":"Rep. McHenry, Patrick T. [R-NC-10]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":2,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/138?format=json","sponsors.0.district":10,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:23:54Z"}}} +{"type":"relationship","id":"7783","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"643","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3188/text?format=json","relatedBills.count":3,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Meng","sponsors.0.isByRequest":"N","request.billNumber":"3188","sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3188/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3188/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Teaching Asian Pacific American History Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"3188","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3188/cosponsors?format=json","sponsors.0.bioguideId":"M001188","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3188/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3188/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3188/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3188?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 3188.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution [page H10170]\nThe single subject of this legislation is:\nEducation\n[Page H2246]\n","sponsors.0.district":6,"sponsors.0.firstName":"Grace","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7784","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"8891","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Commerce","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6058/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6058","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DEAN:\nH.R. 6058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6058/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6058/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6058/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"D000631","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","cosponsors.count":3,"request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6058/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Dean, Madeleine [D-PA-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6058/text?format=json","bill.updateDate":"2025-01-03T07:35:52Z","updateDate":"2024-07-25T08:06:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6058/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"6058","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6058/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6058/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:52Z","title":"Interagency Committee on Women’s Business Enterprise Act of 2023","bill.title":"PFAS Health Study Act of 2021","bill.number":"6058","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6058/committees?format=json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6058/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6058/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000631?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Madeleine","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6058/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6058/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6058?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 6058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nSupporting women in business.\n[Page H5107]\n","sponsors.0.district":6,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":4,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2024-07-25T08:06:00Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6058/text?format=json","bill.sponsors.0.lastName":"Dean"}}} +{"type":"relationship","id":"7785","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"8980","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4929/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4929/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"4929","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4929.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4929/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4929/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4929/text?format=json","bill.updateDate":"2025-01-03T07:25:40Z","updateDate":"2024-06-27T08:05:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4929/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"4929","committees.url":"https://api.congress.gov/v3/bill/118/hr/4929/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4929/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:40Z","title":"Strategic Lebanon Security Reporting Act","bill.title":"REST Act of 2021","bill.number":"4929","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4929/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4929/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4929/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4929/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4929/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4929?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 4929.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nLebanon\n[Page H4032]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2024-06-27T08:05:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4929/text?format=json","bill.sponsors.0.lastName":"Speier"}}} +{"type":"relationship","id":"7786","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9435","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3985/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3985","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/3985/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3985/subjects?format=json","type":"S","title":"Sarvis Creek Wilderness Completion Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 609.","sponsors.0.party":"D","number":"3985","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3985/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3985/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3985/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3985/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3985/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":4,"introducedDate":"2024-03-20","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3985?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"7787","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"9087","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3519/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3519/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3519","bill.cosponsors.countIncludingWithdrawnCosponsors":95,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3519/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3519/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3519/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"L000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":121,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3519/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3519/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3519/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"3519","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3519/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3519/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Hot Foods Act of 2023","bill.title":"Stop Child Hunger Act of 2021","bill.number":"3519","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":121,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3519/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3519/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3519/summaries?format=json","bill.cosponsors.count":95,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3519/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3519/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3519?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nSNAP\n[Page H2459]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3519/text?format=json","bill.sponsors.0.lastName":"Levin"}}} +{"type":"relationship","id":"7788","label":"SPONSORED","start":{"id":"4110","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001188_200.jpg","district":"6","startYear":"2013","name":"Meng, Grace","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M001188?format=json","bioguideId":"M001188"}},"end":{"id":"9313","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3519/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Meng","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-345.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3519/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3519","bill.cosponsors.countIncludingWithdrawnCosponsors":95,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LEVIN of California:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3519/cosponsors?format=json","sponsors.0.bioguideId":"M001188","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3519/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3519/relatedbills?format=json","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Meng, Grace [D-NY-6]","bill.sponsors.0.bioguideId":"L000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":121,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3519/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Levin, Mike [D-CA-49]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3519/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3519/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001188?format=json","request.billNumber":"3519","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3519/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3519/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Hot Foods Act of 2023","bill.title":"Stop Child Hunger Act of 2021","bill.number":"3519","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":121,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3519/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3519/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3519/summaries?format=json","bill.cosponsors.count":95,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000593?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mike","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3519/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3519/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3519?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MENG:\nH.R. 3519.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nSNAP\n[Page H2459]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":49,"sponsors.0.firstName":"Grace","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3519/text?format=json","bill.sponsors.0.lastName":"Levin"}}} +{"type":"relationship","id":"7789","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"144","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10032/text?format=json","relatedBills.count":2,"updateDate":"2024-12-16T19:21:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scanlon","sponsors.0.isByRequest":"N","request.billNumber":"10032","sponsors.0.url":"https://api.congress.gov/v3/member/S001205?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10032/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10032/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Dropbox Access Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"10032","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/10032/cosponsors?format=json","sponsors.0.bioguideId":"S001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10032/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10032/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/10032/relatedbills?format=json","sponsors.0.fullName":"Rep. Scanlon, Mary Gay [D-PA-5]","titles.count":3,"introducedDate":"2024-10-22","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10032?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2024-12-16T19:21:33Z"}}} +{"type":"relationship","id":"7790","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"416","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6713/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Scanlon","sponsors.0.isByRequest":"N","request.billNumber":"6713","sponsors.0.url":"https://api.congress.gov/v3/member/S001205?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6713/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Corporate Crime Database Act of 2023","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"6713","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6713/cosponsors?format=json","sponsors.0.bioguideId":"S001205","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6713/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6713/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6713/relatedbills?format=json","sponsors.0.fullName":"Rep. Scanlon, Mary Gay [D-PA-5]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6713?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCANLON:\nH.R. 6713.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo direct the Director of the Bureau of Justice Statistics\nto establish a database with respect to corporate offenses.\n[Page H6815]\n","sponsors.0.district":5,"sponsors.0.firstName":"Mary","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7791","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"8563","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9408/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Scanlon","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9408/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9408","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9408/cosponsors?format=json","sponsors.0.bioguideId":"S001205","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9408/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9408/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-23","bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Scanlon, Mary Gay [D-PA-5]","bill.sponsors.0.bioguideId":"H001058","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9408/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9408/text?format=json","bill.updateDate":"2025-01-03T08:05:05Z","updateDate":"2024-12-17T09:05:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9408/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001205?format=json","request.billNumber":"9408","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9408/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9408/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:05:05Z","title":"Pedestrian Protection Act","bill.title":"Mandatory Materiality Requirement Act of 2022","bill.number":"9408","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9408/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","sponsors.0.middleName":"Gay","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9408/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9408/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9408/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9408/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9408?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SCANLON:\nH.R. 9408.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo establish certain safety standards and disclose certain\ninformation relating to pedestrians and motor vehicles.\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":5,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mary","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9408/text?format=json","bill.sponsors.0.lastName":"Huizenga"}}} +{"type":"relationship","id":"7799","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"150","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9806/text?format=json","updateDate":"2024-12-16T19:17:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Budzinski","sponsors.0.isByRequest":"N","request.billNumber":"9806","sponsors.0.url":"https://api.congress.gov/v3/member/B001315?format=json","latestAction_text":"Referred to the Subcommittee on Oversight and Investigations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9806/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9806/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Improving Veterans’ Experience Act of 2024","latestAction.text":"Referred to the Subcommittee on Oversight and Investigations.","sponsors.0.party":"D","number":"9806","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9806/cosponsors?format=json","sponsors.0.bioguideId":"B001315","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9806/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9806/actions?format=json","latestAction.actionDate":"2024-10-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Budzinski, Nikki [D-IL-13]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9806?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 150 (Wednesday, September 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUDZINSKI:\nH.R. 9806.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nThis bill would codify the Veterans Experience Office\nwithin the VA and allow it to continue providing veteran-\ncentered care and important data collection from veterans\nthemselves to improve all VA services.\n[Page H5830]\n","sponsors.0.district":13,"sponsors.0.firstName":"Nikki","updateDateIncludingText":"2024-12-16T19:17:54Z"}}} +{"type":"relationship","id":"7800","label":"SPONSORED","start":{"id":"4152","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"13","imageUrl":"https://www.congress.gov/img/member/b001315_200.jpg","startYear":"2023","partyName":"Democratic","name":"Budzinski, Nikki","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/B001315?format=json","bioguideId":"B001315"}},"end":{"id":"403","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6720/text?format=json","relatedBills.count":1,"updateDate":"2024-12-16T20:35:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Budzinski","sponsors.0.isByRequest":"N","request.billNumber":"6720","sponsors.0.url":"https://api.congress.gov/v3/member/B001315?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6720/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6720/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"To direct the Secretary of Agriculture to establish a grocery, farm, and food worker stabilization grant program.","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"D","number":"6720","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6720/cosponsors?format=json","sponsors.0.bioguideId":"B001315","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6720/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6720/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6720/actions?format=json","latestAction.actionDate":"2023-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6720/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Budzinski, Nikki [D-IL-13]","titles.count":2,"introducedDate":"2023-12-12","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6720?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 204 (Tuesday, December 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUDZINSKI:\nH.R. 6720.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of Section 8 of Article I of the Constitution\nThe single subject of this legislation is:\nTo provide a disaster relief program for grocery, farm, and\nfood workers\n[Page H6860]\n","sponsors.0.district":13,"sponsors.0.firstName":"Nikki","updateDateIncludingText":"2024-12-16T20:35:54Z"}}} +{"type":"relationship","id":"7801","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"153","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9870/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"9870","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9870/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9870/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Parity for Public Health Service Ready Reserve Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"9870","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-10-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9870/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9870/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9870/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9870/relatedbills?format=json","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":3,"introducedDate":"2024-09-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9870?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 151 (Friday, September 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANDSMAN:\nH.R. 9870.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo improve the provision of benefits and services to\nmembers of the Ready Reserve Corps of the Public Health\nService, and for other purposes.\n[Page H5839]\n","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7802","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"495","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5569/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"5569","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5569/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5569/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Child Care Nutrition Enhancement Act of 2023","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5569","cosponsors.countIncludingWithdrawnCosponsors":52,"request.format":"json","latestAction_actionDate":"2023-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5569/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5569/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5569/actions?format=json","latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5569/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":52,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5569?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANDSMAN:\nH.R. 5569.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nThis bill increases reimbursements for meals under the\nChild and Adult Care Food Program.\n[Page H4408]\n","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7803","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9409","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4433/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"4433","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4433/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"BOLSTER Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4433","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4433/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4433/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4433?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7804","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"1468","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/895/text?format=json","updateDate":"2024-12-18T16:00:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"895","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hres/895/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/895/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Condemning calls from Members of Congress for the expulsion of Palestinians from the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"895","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/895/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/895/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/895/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/895/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":2,"introducedDate":"2023-11-28","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/895?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-18T16:00:09Z"}}} +{"type":"relationship","id":"7805","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10037","labels":["Order"],"properties":{"date_enacted":"2025-02-19","date_repealed":"None","description":"nan","id":"EO 14219","title":"Ensuring Lawful Governance and Implementing the Presidents \"Department of Government Efficiency\" Deregulatory Initiative","url":"https://www.federalregister.gov/d/2025-03138"}}} +{"type":"relationship","id":"7806","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"1549","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/895/text?format=json","updateDate":"2024-12-18T16:00:09Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"895","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S7171; text: 11/19/2024 CR S6635-6636)","committees.url":"https://api.congress.gov/v3/bill/118/hres/895/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/895/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Condemning calls from Members of Congress for the expulsion of Palestinians from the United States.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"895","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/895/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/895/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/895/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/895/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":2,"introducedDate":"2023-11-28","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/895?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-18T16:00:09Z"}}} +{"type":"relationship","id":"7807","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"9430","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4204/text?format=json","updateDate":"2024-08-12T13:55:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Mullin","sponsors.0.isByRequest":"N","request.billNumber":"4204","sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4204/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4204/committees?format=json","policyArea.name":"Health","type":"S","title":"MVP Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4204","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4204/cosponsors?format=json","sponsors.0.bioguideId":"M001190","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4204/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4204/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4204/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Mullin, Markwayne [R-OK]","titles.count":4,"introducedDate":"2024-04-30","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4204?format=json","sponsors.0.firstName":"Markwayne","updateDateIncludingText":"2024-08-12T13:55:13Z"}}} +{"type":"relationship","id":"7808","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9440","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3974/text?format=json","relatedBills.count":3,"updateDate":"2024-09-17T11:28:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"3974","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3974/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3974/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"Boosting Benefits and COLAs for Seniors Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3974","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3974/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3974/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3974/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3974/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3974/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":5,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3974?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-09-17T11:28:42Z"}}} +{"type":"relationship","id":"7809","label":"SPONSORED","start":{"id":"4084","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000601_200.jpg","district":"1","startYear":"2023","name":"Landsman, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000601?format=json","bioguideId":"L000601"}},"end":{"id":"9923","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/308/text?format=json","updateDate":"2024-07-24T15:22:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Landsman","sponsors.0.isByRequest":"N","request.billNumber":"308","sponsors.0.url":"https://api.congress.gov/v3/member/L000601?format=json","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/hres/308/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/308/committees?format=json","type":"HRES","title":"Condemning former President Donald J. Trump's call to \"defund\" the Department of Justice and the Federal Bureau of Investigation.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"308","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-04-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/308/cosponsors?format=json","sponsors.0.bioguideId":"L000601","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/308/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/308/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/308/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-19","sponsors.0.fullName":"Rep. Landsman, Greg [D-OH-1]","titles.count":2,"introducedDate":"2023-04-19","cosponsors.count":6,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/308?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-07-24T15:22:43Z"}}} +{"type":"relationship","id":"7812","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"156","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10019/text?format=json","updateDate":"2024-12-16T19:21:10Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"10019","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10019/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10019/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"To amend the Public Utility Regulatory Policies Act of 1978 to require States to consider prohibiting cost recovery related to smart grid projects, and for other purposes.","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"10019","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10019/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10019/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10019?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-12-16T19:21:10Z"}}} +{"type":"relationship","id":"7813","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9587","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":4,"sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":24,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7814","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9678","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/763/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"763","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/763/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/763/committees?format=json","policyArea.name":"Energy","title":"Reduce Russian Uranium Imports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"763","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/763/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/763/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/763/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/763/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/763/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/763?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"7815","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"158","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10018/text?format=json","updateDate":"2024-12-16T19:21:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"10018","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10018/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10018/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"POWER Act","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"10018","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10018/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10018/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-18","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":4,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10018?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-12-16T19:21:02Z"}}} +{"type":"relationship","id":"7816","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9301","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-356.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4978","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4978/cosponsors?format=json","sponsors.0.bioguideId":"L000571","laws.0.number":"117-356","actions.url":"https://api.congress.gov/v3/bill/118/s/4978/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4978/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4978/amendments?format=json","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4978/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4978","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4978/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4978/committees?format=json","title":"No American Land for Communist China Act","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4978/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4978/summaries?format=json","introducedDate":"2024-08-01","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4978?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T19:00:46Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7817","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9391","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4650/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"4650","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4650/committees?format=json","title":"Housing for All Veterans Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4650","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4650/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4650/actions?format=json","latestAction.actionDate":"2024-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4650?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"7818","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"339","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7813/text?format=json","updateDate":"2024-07-03T17:50:43Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"7813","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7813/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7813/committees?format=json","policyArea.name":"Taxation","type":"HR","title":"Child Tax Credit Integrity Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"7813","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7813/cosponsors?format=json","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7813/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7813/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7813/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":3,"introducedDate":"2024-03-22","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7813?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 51 (Friday, March 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 7813.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to require an\nindividual to provide a social security number to claim the\nchild tax credit.\n[Page H1499]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-03T17:50:43Z"}}} +{"type":"relationship","id":"7819","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9455","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3713/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"3713","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S838)","subjects.url":"https://api.congress.gov/v3/bill/118/s/3713/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3713/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Life and Integrity in Research Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3713","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3713/cosponsors?format=json","sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3713/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3713?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7820","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6714/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"6714","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6714/subjects?format=json","policyArea.name":"Law","type":"HR","title":"To provide remote access to court proceedings for victims of the 1988 Bombing of Pan Am Flight 103 over Lockerbie, Scotland.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"6714","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6714/cosponsors?format=json","sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6714/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6714/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6714/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2023-12-11","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6714?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 6714.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution\nThe single subject of this legislation is:\nAllows remote access to court proceedings of the alleged\nbombmaker in the December 21, 1988, terror attack on Pan Am\nFlight 103.\n[Page H6815]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:19:35Z"}}} +{"type":"relationship","id":"7821","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"466","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5824/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"5824","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5824/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5824/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"To provide for continued operation of the Federal Aviation Administration in the event of a lapse in appropriation.","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"R","number":"5824","request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5824/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5824/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5824/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5824?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 5824.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3\nThe single subject of this legislation is:\nExtending funding for the FAA\n[Page H4857]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:20:13Z"}}} +{"type":"relationship","id":"7822","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"467","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5823/text?format=json","updateDate":"2024-07-24T15:20:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"5823","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5823/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5823/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"To provide for continued operation of the Coast Guard in the event of a lapse in appropriation.","latestAction.text":"Referred to the House Committee on Appropriations.","sponsors.0.party":"R","number":"5823","request.format":"json","latestAction_actionDate":"2023-09-28","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5823/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5823/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5823/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5823?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 5823.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1, Clause 3\nThe single subject of this legislation is:\nExtending funding for the Coast Guard\n[Page H4857]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:20:12Z"}}} +{"type":"relationship","id":"7823","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"1291","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/489/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"489","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/hr/489/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/489/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Expedited Removal Codification Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"489","request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/489/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/489/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/489/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/489/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/489?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:24:02Z"}}} +{"type":"relationship","id":"7824","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9344","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"5077","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/5077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5077/subjects?format=json","type":"S","title":"Government Service Delivery Improvement Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5077","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5077/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5077/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5077/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5077?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"7825","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9765","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/57/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"57","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/57/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/57/committees?format=json","policyArea.name":"Health","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Treasury relating to \"Coronavirus State and Local Fiscal Recovery Funds\".","latestAction.text":"Failed of passage in Senate by Yea-Nay Vote. 46 - 49. Record Vote Number: 168.","sponsors.0.party":"R","number":"57","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/57/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/57/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/57/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/57/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/57/relatedbills?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":2,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"cosponsors.count":12,"introducedDate":"2024-02-01","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/57?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"7826","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"1768","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/489/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:02Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"489","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/489/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/489/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Expedited Removal Codification Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"489","request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/489/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/489/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/489/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/489/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":3,"introducedDate":"2023-01-24","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/489?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-07-24T15:24:02Z"}}} +{"type":"relationship","id":"7827","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"8526","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8487/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Van Drew","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 512.","policyArea.name":"Social Welfare","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8487/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Social Security.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"K.","number":"8487","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 124 (Tuesday, July 26, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DELBENE:\nH.R. 8487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7171]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8487/cosponsors?format=json","sponsors.0.bioguideId":"V000133","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8487/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8487/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","bill.sponsors.0.bioguideId":"D000617","bill.actions.count":11,"bill.originChamber":"House","titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 512.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8487/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8487/text?format=json","bill.updateDate":"2025-01-03T07:56:21Z","updateDate":"2024-12-19T09:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8487/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","request.billNumber":"8487","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8487/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8487/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:21Z","title":"HEROS Act","bill.title":"Improving Seniors’ Timely Access to Care Act of 2022","bill.number":"8487","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8487/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-12-30","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8487/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8487/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","introducedDate":"2024-05-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Suzan","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8487/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8487/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8487?format=json","bill.introducedDate":"2022-07-26","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 88 (Tuesday, May 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 8487.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo amend title II of the Social Security Act to exempt\nwidows and widowers of police officers, firefighters, and\ncorrectional officers from the government pension offset.\n[Page H3399]\n","sponsors.0.district":2,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jefferson","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8487/text?format=json","bill.sponsors.0.lastName":"DelBene"}}} +{"type":"relationship","id":"7828","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"9275","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/489/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Van Drew","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/489/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"489","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 489.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\n[Page H233]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/489/cosponsors?format=json","sponsors.0.bioguideId":"V000133","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/489/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/489/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","bill.sponsors.0.bioguideId":"S001196","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stefanik, Elise M. [R-NY-21]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/489/text?format=json","bill.updateDate":"2025-01-03T04:42:36Z","updateDate":"2024-07-24T15:24:02Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/489/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","request.billNumber":"489","subjects.url":"https://api.congress.gov/v3/bill/118/hr/489/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/489/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:42:36Z","title":"Expedited Removal Codification Act of 2023","bill.title":"Protecting Rural Access to Care Act","bill.number":"489","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/489/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/489/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/489/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001196?format=json","introducedDate":"2023-01-24","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elise","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/489/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/489/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/489?format=json","bill.introducedDate":"2021-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 14 (Monday, January 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEFANIK:\nH.R. 489.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\n[Page H233]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":21,"sponsors.0.firstName":"Jefferson","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:24:02Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/489/text?format=json","bill.sponsors.0.lastName":"Stefanik"}}} +{"type":"relationship","id":"7829","label":"SPONSORED","start":{"id":"4021","labels":["Person"],"properties":{"updateDate":"2025-02-27T20:47:09Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg","startYear":"2019","partyName":"Republican","name":"Van Drew, Jefferson","attribution":"Image courtesy of the Member","state":"New Jersey","url":"https://api.congress.gov/v3/member/V000133?format=json","bioguideId":"V000133"}},"end":{"id":"9854","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1116/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:45:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"1116","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1116/committees?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that the Federal Government should recoup monies from the Synergy Marine Group and Maersk Line Limited to compensate taxpayers for certain damages resulting from the allision of the cargo shipping vessel the Dali with the Francis Scott Key Bridge on March 26, 2024, and for other purposes.","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"R","number":"1116","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1116/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1116/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1116/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1116/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2024-04-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1116?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-06-11T15:45:35Z"}}} +{"type":"relationship","id":"7841","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"159","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/10003/text?format=json","updateDate":"2024-12-16T19:21:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"10003","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/10003/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/10003/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"National Motor Voter Clarification Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"10003","request.format":"json","latestAction_actionDate":"2024-10-18","sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/10003/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/10003/actions?format=json","latestAction.actionDate":"2024-10-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":3,"introducedDate":"2024-10-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/10003?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-12-16T19:21:11Z"}}} +{"type":"relationship","id":"7842","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"261","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8629/text?format=json","updateDate":"2024-08-29T11:28:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"8629","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8629/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"GAZA Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8629","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8629/cosponsors?format=json","sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8629/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8629/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":4,"introducedDate":"2024-06-05","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8629?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 8629.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 4 and Article 1, Section 8,\nClause 18\nThe single subject of this legislation is:\nTo provide that an alien who holds a passport issued by the\nPalestinian Authority may not be admitted or paroled into the\nUnited States or be issued a visa or other documentation to\nenter the United States.\n[Page H3674]\n","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-08-29T11:28:34Z"}}} +{"type":"relationship","id":"7843","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"1728","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1080/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"1080","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"COVID–19 Federal Employee Reinstatement Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1080","request.format":"json","latestAction_actionDate":"2025-02-06","summaries.count":1,"sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1080/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":3,"introducedDate":"2023-02-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1080?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 1080.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nProvide for the reinstatement or compensation of Federal\nemployees forced to resign their careers between September 9,\n2021, and January 24, 2022, because of the Federal COVID-19\nvaccination mandate.\n[Page H855]\n","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7844","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"1810","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1080/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","request.billNumber":"1080","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"COVID–19 Federal Employee Reinstatement Act","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1080","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"G000578","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1080/actions?format=json","latestAction.actionDate":"2023-02-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":3,"introducedDate":"2023-02-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/1080?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 1080.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nProvide for the reinstatement or compensation of Federal\nemployees forced to resign their careers between September 9,\n2021, and January 24, 2022, because of the Federal COVID-19\nvaccination mandate.\n[Page H855]\n","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7845","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"8613","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6403/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gaetz","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6403/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6403","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 9 (Thursday, January 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLER:\nH.R. 6403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution in\nthat the legislation exercises legislative powers granted to\nCongress by the clause ``to make all Laws which shall be\nnecessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\n[Page H194]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6403/cosponsors?format=json","sponsors.0.bioguideId":"G000578","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6403/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6403/relatedbills?format=json","latestAction.actionDate":"2023-11-14","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","bill.sponsors.0.bioguideId":"K000395","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6403/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keller, Fred [R-PA-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6403/text?format=json","bill.updateDate":"2025-01-03T07:38:50Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6403/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","request.billNumber":"6403","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6403/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6403/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:38:50Z","title":"Parents’ Right to Know Act","bill.title":"Federal Prisons Accountability Act of 2022","bill.number":"6403","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6403/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6403/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6403/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000395?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-11-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Fred","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6403/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6403/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6403?format=json","bill.introducedDate":"2022-01-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 188 (Tuesday, November 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 6403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Sec. 8, Cl. 1, Spending Clause--amending extent law\n(FERPA), pursuant to the same.\nThe single subject of this legislation is:\namending FERPA to enable disclosure of certain student\neducational records to parents.\n[Page H5856]\n","sponsors.0.district":1,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":12,"sponsors.0.firstName":"Matt","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6403/text?format=json","bill.sponsors.0.lastName":"Keller"}}} +{"type":"relationship","id":"7846","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"9089","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3367/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 3367, Gold Star Children Act","bill.textVersions.count":1,"sponsors.0.lastName":"Gaetz","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2021-06-10T20:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3367/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3367","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 88 (Thursday, May 20, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TAYLOR:\nH.R. 3367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArtlcle I, Section 8, Clause 18 of the United States\n[Page H2652]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3367/cosponsors?format=json","sponsors.0.bioguideId":"G000578","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3367/actions?format=json","latestAction.actionDate":"2023-06-02","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","bill.sponsors.0.bioguideId":"T000479","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-06-10T20:05:00Z","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Taylor, Van [R-TX-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3367/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:54:13Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3367/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","request.billNumber":"3367","committees.url":"https://api.congress.gov/v3/bill/118/hr/3367/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3367/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"To amend title 38, United States Code, to provide for the continuing operation of national cemeteries during periods of certain funding restrictions, and for other purposes.","bill.title":"Gold Star Children Act","bill.number":"3367","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57277","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3367/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3367/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3367/summaries?format=json","bill.cosponsors.count":26,"cboCostEstimates.0.title":"H.R. 3367, Gold Star Children Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000479?format=json","introducedDate":"2023-05-16","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Van","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3367/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3367/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3367?format=json","bill.introducedDate":"2021-05-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 82 (Tuesday, May 16, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GAETZ:\nH.R. 3367.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, clauses 1 & 18\nThe single subject of this legislation is:\nEnsures that national cemeteries remain open to the public\nif the debt ceiling is breached or there is a lapse in\ndiscretionary appropriations\n[Page H2377]\n","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":3,"sponsors.0.firstName":"Matt","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3367/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57277","bill.sponsors.0.lastName":"Taylor"}}} +{"type":"relationship","id":"7847","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"9929","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Gaetz","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Placed on the House Calendar, Calendar No. 15.","sponsors.0.party":"R","number":"300","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/300/cosponsors?format=json","sponsors.0.bioguideId":"G000578","actions.url":"https://api.congress.gov/v3/bill/118/hres/300/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/300/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-05-02","sponsors.0.fullName":"Rep. Gaetz, Matt [R-FL-1]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-44","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/300/text?format=json","updateDate":"2024-11-09T04:56:42Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":9,"request.billNumber":"300","sponsors.0.url":"https://api.congress.gov/v3/member/G000578?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/300/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/300/committees?format=json","title":"Requesting the President and directing the Secretary of Defense to transmit, respectively, to the House of Representatives copies of all documents indicating any plans for current or future military assistance to Ukraine and documents indicating whether any United States Armed Forces, including special operations forces, are currently deployed in Ukraine.","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-04-08","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/44?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/300/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/300/summaries?format=json","introducedDate":"2023-04-17","subjects.count":9,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/300?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Matt","updateDateIncludingText":"2024-11-09T04:56:42Z"}}} +{"type":"relationship","id":"7848","label":"SPONSORED","start":{"id":"4104","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000598_200.jpg","district":"1","startYear":"2023","name":"LaLota, Nick","partyName":"Republican","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000598?format=json","bioguideId":"L000598"}},"end":{"id":"160","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9752/text?format=json","updateDate":"2025-02-21T22:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"LaLota","cboCostEstimates.0.pubDate":"2024-11-19T20:01:00Z","sponsors.0.isByRequest":"N","request.billNumber":"9752","sponsors.0.url":"https://api.congress.gov/v3/member/L000598?format=json","latestAction_text":"Ordered to be Reported by Voice Vote.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9752/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9752/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Tren de Aragua Southwest Border Security Threat Assessment Act","latestAction.text":"Ordered to be Reported by Voice Vote.","sponsors.0.party":"R","number":"9752","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61012","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9752/cosponsors?format=json","sponsors.0.bioguideId":"L000598","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9752/titles?format=json","cboCostEstimates.0.title":" H.R. 9752, Tren de Aragua Southwest Border Security Threat Assessment Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/9752/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Rep. LaLota, Nick [R-NY-1]","titles.count":3,"introducedDate":"2024-09-23","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9752?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Nick","updateDateIncludingText":"2025-02-21T22:06:12Z"}}} +{"type":"relationship","id":"7849","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10061","labels":["Order"],"properties":{"date_enacted":"2025-02-01","date_repealed":"None","description":"nan","id":"EO 14194","title":"Imposing Duties To Address the Situation at Our Southern Border","url":"https://www.federalregister.gov/d/2025-02407"}}} +{"type":"relationship","id":"7850","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"163","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8119/text?format=json","updateDate":"2025-02-21T22:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Gonzales","cboCostEstimates.0.pubDate":"2024-11-19T19:56:00Z","sponsors.0.isByRequest":"N","request.billNumber":"8119","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Ordered to be Reported (Amended) by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8119/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"PEARL Act","latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","sponsors.0.party":"R","number":"8119","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61005","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8119/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8119/titles?format=json","cboCostEstimates.0.title":"H.R. 8119, PEARL Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/8119/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":4,"introducedDate":"2024-04-23","cosponsors.count":28,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8119?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 71 (Tuesday, April 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 8119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8\nThe single subject of this legislation is:\nTo establish in U.S. Customs and Border Protection a pilot\nprogram to adopt dogs from local animal shelters to be\ntrained as thetapy dogs, and for other purposes.\n[Page H2628]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-02-21T22:06:12Z"}}} +{"type":"relationship","id":"7851","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"541","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4708/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"4708","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4708/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4708/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"H–2 Improvements to Relieve Employers Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"4708","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2023-07-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4708/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4708/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4708/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4708/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-18","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":37,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4708?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 4708.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Sec. 8 To make all laws which shall be necessary\nand proper for carrying into execution the foregoing powers,\nand all other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.\nThe single subject of this legislation is:\nTo streamline the issuance of nonimmigrant temporary work\nvisas, and for other purposes.\n[Page H3701]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7852","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"1682","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1544/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1544","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1544/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Big Bend National Park Boundary Adjustment Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"1544","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1544/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1544/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1544/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1544/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1544/relatedbills?format=json","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1544?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 1544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV Section 3 clause 2: ``The Congress shall have\nPower to dispose of and make all needful Rules and\nRegulations respecting the Territory or other Property\nbelonging to the United States;''\nThe single subject of this legislation is:\nTo adjust the boundary of Big Bend National Park in the\nState of Texas.\n[Page H1280]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-11-09T01:57:44Z"}}} +{"type":"relationship","id":"7853","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"1786","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/163/text?format=json","updateDate":"2024-06-11T15:46:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"163","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","committees.url":"https://api.congress.gov/v3/bill/118/hr/163/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/163/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Security First Act","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","sponsors.0.party":"R","number":"163","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/163/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/163/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/163/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/163/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/163?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 163.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8. The Congress shall have Power To lay\nand collect Taxes, Duties, Imposts and Excises, to pay the\nDebts and provide for the common Defence and general Welfare\nof the United States; but all Duties, Imposts and Excises\nshall be uniform throughout the United States.\n[Page H111]\n","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-06-11T15:46:27Z"}}} +{"type":"relationship","id":"7854","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10062","labels":["Order"],"properties":{"date_enacted":"2025-02-01","date_repealed":"None","description":"nan","id":"EO 14193","title":"Imposing Duties To Address the Flow of Illicit Drugs Across Our Northern Border","url":"https://www.federalregister.gov/d/2025-02406"}}} +{"type":"relationship","id":"7855","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"8568","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzales","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9368/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9368","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9368/cosponsors?format=json","sponsors.0.bioguideId":"G000594","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9368/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9368/relatedbills?format=json","latestAction.actionDate":"2024-08-16","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9368/text?format=json","bill.updateDate":"2025-01-03T08:04:44Z","updateDate":"2025-02-10T15:41:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9368/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","request.billNumber":"9368","committees.url":"https://api.congress.gov/v3/bill/118/hr/9368/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9368/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:04:44Z","title":"Border Weather Resiliency Act of 2024","bill.title":"Helping End Lifetime Penalties Act of 2022","bill.number":"9368","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9368/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9368/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9368/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-08-16","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":2,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9368/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9368/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9368?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 9368.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo require the Commissioner for U.S. Customs and Border\nProtection to assess current efforts to respond to hazardous\nweather and water events at or near United States borders\nand, to the extent such efforts may be improved, to develop a\nhazardous weather and water events preparedness and response\nstrategy, and for other purposes\n[Page H4997]\n","bill.introducedDate":"2022-11-30","sponsors.0.district":23,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2025-02-10T15:41:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9368/text?format=json","bill.sponsors.0.lastName":"Gohmert"}}} +{"type":"relationship","id":"7856","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"9047","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4025/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzales","bill.latestAction.actionDate":"2021-06-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4025/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"4025","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 107 (Monday, June 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss RICE of New York:\nH.R. 4025.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H2934]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4025/cosponsors?format=json","sponsors.0.bioguideId":"G000594","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4025/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4025/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","bill.sponsors.0.bioguideId":"R000602","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4025/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rice, Kathleen M. [D-NY-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4025/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:21:06Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4025/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","request.billNumber":"4025","committees.url":"https://api.congress.gov/v3/bill/118/hr/4025/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4025/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"Emi-Coke Accountability Act of 2023","bill.title":"Modernizing Seat Back Safety Act","bill.number":"4025","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4025/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4025/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4025/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000602?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-06-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kathleen","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4025/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4025/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4025?format=json","bill.introducedDate":"2021-06-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 4025.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Sec. 8\nThe single subject of this legislation is:\nTo encourage, enhance, and integrate Emi-Coke Alert plans\nthroughout the United States.\n[Page H2810]\n","sponsors.0.district":23,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":4,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:06Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4025/text?format=json","bill.sponsors.0.lastName":"Rice"}}} +{"type":"relationship","id":"7857","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"9054","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3855/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Gonzales","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3855/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Committee on Oversight and Accountability, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"3855","bill.cosponsors.countIncludingWithdrawnCosponsors":27,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. STEVENS:\nH.R. 3855.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\n[Page H2711]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3855/cosponsors?format=json","sponsors.0.bioguideId":"G000594","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3855/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3855/relatedbills?format=json","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","bill.sponsors.0.bioguideId":"S001215","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":13,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3855/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stevens, Haley M. [D-MI-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3855/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3855/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","request.billNumber":"3855","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3855/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3855/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"National Digital Reserve Corps Act","bill.title":"Accounting STEM Pursuit Act of 2021","bill.number":"3855","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":13,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3855/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3855/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3855/summaries?format=json","bill.cosponsors.count":27,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001215?format=json","introducedDate":"2023-06-06","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Haley","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3855/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3855/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3855?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 98 (Tuesday, June 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONY GONZALES of Texas:\nH.R. 3855\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish a National Digital Reserve Corps to help\naddress the digital and cybersecurlty need of Executive\nagencies.\n[Page H2764]\n","sponsors.0.district":23,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":11,"sponsors.0.firstName":"Tony","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3855/text?format=json","bill.sponsors.0.lastName":"Stevens"}}} +{"type":"relationship","id":"7858","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10088","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14167","title":"Clarifying the Militarys Role in Protecting the Territorial Integrity of the United States","url":"https://www.federalregister.gov/d/2025-02089"}}} +{"type":"relationship","id":"7859","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"9832","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1485/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T16:04:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1485","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hres/1485/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1485/subjects?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that the third Friday of September shall be recognized as \"National POW/MIA Recognition Day\".","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1485","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1485/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1485/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1485/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1485/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1485/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-23","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":2,"introducedDate":"2024-09-23","cosponsors.count":41,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1485?format=json","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-01-03T16:04:33Z"}}} +{"type":"relationship","id":"7860","label":"SPONSORED","start":{"id":"4060","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000594_200.jpg","district":"23","startYear":"2021","name":"Gonzales, Tony","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/G000594?format=json","bioguideId":"G000594"}},"end":{"id":"9857","labels":["Bill"],"properties":{"relatedBills.count":4,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1112/text?format=json","updateDate":"2024-11-09T04:56:39Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":16,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1112","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1112/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1112/subjects?format=json","policyArea.name":"Immigration","type":"HRES","title":"Denouncing the Biden administration's immigration policies.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1112","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1112/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1112/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1112/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1112/actions?format=json","latestAction.actionDate":"2024-05-01","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1112/relatedbills?format=json","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","latestAction.actionTime":"17:24:58","titles.count":2,"introducedDate":"2024-04-05","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1112?format=json","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2024-11-09T04:56:39Z"}}} +{"type":"relationship","id":"7864","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"181","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9588/text?format=json","updateDate":"2024-12-24T09:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Titus","sponsors.0.isByRequest":"N","request.billNumber":"9588","sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9588/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9588/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Thermal Runaway Reduction Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"9588","request.format":"json","latestAction_actionDate":"2024-09-13","sponsors.0.bioguideId":"T000468","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9588/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9588/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","titles.count":3,"introducedDate":"2024-09-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9588?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Dina","updateDateIncludingText":"2024-12-24T09:05:22Z"}}} +{"type":"relationship","id":"7865","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"374","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7263/text?format=json","updateDate":"2024-07-24T15:19:12Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Titus","sponsors.0.isByRequest":"N","request.billNumber":"7263","sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7263/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7263/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"VISITOR Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, and Appropriations, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"7263","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7263/cosponsors?format=json","sponsors.0.bioguideId":"T000468","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7263/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7263/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7263?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 7263.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nTo authorize amounts collected in certain visa fees to be\nmade available to reduce visa wait times, and for other\npurposes.\n[Page H503]\n","sponsors.0.district":1,"sponsors.0.firstName":"Dina","updateDateIncludingText":"2024-07-24T15:19:12Z"}}} +{"type":"relationship","id":"7866","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"787","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/848/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Titus","sponsors.0.isByRequest":"N","request.billNumber":"848","sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/848/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/848/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"To designate a peak in the State of Nevada as Maude Frazier Mountain, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"D","number":"848","request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"sponsors.0.bioguideId":"T000468","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/848/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/848/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/848/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","titles.count":2,"introducedDate":"2023-02-06","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/848?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 848.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 18 of\nSection 8 of Article I of the United States Constitution.\nThe single subject of this legislation is:\nPublic Lands and Natural Resources\n[Page H710]\n","sponsors.0.district":1,"sponsors.0.firstName":"Dina","updateDateIncludingText":"2024-07-24T15:23:46Z"}}} +{"type":"relationship","id":"7867","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8548","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9588/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9588/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9588","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9588/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9588/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"L000569","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Luetkemeyer, Blaine [R-MO-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9588/text?format=json","bill.updateDate":"2025-01-03T08:06:33Z","updateDate":"2024-12-24T09:05:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9588/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"9588","committees.url":"https://api.congress.gov/v3/bill/118/hr/9588/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9588/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:33Z","title":"Thermal Runaway Reduction Act","bill.title":"Consumer Information Notification Requirement Act","bill.number":"9588","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9588/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9588/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9588/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000569?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Blaine","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9588/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9588/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9588?format=json","bill.introducedDate":"2022-12-15","sponsors.0.district":1,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9588/text?format=json","bill.sponsors.0.lastName":"Luetkemeyer"}}} +{"type":"relationship","id":"7868","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8637","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9024/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2022-10-28","cboCostEstimates.0.pubDate":"2024-11-21T22:30:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Emergency Management","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9024/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 665.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"P.","number":"9024","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9024/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9024/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9024/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-05","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"T000165","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9024/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-813","bill.sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9024/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-03-13T22:41:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9024/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"9024","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9024/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9024/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Extreme Weather and Heat Response Modernization Act","bill.title":"DRILL Act","bill.number":"9024","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61033","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9024/committees?format=json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-10-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/813?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9024/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9024/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 9024, Extreme Weather and Heat Response Modernization Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","introducedDate":"2024-07-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9024/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9024/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9024?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 115 (Thursday, July 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 9024.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nEmergency Management\n[Page H4626]\n","bill.introducedDate":"2022-09-28","sponsors.0.district":1,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":7,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9024/text?format=json","bill.sponsors.0.lastName":"Tiffany"}}} +{"type":"relationship","id":"7869","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8855","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6229/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-12-20","cboCostEstimates.0.pubDate":"2024-07-18T17:29:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6229/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"J.","number":"6229","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 213 (Thursday, December 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MAST:\nH.R. 6229.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution\n[Page H7638]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6229/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6229/actions?format=json","latestAction.actionDate":"2024-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6229/relatedbills?format=json","textVersions.count":4,"bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"M001199","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Water, Oceans, and Wildlife.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6229/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-826","bill.sponsors.0.fullName":"Rep. Mast, Brian J. [R-FL-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6229/text?format=json","bill.updateDate":"2025-01-03T07:37:10Z","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6229/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":20,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"6229","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6229/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6229/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:37:10Z","title":"DHS Special Events Program and Support Act","bill.title":"Land and Water Conservation Fund Water Amendments Act of 2021","bill.number":"6229","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on June 12, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60545","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6229/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-20","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/826?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6229/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6229/summaries?format=json","bill.cosponsors.count":6,"cboCostEstimates.0.title":"H.R. 6229, DHS Special Events Program and Support Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001199?format=json","introducedDate":"2023-11-03","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brian","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6229/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6229/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6229?format=json","bill.introducedDate":"2021-12-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 182 (Friday, November 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 6229.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nAuthorizing a program within the Department of Homeland\nSecurity to assess the security and counterterrorism needs of\nhigh-profile events.\n[Page H5405]\n","sponsors.0.district":1,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":18,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2025-03-03T20:01:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6229/text?format=json","bill.sponsors.0.lastName":"Mast"}}} +{"type":"relationship","id":"7870","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"8869","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-12-17","cboCostEstimates.0.pubDate":"2024-03-06T21:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6316/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6316","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 217 (Thursday, December 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 6316.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H7833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6316/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6316/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6316/relatedbills?format=json","latestAction.actionDate":"2024-03-12","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6316/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-413","bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6316/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2025-01-14T17:12:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6316/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"6316","committees.url":"https://api.congress.gov/v3/bill/118/hr/6316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6316/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"To amend title 40, United States Code, to establish an expiration date of certain committee resolutions with respect to leases or projects, and for other purposes.","bill.title":"Clean Cooking Support Act","bill.number":"6316","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on November 15, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60063","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6316/committees?format=json","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/413?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/6316/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6316/summaries?format=json","cboCostEstimates.0.title":"H.R. 6316, a bill to amend title 40, United States Code, to establish an expiration date of certain committee resolutions with respect to leases or projects, and for other purposes","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2023-11-08","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"NV","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6316/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6316/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6316?format=json","bill.introducedDate":"2021-12-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 185 (Wednesday, November 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 6316.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 18 of\nSection 8 of Article I of the United States Constitution.\nThe single subject of this legislation is:\nPublic Buildings\n[Page H5653]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2025-01-14T17:12:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6316/text?format=json","bill.sponsors.0.lastName":"Neguse"}}} +{"type":"relationship","id":"7871","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"9033","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3780/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-07-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3780/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Aviation.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3780","bill.cosponsors.countIncludingWithdrawnCosponsors":94,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LOWENTHAL:\nH.R. 3780.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3780/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3780/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3780/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"L000579","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3780/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lowenthal, Alan S. [D-CA-47]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3780/text?format=json","bill.updateDate":"2025-01-03T05:06:44Z","updateDate":"2024-09-28T08:06:03Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3780/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"3780","committees.url":"https://api.congress.gov/v3/bill/118/hr/3780/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3780/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:44Z","title":"ACPAC Modernization Act","bill.title":"America’s Red Rock Wilderness Act","bill.number":"3780","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3780/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-07-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3780/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3780/summaries?format=json","bill.cosponsors.count":94,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000579?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alan","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3780/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3780/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3780?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3780.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nAviation\n[Page H2709]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":47,"sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2024-09-28T08:06:03Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3780/text?format=json","bill.sponsors.0.lastName":"Lowenthal"}}} +{"type":"relationship","id":"7872","label":"SPONSORED","start":{"id":"4112","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/t000468_200.jpg","startYear":"2009","name":"Titus, Dina","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2011","url":"https://api.congress.gov/v3/member/T000468?format=json","bioguideId":"T000468"}},"end":{"id":"9056","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3845/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Titus","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3845/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"Coleman","number":"3845","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RADEWAGEN:\nH.R. 3845.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress enacts this bill pursuant to Clause 1 of\nSection 8 of Article I of the United States Constitution,\nwhich provides Congress with the ability to enact legislation\nnecessary and proper to effectuate its purposes in taxing and\nspending.\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3845/cosponsors?format=json","sponsors.0.bioguideId":"T000468","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3845/actions?format=json","latestAction.actionDate":"2023-06-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3845/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Titus, Dina [D-NV-1]","bill.sponsors.0.bioguideId":"R000600","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Radewagen, Aumua Amata Coleman [R-AS-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3845/text?format=json","bill.updateDate":"2025-01-03T05:07:21Z","updateDate":"2024-11-07T19:02:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3845/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000468?format=json","request.billNumber":"3845","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3845/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3845/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:21Z","title":"Disability Access to Transportation Act","bill.title":"Parity for HUBZone Appeals Act of 2021","bill.number":"3845","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3845/committees?format=json","request.format":"json","sponsors.0.middleName":"Coleman","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3845/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3845/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000600?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-06-06","bill.originChamberCode":"H","subjects.count":19,"bill.committees.count":1,"bill.sponsors.0.firstName":"Aumua Amata","sponsors.0.state":"NV","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3845/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3845/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3845?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 98 (Tuesday, June 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TITUS:\nH.R. 3845.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nThe single subject of this legislation is:\nTransportation\n[Page H2764]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AS","sponsors.0.firstName":"Dina","bill.type":"HR","updateDateIncludingText":"2024-11-07T19:02:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3845/text?format=json","bill.sponsors.0.lastName":"Radewagen"}}} +{"type":"relationship","id":"7873","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"184","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9379/text?format=json","updateDate":"2024-09-17T08:05:17Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Ryan","sponsors.0.isByRequest":"N","request.billNumber":"9379","sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9379/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9379/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"Mortgage Rate Reduction Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"9379","request.format":"json","latestAction_actionDate":"2024-09-13","sponsors.0.bioguideId":"R000579","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9379/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9379/actions?format=json","latestAction.actionDate":"2024-09-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","titles.count":3,"introducedDate":"2024-08-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9379?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 9379\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nHousing\n[Page H4997]\n","sponsors.0.district":18,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-09-17T08:05:17Z"}}} +{"type":"relationship","id":"7874","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"461","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5811/text?format=json","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ryan","sponsors.0.isByRequest":"N","request.billNumber":"5811","sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5811/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Public Safety and Community Support Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"5811","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5811/cosponsors?format=json","sponsors.0.bioguideId":"R000579","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5811/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5811/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5811?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 5811.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nLaw Enforcement\n[Page H4856]\n","sponsors.0.district":18,"sponsors.0.firstName":"Patrick","updateDateIncludingText":"2024-07-24T15:20:13Z"}}} +{"type":"relationship","id":"7875","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"8571","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9378/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ryan","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Housing and Community Development","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9378/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"C.","number":"9378","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9378/cosponsors?format=json","sponsors.0.bioguideId":"R000579","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9378/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","bill.sponsors.0.bioguideId":"B001248","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9378/text?format=json","bill.updateDate":"2025-01-03T08:04:58Z","updateDate":"2024-12-24T09:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9378/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","request.billNumber":"9378","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9378/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:04:58Z","title":"Pro-Housing Act of 2024","bill.title":"Sunshine Act of 2022","bill.number":"9378","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9378/committees?format=json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9378/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9378/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2024-08-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9378/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9378/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9378?format=json","bill.introducedDate":"2022-12-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 131 (Friday, August 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 9378.\nArticle 1\nThe single subject of this legislation is:\nHousing\n[Page H4997]\n","sponsors.0.district":18,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"Patrick","bill.type":"HR","updateDateIncludingText":"2024-12-24T09:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9378/text?format=json","bill.sponsors.0.lastName":"Burgess"}}} +{"type":"relationship","id":"7876","label":"SPONSORED","start":{"id":"4105","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000579_200.jpg","district":"18","startYear":"2022","name":"Ryan, Patrick","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/R000579?format=json","bioguideId":"R000579"}},"end":{"id":"8901","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5811/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Ryan","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5811/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"R.","number":"5811","bill.cosponsors.countIncludingWithdrawnCosponsors":44,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5811/cosponsors?format=json","sponsors.0.bioguideId":"R000579","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5811/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Ryan, Patrick [D-NY-18]","bill.sponsors.0.bioguideId":"M001194","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moolenaar, John R. [R-MI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5811/text?format=json","bill.updateDate":"2025-01-03T07:33:48Z","updateDate":"2024-07-24T15:20:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5811/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000579?format=json","request.billNumber":"5811","committees.url":"https://api.congress.gov/v3/bill/118/hr/5811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5811/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:48Z","title":"Public Safety and Community Support Act","bill.title":"No Vaccine Mandate Act","bill.number":"5811","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5811/committees?format=json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5811/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5811/summaries?format=json","bill.cosponsors.count":44,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001194?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5811/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5811/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5811?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RYAN:\nH.R. 5811.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nLaw Enforcement\n[Page H4856]\n","sponsors.0.district":18,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":4,"sponsors.0.firstName":"Patrick","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5811/text?format=json","bill.sponsors.0.lastName":"Moolenaar"}}} +{"type":"relationship","id":"7877","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9387","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3719/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"3719","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Environmental Protection","committees.url":"https://api.congress.gov/v3/bill/118/s/3719/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3719/subjects?format=json","type":"S","title":"Sound Science for Farmers Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"3719","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3719/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3719/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3719/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2024-02-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3719?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7878","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"189","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9456/text?format=json","relatedBills.count":3,"updateDate":"2025-01-16T07:06:15Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":19,"sponsors.0.lastName":"Newhouse","sponsors.0.isByRequest":"N","request.billNumber":"9456","sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9456/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"9456","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2024-09-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9456/cosponsors?format=json","sponsors.0.bioguideId":"N000189","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/9456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9456/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9456/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-09-12","sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","titles.count":4,"introducedDate":"2024-09-06","cosponsors.count":24,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9456?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 138 (Friday, September 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 9456.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\nThe single subject of this legislation is:\nCommittee on Foreign Investment in the United States\n(CFIUS)\n[Page H5032]\n","sponsors.0.district":4,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-02-21T17:27:11Z"}}} +{"type":"relationship","id":"7879","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"203","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9442/text?format=json","updateDate":"2024-12-09T16:49:36Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Newhouse","sponsors.0.isByRequest":"N","request.billNumber":"9442","sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committees on Foreign Affairs, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9442/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9442/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Protecting American Agriculture from Foreign Adversaries Act of 2024","latestAction.text":"Referred to the Committee on Agriculture, and in addition to the Committees on Foreign Affairs, Energy and Commerce, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"9442","request.format":"json","latestAction_actionDate":"2024-08-30","sponsors.0.bioguideId":"N000189","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9442/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9442/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","titles.count":3,"introducedDate":"2024-08-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9442?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 135 (Friday, August 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 9442.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nCommittee on Foreign Investment in the United States\n[Page H5022]\n","sponsors.0.district":4,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-12-09T16:49:36Z"}}} +{"type":"relationship","id":"7880","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"9141","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2719/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Newhouse","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2719/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2719","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\n[Page H2055]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2719/cosponsors?format=json","sponsors.0.bioguideId":"N000189","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2719/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","bill.sponsors.0.bioguideId":"B000574","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2719/text?format=json","bill.updateDate":"2025-01-03T04:58:43Z","updateDate":"2024-12-12T09:05:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2719/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","request.billNumber":"2719","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2719/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2719/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:58:43Z","title":"Conservation and Innovative Climate Partnership Act of 2023","bill.title":"Rebuilding America’s Airport Infrastructure Act","bill.number":"2719","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2719/committees?format=json","request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2719/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2719/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"EARL","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2719/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2719/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2719?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Food, Agriculture, Conservation, and Trade Act\nof 1990 to establish a competitive grant program under which\nthe Secretary of Agriculture provides grants to land-grant\ncolleges and universities to support agricultural producers\nin adopting conservation and innovative climate practices\n[Page H1887]\n","sponsors.0.district":4,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-12-12T09:05:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2719/text?format=json","bill.sponsors.0.lastName":"BLUMENAUER"}}} +{"type":"relationship","id":"7881","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"9546","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2719/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Newhouse","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2719/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2719","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BLUMENAUER:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of Article I of the Constitution\n[Page H2055]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2719/cosponsors?format=json","sponsors.0.bioguideId":"N000189","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2719/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Newhouse, Dan [R-WA-4]","bill.sponsors.0.bioguideId":"B000574","bill.actions.count":5,"bill.originChamber":"House","titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Blumenauer, Earl [D-OR-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2719/text?format=json","bill.updateDate":"2025-01-03T04:58:43Z","updateDate":"2024-12-12T09:05:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2719/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000189?format=json","request.billNumber":"2719","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2719/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2719/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:58:43Z","title":"Conservation and Innovative Climate Partnership Act of 2023","bill.title":"Rebuilding America’s Airport Infrastructure Act","bill.number":"2719","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2719/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2719/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2719/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000574?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"EARL","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2719/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2719/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/2719?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEWHOUSE:\nH.R. 2719.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Food, Agriculture, Conservation, and Trade Act\nof 1990 to establish a competitive grant program under which\nthe Secretary of Agriculture provides grants to land-grant\ncolleges and universities to support agricultural producers\nin adopting conservation and innovative climate practices\n[Page H1887]\n","sponsors.0.district":4,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":3,"sponsors.0.firstName":"Dan","bill.type":"HR","updateDateIncludingText":"2024-12-12T09:05:33Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2719/text?format=json","bill.sponsors.0.lastName":"BLUMENAUER"}}} +{"type":"relationship","id":"7882","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"190","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-11-17T16:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Education","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1516","amendments.count":6,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1516/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/1516/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1516/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1516/amendments?format=json","titles.count":5,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-319","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1516/text?format=json","updateDate":"2025-03-03T20:01:49Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":42,"committeeReports.1.citation":"H. Rept. 118-319,Part 2","request.billNumber":"1516","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1516/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1516/subjects?format=json","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59754","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2024-09-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1516/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1516/summaries?format=json","cboCostEstimates.0.title":"H.R. 1516, DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","introducedDate":"2023-03-09","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1516?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProhibits DHS funds from being awarded to universities that\nhave ties to the Chinese Communist Party.\n[Page H1251]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-03-03T20:01:51Z"}}} +{"type":"relationship","id":"7883","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"277","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-06-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2024-06-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7884","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4690/text?format=json","updateDate":"2025-02-11T13:22:38Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","request.billNumber":"4690","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4690/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Gray Zone Defense Assessment Act","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"4690","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-07-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4690/cosponsors?format=json","sponsors.0.bioguideId":"P000048","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4690/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4690/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4690/actions?format=json","latestAction.actionDate":"2023-07-17","textVersions.count":1,"sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":3,"introducedDate":"2023-07-17","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4690?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 4690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec 8\nThe single subject of this legislation is:\nThis bill requires DOD, State, and DNI to coordinate a\nstrategy to combat gray zone aggression.\n[Page H3641]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-11T13:22:38Z"}}} +{"type":"relationship","id":"7885","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"833","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/484/text?format=json","relatedBills.count":5,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","request.billNumber":"484","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","latestAction_text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/484/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/484/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Natural Gas Tax Repeal Act","latestAction.text":"Referred to the Subcommittee on Energy, Climate and Grid Security.","sponsors.0.party":"R","number":"484","cosponsors.countIncludingWithdrawnCosponsors":35,"request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/484/cosponsors?format=json","sponsors.0.bioguideId":"P000048","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/484/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/484/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/484/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/484/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":35,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/484?format=json","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7886","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"1323","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hjres/228/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T14:42:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","request.billNumber":"228","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hjres/228/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hjres/228/subjects?format=json","type":"HJRES","title":"Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"228","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hjres/228/cosponsors?format=json","sponsors.0.bioguideId":"P000048","request.billType":"hjres","titles.url":"https://api.congress.gov/v3/bill/118/hjres/228/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hjres/228/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hjres/228/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hjres/228?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 187 (Tuesday, December 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.J. Res. 228.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nDisapproval of the EPA's Waste Emissions Charge final rule.\n[Page H7320]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-01-03T14:42:45Z"}}} +{"type":"relationship","id":"7887","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9770","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/54/text?format=json","relatedBills.count":1,"updateDate":"2025-02-22T01:21:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"54","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/54/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/54/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"54","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/54/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/54/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/54/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/54/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/54/relatedbills?format=json","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/54?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-02-22T01:21:13Z"}}} +{"type":"relationship","id":"7888","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"1449","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"sponsors.0.lastName":"Pfluger","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 8.","sponsors.0.party":"R","number":"1141","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1141/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/1141/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1141/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","titles.count":4,"cosponsors.count":41,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-15","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1141/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1141","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1141/subjects?format=json","title":"Natural Gas Tax Repeal Act","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","latestAction_actionDate":"2024-04-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/15?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1141/summaries?format=json","introducedDate":"2023-02-21","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing the natural gas tax.\n[Page H868]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"7889","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"1615","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1514)","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-06-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2023-05-03","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7890","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8531","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 4690, Sustaining America’s Fisheries for the Future Act of 2021","sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2022-11-14T22:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4690/summaries?format=json","bill.relatedBills.count":6,"type":"HR","bill.summaries.count":2,"number":"4690","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"sponsors.0.bioguideId":"P000048","bill.subjects.count":59,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4690/relatedbills?format=json","latestAction.actionDate":"2023-07-17","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.originChamber":"House","bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 502.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-11-14T22:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4690/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-685","updateDate":"2025-02-11T13:22:38Z","committees.count":2,"request.billNumber":"4690","committees.url":"https://api.congress.gov/v3/bill/118/hr/4690/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:23:52Z","bill.number":"4690","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported on September 29, 2022\n","committeeReports":[],"latestAction_actionDate":"2022-12-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4690/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4690/summaries?format=json","cboCostEstimates.0.title":"H.R. 4690, Sustaining America’s Fisheries for the Future Act of 2021","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001068?format=json","introducedDate":"2023-07-17","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jared","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4690/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/4690?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 122 (Monday, July 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 4690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Sec 8\nThe single subject of this legislation is:\nThis bill requires DOD, State, and DNI to coordinate a\nstrategy to combat gray zone aggression.\n[Page H3641]\n","bill.sponsors.0.district":2,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4690/cosponsors?format=json","bill.textVersions.count":2,"bill.latestAction.actionDate":"2022-12-30","latestAction_text":"Placed on the Union Calendar, Calendar No. 502.","latestAction.text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-685","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 130 (Monday, July 26, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUFFMAN:\nH.R. 4690.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H3908]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4690/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4690/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"H001068","bill.cboCostEstimates.0.description":"As ordered reported on September 29, 2022\n","bill.actions.count":15,"titles.count":3,"cosponsors.count":8,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/685?format=json","bill.sponsors.0.fullName":"Rep. Huffman, Jared [D-CA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4690/text?format=json","bill.updateDate":"2025-01-03T07:23:52Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4690/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4690/subjects?format=json","title":"Gray Zone Defense Assessment Act","bill.title":"Sustaining America’s Fisheries for the Future Act of 2022","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58767","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4690/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/685?format=json","request.billType":"hr","bill.cosponsors.count":16,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4690/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-07-26","sponsors.0.district":11,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-11T13:22:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4690/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58767","bill.sponsors.0.lastName":"Huffman"}}} +{"type":"relationship","id":"7891","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8642","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8928/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8928/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8928","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. STAUBER:\nH.R. 8928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 4 Section 8 Clause 18\n[Page H8011]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8928/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":12,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8928/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8928/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"S001212","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8928/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Stauber, Pete [R-MN-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8928/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8928/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"8928","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8928/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8928/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"Returning Power to the People Act of 2024","bill.title":"Permitting for Mining Needs Act of 2022","bill.number":"8928","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8928/committees?format=json","request.format":"json","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8928/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8928/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001212?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Pete","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8928/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8928/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8928?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 8928.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo provide for certain reforms pertaining to Chevron\ndeference\n[Page H4452]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":8,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8928/text?format=json","bill.sponsors.0.lastName":"Stauber"}}} +{"type":"relationship","id":"7892","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8794","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7048/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7048/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7048","bill.cosponsors.countIncludingWithdrawnCosponsors":28,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 42 (Wednesday, March 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DAVID SCOTT of Georgia:\nH.R. 7048.\nCongress has the power to enact this legislation pursuant\nto the following:\nto lay and collect Taxes, Duties, Imposts, and Excises, to\npay the Debts, and provide for the common Defence and general\nWelfare of the United States; but all Duties, Imposts and\nExcises shall be uniform throughout the United States.\n[Page H1425]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7048/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7048/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7048/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"S001157","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Scott, David [D-GA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7048/text?format=json","bill.updateDate":"2025-01-03T07:43:44Z","updateDate":"2024-09-24T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7048/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"7048","committees.url":"https://api.congress.gov/v3/bill/118/hr/7048/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7048/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:43:44Z","title":"No Funding for Sanctuary Cities Act","bill.title":"Protect Lifesaving Anesthesia Care for Veterans Act of 2022","bill.number":"7048","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7048/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7048/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7048/summaries?format=json","bill.cosponsors.count":28,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001157?format=json","introducedDate":"2024-01-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7048/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7048/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7048?format=json","bill.introducedDate":"2022-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 10 (Thursday, January 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 7048.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is;\nThis bill amends the Immigration and Nationality Act to\nmodify provisions relating to assistance by States, and\npolitical subdivisions of States, in the enforcement of\nFederal immigration laws, and for other purposes.\n[Page H241]\n","sponsors.0.district":11,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":13,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2024-09-24T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7048/text?format=json","bill.sponsors.0.lastName":"Scott"}}} +{"type":"relationship","id":"7893","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"8806","labels":["Bill"],"properties":{"relatedBills.count":7,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7176/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2022-03-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7176/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7176","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 50 (Monday, March 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BERGMAN:\nH.R. 7176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the United States\nConstitution\n[Page H3858]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7176/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7176/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7176/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"B001301","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":31,"bill.latestAction.text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7176/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bergman, Jack [R-MI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7176/text?format=json","bill.updateDate":"2025-01-03T07:45:07Z","updateDate":"2024-11-09T04:56:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7176/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":17,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"7176","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7176/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7176/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:07Z","title":"Unlocking our Domestic LNG Potential Act of 2024","bill.title":"Gerald’s Law Act","bill.number":"7176","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7176/committees?format=json","latestAction_actionDate":"2022-03-28","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7176/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7176/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001301?format=json","latestAction.actionTime":"14:24:25","introducedDate":"2024-01-31","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jack","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7176/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7176/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7176?format=json","bill.introducedDate":"2022-03-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 18 (Wednesday, January 31, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 7176.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the Constitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing restrictions on the import and export\nof natural gas.\n[Page H365]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":1,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7176/text?format=json","bill.sponsors.0.lastName":"Bergman"}}} +{"type":"relationship","id":"7894","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"9228","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-11-17T16:52:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1516/summaries?format=json","bill.relatedBills.count":8,"type":"HR","bill.summaries.count":1,"number":"1516","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"amendments.count":6,"sponsors.0.bioguideId":"P000048","bill.subjects.count":3,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1516/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1516/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-319","updateDate":"2025-03-03T20:01:49Z","committees.count":2,"request.billNumber":"1516","committees.url":"https://api.congress.gov/v3/bill/118/hr/1516/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:43Z","bill.number":"1516","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","latestAction_actionDate":"2021-03-02","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1516/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1516/summaries?format=json","cboCostEstimates.0.title":"H.R. 1516, DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","introducedDate":"2023-03-09","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Katie","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1516/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1516?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProhibits DHS funds from being awarded to universities that\nhave ties to the Chinese Communist Party.\n[Page H1251]\n","bill.sponsors.0.district":45,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1516/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-03-02","latestAction_text":"Referred to the House Committee on House Administration.","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1015]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1516/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1516/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"P000618","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1516/amendments?format=json","bill.actions.count":3,"titles.count":5,"cosponsors.count":18,"bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1516/text?format=json","bill.updateDate":"2025-01-03T04:49:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1516/subjects?format=json","request.congress":"118","actions.count":42,"committeeReports.1.citation":"H. Rept. 118-319,Part 2","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1516/subjects?format=json","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.title":"Stop Foreign Interference in Ballot Measures Act","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59754","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1516/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","request.billType":"hr","bill.cosponsors.count":26,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1516/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-02","sponsors.0.district":11,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"August","updateDateIncludingText":"2025-03-03T20:01:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1516/text?format=json","bill.sponsors.0.lastName":"Porter"}}} +{"type":"relationship","id":"7895","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"9242","labels":["Bill"],"properties":{"relatedBills.count":5,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Environment and Climate Change.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1141/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 8.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1141","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution.\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1141/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1141/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1141/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":5,"titles.count":4,"cosponsors.count":41,"bill.latestAction.text":"Referred to the Subcommittee on Environment and Climate Change.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1141/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-15","bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1141/text?format=json","bill.updateDate":"2025-01-16T11:56:46Z","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1141/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"1141","committees.url":"https://api.congress.gov/v3/bill/118/hr/1141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1141/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:56:46Z","title":"Natural Gas Tax Repeal Act","bill.title":"Broadband Competition and Efficient Deployment Act","bill.number":"1141","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":41,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1141/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/15?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/1141/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1141/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"John","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1141/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1141/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1141?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by repealing the natural gas tax.\n[Page H868]\n","sponsors.0.district":11,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2025-01-15T18:51:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1141/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"7896","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10038","labels":["Order"],"properties":{"date_enacted":"2025-02-19","date_repealed":"None","description":"nan","id":"EO 14218","title":"Ending Taxpayer Subsidization of Open Borders","url":"https://www.federalregister.gov/d/2025-03137"}}} +{"type":"relationship","id":"7897","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"9990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (consideration: CR S2455; text: CR S2457-2459)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/122?format=json","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"7898","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"9781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/110/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"110","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/110/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/110/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Alaska; Hunting and Trapping in National Preserves\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"110","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/110/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/110/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/110/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/110/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/110/relatedbills?format=json","latestAction.actionDate":"2024-09-19","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-09-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/110?format=json","sponsors.0.district":22,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"7899","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9609","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1908/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"1908","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1908/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1908/committees?format=json","policyArea.name":"Congress","type":"HR","title":"To provide for a limitation on availability of funds for Joint Items, Capitol Power Plant for fiscal year 2024.","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"R","number":"1908","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1908/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1908/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1908/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1908/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1908/relatedbills?format=json","latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":2,"cosponsors.count":4,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1908?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 1908.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThe single subject of this bill is providing for a\nlimitation on funding for a discretionary spending item.\n[Page H1643]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"7900","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9834","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1355/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1355","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 135.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1355/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1355/committees?format=json","policyArea.name":"Health","title":"PASTEUR Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1355","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1355/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1355/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1355/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1355?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7901","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"9250","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1099/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Pfluger","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1099/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"G.","number":"1099","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BROWN:\nH.R. 1099.\nCongress has the power to enact this legislation pursuant\nto the following:\nNecessary and Proper Clause (Article I, Section 8, Clause\n18)\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1099/cosponsors?format=json","sponsors.0.bioguideId":"P000048","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1099/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1099/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.sponsors.0.bioguideId":"B001304","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brown, Anthony G. [D-MD-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1099/text?format=json","bill.updateDate":"2025-01-03T04:47:02Z","updateDate":"2024-07-24T15:23:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1099/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","request.billNumber":"1099","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1099/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1099/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:02Z","title":"PAID OFF Act of 2023","bill.title":"VACCINE Act","bill.number":"1099","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1099/committees?format=json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1099/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1099/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001304?format=json","introducedDate":"2023-02-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Anthony","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1099/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1099/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1099?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nAmending the Foreign Agents Registration Act of 1938 to\nclose lobbying loopholes exploited by countries of concern.\n[Page H856]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MD","bill.sponsors.0.district":4,"sponsors.0.firstName":"August","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1099/text?format=json","bill.sponsors.0.lastName":"Brown"}}} +{"type":"relationship","id":"7902","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9381","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2024-12-11T19:43:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 679.","sponsors.0.party":"D","number":"4066","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4066/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/4066/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4066/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-09","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-276","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4066/text?format=json","updateDate":"2025-01-31T23:06:12Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"4066","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4066/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4066/subjects?format=json","title":"FIT Procurement Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 15, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61100","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/276?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4066/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4066/summaries?format=json","cboCostEstimates.0.title":"S. 4066, FIT Procurement Act","introducedDate":"2024-03-22","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4066?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-31T23:06:12Z"}}} +{"type":"relationship","id":"7903","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9425","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blackburn","cboCostEstimates.0.pubDate":"2024-12-06T19:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Arts, Culture, Religion","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"4212","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4212/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"B001243","actions.url":"https://api.congress.gov/v3/bill/118/s/4212/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4212/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/4212/amendments?format=json","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4212/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"4212","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4212/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4212/subjects?format=json","title":"American Music Tourism Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on September 17, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61076","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-05-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4212/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4212/summaries?format=json","cboCostEstimates.0.title":"S. 4212, American Music Tourism Act of 2024","latestAction.actionTime":"15:02:37","introducedDate":"2024-04-30","subjects.count":6,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4212?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:57:03Z"}}} +{"type":"relationship","id":"7904","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"9587","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-07-18T16:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 414.","sponsors.0.party":"R","number":"192","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/192/cosponsors?format=json","sponsors.0.bioguideId":"P000048","actions.url":"https://api.congress.gov/v3/bill/118/hr/192/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/192/relatedbills?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":4,"sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/192/amendments?format=json","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-150","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/192/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"192","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/192/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/192/subjects?format=json","title":"To prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Resident Voting Rights Amendment Act of 2022","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on July 12, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":24,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59385","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/150?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/192/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/192/summaries?format=json","cboCostEstimates.0.title":"H.R. 192, a bill to prohibit individuals who are not citizens of the United States from voting in elections in the District of Columbia and to repeal the Local Voting Rights Amendment Act of 2022","introducedDate":"2023-01-09","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/192?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 192.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\n[Page H112]\n","sponsors.0.district":11,"sponsors.0.firstName":"August","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7905","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9699","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/436/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"436","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S864-865)","committees.url":"https://api.congress.gov/v3/bill/118/s/436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/436/subjects?format=json","policyArea.name":"International Affairs","title":"SAFE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"436","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/436/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/436/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/436?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7906","label":"SPONSORED","start":{"id":"4058","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/p000048_200.jpg","startYear":"2021","partyName":"Republican","name":"Pfluger, August","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/P000048?format=json","bioguideId":"P000048"}},"end":{"id":"9833","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Pfluger","cboCostEstimates.0.pubDate":"2023-11-17T16:52:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1516/summaries?format=json","bill.relatedBills.count":8,"type":"HR","bill.summaries.count":1,"number":"1516","bill.cosponsors.countIncludingWithdrawnCosponsors":26,"sponsors":[],"amendments.count":6,"sponsors.0.bioguideId":"P000048","bill.subjects.count":3,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1516/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","bill.originChamber":"House","bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1516/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-319","updateDate":"2025-03-03T20:01:49Z","committees.count":2,"request.billNumber":"1516","committees.url":"https://api.congress.gov/v3/bill/118/hr/1516/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:43Z","bill.number":"1516","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on November 8, 2023\n","latestAction_actionDate":"2022-12-14","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1516/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1516/summaries?format=json","cboCostEstimates.0.title":"H.R. 1516, DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","introducedDate":"2023-03-09","subjects.count":7,"bill.committees.count":1,"bill.sponsors.0.firstName":"Katie","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1516/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hres/1516?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nProhibits DHS funds from being awarded to universities that\nhave ties to the Chinese Communist Party.\n[Page H1251]\n","bill.sponsors.0.district":45,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1516/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-03-02","latestAction_text":"Pursuant to the provisions of H. Res. 1518, H. Res. 1516 is considered passed House. (consideration: CR text: H9752-9803; text: CR H9752-9803)","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 1516.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H1015]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1516/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1516/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"P000618","amendments.url":"https://api.congress.gov/v3/bill/118/hr/1516/amendments?format=json","bill.actions.count":3,"titles.count":5,"cosponsors.count":18,"latestAction_actionTime":"14:09:12","bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1516/text?format=json","bill.updateDate":"2025-01-03T04:49:43Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1516/subjects?format=json","request.congress":"118","actions.count":42,"committeeReports.1.citation":"H. Rept. 118-319,Part 2","sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1516/subjects?format=json","title":"DHS Restrictions on Confucius Institutes and Chinese Entities of Concern Act","bill.title":"Stop Foreign Interference in Ballot Measures Act","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59754","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1516/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/319?format=json","request.billType":"hr","bill.cosponsors.count":26,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1516/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-03-02","sponsors.0.district":11,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"August","updateDateIncludingText":"2025-03-03T20:01:51Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1516/text?format=json","bill.sponsors.0.lastName":"Porter"}}} +{"type":"relationship","id":"7909","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10039","labels":["Order"],"properties":{"date_enacted":"2025-02-18","date_repealed":"None","description":"nan","id":"EO 14216","title":"Expanding Access to In Vitro Fertilization","url":"https://www.federalregister.gov/d/2025-03064"}}} +{"type":"relationship","id":"7927","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"209","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7130/text?format=json","relatedBills.count":1,"updateDate":"2024-08-30T08:05:16Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Alford","sponsors.0.isByRequest":"N","request.billNumber":"7130","sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","latestAction_text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7130/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7130/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"FAIR Labels Act of 2024","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"7130","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7130/cosponsors?format=json","sponsors.0.bioguideId":"A000379","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7130/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7130/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7130/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-29","sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7130?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 17 (Tuesday, January 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 7130.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend the Federal Meat Inspection Act and the Poultry\nProducts Inspection Act to ensure that consumers can make\ninformed decisions in choosing between meat and poultry\nproducts and imitation meat and imitation poultry products,\nand for other purposes.\n[Page H316]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-08-30T08:05:16Z"}}} +{"type":"relationship","id":"7928","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7246/text?format=json","updateDate":"2024-11-26T19:51:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Alford","sponsors.0.isByRequest":"N","request.billNumber":"7246","sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7246/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7246/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"American Land and Property Protection Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"7246","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-02-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7246/cosponsors?format=json","sponsors.0.bioguideId":"A000379","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7246/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7246/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7246/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7246?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 7246.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8: The Congress shall have Power To lay and collect\nTaxes, Duties, Imposts and Excises, to pay the Debts and\nprovide for the common Defence\nThe single subject of this legislation is:\nProtection of U.S. homeland public and private real estate\n[Page H503]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-11-26T19:51:21Z"}}} +{"type":"relationship","id":"7929","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"750","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1168/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Alford","sponsors.0.isByRequest":"N","request.billNumber":"1168","sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","latestAction_text":"Sponsor introductory remarks on measure. (CR H1427)","committees.url":"https://api.congress.gov/v3/bill/118/hr/1168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1168/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"School Lunch Affordability Act of 2023","latestAction.text":"Sponsor introductory remarks on measure. (CR H1427)","sponsors.0.party":"R","number":"1168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1168/cosponsors?format=json","sponsors.0.bioguideId":"A000379","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1168/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","titles.count":3,"introducedDate":"2023-02-24","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 36 (Friday, February 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 1168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend the Richard B. Russell National School Lunch Act\nto require that only a school food authority that had a\nnegative balance in the nonprofit school food service account\non June 30th of the year preceding the previous school year\nshall be required to establish a price, for paid lunches.\n[Page H876]\n","sponsors.0.district":4,"sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7930","label":"SPONSORED","start":{"id":"4135","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000379_200.jpg","district":"4","startYear":"2023","name":"Alford, Mark","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Missouri","url":"https://api.congress.gov/v3/member/A000379?format=json","bioguideId":"A000379"}},"end":{"id":"8660","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9030/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Alford","bill.latestAction.actionDate":"2022-09-29","cboCostEstimates.0.pubDate":"2024-11-15T17:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9030/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Reported by the Committee on Small Business. H. Rept. 118-852, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"C.","number":"9030","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9030/cosponsors?format=json","sponsors.0.bioguideId":"A000379","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9030/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9030/relatedbills?format=json","latestAction.actionDate":"2024-12-10","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Alford, Mark [R-MO-4]","bill.sponsors.0.bioguideId":"A000375","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9030/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-852","bill.sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9030/text?format=json","bill.updateDate":"2025-01-03T08:02:12Z","updateDate":"2025-02-13T01:11:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9030/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/A000379?format=json","request.billNumber":"9030","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9030/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9030/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:12Z","title":"Regulatory Agenda Clarity Act","bill.title":"Repealing the Ill-Conceived and Problematic (RIP) Book Minimum Tax Act","bill.number":"9030","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":12,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60990","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9030/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-29","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/852?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/9030/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9030/summaries?format=json","bill.cosponsors.count":12,"cboCostEstimates.0.title":"H.R. 9030, Regulatory Agenda Clarity Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jodey","sponsors.0.state":"MO","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9030/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9030/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9030?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ALFORD:\nH.R. 9030.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 ``The Congress shall have\npower to . . . provide for the . . . general welfare of the\nUnited States; . . .''\nThe single subject of this legislation is:\nRequires agencies to fully report on the impact of their\nrules.\n[Page H4633]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":19,"sponsors.0.firstName":"Mark","bill.type":"HR","updateDateIncludingText":"2025-02-13T01:11:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9030/text?format=json","bill.sponsors.0.lastName":"Arrington"}}} +{"type":"relationship","id":"7932","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4427","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4427/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4427/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"DOE and SBA Research Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4427","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4427/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4427/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4427/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4427?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"7933","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9973","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/650/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"650","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 609.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sres/650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/650/committees?format=json","type":"SRES","title":"A resolution recognizing the anniversary of the establishment of the United States Naval Construction Force, known as the \"Seabees\", and the tremendous sacrifices and contributions by the Seabees who have fought and served on behalf of our country.","latestAction.text":"Referred to the Committee on Armed Services. (text: CR S2888)","sponsors.0.party":"D","number":"650","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/650/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/650/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/650/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":2,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/650?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7944","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9389","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3145/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3145","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3145/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3145/committees?format=json","policyArea.name":"Health","type":"S","title":"Improving Access to Addiction Medicine Providers Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3145","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3145/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3145/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3145/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3145/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3145/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-26","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-10-26","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3145?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7945","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"9787","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/114/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"114","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/114/committees?format=json","title":"Preventive Health Savings Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Budget. (Sponsor introductory remarks on measure: CR S122)","sponsors.0.party":"D","number":"114","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/114/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/114/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/114/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/114/relatedbills?format=json","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":7,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/114?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:22:18Z"}}} +{"type":"relationship","id":"7946","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"10033","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","policyArea.name":"Health","title":"Pharmacy Benefit Manager Transparency Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/127/relatedbills?format=json","latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7953","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9964","labels":["Bill"],"properties":{"relatedBills.count":5,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (Consideration: CR S7150; text: CR S7136)","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-07-09","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"7955","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9383","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4038/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4038","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/4038/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4038/committees?format=json","title":"CARE Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4038","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","sponsors.0.middleName":"R.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4038/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4038/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4038/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4038/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":4,"introducedDate":"2024-03-21","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4038?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"7956","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9459","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Ossoff","cboCostEstimates.0.pubDate":"2022-02-28T21:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 287.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1620","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1620/cosponsors?format=json","sponsors.0.bioguideId":"O000174","actions.url":"https://api.congress.gov/v3/bill/118/s/1620/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1620/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-86","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1620/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1620","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1620/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1620/committees?format=json","title":"Fort Gillem Defense Forensics Enhancement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on November 18, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/86?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1620/summaries?format=json","cboCostEstimates.0.title":"S. 1620, Save the Liberty Theatre Act of 2021","introducedDate":"2023-05-16","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1620?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"7958","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"10004","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/381/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:24:05Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Good","sponsors.0.isByRequest":"N","request.billNumber":"381","sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S6666; text: CR S6678-6679)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/381/subjects?format=json","policyArea.name":"Taxation","committees.url":"https://api.congress.gov/v3/bill/118/hr/381/committees?format=json","title":"PISTOL Act","type":"HR","latestAction.text":"Sponsor introductory remarks on measure. (CR H746)","sponsors.0.party":"R","number":"381","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/381/cosponsors?format=json","sponsors.0.bioguideId":"G000595","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/381/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/381/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/381/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/381/relatedbills?format=json","sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","titles.count":4,"introducedDate":"2023-01-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/381?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 12 (Tuesday, January 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 381.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H244]\n","sponsors.0.district":5,"sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-07-24T15:24:05Z"}}} +{"type":"relationship","id":"7960","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"215","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7015/text?format=json","relatedBills.count":1,"updateDate":"2024-10-09T08:05:29Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Langworthy","sponsors.0.isByRequest":"N","request.billNumber":"7015","sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7015/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7015/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"CAREERS Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"7015","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-08-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7015/cosponsors?format=json","sponsors.0.bioguideId":"L000600","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7015/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7015/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7015/relatedbills?format=json","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","titles.count":4,"introducedDate":"2024-01-17","cosponsors.count":30,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7015?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 9 (Wednesday, January 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGWORTHY:\nH.R. 7015.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nWorkforce\n[Page H189]\n","sponsors.0.district":23,"sponsors.0.firstName":"Nicholas","updateDateIncludingText":"2024-10-09T08:05:29Z"}}} +{"type":"relationship","id":"7961","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"8741","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8005/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Langworthy","bill.latestAction.actionDate":"2022-06-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8005/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"8005","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DeFAZIO:\nH.R. 8005.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 (relating to the power to\nmake all laws necessary and proper for carrying out the\npowers vested in Congress)\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8005/cosponsors?format=json","sponsors.0.bioguideId":"L000600","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8005/actions?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8005/relatedbills?format=json","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","bill.sponsors.0.bioguideId":"D000191","bill.originChamber":"House","bill.actions.count":7,"titles.count":3,"cosponsors.count":24,"bill.latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8005/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeFazio, Peter A. [D-OR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8005/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-16T20:38:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8005/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","request.billNumber":"8005","committees.url":"https://api.congress.gov/v3/bill/118/hr/8005/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8005/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Child Exploitation and Artificial Intelligence Expert Commission Act of 2024","bill.title":"Social Security Expansion Act","bill.number":"8005","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":24,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8005/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-06-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8005/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8005/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000191?format=json","introducedDate":"2024-04-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"PETER","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8005/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8005/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8005?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 64 (Monday, April 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGWORTHY:\nH.R. 8005.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of Section 8 of article 1 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill creates a commission that looks at the\nintersection of artificial intelligence and child sexual\nabuse material, specifically to support law enforcement and\nthe ability to prosecute relevant cases.\n[Page H2398]\n","sponsors.0.district":23,"bill.sponsors.0.state":"OR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Nicholas","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:38:46Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8005/text?format=json","bill.sponsors.0.lastName":"DEFAZIO"}}} +{"type":"relationship","id":"7962","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"8751","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 7667, the Food and Drug Amendments of 2022 Act","sponsors.0.lastName":"Langworthy","cboCostEstimates.0.pubDate":"2022-06-06T20:07:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Agriculture and Food","bill.relatedBills.count":20,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7667/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"G.","number":"7667","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"L000600","bill.subjects.count":45,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7667/relatedbills?format=json","latestAction.actionDate":"2024-08-30","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-06-06T20:07:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7667/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-348","updateDate":"2025-01-23T18:51:26Z","committees.count":1,"request.billNumber":"7667","committees.url":"https://api.congress.gov/v3/bill/118/hr/7667/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:49:19Z","bill.number":"7667","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 3, 2022\n","committeeReports":[],"sponsors.0.middleName":"A.","latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7667/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 7667, the Food and Drug Amendments of 2022 Act","bill.titles.count":17,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/E000215?format=json","introducedDate":"2024-03-13","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ANNA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7667/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7667?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 45 (Wednesday, March 13, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGWORTHY:\nH.R. 7667.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 3 of section 8 of article 1 of the Constitution\nThe single subject of this legislation is:\nMaple\n[Page H1181]\n","bill.sponsors.0.district":18,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7667/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-06-09","latestAction_text":"Received in the Senate.","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","bill.committeeReports.0.citation":"H. Rept. 117-348","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ESHOO:\nH.R. 7667.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3: [The Congress shall\nhave Power] To regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes.\n[Page H4723]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7667/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7667/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"E000215","bill.cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 3, 2022\n","bill.actions.count":20,"titles.count":3,"cosponsors.count":11,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/348?format=json","bill.sponsors.0.fullName":"Rep. Eshoo, Anna G. [D-CA-18]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7667/text?format=json","bill.updateDate":"2025-01-03T07:49:19Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7667/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7667/subjects?format=json","title":"Making Agricultural Products Locally Essential (MAPLE) Act","bill.title":"Food and Drug Amendments of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58183","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7667/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/348?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7667/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-05-06","sponsors.0.district":23,"bill.sponsors.0.state":"CA","sponsors.0.firstName":"Nicholas","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7667/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58183","bill.sponsors.0.lastName":"ESHOO"}}} +{"type":"relationship","id":"7963","label":"SPONSORED","start":{"id":"4083","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"23","imageUrl":"https://www.congress.gov/img/member/l000600_200.jpg","startYear":"2023","partyName":"Republican","name":"Langworthy, Nicholas A.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000600?format=json","bioguideId":"L000600"}},"end":{"id":"8933","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2892/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Langworthy","bill.latestAction.actionDate":"2021-10-19","cboCostEstimates.0.pubDate":"2024-11-21T22:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Emergency Management","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2892/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"2892","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2892.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2892/cosponsors?format=json","sponsors.0.bioguideId":"L000600","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2892/actions?format=json","latestAction.actionDate":"2024-12-10","textVersions.count":4,"bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Langworthy, Nicholas A. [R-NY-23]","bill.sponsors.0.bioguideId":"O000173","bill.originChamber":"House","bill.actions.count":4,"titles.count":11,"cosponsors.count":23,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-814","bill.sponsors.0.fullName":"Rep. Omar, Ilhan [D-MN-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2892/text?format=json","bill.updateDate":"2025-01-03T04:59:57Z","updateDate":"2025-03-13T22:41:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2892/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":18,"sponsors.0.url":"https://api.congress.gov/v3/member/L000600?format=json","request.billNumber":"2892","committees.url":"https://api.congress.gov/v3/bill/118/hr/2892/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2892/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:57Z","title":"WARN Act","bill.title":"Protecting Our Protesters Act of 2021","bill.number":"2892","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Transportation and Infrastructure on September 18, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":23,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61021","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2892/committees?format=json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-10-19","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/814?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/2892/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2892/summaries?format=json","bill.cosponsors.count":3,"cboCostEstimates.0.title":"H.R. 2892, WARN Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/O000173?format=json","introducedDate":"2023-04-26","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ilhan","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2892/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2892/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2892?format=json","bill.introducedDate":"2021-04-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. OMAR:\nH.R. 2892.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2128]\n","sponsors.0.district":23,"bill.sponsors.0.state":"MN","bill.sponsors.0.district":5,"sponsors.0.firstName":"Nicholas","bill.type":"HR","updateDateIncludingText":"2025-03-13T22:41:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2892/text?format=json","bill.sponsors.0.lastName":"Omar"}}} +{"type":"relationship","id":"7964","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9470","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3705/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"3705","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/3705/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3705/subjects?format=json","type":"S","title":"Human Rights Defenders Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"3705","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3705/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3705/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3705/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3705/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3705/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3705?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"7965","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9373","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4875/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4875","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4875/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4875/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"NO FAKES Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4875","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4875/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4875/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4875/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4875/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4875/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4875?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"7966","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"224","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9221/text?format=json","relatedBills.count":1,"updateDate":"2024-09-30T15:23:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"9221","sponsors.0.url":"https://api.congress.gov/v3/member/M001224?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9221/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9221/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"RESTORE Patent Rights Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"9221","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9221/cosponsors?format=json","sponsors.0.bioguideId":"M001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9221/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9221/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9221/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Rep. Moran, Nathaniel [R-TX-1]","titles.count":4,"introducedDate":"2024-07-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9221?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 124 (Tuesday, July 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORAN:\nH.R. 9221.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 8,\nThe single subject of this legislation is:\n``To amend title 35, United States Code, to establish a\nrebuttable presumption that a permanent injunction should be\ngranted in certain circumstances, and for other purposes.''\n[Page H4964]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nathaniel","updateDateIncludingText":"2024-09-30T15:23:03Z"}}} +{"type":"relationship","id":"7967","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5029/text?format=json","relatedBills.count":1,"updateDate":"2024-11-15T09:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"5029","sponsors.0.url":"https://api.congress.gov/v3/member/M001224?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5029/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5029/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Strong Communities Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5029","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5029/cosponsors?format=json","sponsors.0.bioguideId":"M001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5029/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5029/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5029/relatedbills?format=json","sponsors.0.fullName":"Rep. Moran, Nathaniel [R-TX-1]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5029?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 130 (Thursday, July 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORAN:\nH.R. 5029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Omnibus Crime Control and Safe Streets Act of\n1968 to provide that COPS grant funds may be used for local\nlaw enforcement recruits to attend schools or academies if\nthe recruits agree to serve in precincts of law enforcement\nagencies in their communities.\n[Page H4145]\n","sponsors.0.district":1,"sponsors.0.firstName":"Nathaniel","updateDateIncludingText":"2024-11-15T09:05:22Z"}}} +{"type":"relationship","id":"7968","label":"SPONSORED","start":{"id":"4054","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001224_200.jpg","startYear":"2023","partyName":"Republican","name":"Moran, Nathaniel","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/M001224?format=json","bioguideId":"M001224"}},"end":{"id":"8846","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Moran","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-03-13T17:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6603/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6603","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 6603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6603/cosponsors?format=json","sponsors.0.bioguideId":"M001224","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6603/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6603/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Moran, Nathaniel [R-TX-1]","bill.sponsors.0.bioguideId":"B001302","bill.actions.count":3,"bill.originChamber":"House","titles.count":5,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6603/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-14T18:20:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6603/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":14,"sponsors.0.url":"https://api.congress.gov/v3/member/M001224?format=json","request.billNumber":"6603","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6603/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6603/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"No Technology for Terror Act","bill.title":"Ending Common Core and Expanding School Choice Act","bill.number":"6603","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59997","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6603/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6603/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6603/summaries?format=json","cboCostEstimates.0.title":"H.R. 6603, No Technology for Terror Act","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6603/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6603/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6603?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORAN:\nH.R. 6603.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nForeign Direct Product Rule application to Iran\n[Page H6145]\n","sponsors.0.district":1,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":5,"sponsors.0.firstName":"Nathaniel","bill.type":"HR","updateDateIncludingText":"2025-01-14T18:20:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6603/text?format=json","bill.sponsors.0.lastName":"Biggs"}}} +{"type":"relationship","id":"7969","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"231","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8645/text?format=json","updateDate":"2025-02-13T01:11:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Thanedar","cboCostEstimates.0.pubDate":"2024-07-25T18:42:00Z","sponsors.0.isByRequest":"N","request.billNumber":"8645","sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8645/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8645/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Improved Screening for Veterans and Passengers with Disabilities Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"8645","cboCostEstimates.0.description":"As ordered reported by the House Committee on Homeland Security on June 12, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60579","request.format":"json","latestAction_actionDate":"2024-07-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8645/cosponsors?format=json","sponsors.0.bioguideId":"T000488","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8645/titles?format=json","cboCostEstimates.0.title":"H.R. 8645, Improved Screening for Veterans and Passengers with Disabilities Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/8645/actions?format=json","latestAction.actionDate":"2024-07-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":4,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8645?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 8645.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have . . . power to make all laws. Article 1\nSection 8\nThe single subject of this legislation is:\nTo improve airport security screening for certain veterans\nand passengers with disabilities, and for other purposes.\n[Page H3675]\n","sponsors.0.district":13,"sponsors.0.firstName":"Shri","updateDateIncludingText":"2025-02-13T01:11:13Z"}}} +{"type":"relationship","id":"7970","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"673","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2810/text?format=json","updateDate":"2024-07-24T15:22:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Thanedar","sponsors.0.isByRequest":"N","request.billNumber":"2810","sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","latestAction_text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2810/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2810/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"To designate the Federal building located at 985 Michigan Avenue in Detroit, Michigan, as the \"John Conyers Federal Building\".","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","sponsors.0.party":"D","number":"2810","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2810/cosponsors?format=json","sponsors.0.bioguideId":"T000488","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2810/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2810/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2810/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","titles.count":2,"introducedDate":"2023-04-24","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2810?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 2810.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\nThe single subject of this legislation is:\nBuilding\n[Page H1915]\n","sponsors.0.district":13,"sponsors.0.firstName":"Shri","updateDateIncludingText":"2024-07-24T15:22:34Z"}}} +{"type":"relationship","id":"7971","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"1459","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1131/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Thanedar","sponsors.0.isByRequest":"N","request.billNumber":"1131","sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1131/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1131/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Celebrating Hindu Americans, and condemning attacks on Hindu places of worship, Hinduphobia, and anti-Hindu bigotry, and for other purposes.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1131","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2024-04-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1131/cosponsors?format=json","sponsors.0.bioguideId":"T000488","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1131/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1131/actions?format=json","latestAction.actionDate":"2024-04-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":23,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1131?format=json","sponsors.0.district":13,"sponsors.0.firstName":"Shri","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7972","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"8688","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8767/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thanedar","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8767/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8767","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOOD of Virginia:\nH.R. 8767.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8.\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8767/cosponsors?format=json","sponsors.0.bioguideId":"T000488","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.sponsors.0.bioguideId":"G000595","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Good, Bob [R-VA-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8767/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-08-29T12:31:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8767/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","request.billNumber":"8767","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8767/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Improving Access to Institutional Mental Health Care Act","bill.title":"Empowering Parents Act","bill.number":"8767","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8767/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8767/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8767/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000595?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bob","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8767/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8767/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8767?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 8767.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress shall have . . . power to make all laws. Article 1\nSection 8\nThe single subject of this legislation is:\nTo amend title XIX of the Social Security Act to remove the\nexclusion from medical assistance under the Medicaid program\nof items and services for patients in an institution for\nmental diseases.\n[Page H4109]\n","sponsors.0.district":13,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":5,"sponsors.0.firstName":"Shri","bill.type":"HR","updateDateIncludingText":"2025-02-27T17:27:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8767/text?format=json","bill.sponsors.0.lastName":"Good"}}} +{"type":"relationship","id":"7973","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9474","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3445/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3445","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3445/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3445/committees?format=json","policyArea.name":"Energy","type":"S","title":"Supporting Made in America Energy Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3445","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-01-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3445/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3445?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"7974","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9517","labels":["Bill"],"properties":{"relatedBills.count":7,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2973/text?format=json","updateDate":"2024-11-09T01:57:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2973","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2973/subjects?format=json","policyArea.name":"Health","type":"S","title":"Modernizing and Ensuring PBM Accountability Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","sponsors.0.party":"D","number":"2973","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/122?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2973/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2973/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2973/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2973/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2973/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2023-09-28","cosponsors.count":6,"subjects.count":19,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2973?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:47Z","committeeReports.0.citation":"S. Rept. 118-122"}}} +{"type":"relationship","id":"7975","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"8698","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 6845, Commercial Remote Sensing Amendment Act of 2022","sponsors.0.lastName":"Thanedar","cboCostEstimates.0.pubDate":"2022-05-27T18:05:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6845/summaries?format=json","type":"HR","bill.summaries.count":3,"bill.sponsors.0.middleName":"D.","number":"6845","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"sponsors.0.bioguideId":"T000488","bill.subjects.count":3,"latestAction.actionDate":"2023-12-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6845/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.originChamber":"House","bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-05-27T18:05:00Z","bill.congress":117,"committeeReports.0.citation":"H. Rept. 117-399","updateDate":"2024-11-09T01:57:27Z","committees.count":1,"request.billNumber":"6845","committees.url":"https://api.congress.gov/v3/bill/118/hr/6845/committees?format=json","bill.updateDateIncludingText":"2025-01-14T18:51:33Z","bill.number":"6845","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on April 5, 2022\n","committeeReports":[],"sponsors.0.middleName":"D.","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6845/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6845/summaries?format=json","cboCostEstimates.0.title":"H.R. 6845, Commercial Remote Sensing Amendment Act of 2022","bill.titles.count":5,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000491?format=json","introducedDate":"2023-12-15","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"FRANK","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6845/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/6845?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 207 (Friday, December 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 6845.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 Article I of the Constitution\nThe single subject of this legislation is:\nTo require officials of the Department of Defense to\nprovide a briefing on the implementation of category\nmanagement memorandum, and for other purposes\n[Page H6993]\n","bill.sponsors.0.district":3,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6845/cosponsors?format=json","bill.textVersions.count":4,"bill.latestAction.actionDate":"2022-07-27","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","bill.committeeReports.0.citation":"H. Rept. 117-399","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 35 (Friday, February 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUCAS:\nH.R. 6845.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Constitution, Article I, Section 8, Clause 18:\n``The Congress shall have Power . . . To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\n[Page H1148]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6845/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6845/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"L000491","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on April 5, 2022\n","bill.actions.count":15,"titles.count":3,"cosponsors.count":1,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/399?format=json","bill.sponsors.0.fullName":"Rep. Lucas, Frank D. [R-OK-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6845/text?format=json","bill.updateDate":"2025-01-14T18:51:33Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6845/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6845/subjects?format=json","title":"Equitable Contracting and Small Business Advancement Act","bill.title":"Commercial Remote Sensing Amendment Act of 2022","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58159","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6845/committees?format=json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/399?format=json","request.billType":"hr","bill.cosponsors.count":1,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6845/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-02-25","sponsors.0.district":13,"bill.sponsors.0.state":"OK","sponsors.0.firstName":"Shri","updateDateIncludingText":"2024-11-09T01:57:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6845/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58159","bill.sponsors.0.lastName":"LUCAS"}}} +{"type":"relationship","id":"7976","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10063","labels":["Order"],"properties":{"date_enacted":"2025-01-31","date_repealed":"None","description":"nan","id":"EO 14192","title":"Unleashing Prosperity Through Deregulation ","url":"https://www.federalregister.gov/d/2025-02345"}}} +{"type":"relationship","id":"7977","label":"SPONSORED","start":{"id":"4132","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000488_200.jpg","district":"13","startYear":"2023","name":"Thanedar, Shri","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/T000488?format=json","bioguideId":"T000488"}},"end":{"id":"8879","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6036/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Thanedar","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6036/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Homeland Security.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6036","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAMB:\nH.R. 6036.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, U.S. Constitution.\n[Page H6609]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6036/cosponsors?format=json","sponsors.0.bioguideId":"T000488","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6036/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6036/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Thanedar, Shri [D-MI-13]","bill.sponsors.0.bioguideId":"L000588","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6036/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lamb, Conor [D-PA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6036/text?format=json","bill.updateDate":"2025-01-03T07:35:34Z","updateDate":"2024-07-24T15:19:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6036/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000488?format=json","request.billNumber":"6036","subjects.url":"https://api.congress.gov/v3/bill/117/hr/6036/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6036/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:34Z","title":"To require GAO to conduct annual assessments to determine the extent to which TSA's passenger security screening practices comply with TSA non-discrimination policies to identify any needed actions to improve compliance, and for other purposes.","bill.title":"PATH to College Act","bill.number":"6036","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6036/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6036/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6036/summaries?format=json","bill.cosponsors.count":5,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000588?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Conor","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6036/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6036/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6036?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 175 (Tuesday, October 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THANEDAR:\nH.R. 6036.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 Article 1 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation will require GAO to conduct annual\nassessments to determine the extent to which TSA's passenger\nsecurity screening practices comply with TSA non-\ndiscrimination policies to identify any needed actions to\nimprove compliance, and for other purposes.\n[Page H5044]\n","sponsors.0.district":13,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Shri","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6036/text?format=json","bill.sponsors.0.lastName":"Lamb"}}} +{"type":"relationship","id":"7978","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"235","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9136/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Foushee","sponsors.0.isByRequest":"N","request.billNumber":"9136","sponsors.0.url":"https://api.congress.gov/v3/member/F000477?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/9136/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9136/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"IMPACT Act 2.0","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"9136","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2024-07-26","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9136/cosponsors?format=json","sponsors.0.bioguideId":"F000477","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/9136/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/9136/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9136/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-26","sponsors.0.fullName":"Rep. Foushee, Valerie P. [D-NC-4]","titles.count":3,"introducedDate":"2024-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/9136?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 121 (Thursday, July 25, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FOUSHEE:\nH.R. 9136.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 of the U.S. Constitution.\nThe single subject of this legislation is:\nConcrete innovation\n[Page H4949]\n","sponsors.0.district":4,"sponsors.0.firstName":"Valerie","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7979","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"8566","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9403/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foushee","bill.latestAction.actionDate":"2022-12-02","cboCostEstimates.0.pubDate":"2024-12-18T20:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9403/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported (Amended) by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9403","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9403/cosponsors?format=json","sponsors.0.bioguideId":"F000477","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9403/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-11","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Foushee, Valerie P. [D-NC-4]","bill.sponsors.0.bioguideId":"D000623","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeSaulnier, Mark [D-CA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9403/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-12-18T21:20:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9403/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000477?format=json","request.billNumber":"9403","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9403/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9403/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Expanding AI Voices Act","bill.title":"Offshore Oil and Gas Worker Whistleblower Protection Act","bill.number":"9403","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Science, Space, and Technology on September 11, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61124","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9403/committees?format=json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9403/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9403/summaries?format=json","bill.cosponsors.count":1,"cboCostEstimates.0.title":"H.R. 9403, Expanding AI Voices Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000623?format=json","introducedDate":"2024-08-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9403/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9403/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9403?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 133 (Friday, August 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FOUSHEE:\nH.R. 9403.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nAI Capacity Building and Research\n[Page H5006]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":11,"sponsors.0.firstName":"Valerie","bill.type":"HR","updateDateIncludingText":"2024-12-18T21:20:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9403/text?format=json","bill.sponsors.0.lastName":"DeSaulnier"}}} +{"type":"relationship","id":"7980","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10089","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14166","title":"Application of Protecting Americans From Foreign Adversary Controlled Applications Act to TikTok","url":"https://www.federalregister.gov/d/2025-02087"}}} +{"type":"relationship","id":"7981","label":"SPONSORED","start":{"id":"4121","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/f000477_200.jpg","startYear":"2023","partyName":"Democratic","name":"Foushee, Valerie P.","attribution":"Image courtesy of the Member","state":"North Carolina","url":"https://api.congress.gov/v3/member/F000477?format=json","bioguideId":"F000477"}},"end":{"id":"8647","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9253/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Foushee","bill.latestAction.actionDate":"2022-10-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9253/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Science, Space, and Technology, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9253","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9253/cosponsors?format=json","sponsors.0.bioguideId":"F000477","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9253/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Foushee, Valerie P. [D-NC-4]","bill.sponsors.0.bioguideId":"V000134","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":40,"bill.latestAction.text":"Referred to the Committee on Oversight and Reform, and in addition to the Committee on Rules, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Duyne, Beth [R-TX-24]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9253/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-03T14:25:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9253/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000477?format=json","request.billNumber":"9253","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9253/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9253/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"National Gun Violence Research Act","bill.title":"GORAC Act","bill.number":"9253","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":40,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9253/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-10-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9253/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9253/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000134?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-08-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Beth","sponsors.0.state":"NC","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9253/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9253/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9253?format=json","bill.introducedDate":"2022-10-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 127 (Friday, August 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FOUSHEE:\nH.R. 9253.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1\nThe single subject of this legislation is:\nGun Violence Research\n[Page H4973]\n","sponsors.0.district":4,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":24,"sponsors.0.firstName":"Valerie","bill.type":"HR","updateDateIncludingText":"2024-10-03T14:25:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9253/text?format=json","bill.sponsors.0.lastName":"Van Duyne"}}} +{"type":"relationship","id":"7982","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"241","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Hageman","cboCostEstimates.0.pubDate":"2024-07-12T16:15:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 478.","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 478.","sponsors.0.party":"R","number":"6493","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6493/cosponsors?format=json","sponsors.0.bioguideId":"H001096","actions.url":"https://api.congress.gov/v3/bill/118/hr/6493/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6493/relatedbills?format=json","sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","titles.count":4,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-577","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6493/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":5,"request.congress":"118","actions.count":20,"request.billNumber":"6493","sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6493/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6493/committees?format=json","title":"Promoting Free and Fair Elections Act of 2023","cboCostEstimates.0.description":"As reported by the House Committee on House Administration on\nJuly 8, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60521","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-07-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/577?format=json","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6493/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6493/summaries?format=json","cboCostEstimates.0.title":"H.R. 6493, Safeguarding Electoral Integrity Act of 2023","introducedDate":"2023-11-29","subjects.count":5,"sponsors.0.state":"WY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6493?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 196 (Wednesday, November 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 6493.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 ``To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.''\nThe single subject of this legislation is:\nThis bill strikes Executive Order 14019 and any contracts\nor arrangements made by agencies in connection with its\nimplementation.\n[Page H5983]\n","sponsors.0.firstName":"Harriet","updateDateIncludingText":"2025-02-04T17:04:08Z"}}} +{"type":"relationship","id":"7983","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"364","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7255/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hageman","sponsors.0.isByRequest":"N","request.billNumber":"7255","sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7255/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7255/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"GRANT Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"7255","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7255/cosponsors?format=json","sponsors.0.bioguideId":"H001096","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7255/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7255/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7255?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 7255.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nGrant Transparency and Accountability\n[Page H503]\n","sponsors.0.firstName":"Harriet","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"7984","label":"SPONSORED","start":{"id":"4038","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001096_200.jpg","startYear":"2023","partyName":"Republican","name":"Hageman, Harriet M.","attribution":"Image courtesy of the Member","state":"Wyoming","url":"https://api.congress.gov/v3/member/H001096?format=json","bioguideId":"H001096"}},"end":{"id":"8737","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8045/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hageman","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Natural Resources.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8045/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8045","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 8045.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII\n[Page H5487]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8045/cosponsors?format=json","sponsors.0.bioguideId":"H001096","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8045/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Hageman, Harriet M. [R-WY-At Large]","bill.sponsors.0.bioguideId":"P000048","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Natural Resources.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8045/text?format=json","bill.updateDate":"2025-01-03T07:52:31Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8045/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/H001096?format=json","request.billNumber":"8045","committees.url":"https://api.congress.gov/v3/bill/118/hr/8045/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8045/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:31Z","title":"POSTAL Act","bill.title":"Critical Minerals Classification Improvement Act of 2022","bill.number":"8045","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8045/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","sponsors.0.middleName":"M.","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8045/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8045/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"August","sponsors.0.state":"WY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8045/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8045/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8045?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. HAGEMAN:\nH.R. 8045.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nPreserving USPS Processing\n[Page H2502]\n","sponsors.0.district":11,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":11,"sponsors.0.firstName":"Harriet","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8045/text?format=json","bill.sponsors.0.lastName":"Pfluger"}}} +{"type":"relationship","id":"7985","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10040","labels":["Order"],"properties":{"date_enacted":"2025-02-18","date_repealed":"None","description":"nan","id":"EO 14215","title":"Ensuring Accountability for All Agencies","url":"https://www.federalregister.gov/d/2025-03063"}}} +{"type":"relationship","id":"7986","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"247","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8944/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Leger Fernandez","sponsors.0.isByRequest":"N","request.billNumber":"8944","sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8944/subjects?format=json","policyArea.name":"Education","type":"HR","title":"Financial Fitness Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"8944","request.format":"json","latestAction_actionDate":"2024-07-08","sponsors.0.bioguideId":"L000273","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8944/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8944/relatedbills?format=json","sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","titles.count":3,"introducedDate":"2024-07-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8944?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 112 (Monday, July 8, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 8944.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nEducation\n[Page H4477]\n","sponsors.0.district":3,"sponsors.0.firstName":"Teresa","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"7987","label":"SPONSORED","start":{"id":"4107","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"3","imageUrl":"https://www.congress.gov/img/member/l000273_200.jpg","startYear":"2021","partyName":"Democratic","name":"Leger Fernandez, Teresa","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/L000273?format=json","bioguideId":"L000273"}},"end":{"id":"8719","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Leger Fernandez","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 308.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8262/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Natural Resources.","bill.summaries.count":2,"sponsors.0.party":"D","number":"8262","bill.committeeReports.0.citation":"H. Rept. 117-400","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8262/cosponsors?format=json","sponsors.0.bioguideId":"L000273","bill.subjects.count":89,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8262/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8262/relatedbills?format=json","bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","bill.sponsors.0.bioguideId":"P000597","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 308.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8262/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/400?format=json","committeeReports.0.citation":"H. Rept. 117-400","bill.sponsors.0.fullName":"Rep. Pingree, Chellie [D-ME-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8262/text?format=json","bill.updateDate":"2025-02-14T02:36:14Z","updateDate":"2024-08-09T15:21:29Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8262/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","request.billNumber":"8262","committees.url":"https://api.congress.gov/v3/bill/118/hr/8262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8262/subjects?format=json","bill.updateDateIncludingText":"2025-02-14T02:36:14Z","title":"New Mexico Land Grant-Mercedes Historical or Traditional Use Cooperation and Coordination Act","bill.title":"Department of the Interior, Environment, and Related Agencies Appropriations Act, 2023","bill.number":"8262","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8262/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-01","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/400?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8262/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8262/summaries?format=json","bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000597?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chellie","sponsors.0.state":"NM","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8262/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8262/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8262?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 8262.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3\nThe single subject of this legislation is:\nFederal lands\n[Page H2937]\n","bill.introducedDate":"2022-07-01","sponsors.0.district":3,"bill.sponsors.0.state":"ME","bill.sponsors.0.district":1,"sponsors.0.firstName":"Teresa","bill.type":"HR","updateDateIncludingText":"2024-08-09T15:21:29Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8262/text?format=json","bill.sponsors.0.lastName":"Pingree"}}} +{"type":"relationship","id":"7988","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10064","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14191","title":"Expanding Educational Freedom and Opportunity for Families","url":"https://www.federalregister.gov/d/2025-02233"}}} +{"type":"relationship","id":"7989","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"9736","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hjres/104/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"cosponsors.count":29,"introducedDate":"2024-07-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/104?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"7992","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9757","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/67/text?format=json","relatedBills.count":1,"updateDate":"2025-02-07T21:53:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"67","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S7259-7260)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/67/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/67/committees?format=json","policyArea.name":"Labor and Employment","title":"Small Business Flexibility Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"67","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/67/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/67/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/67/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/67/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sjres/67/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sjres/67?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 67.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H109]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-07T21:53:44Z"}}} +{"type":"relationship","id":"7993","label":"SPONSORED","start":{"id":"4062","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg","district":"27","startYear":"2018","name":"Cloud, Michael","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/C001115?format=json","bioguideId":"C001115"}},"end":{"id":"9738","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/102/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Biggs","sponsors.0.isByRequest":"N","request.billNumber":"102","sponsors.0.url":"https://api.congress.gov/v3/member/B001302?format=json","latestAction_text":"Referred to the House Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/102/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/102/committees?format=json","policyArea.name":"Science, Technology, Communications","title":"Space Research Innovation Act","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"R","number":"102","cosponsors.countIncludingWithdrawnCosponsors":65,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/102/cosponsors?format=json","sponsors.0.bioguideId":"B001302","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/102/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/102/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/102/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/102/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Biggs, Andy [R-AZ-5]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":65,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hjres/102?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BIGGS:\nH.R. 102.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H110]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-07-24T15:24:12Z"}}} +{"type":"relationship","id":"7996","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9913","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/456/text?format=json","updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"456","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sres/456/committees?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating November 2023 as \"National College Application Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5432; text: CR S5430-5431)","sponsors.0.party":"D","number":"456","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-08-04","summaries.count":2,"amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/456/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/456/actions?format=json","latestAction.actionDate":"2023-11-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/456/amendments?format=json","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/456?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-04-17T23:51:46Z"}}} +{"type":"relationship","id":"8008","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9363","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3867/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"3867","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3867/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3867/committees?format=json","policyArea.name":"Housing and Community Development","title":"Livable Communities Act of 2024","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"3867","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3867/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3867/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3867/relatedbills?format=json","latestAction.actionDate":"2024-03-12","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":5,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3867?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:24:12Z"}}} +{"type":"relationship","id":"8009","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"260","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8622/text?format=json","relatedBills.count":1,"updateDate":"2024-12-18T09:05:39Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Balint","sponsors.0.isByRequest":"N","request.billNumber":"8622","sponsors.0.url":"https://api.congress.gov/v3/member/B001318?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8622/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Preventing the Algorithmic Facilitation of Rental Housing Cartels Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8622","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-06-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8622/cosponsors?format=json","sponsors.0.bioguideId":"B001318","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8622/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8622/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8622/relatedbills?format=json","sponsors.0.fullName":"Rep. Balint, Becca [D-VT-At Large]","titles.count":3,"introducedDate":"2024-06-05","cosponsors.count":21,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8622?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BALINT:\nH.R. 8622.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nAntitrust\n[Page H3674]\n","sponsors.0.firstName":"Becca","updateDateIncludingText":"2024-12-18T09:05:39Z"}}} +{"type":"relationship","id":"8010","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9384","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3856/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"3856","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/3856/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3856/committees?format=json","type":"S","title":"Timber Harvesting Restoration Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"3856","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3856/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3856/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3856/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3856/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3856/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2024-02-29","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3856?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"8011","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9542","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2724/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2724","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2724/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2724/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Nationwide Right To Unionize Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2724","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2724/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2724/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2724/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2724/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2724/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2724?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8012","label":"SPONSORED","start":{"id":"4039","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001318_200.jpg","startYear":"2023","name":"Balint, Becca","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Vermont","url":"https://api.congress.gov/v3/member/B001318?format=json","bioguideId":"B001318"}},"end":{"id":"611","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3174/text?format=json","relatedBills.count":1,"updateDate":"2024-10-02T08:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Balint","sponsors.0.isByRequest":"N","request.billNumber":"3174","sponsors.0.url":"https://api.congress.gov/v3/member/B001318?format=json","latestAction_text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3174/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3174/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Invasive Species Prevention and Forest Restoration Act","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"D","number":"3174","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3174/cosponsors?format=json","sponsors.0.bioguideId":"B001318","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3174/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3174/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3174/actions?format=json","latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3174/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Balint, Becca [D-VT-At Large]","titles.count":3,"introducedDate":"2023-05-10","cosponsors.count":10,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"VT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3174?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BALINT:\nH.R. 3174.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nInvasive Species Prevention and Forest Restoration\n[Page H2245]\n","sponsors.0.firstName":"Becca","updateDateIncludingText":"2024-10-02T08:05:41Z"}}} +{"type":"relationship","id":"8020","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"267","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8634/text?format=json","updateDate":"2024-08-29T11:27:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Luttrell","sponsors.0.isByRequest":"N","request.billNumber":"8634","sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8634/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8634/committees?format=json","policyArea.name":"Immigration","type":"HR","title":"Criminal Illegal Alien Report Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8634","request.format":"json","latestAction_actionDate":"2024-06-05","sponsors.0.bioguideId":"L000603","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8634/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8634/actions?format=json","latestAction.actionDate":"2024-06-05","textVersions.count":1,"sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","titles.count":3,"introducedDate":"2024-06-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8634?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 96 (Wednesday, June 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 8634.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8. To make laws which shall be necessary\nand proper for carrying into execution the foregoing powers,\nand all other powers vested by this Constitution in the\ngovernment of the United States, or in any department or\nofficer thereof.\nThe single subject of this legislation is:\nHomeland Secuity\n[Page H3674]\n","sponsors.0.district":8,"sponsors.0.firstName":"Morgan","updateDateIncludingText":"2024-08-29T11:27:31Z"}}} +{"type":"relationship","id":"8021","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"8772","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7767/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luttrell","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7767/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7767","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COURTNEY:\nH.R. 7767.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8.\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7767/cosponsors?format=json","sponsors.0.bioguideId":"L000603","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7767/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7767/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.sponsors.0.bioguideId":"C001069","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7767/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Courtney, Joe [D-CT-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7767/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-30T20:17:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7767/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","request.billNumber":"7767","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7767/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7767/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"STOP Enemies Act of 2024","bill.title":"Strengthening Behavioral Health Benefits Act","bill.number":"7767","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7767/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7767/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7767/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001069?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7767/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7767/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7767?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 7767.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article 1, Section 8 of the Constitution, Congress\nhas the power ``To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.''\nThe single subject of this legislation is:\nArmed Forces UCMJ\n[Page H1353]\n","sponsors.0.district":8,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":2,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-07-30T20:17:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7767/text?format=json","bill.sponsors.0.lastName":"Courtney"}}} +{"type":"relationship","id":"8022","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"8940","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2873, the Affordable Prescriptions for Patients Through Promoting Competition Act of 2021","sponsors.0.lastName":"Luttrell","cboCostEstimates.0.pubDate":"2022-07-22T17:25:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2873/summaries?format=json","bill.relatedBills.count":3,"type":"HR","bill.summaries.count":1,"bill.sponsors.0.middleName":"N.","number":"2873","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"sponsors.0.bioguideId":"L000603","bill.subjects.count":13,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2873/relatedbills?format=json","latestAction.actionDate":"2023-05-22","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 27 - 16.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-07-22T17:25:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2873/relatedbills?format=json","bill.congress":117,"updateDate":"2024-07-24T15:22:28Z","committees.count":1,"request.billNumber":"2873","committees.url":"https://api.congress.gov/v3/bill/118/hr/2873/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:06Z","bill.number":"2873","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","sponsors.0.middleName":"N.","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2873/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2873/summaries?format=json","cboCostEstimates.0.title":"Estimated Budgetary Effects of H.R. 2873, the Affordable Prescriptions for Patients Through Promoting Competition Act of 2021","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001084?format=json","introducedDate":"2023-04-26","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"David","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2873/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/2873?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CICILLINE:\nH.R. 2873.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8\n[Page H2128]\n","bill.sponsors.0.district":1,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2873/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-29","latestAction_text":"Ordered to be Reported in the Nature of a Substitute by the Yeas and Nays: 27 - 16.","latestAction.text":"Referred to the Subcommittee on Indian and Insular Affairs .","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 73 (Wednesday, April 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CICILLINE:\nH.R. 2873.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8\n[Page H2128]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2873/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2873/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"C001084","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on the Judiciary on September 29, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":34,"bill.sponsors.0.fullName":"Rep. Cicilline, David N. [D-RI-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2873/text?format=json","bill.updateDate":"2025-01-03T05:00:06Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2873/subjects?format=json","request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2873/subjects?format=json","title":"Tribal Gaming Regulatory Compliance Act","bill.title":"Affordable Prescriptions for Patients Through Promoting Competition Act of 2021","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58327","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2873/committees?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2873/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-04-28","sponsors.0.district":8,"bill.sponsors.0.state":"RI","sponsors.0.firstName":"Morgan","updateDateIncludingText":"2024-07-24T15:22:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2873/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/58327","bill.sponsors.0.lastName":"Cicilline"}}} +{"type":"relationship","id":"8023","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9445","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3965/text?format=json","updateDate":"2025-01-14T18:18:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"3965","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3965/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3965/subjects?format=json","policyArea.name":"Immigration","title":"Deploy Fentanyl Scanners Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Appropriations.","sponsors.0.party":"D","number":"3965","request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3965/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3965/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3965/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3965?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:18:18Z"}}} +{"type":"relationship","id":"8024","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"9227","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luttrell","bill.latestAction.actionDate":"2021-03-02","cboCostEstimates.0.pubDate":"2023-05-16T16:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on House Administration.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1529/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1529","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 2, Clause 18. Congress has the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof,\nincluding the regulation of health care for citizens for the\nUnited States\n[Page H1016]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1529/cosponsors?format=json","sponsors.0.bioguideId":"L000603","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1529/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1529/relatedbills?format=json","latestAction.actionDate":"2023-04-28","textVersions.count":1,"bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.sponsors.0.bioguideId":"W000821","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1529/text?format=json","bill.updateDate":"2025-01-03T04:49:34Z","updateDate":"2024-12-18T09:05:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":9,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","request.billNumber":"1529","committees.url":"https://api.congress.gov/v3/bill/118/hr/1529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1529/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:34Z","title":"Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.title":"VOTER ID Act","bill.number":"1529","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on April 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59150","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1529/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1529/summaries?format=json","bill.cosponsors.count":10,"cboCostEstimates.0.title":"H.R. 1529, Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bruce","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1529?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''.\nThe single subject of this legislation is:\nVeteran Affairs\n[Page H1279]\n","sponsors.0.district":8,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1529/text?format=json","bill.sponsors.0.lastName":"Westerman"}}} +{"type":"relationship","id":"8025","label":"SPONSORED","start":{"id":"4055","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/l000603_200.jpg","startYear":"2023","partyName":"Republican","name":"Luttrell, Morgan","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/L000603?format=json","bioguideId":"L000603"}},"end":{"id":"9822","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1529/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Luttrell","bill.latestAction.actionDate":"2021-03-02","cboCostEstimates.0.pubDate":"2023-05-16T16:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1529/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported by Voice Vote.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1529","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 39 (Tuesday, March 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WESTERMAN:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 2, Clause 18. Congress has the authority\nto make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by the Constitution in the Government of the\nUnited States, or in any Department or Officer thereof,\nincluding the regulation of health care for citizens for the\nUnited States\n[Page H1016]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1529/cosponsors?format=json","sponsors.0.bioguideId":"L000603","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1529/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1529/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-28","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Luttrell, Morgan [R-TX-8]","bill.sponsors.0.bioguideId":"W000821","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on House Administration.","request.contentType":"application/json","bill.congress":117,"latestAction_actionTime":"21:08:51","bill.sponsors.0.fullName":"Rep. Westerman, Bruce [R-AR-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1529/text?format=json","bill.updateDate":"2025-01-03T04:49:34Z","updateDate":"2024-12-18T09:05:53Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1529/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":9,"sponsors.0.url":"https://api.congress.gov/v3/member/L000603?format=json","request.billNumber":"1529","committees.url":"https://api.congress.gov/v3/bill/118/hr/1529/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1529/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:34Z","title":"Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.title":"VOTER ID Act","bill.number":"1529","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Veterans’ Affairs on April 28, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59150","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1529/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1529/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1529/summaries?format=json","bill.cosponsors.count":10,"cboCostEstimates.0.title":"H.R. 1529, Veterans’ Compensation Cost-of-Living Adjustment Act of 2023","bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000821?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bruce","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1529/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1529/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1529?format=json","bill.introducedDate":"2021-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LUTTRELL:\nH.R. 1529.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8 of the Constitution, Congress\nhas the power ``to make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or any Department or Officer\nthereof''.\nThe single subject of this legislation is:\nVeteran Affairs\n[Page H1279]\n","sponsors.0.district":8,"bill.sponsors.0.state":"AR","bill.sponsors.0.district":4,"sponsors.0.firstName":"Morgan","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:53Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1529/text?format=json","bill.sponsors.0.lastName":"Westerman"}}} +{"type":"relationship","id":"8035","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10065","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14190","title":"Ending Radical Indoctrination in K-12 Schooling ","url":"https://www.federalregister.gov/d/2025-02232"}}} +{"type":"relationship","id":"8038","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10090","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14165","title":"Securing Our Borders","url":"https://www.federalregister.gov/d/2025-02015"}}} +{"type":"relationship","id":"8044","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9786","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/115/relatedbills?format=json","latestAction.actionDate":"2024-11-20","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/115?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8064","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/456/text?format=json","updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"456","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"The committee amendment to the preamble withdrawn by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sres/456/committees?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating November 2023 as \"National College Application Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5432; text: CR S5430-5431)","sponsors.0.party":"D","number":"456","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-11","summaries.count":2,"amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/456/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/456/actions?format=json","latestAction.actionDate":"2023-11-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/456/amendments?format=json","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/456?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-04-17T23:51:46Z"}}} +{"type":"relationship","id":"8075","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9422","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4214/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T14:03:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"4214","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4214/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4214/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Trafficking Survivors Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4214","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4214/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4214/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4214/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":9,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4214?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2024-12-17T14:03:33Z"}}} +{"type":"relationship","id":"8076","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"279","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8604/text?format=json","relatedBills.count":1,"updateDate":"2024-08-29T12:36:34Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Blunt Rochester","sponsors.0.isByRequest":"N","request.billNumber":"8604","sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8604/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8604/subjects?format=json","policyArea.name":"Housing and Community Development","type":"HR","title":"Reducing Regulatory Barriers to Housing Act","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"8604","request.format":"json","latestAction_actionDate":"2024-06-04","sponsors.0.bioguideId":"B001303","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8604/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8604/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8604/relatedbills?format=json","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","titles.count":3,"introducedDate":"2024-06-04","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8604?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 95 (Tuesday, June 4, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 8604.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nHousing\n[Page H3655]\n","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2024-08-29T12:36:34Z"}}} +{"type":"relationship","id":"8077","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9585","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2185/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cardin","sponsors.0.isByRequest":"N","request.billNumber":"2185","sponsors.0.url":"https://api.congress.gov/v3/member/C000141?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2185/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Small Business Development Centers Improvement Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"2185","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2185/cosponsors?format=json","sponsors.0.bioguideId":"C000141","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2185/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2185/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2185/relatedbills?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Cardin, Benjamin L. [D-MD]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":5,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2185?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:17:46Z"}}} +{"type":"relationship","id":"8078","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9630","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1610/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1610","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1610/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1610/committees?format=json","type":"S","title":"Protecting Service Members and Military Families’ Access to Reproductive Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1610","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1610/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1610/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1610/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1610/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1610/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1610?format=json","updateDateIncludingText":"2025-01-14T17:07:58Z","sponsors.0.firstName":"Jeanne"}}} +{"type":"relationship","id":"8079","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"465","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5783/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Blunt Rochester","sponsors.0.isByRequest":"N","request.billNumber":"5783","sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5783/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5783/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"Blue Collar and Green Collar Jobs Development Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"D","number":"5783","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5783/cosponsors?format=json","sponsors.0.bioguideId":"B001303","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5783/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5783/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":17,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5783?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 5783.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nEnergy\n[Page H4855]\n","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8080","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"9060","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3805/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3805/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"S.","number":"3805","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 3805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H2709]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3805/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3805/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3805/relatedbills?format=json","latestAction.actionDate":"2023-06-09","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":6,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3805/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3805/text?format=json","bill.updateDate":"2025-01-03T05:07:24Z","updateDate":"2024-07-31T08:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3805/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"3805","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3805/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3805/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:24Z","title":"KIDS Health Act of 2023","bill.title":"Millionaires Surtax Act","bill.number":"3805","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3805/committees?format=json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3805/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3805/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-06-05","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3805/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3805/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3805?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 97 (Monday, June 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 3805.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the US Constitution\nThe single subject of this legislation is:\nChildren's Health\n[Page H2742]\n","sponsors.0.district":8,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-31T08:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3805/text?format=json","bill.sponsors.0.lastName":"Beyer"}}} +{"type":"relationship","id":"8081","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"9161","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2411/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2411","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KILMER:\nH.R. 2411.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2411/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2411/actions?format=json","latestAction.actionDate":"2023-04-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2411/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"K000381","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":43,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kilmer, Derek [D-WA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2411/text?format=json","bill.updateDate":"2025-01-03T04:56:13Z","updateDate":"2024-08-14T08:05:30Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2411/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"2411","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2411/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2411/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:56:13Z","title":"National Nursing Workforce Center Act of 2023","bill.title":"Broadband for All Act of 2021","bill.number":"2411","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2411/committees?format=json","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2411/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2411/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000381?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":9,"bill.committees.count":1,"bill.sponsors.0.firstName":"Derek","sponsors.0.state":"DE","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2411/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2411/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2411?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 2411.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nNursing\n[Page H1694]\n","sponsors.0.district":6,"bill.sponsors.0.state":"WA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-08-14T08:05:30Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2411/text?format=json","bill.sponsors.0.lastName":"Kilmer"}}} +{"type":"relationship","id":"8082","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"9178","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1114/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1114","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRIST:\nH.R. 1114.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution.\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1114/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1114/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"C001111","bill.actions.count":4,"bill.originChamber":"House","titles.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","cosponsors.count":7,"request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crist, Charlie [D-FL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1114/text?format=json","bill.updateDate":"2025-01-03T04:47:06Z","updateDate":"2024-07-24T15:23:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1114/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"1114","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1114/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1114/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:06Z","title":"Long COVID RECOVERY NOW Act","bill.title":"Vaccines for Veterans Act","bill.number":"1114","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1114/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1114/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1114/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001111?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Charlie","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1114/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1114/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1114?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 1114.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the U.S. Constitution\nThe single subject of this legislation is:\nLong-COVID\n[Page H867]\n","sponsors.0.district":13,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1114/text?format=json","bill.sponsors.0.lastName":"Crist"}}} +{"type":"relationship","id":"8083","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"9256","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/762/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/762/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"762","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 20 (Wednesday, February 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H325]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/762/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/762/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","latestAction.actionDate":"2023-02-10","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/762/text?format=json","bill.updateDate":"2025-01-03T04:44:41Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/762/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"762","subjects.url":"https://api.congress.gov/v3/bill/118/hr/762/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/762/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:41Z","title":"Building Resilient Supply Chains Act","bill.title":"SAFE TO DRIVE Act","bill.number":"762","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/762/committees?format=json","request.format":"json","latestAction_actionDate":"2021-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/762/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/762/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-02-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/762/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/762/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/762?format=json","bill.introducedDate":"2021-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 1,3, and 14 of the\nConstitution.\nThe single subject of this legislation is:\nThe single subject of this legislation is to promote U.S.\nmanufactoriung by building resilient supply chains.\n[Page H681]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/762/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}}} +{"type":"relationship","id":"8084","label":"SPONSORED","start":{"id":"4009","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001303_200.jpg","startYear":"2017","partyName":"Democratic","name":"Blunt Rochester, Lisa","attribution":"Image courtesy of the Member","state":"Delaware","endYear":"2025","url":"https://api.congress.gov/v3/member/B001303?format=json","bioguideId":"B001303"}},"end":{"id":"9680","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/762/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Blunt Rochester","bill.latestAction.actionDate":"2021-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/762/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"762","bill.cosponsors.countIncludingWithdrawnCosponsors":14,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 20 (Wednesday, February 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KRISHNAMOORTHI:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\n[Page H325]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/762/cosponsors?format=json","sponsors.0.bioguideId":"B001303","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/762/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","latestAction.actionDate":"2023-02-10","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Blunt Rochester, Lisa [D-DE-At Large]","bill.sponsors.0.bioguideId":"K000391","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/762/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/762/text?format=json","bill.updateDate":"2025-01-03T04:44:41Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/762/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/B001303?format=json","request.billNumber":"762","subjects.url":"https://api.congress.gov/v3/bill/118/hr/762/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/762/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:44:41Z","title":"Building Resilient Supply Chains Act","bill.title":"SAFE TO DRIVE Act","bill.number":"762","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/762/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/762/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/762/summaries?format=json","bill.cosponsors.count":14,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","introducedDate":"2023-02-02","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Raja","sponsors.0.state":"DE","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/762/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/762/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/762?format=json","bill.introducedDate":"2021-02-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BLUNT ROCHESTER:\nH.R. 762.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 1,3, and 14 of the\nConstitution.\nThe single subject of this legislation is:\nThe single subject of this legislation is to promote U.S.\nmanufactoriung by building resilient supply chains.\n[Page H681]\n","sponsors.0.district":8,"bill.sponsors.0.state":"IL","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/762/text?format=json","bill.sponsors.0.lastName":"Krishnamoorthi"}}} +{"type":"relationship","id":"8085","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9444","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3968/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"3968","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3968/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3968/committees?format=json","policyArea.name":"Health","title":"Community TEAMS Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3968","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3968/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3968/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3968/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3968/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3968/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3968?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8086","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"288","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8357/text?format=json","updateDate":"2024-08-16T13:24:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"8357","sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8357/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"BUILD Veterans Businesses Act of 2024","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"D","number":"8357","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8357/cosponsors?format=json","sponsors.0.bioguideId":"K000394","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8357/actions?format=json","latestAction.actionDate":"2024-05-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","titles.count":4,"introducedDate":"2024-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8357?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 8357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section Eight of the United States\nConstitution\nThe single subject of this legislation is:\nStrengthening businesses\n[Page H3006]\n","sponsors.0.district":3,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-08-16T13:24:41Z"}}} +{"type":"relationship","id":"8087","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9684","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/758/text?format=json","updateDate":"2024-07-24T15:23:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"758","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/117/s/758/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/758/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Moving Americans Privacy Protection Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"758","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/758/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/758/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/758/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/758/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/758/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","latestAction.actionTime":"16:09:50","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":3,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/758?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:23:41Z"}}} +{"type":"relationship","id":"8088","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9663","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1051/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:02Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"1051","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1051/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1051/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protect Taxpayers’ Privacy Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1051","request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-03-25","summaries.count":1,"sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1051/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1051/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1051/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1051/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-03-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1051?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:23:02Z"}}} +{"type":"relationship","id":"8089","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"451","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6154/text?format=json","relatedBills.count":1,"updateDate":"2024-12-12T21:17:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"6154","sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6154/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6154/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Responsible Gun Ownership Licensing Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"6154","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6154/cosponsors?format=json","sponsors.0.bioguideId":"K000394","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6154/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6154/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6154/relatedbills?format=json","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6154?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 180 (Wednesday, November 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6154.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nCrime and Law Enforcement\n[Page H5230]\n","sponsors.0.district":3,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2024-12-12T21:17:37Z"}}} +{"type":"relationship","id":"8090","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"774","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1463/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":6,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Kim","sponsors.0.isByRequest":"N","request.billNumber":"1463","sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Agriculture, Oversight and Accountability, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1463/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1463/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Restoring Trust in Public Servants Act","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Agriculture, Oversight and Accountability, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1463","request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"sponsors.0.bioguideId":"K000394","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1463/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1463/relatedbills?format=json","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","titles.count":3,"introducedDate":"2023-03-08","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1463?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 1463.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nStock Trading\n[Page H1208]\n","sponsors.0.district":3,"sponsors.0.firstName":"Andy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8091","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"8908","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5680/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kim","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on General Farm Commodities and Risk Management.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5680/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5680","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 186 (Friday, October 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.R. 5680.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\n[Page H5833]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5680/cosponsors?format=json","sponsors.0.bioguideId":"K000394","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5680/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-22","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","bill.sponsors.0.bioguideId":"P000605","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on General Farm Commodities and Risk Management.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perry, Scott [R-PA-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5680/text?format=json","bill.updateDate":"2025-01-03T07:32:37Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5680/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","request.billNumber":"5680","committees.url":"https://api.congress.gov/v3/bill/118/hr/5680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5680/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:32:37Z","title":"American Volunteering Corporation Act","bill.title":"SWEETER Act","bill.number":"5680","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5680/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5680/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5680/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000605?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-09-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Scott","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5680/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5680/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5680?format=json","bill.introducedDate":"2021-10-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 154 (Friday, September 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 5680.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nService\n[Page H4463]\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":10,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5680/text?format=json","bill.sponsors.0.lastName":"Perry"}}} +{"type":"relationship","id":"8092","label":"SPONSORED","start":{"id":"3971","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg","startYear":"2019","name":"Kim, Andy","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/K000394?format=json","bioguideId":"K000394"}},"end":{"id":"9220","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Kim","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1463/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Financial Services, Agriculture, Oversight and Accountability, House Administration, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"F.","number":"1463","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 1463.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n[Page H883]\n","sponsors.0.bioguideId":"K000394","bill.subjects.count":18,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1463/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1463/relatedbills?format=json","latestAction.actionDate":"2023-03-08","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","bill.sponsors.0.bioguideId":"L000562","bill.actions.count":8,"bill.originChamber":"House","titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1463/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1463/text?format=json","bill.updateDate":"2025-01-03T04:49:20Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1463/subjects?format=json","committees.count":6,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","request.billNumber":"1463","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1463/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:20Z","title":"Restoring Trust in Public Servants Act","bill.title":"Ensuring Health Safety in the Skies Act of 2021","bill.number":"1463","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1463/committees?format=json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1463/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1463/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Stephen","sponsors.0.state":"NJ","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1463/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1463/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1463?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 1463.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nStock Trading\n[Page H1208]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Andy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1463/text?format=json","bill.sponsors.0.lastName":"Lynch"}}} +{"type":"relationship","id":"8093","label":"SPONSORED","start":{"id":"4150","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/j000309_200.jpg","startYear":"2023","partyName":"Democratic","name":"Jackson, Jonathan L.","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/J000309?format=json","bioguideId":"J000309"}},"end":{"id":"294","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8354/text?format=json","relatedBills.count":1,"updateDate":"2024-07-30T14:00:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"8354","sponsors.0.url":"https://api.congress.gov/v3/member/J000309?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8354/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8354/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Blair Holt Firearm Owner Licensing and Record of Sale Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"8354","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"L.","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8354/cosponsors?format=json","sponsors.0.bioguideId":"J000309","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8354/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8354/actions?format=json","latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8354/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson, Jonathan L. [D-IL-1]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8354?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Illinois:\nH.R. 8354.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 8\nThe single subject of this legislation is:\nThis legislation is named after Blair Holt, a Chicago\nJulian High School honor student who was gunned down\nprotecting his friend when a gunman opened fire while they\nwere riding home from school on a crowded public transit bus.\nMay 10, 2024 marks the 17th anniversary of his death.\n[Page H3006]\n","sponsors.0.district":1,"sponsors.0.firstName":"Jonathan","updateDateIncludingText":"2024-07-30T14:00:15Z"}}} +{"type":"relationship","id":"8094","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"297","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8364/text?format=json","relatedBills.count":1,"updateDate":"2024-10-02T08:05:42Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scalise","sponsors.0.isByRequest":"N","request.billNumber":"8364","sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8364/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Firearms Interstate Commerce Reform Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8364","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2024-05-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8364/cosponsors?format=json","sponsors.0.bioguideId":"S001176","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8364/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8364/actions?format=json","latestAction.actionDate":"2024-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8364/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","titles.count":3,"introducedDate":"2024-05-10","cosponsors.count":51,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8364?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 82 (Friday, May 10, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SCALISE:\nH.R. 8364.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution, and Article I, Section 8, Clause 18 of the\nUnited States Constitution.\nThe single subject of this legislation is:\nThis legislation amends current law regarding the\nauthority to conduct interstate firearms transactions.\n[Page H3006]\n","sponsors.0.district":1,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-10-02T08:05:42Z"}}} +{"type":"relationship","id":"8095","label":"SPONSORED","start":{"id":"4163","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001176_200.jpg","district":"1","startYear":"2008","name":"Scalise, Steve","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Louisiana","url":"https://api.congress.gov/v3/member/S001176?format=json","bioguideId":"S001176"}},"end":{"id":"9888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/811/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Scalise","sponsors.0.isByRequest":"N","request.billNumber":"811","sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","committees.url":"https://api.congress.gov/v3/bill/117/hres/811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/811/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Authorizing the Clerk to inform the President of the election of the Speaker.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"811","request.format":"json","latestAction_actionDate":"2021-12-02","summaries.count":1,"sponsors.0.bioguideId":"S001176","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/811/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/811/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/811/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/811/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","latestAction.actionTime":"14:47:17","titles.count":2,"introducedDate":"2023-10-25","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/811?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:20:08Z"}}} +{"type":"relationship","id":"8099","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9530","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2961/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2961","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2961/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2961/committees?format=json","policyArea.name":"Emergency Management","title":"FEMA Equity Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"2961","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2961/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2961/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2961/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2961/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2961/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2961?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8100","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9568","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2450/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"2450","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/2450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2450/subjects?format=json","type":"S","title":"A bill to improve coordination between the Department of Energy and the National Science Foundation on activities carried out under the National Quantum Initiative Program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2450","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2450/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2450/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2450?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8102","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"9741","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/86/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"86","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","subjects.url":"https://api.congress.gov/v3/bill/118/s/86/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/86/committees?format=json","policyArea.name":"Congress","type":"S","title":"Members of Congress Pension Opt Out Clarification Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"86","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/86/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/86/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/86/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/86/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/86/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/86?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 76 (Friday, May 6, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.J. Res. 86.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 7\n[Page H4723]\n","sponsors.0.district":10,"sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8103","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"9747","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/77/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"77","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/77/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/77/committees?format=json","policyArea.name":"Commerce","title":"STEP Improvement Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"77","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/77/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/77/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/77/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/77/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/77/relatedbills?format=json","latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/77?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 48 (Thursday, March 17, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.J. Res. 77.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V of the U.S. Constitution.\n[Page H3828]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"8106","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8097/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T20:24:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Maloy","sponsors.0.isByRequest":"N","request.billNumber":"8097","sponsors.0.url":"https://api.congress.gov/v3/member/M001228?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8097/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8097/subjects?format=json","policyArea.name":"Labor and Employment","type":"HR","title":"RECA Extension Act of 2024","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"8097","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8097/cosponsors?format=json","sponsors.0.bioguideId":"M001228","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8097/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8097/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8097/actions?format=json","latestAction.actionDate":"2024-04-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8097/relatedbills?format=json","sponsors.0.fullName":"Rep. Maloy, Celeste [R-UT-2]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":20,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8097?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALOY:\nH.R. 8097.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo reauthorize the Radiation Exposure Compensation Act.\n[Page H2559]\n","sponsors.0.district":2,"sponsors.0.firstName":"Celeste","updateDateIncludingText":"2025-02-14T20:24:28Z"}}} +{"type":"relationship","id":"8107","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"345","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Maloy","cboCostEstimates.0.pubDate":"2024-02-26T16:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"R","number":"7128","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7128/cosponsors?format=json","sponsors.0.bioguideId":"M001228","actions.url":"https://api.congress.gov/v3/bill/118/hr/7128/actions?format=json","latestAction.actionDate":"2024-03-05","textVersions.count":4,"sponsors.0.fullName":"Rep. Maloy, Celeste [R-UT-2]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-383","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7128/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":17,"request.billNumber":"7128","sponsors.0.url":"https://api.congress.gov/v3/member/M001228?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7128/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7128/subjects?format=json","title":"The WOSB Integrity Act of 2024","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on January 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60011","request.format":"json","latestAction_actionDate":"2024-03-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/383?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7128/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7128/summaries?format=json","cboCostEstimates.0.title":"H.R. 7128, WOSB Integrity Act of 2024","introducedDate":"2024-01-30","subjects.count":4,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7128?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 17 (Tuesday, January 30, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALOY:\nH.R. 7128.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe single subject of this legislation is:\nTo establish requirements relating to size standard\ncompliance of small business concerns owned and controlled by\nwomen for certain purposes, and for other purposes.\n[Page H316]\n","sponsors.0.district":2,"sponsors.0.firstName":"Celeste","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"8108","label":"SPONSORED","start":{"id":"4051","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001228_200.jpg","district":"2","startYear":"2023","name":"Maloy, Celeste","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Utah","url":"https://api.congress.gov/v3/member/M001228?format=json","bioguideId":"M001228"}},"end":{"id":"8585","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Maloy","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7544/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7544","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 65 (Monday, April 18, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TORRES of New York:\nH.R. 7544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4448]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7544/cosponsors?format=json","sponsors.0.bioguideId":"M001228","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7544/actions?format=json","latestAction.actionDate":"2024-08-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7544/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Maloy, Celeste [R-UT-2]","bill.sponsors.0.bioguideId":"T000486","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Torres, Ritchie [D-NY-15]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7544/text?format=json","bill.updateDate":"2023-08-22T14:30:29Z","updateDate":"2024-11-12T17:11:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7544/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/M001228?format=json","request.billNumber":"7544","committees.url":"https://api.congress.gov/v3/bill/118/hr/7544/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7544/subjects?format=json","bill.updateDateIncludingText":"2023-08-22T14:30:29Z","title":"Water Rights Protection Act of 2024","bill.title":"To provide a private right of action against the maker of any component of a ghost gun, and any person who facilitated a sale of the ghost gun, for injury or death resulting from the use of the ghost gun.","bill.number":"7544","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7544/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7544/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7544/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000486?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":10,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ritchie","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7544/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7544/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7544?format=json","bill.introducedDate":"2022-04-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALOY:\nH.R. 7544.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section I\nThe single subject of this legislation is:\nTo prohibit the conditioning of any permit, lease, or other\nuse agreement on the transfer of any water right to the\nUnited States by the Secretary of the Interior and the\nSecretary of Agriculture, and for other purposes.\n[Page H823]\n","sponsors.0.district":2,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":15,"sponsors.0.firstName":"Celeste","bill.type":"HR","updateDateIncludingText":"2024-11-12T17:11:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7544/text?format=json","bill.sponsors.0.lastName":"Torres"}}} +{"type":"relationship","id":"8109","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"312","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8088/text?format=json","relatedBills.count":1,"updateDate":"2025-01-08T18:17:04Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Finstad","sponsors.0.isByRequest":"N","request.billNumber":"8088","sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8088/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8088/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Applicant Medical Reimbursement Act of 2024","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"8088","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8088/cosponsors?format=json","sponsors.0.bioguideId":"F000475","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8088/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8088/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8088/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8088/relatedbills?format=json","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","titles.count":3,"introducedDate":"2024-04-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8088?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 69 (Friday, April 19, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 8088.\nCongress has the power to enact this legislation pursuant\nto the following:\nArt. I, Section 8, US Constitution.\nThe single subject of this legislation is,\nMilitary\n[Page H2559]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2025-01-08T18:17:04Z"}}} +{"type":"relationship","id":"8110","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"679","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2423/text?format=json","relatedBills.count":1,"updateDate":"2024-08-17T08:05:33Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Finstad","sponsors.0.isByRequest":"N","request.billNumber":"2423","sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2423/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Farm Credit Administration Independent Authority Act","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"R","number":"2423","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2423/cosponsors?format=json","sponsors.0.bioguideId":"F000475","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2423/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2423/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2423/actions?format=json","latestAction.actionDate":"2023-04-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2423/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2423?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 2423.\nCongress has the power to enact this legislation pursuant\nto the following:\nLaws which shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nAffirms the Farm Credit Administration as the sole and\nindependent regulator of the Farm Credit System.\n[Page H1694]\n","sponsors.0.district":1,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2024-11-26T17:27:12Z"}}} +{"type":"relationship","id":"8111","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"8723","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8270/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Finstad","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8270/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8270","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McBATH:\nH.R. 8270.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the U.S. Constitution\n[Page H5930]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8270/cosponsors?format=json","sponsors.0.bioguideId":"F000475","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8270/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.sponsors.0.bioguideId":"M001208","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committees on Ways and Means, and Education and Labor, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McBath, Lucy [D-GA-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8270/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-09-04T08:05:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8270/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","request.billNumber":"8270","committees.url":"https://api.congress.gov/v3/bill/118/hr/8270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8270/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Conservation Reserve Program Modernization Act","bill.title":"Emergency Advance Refill Notification Act of 2022","bill.number":"8270","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8270/committees?format=json","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8270/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8270/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001208?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Lucy","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8270/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8270/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8270?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 8270.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nThis legislation would make improvements to the\nConservation Reserve Program (CRP) by utilizing science-based\ntargeting of acreage for enrollment.\n[Page H2937]\n","sponsors.0.district":1,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":6,"sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-09-04T08:05:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8270/text?format=json","bill.sponsors.0.lastName":"McBath"}}} +{"type":"relationship","id":"8112","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"8813","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Finstad","cboCostEstimates.0.pubDate":"2024-12-02T21:28:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7198/summaries?format=json","bill.relatedBills.count":6,"type":"HR","bill.summaries.count":1,"number":"7198","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"amendments.count":2,"sponsors.0.bioguideId":"F000475","bill.subjects.count":1,"latestAction.actionDate":"2024-12-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7198/relatedbills?format=json","bill.policyArea.name":"Water Resources Development","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.originChamber":"House","bill.latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7198/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-761","cboCostEstimates.1.url":"https://www.cbo.gov/publication/61043","updateDate":"2024-12-16T20:43:55Z","committees.count":2,"cboCostEstimates.1.pubDate":"2024-12-02T21:29:00Z","request.billNumber":"7198","committees.url":"https://api.congress.gov/v3/bill/118/hr/7198/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:45:31Z","cboCostEstimates.1.description":"As reported by the House Committee on the Judiciary on\nNovember 22, 2024\n","bill.number":"7198","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Small Business on September 10, 2024\n","latestAction_actionDate":"2022-03-25","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7198/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7198/summaries?format=json","cboCostEstimates.0.title":"H.R. 7198, Prove It Act of 2024","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001312?format=json","introducedDate":"2024-02-01","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Carolyn","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7198/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/7198?format=json","cboCostEstimates.1.title":"H.R. 7198, Prove It Act of 2024","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 19 (Thursday, February 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 7198.\nCongress has the power to enact this legislation pursuant\nto the following:\nLaws which shall be necessary and proper for carying into\nExecution the foregoing Powers, and all Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nMaking amendments to the Executive Branch regulatory\nprocess.\n[Page H389]\n","bill.sponsors.0.district":7,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7198/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2022-03-25","latestAction_text":"Referred to the Subcommittee on Water Resources and Environment.","latestAction.text":"Received in the Senate.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 53 (Thursday, March 24, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BOURDEAUX:\nH.R. 7198.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H3864]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7198/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7198/actions?format=json","textVersions.count":4,"bill.sponsors.0.bioguideId":"B001312","amendments.url":"https://api.congress.gov/v3/bill/118/hr/7198/amendments?format=json","bill.actions.count":4,"titles.count":5,"cosponsors.count":17,"bill.sponsors.0.fullName":"Rep. Bourdeaux, Carolyn [D-GA-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7198/text?format=json","bill.updateDate":"2025-01-03T07:45:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7198/subjects?format=json","request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7198/subjects?format=json","title":"Prove It Act of 2024","bill.title":"Chattahoochee River Act","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61042","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7198/committees?format=json","request.format":"json","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/761?format=json","request.billType":"hr","bill.cosponsors.count":5,"bill.sponsors.0.party":"D","bill.originChamberCode":"H","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7198/titles?format=json","originChamberCode":"H","bill.introducedDate":"2022-03-24","sponsors.0.district":1,"bill.sponsors.0.state":"GA","sponsors.0.firstName":"Brad","updateDateIncludingText":"2025-01-08T02:03:17Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7198/text?format=json","bill.sponsors.0.lastName":"Bourdeaux"}}} +{"type":"relationship","id":"8113","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9640","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/415/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"415","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Became Public Law No: 117-9.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/415/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/415/committees?format=json","title":"Food and Energy Security Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S399)","sponsors.0.party":"R","number":"415","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/415/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/415/titles?format=json","laws.0.number":"117-9","summaries.url":"https://api.congress.gov/v3/bill/118/s/415/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/415/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/415?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8114","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9724","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/113/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"cosponsors.count":21,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","title":"Prescription Pricing for the People Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":21,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","introducedDate":"2023-01-26","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"8115","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"8909","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5631/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Finstad","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5631/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5631","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 183 (Tuesday, October 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NEGUSE:\nH.R. 5681.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n=========================== NOTE ===========================\nOctober 19, 2021, on page H5674, top of the first column, the\nfollowing appeared: By Mr NEGUSE: H.R. 5681. Congress has the\npower to enact this legislation pursuant to the following: Article\n1, Section 8\nThe online version has been corrected to read: By Mr NEGUSE:\nH.R. 5631.\n========================= END NOTE =========================\n[Page H5674]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5631/cosponsors?format=json","sponsors.0.bioguideId":"F000475","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5631/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5631/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.sponsors.0.bioguideId":"N000191","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5631/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-10-05T08:05:49Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5631/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","request.billNumber":"5631","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5631/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5631/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Producer and Agricultural Credit Enhancement Act of 2023","bill.title":"Tim’s Act","bill.number":"5631","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5631/committees?format=json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5631/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5631/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","introducedDate":"2023-09-21","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":3,"bill.sponsors.0.firstName":"Joe","sponsors.0.state":"MN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5631/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5631/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5631?format=json","bill.introducedDate":"2021-10-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 153 (Thursday, September 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 5631.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nmodify limitations on amounts of farm ownership loans and\noperating loans.\n[Page H4457]\n","sponsors.0.district":1,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:49Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5631/text?format=json","bill.sponsors.0.lastName":"Neguse"}}} +{"type":"relationship","id":"8116","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"9159","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Finstad","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2423/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"HOLMES","number":"2423","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. NORTON:\nH.R. 2423.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 17 of section 8 of article I of the Constitution.\n[Page H1721]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2423/cosponsors?format=json","sponsors.0.bioguideId":"F000475","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2423/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2423/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-25","bill.policyArea.name":"Law","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","bill.sponsors.0.bioguideId":"N000147","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":31,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2423/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-08-17T08:05:33Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2423/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","request.billNumber":"2423","committees.url":"https://api.congress.gov/v3/bill/118/hr/2423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2423/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Farm Credit Administration Independent Authority Act","bill.title":"District of Columbia Juror Pay Parity Act","bill.number":"2423","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2423/committees?format=json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2423/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2423/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-03-30","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ELEANOR","sponsors.0.state":"MN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2423/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2423/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2423?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 58 (Thursday, March 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FINSTAD:\nH.R. 2423.\nCongress has the power to enact this legislation pursuant\nto the following:\nLaws which shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nAffirms the Farm Credit Administration as the sole and\nindependent regulator of the Farm Credit System.\n[Page H1694]\n","sponsors.0.district":1,"bill.sponsors.0.state":"DC","sponsors.0.firstName":"Brad","bill.type":"HR","updateDateIncludingText":"2024-11-26T17:27:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2423/text?format=json","bill.sponsors.0.lastName":"NORTON"}}} +{"type":"relationship","id":"8117","label":"SPONSORED","start":{"id":"4136","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000475_200.jpg","district":"1","startYear":"2022","name":"Finstad, Brad","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/F000475?format=json","bioguideId":"F000475"}},"end":{"id":"9846","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1402/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Finstad","sponsors.0.isByRequest":"N","request.billNumber":"1402","sponsors.0.url":"https://api.congress.gov/v3/member/F000475?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1402/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1402/committees?format=json","policyArea.name":"Sports and Recreation","type":"HRES","title":"Commending the Minnesota State University, Mankato women's and men's basketball teams for winning the 2024 NCAA Division II Basketball National Championships.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1402","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1402/cosponsors?format=json","sponsors.0.bioguideId":"F000475","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1402/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1402/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1402/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1402/relatedbills?format=json","sponsors.0.fullName":"Rep. Finstad, Brad [R-MN-1]","titles.count":2,"introducedDate":"2024-08-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1402?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Brad","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8118","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"317","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8067/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T09:06:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"8067","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/8067/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8067/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Internal Revenue Service Math and Taxpayer Help Act","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"8067","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8067/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/8067/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/8067/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8067/relatedbills?format=json","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/8067?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 68 (Thursday, April 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 8067.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nTax filing\n[Page H2522]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-12-17T09:06:00Z"}}} +{"type":"relationship","id":"8119","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"658","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3139/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T09:06:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"3139","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3139/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3139/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"ACRE Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"3139","cosponsors.countIncludingWithdrawnCosponsors":68,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3139/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3139/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3139/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3139/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3139/relatedbills?format=json","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-05-09","cosponsors.count":68,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3139?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\n[Pages H2172-H2173]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 3139.\n[[Page H2173]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to exclude from\ngross income interest received on certain loans secured by\nrural or agricultural real property.\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-12-17T09:06:00Z"}}} +{"type":"relationship","id":"8120","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"768","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1448/text?format=json","updateDate":"2024-11-09T01:57:21Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1448","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1448/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1448/committees?format=json","policyArea.name":"International Affairs","type":"HR","title":"DARE Act of 2023","latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committees on Foreign Affairs, and Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"1448","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-03-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1448/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1448/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1448/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1448/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-03-08","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1448?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1448.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 4 of the Constitution\nThe single subject of this legislation is:\nTo prohibit investment by foreign adversaries in United\nStates real estate suitable for renewable energy or renewable\nfuels production.\n[Page H1207]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-11-09T01:57:21Z"}}} +{"type":"relationship","id":"8121","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1125/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1125","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1125/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1125/committees?format=json","policyArea.name":"Education","type":"HR","title":"STUDENT Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1125","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1125/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1125/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1125/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-02-21","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require disclosure of the total amount of interest that\nwould be paid over the life of a loan for certain Federal\nstudent loans.\n[Page H867]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8122","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"1456","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1125/text?format=json","relatedBills.count":2,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1125","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1125/subjects?format=json","policyArea.name":"Education","type":"HR","title":"STUDENT Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1125","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-04-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1125/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1125/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1125/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1125/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1125/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":4,"introducedDate":"2023-02-21","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1125?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require disclosure of the total amount of interest that\nwould be paid over the life of a loan for certain Federal\nstudent loans.\n[Page H867]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2025-02-04T16:28:27Z","latestAction_actionTime":"14:18:36"}}} +{"type":"relationship","id":"8123","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"1699","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1495/text?format=json","relatedBills.count":1,"updateDate":"2024-07-09T18:14:45Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1495","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1495/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1495/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Precision Agriculture Loan Program Act of 2023","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","sponsors.0.party":"R","number":"1495","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1495/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1495/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1495/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1495/actions?format=json","latestAction.actionDate":"2023-04-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1495/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1495?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1495.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Food, Conservation, and Energy Act of 2008 to\nestablish a precision agriculture loan program, and for other\npurposes.\n[Page H1250]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-07-09T18:14:45Z"}}} +{"type":"relationship","id":"8124","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"1717","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1287/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feenstra","sponsors.0.isByRequest":"N","request.billNumber":"1287","sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1287/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1287/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Cattle Price Discovery and Transparency Act of 2023","latestAction.text":"Referred to the Subcommittee on Livestock, Dairy, and Poultry.","sponsors.0.party":"R","number":"1287","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1287/cosponsors?format=json","sponsors.0.bioguideId":"F000446","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1287/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1287/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1287/actions?format=json","latestAction.actionDate":"2023-04-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1287/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1287?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1287.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 Clause 4 of the Constitution\nThe single subject of this legislation is:\nTo establish mandatory minimum purchase volumes for packers\nthrough ``approved pricing mechanisms'', establish a maximum\npenalty for covered packers of $90,000 for mandatory minimum\nviolations, and to create a publicly available library of\nmarketing contracts.\n[Page H1051]\n","sponsors.0.district":4,"sponsors.0.firstName":"Randy","updateDateIncludingText":"2024-07-24T15:23:31Z"}}} +{"type":"relationship","id":"8125","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"8527","labels":["Bill"],"properties":{"relatedBills.count":11,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3764/cosponsors?format=json","congress":118,"bill.textVersions.count":2,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2022-12-30","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the Union Calendar, Calendar No. 511.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3764/summaries?format=json","bill.relatedBills.count":11,"type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":2,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"3764","bill.cosponsors.countIncludingWithdrawnCosponsors":46,"bill.committeeReports.0.citation":"H. Rept. 117-695","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIJALVA:\nH.R. 3764.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. I, sec. 8, cl. 3\nTo regulate Commerce with foreign Nations, and among the\nseveral States, and with the Indian tribes;\nU.S. Const. art. IV, sec. 3, cl. 2, sen. a\nThe Congress shall have Power to dispose of and make all\nneedful Rule and Regulations respecting the Territory of\nother Property belonging to the United States.\n[Page H2701]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3764/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":78,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3764/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3764/relatedbills?format=json","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"G000551","bill.originChamber":"House","bill.actions.count":30,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Placed on the Union Calendar, Calendar No. 511.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3764/relatedbills?format=json","bill.congress":117,"bill.committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/695?format=json","committeeReports.0.citation":"H. Rept. 117-695","bill.sponsors.0.fullName":"Rep. Grijalva, Raúl M. [D-AZ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3764/text?format=json","bill.updateDate":"2025-01-03T05:06:55Z","updateDate":"2024-11-09T04:56:57Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3764/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"3764","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3764/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3764/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:55Z","title":"WING Act of 2023","bill.title":"Ocean-Based Climate Solutions Act of 2022","bill.number":"3764","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"committeeReports":[],"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3764/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-30","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/695?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3764/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3764/summaries?format=json","bill.cosponsors.count":46,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000551?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":7,"bill.sponsors.0.firstName":"Raúl","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3764/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3764/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3764?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\n[Pages H2708-H2709]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 3764.\n[[Page H2709]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTo establish a Research, Development, Test, and Evaluation\nProgram to ensure the continued performance of weather radar\ndetection and prediction capabilities with physical\nobstructions in the line of sight of such radar.\n","sponsors.0.district":4,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:57Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3764/text?format=json","bill.sponsors.0.lastName":"Grijalva"}}} +{"type":"relationship","id":"8126","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9475","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3444","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/3444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3444/committees?format=json","type":"S","title":"Local 9–8–8 Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","sponsors.0.party":"D","number":"3444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3444/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3444/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3444?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8127","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"8596","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6501/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6501/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F.","number":"6501","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. NAPOLITANO:\nH.R. 6501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 4\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6501/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6501/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6501/relatedbills?format=json","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"N000179","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Napolitano, Grace F. [D-CA-32]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6501/text?format=json","bill.updateDate":"2025-01-03T07:39:23Z","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6501/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"6501","committees.url":"https://api.congress.gov/v3/bill/118/hr/6501/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6501/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:23Z","title":"Snap Back Inaccurate SNAP Payments Act","bill.title":"To amend the Immigration and Nationality Act to extend honorary citizenship to otherwise qualified noncitizens who enlisted in the Philippines and died while serving on active duty with the United States Armed Forces during certain periods of hostilities, and for other purposes.","bill.number":"6501","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6501/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6501/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6501/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/N000179?format=json","introducedDate":"2023-11-29","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"GRACE","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6501/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6501/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6501?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 196 (Wednesday, November 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 6501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo improve the calculation and reduce the taxpayer cost of\npayment errors under the Supplemental Nutrition Assistance\nProgram\n[Page H5983]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":32,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2025-01-23T18:51:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6501/text?format=json","bill.sponsors.0.lastName":"NAPOLITANO"}}} +{"type":"relationship","id":"8128","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"9685","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/755/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"755","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/755/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/755/subjects?format=json","type":"S","title":"Protecting Critical Ecosystems and Military Readiness in Florida Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"755","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/755/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/755/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/755/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/755/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/755?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"8129","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9688","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/756/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"756","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/756/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/756/subjects?format=json","policyArea.name":"Taxation","title":"REVOKE Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"756","request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-03-16","summaries.count":1,"sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/756/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/756/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/756/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/756/relatedbills?format=json","latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"introducedDate":"2023-03-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/756?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2024-07-24T15:23:26Z"}}} +{"type":"relationship","id":"8130","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"8957","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5167/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5167/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"5167","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\n[Pages H4506-H4507]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LANGEVIN:\nH.R. 5167.\n[[Page H4507]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5167/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5167/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-08","bill.policyArea.name":"Families","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"L000559","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Langevin, James R. [D-RI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5167/text?format=json","bill.updateDate":"2025-01-03T07:27:39Z","updateDate":"2024-07-24T15:20:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5167/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"5167","committees.url":"https://api.congress.gov/v3/bill/118/hr/5167/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5167/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:39Z","title":"Protecting Girls with Turner Syndrome Act of 2023","bill.title":"To provide additional emergency support for older foster youth under the John H. Chafee Foster Care Program for Successful Transition to Adulthood, and extend through fiscal year 2022 certain flexibilities provided for the program by division X of the Consolidated Appropriations Act, 2021, and for other purposes.","bill.number":"5167","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5167/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5167/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5167/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000559?format=json","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5167/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5167/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5167?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 5167.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo prohibit discrimination by abortion against an unborn\nchild on the basis of Turner syndrome\n[Page H4172]\n","sponsors.0.district":4,"bill.sponsors.0.state":"RI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5167/text?format=json","bill.sponsors.0.lastName":"LANGEVIN"}}} +{"type":"relationship","id":"8131","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"8988","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4904/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4904/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"4904","bill.cosponsors.countIncludingWithdrawnCosponsors":8,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. ADAMS:\nH.R. 4904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the Constitution of the United\nStates\n[Page H4312]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4904/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":14,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4904/actions?format=json","latestAction.actionDate":"2023-07-26","textVersions.count":1,"bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"A000370","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":24,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Adams, Alma S. [D-NC-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4904/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4904/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"4904","committees.url":"https://api.congress.gov/v3/bill/118/hr/4904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4904/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Build the Wall and Fight Fentanyl Act of 2023","bill.title":"Emergency Child and Adult Nutrition Assistance Act of 2021","bill.number":"4904","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":24,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4904/committees?format=json","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4904/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4904/summaries?format=json","bill.cosponsors.count":8,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/A000370?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":3,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alma","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4904/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4904/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4904?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 4904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEstablishes certain funds to construct and maintain\nphysical barriers along the southern international border of\nthe United States and award grants to certain organizations\naddressing the fentanyl crisis.\n[Page H4031]\n","sponsors.0.district":4,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":12,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4904/text?format=json","bill.sponsors.0.lastName":"Adams"}}} +{"type":"relationship","id":"8132","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"9175","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1125/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1125","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Miss GONZALEZ-COLON:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 1, of the U.S. Constitution\n``All legislative Powers herein granted shall be vested in\na Congress of the United States, which shall consist of a\nSenate and House of Representatives.''\nArticle I, Section 8, Clause 18 of the U.S. Constitution\nCongress shall have the power . . . ``To make all Laws\nwhich shall be necessary and proper for carrying into\nExecution the foregoing Powers, and all other Powers vested\nby this Constitution in the Government of the United States,\nor in any Department or Officer thereof.''\n[Page H537]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1125/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1125/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1125/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"G000582","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":9,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Resident Commissioner González-Colón, Jenniffer [R-PR-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1125/text?format=json","bill.updateDate":"2025-01-03T04:47:07Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1125/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"1125","committees.url":"https://api.congress.gov/v3/bill/118/hr/1125/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1125/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:47:07Z","title":"STUDENT Act","bill.title":"To amend the VA MISSION Act of 2018 to expand the veterans healing veterans medical access and scholarship program to include more students and schools.","bill.number":"1125","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1125/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1125/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1125/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000582?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jenniffer","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1125/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1125/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1125?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 1125.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution\nThe single subject of this legislation is:\nTo require disclosure of the total amount of interest that\nwould be paid over the life of a loan for certain Federal\nstudent loans.\n[Page H867]\n","sponsors.0.district":4,"bill.sponsors.0.state":"PR","sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1125/text?format=json","bill.sponsors.0.lastName":"Gonzalez-Colon"}}} +{"type":"relationship","id":"8133","label":"SPONSORED","start":{"id":"4156","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000446_200.jpg","district":"4","partyName":"Republican","startYear":"2021","name":"Feenstra, Randy","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/F000446?format=json","bioguideId":"F000446"}},"end":{"id":"9184","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/910/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Feenstra","bill.latestAction.actionDate":"2021-03-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/910/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"910","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 23 (Monday, February 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWNLEY:\nH.R. 910.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H483]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/910/cosponsors?format=json","sponsors.0.bioguideId":"F000446","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/910/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Feenstra, Randy [R-IA-4]","bill.sponsors.0.bioguideId":"B001285","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brownley, Julia [D-CA-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/910/text?format=json","bill.updateDate":"2025-01-03T04:45:56Z","updateDate":"2024-07-24T15:23:41Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/910/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/F000446?format=json","request.billNumber":"910","committees.url":"https://api.congress.gov/v3/bill/118/hr/910/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/910/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:45:56Z","title":"Biofuel Cell Research Act","bill.title":"Veterans Healthcare Improvement Act","bill.number":"910","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/910/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/910/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/910/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001285?format=json","introducedDate":"2023-02-09","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Julia","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/910/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/910/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/910?format=json","bill.introducedDate":"2021-02-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FEENSTRA:\nH.R. 910.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the Constitution\nThe single subject of this legislation is:\nTo direct the Secretary of Energy to establish a research,\ndevelopment, and demonstration program for a commercially\nviable fuel cell system that uses biofuel as a man fuel\nsource.\n[Page H827]\n","sponsors.0.district":4,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":26,"sponsors.0.firstName":"Randy","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:41Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/910/text?format=json","bill.sponsors.0.lastName":"Brownley"}}} +{"type":"relationship","id":"8140","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"9931","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/295/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"NORTON","sponsors.0.isByRequest":"N","request.billNumber":"295","sponsors.0.url":"https://api.congress.gov/v3/member/N000147?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hres/295/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/295/committees?format=json","type":"HRES","title":"Recognizing the enduring cultural and historical significance of emancipation in the Nation's capital on the anniversary of President Abraham Lincoln's signing of the District of Columbia Compensated Emancipation Act, which established the \"first freed\" on April 16, 1862, and celebrating passage of the District of Columbia statehood bill in the House of Representatives.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"295","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"HOLMES","latestAction_actionDate":"2021-04-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/295/cosponsors?format=json","sponsors.0.bioguideId":"N000147","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/295/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/295/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/295/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/295/relatedbills?format=json","sponsors.0.fullName":"Del. Norton, Eleanor Holmes [D-DC-At Large]","titles.count":2,"introducedDate":"2023-04-13","cosponsors.count":6,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"DC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/295?format=json","sponsors.0.district":1,"sponsors.0.firstName":"ELEANOR","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8143","label":"SPONSORED","start":{"id":"4143","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/k000375_200.jpg","startYear":"2011","partyName":"Democratic","name":"Keating, William R.","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/K000375?format=json","bioguideId":"K000375"}},"end":{"id":"9905","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/455/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cherfilus-McCormick","sponsors.0.isByRequest":"N","request.billNumber":"455","sponsors.0.url":"https://api.congress.gov/v3/member/C001127?format=json","latestAction_text":"Referred to the Subcommittee on Europe, Energy, the Environment and Cyber.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/455/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/455/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Expressing support for Black service members this Memorial Day who gave their lives to protect and defend the United States at home and abroad despite facing racism in the Armed Forces and systemic inequities on United States soil.","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"455","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/455/cosponsors?format=json","sponsors.0.bioguideId":"C001127","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/455/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/455/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/455/actions?format=json","latestAction.actionDate":"2023-05-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Cherfilus-McCormick, Sheila [D-FL-20]","titles.count":2,"introducedDate":"2023-05-26","cosponsors.count":29,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/455?format=json","sponsors.0.district":20,"sponsors.0.firstName":"Sheila","updateDateIncludingText":"2024-07-24T15:22:08Z"}}} +{"type":"relationship","id":"8154","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"9843","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1407/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Steil","sponsors.0.isByRequest":"N","request.billNumber":"1407","sponsors.0.url":"https://api.congress.gov/v3/member/S001213?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1407/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1407/committees?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"HRES","title":"Recognizing the 12-year anniversary of the tragic attack that took place at the Oak Creek Sikh Gurdwara on August 5, 2012, and honoring the memory of those who died in the attack.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1407","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1407/cosponsors?format=json","sponsors.0.bioguideId":"S001213","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1407/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1407/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1407/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-02","sponsors.0.fullName":"Rep. Steil, Bryan [R-WI-1]","titles.count":2,"cosponsors.count":6,"introducedDate":"2024-08-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1407?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Bryan","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8156","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"326","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7706/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"7706","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7706/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7706/subjects?format=json","policyArea.name":"Environmental Protection","type":"HR","title":"Safe Drinking Water for Disadvantaged Communities Act","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"7706","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7706/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7706/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7706/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":3,"introducedDate":"2024-03-15","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7706?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 47 (Friday, March 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 7706.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo provide that funds made available under the\nInfrastructure Investment and Jobs Act for lead service line\nreplacement projects be provided to disadvantaged communities\nin the form of forgivable loans or grants, and\n[Page H1189]\n","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2025-01-16T11:56:46Z"}}} +{"type":"relationship","id":"8157","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"929","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5172/text?format=json","updateDate":"2024-12-18T09:05:48Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"5172","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (text: CR S6444)","committees.url":"https://api.congress.gov/v3/bill/118/hr/5172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5172/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"To amend the Consolidated Farm and Rural Development Act to reduce the eligibility requirement for direct farm real estate loans, and for other purposes.","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"R","number":"5172","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5172/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5172/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5172/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":2,"introducedDate":"2023-08-08","cosponsors.count":2,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nreduce the eligibility requirement for direct farm real\nestate loans, and for other purposes.\n[Page H4172]\n","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2024-12-18T09:05:48Z"}}} +{"type":"relationship","id":"8158","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"957","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4935/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"4935","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4935/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"To amend the Commodity Exchange Act to adjust the period during which amounts transferred by the Commodity Futures Trading Commission to the account for customer education initiatives and non-awards expenses shall remain available, and for other purposes.","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"4935","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4935/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4935/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4935/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4935/actions?format=json","latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4935/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":2,"introducedDate":"2023-07-26","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4935?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 4935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Commodity Exchange Act to adjust the period\nduring which amounts transferred by the Commodity Futures\nTrading Commission to the account for customer education\ninitiatives and non-awards expenses\n[Page H4032]\n","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2024-07-24T15:20:47Z"}}} +{"type":"relationship","id":"8159","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8669","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9049/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9049/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9049","bill.cosponsors.countIncludingWithdrawnCosponsors":33,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9049/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9049/actions?format=json","latestAction.actionDate":"2024-07-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9049/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"F000468","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committee on Science, Space, and Technology, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9049/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9049/text?format=json","bill.updateDate":"2025-01-03T08:02:14Z","updateDate":"2024-08-20T17:40:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9049/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"9049","committees.url":"https://api.congress.gov/v3/bill/118/hr/9049/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9049/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:14Z","title":"HEALTH for MOM Act of 2024","bill.title":"RISEE Act of 2022","bill.number":"9049","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9049/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9049/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9049/summaries?format=json","bill.cosponsors.count":33,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","introducedDate":"2024-07-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Lizzie","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9049/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9049/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9049?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 116 (Monday, July 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 9049.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend title XIX of the Social Security Act to provide\nStates with the option to provide coordinated care through a\npregnancy medical home for high-risk pregnant women, and for\nother purposes.\n[Page H4634]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":7,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-08-20T17:40:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9049/text?format=json","bill.sponsors.0.lastName":"Fletcher"}}} +{"type":"relationship","id":"8160","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8670","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9071/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Natural Resources, and in addition to the Committees on House Administration, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9071/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Intelligence (Permanent Select).","bill.summaries.count":1,"sponsors.0.party":"R","number":"9071","bill.cosponsors.countIncludingWithdrawnCosponsors":69,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9071/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9071/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-18","bill.policyArea.name":"Arts, Culture, Religion","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"P000607","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Committee on Natural Resources, and in addition to the Committees on House Administration, and the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Pocan, Mark [D-WI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9071/text?format=json","bill.updateDate":"2025-01-03T08:02:13Z","updateDate":"2024-09-16T14:45:21Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9071/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"9071","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9071/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9071/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:13Z","title":"UAS Threat Disclosure Act","bill.title":"Commission To Study the Potential Creation of a National Museum of American LGBTQ+ History and Culture Act","bill.number":"9071","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9071/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9071/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9071/summaries?format=json","bill.cosponsors.count":69,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000607?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Mark","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9071/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9071/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9071?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 9071.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Director of National Intelligence to\ndeclassify information relating to security threats posed by\ncovered unmanned aircraft systems, and for other purposes.\n[Page H4641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-09-16T14:45:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9071/text?format=json","bill.sponsors.0.lastName":"Pocan"}}} +{"type":"relationship","id":"8161","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8700","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":3,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Science, Technology, Communications","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4227/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","bill.summaries.count":2,"sponsors.0.party":"R","number":"4227","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 113 (Tuesday, June 29, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HOLLINGSWORTH:\nH.R. 4227.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18\n[Page H3308]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4227/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4227/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4227/relatedbills?format=json","latestAction.actionDate":"2023-08-21","textVersions.count":1,"bill.policyArea.name":"Finance and Financial Sector","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"H001074","bill.originChamber":"House","bill.actions.count":11,"titles.count":3,"cosponsors.count":32,"bill.latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4227/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hollingsworth, Trey [R-IN-9]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4227/text?format=json","bill.updateDate":"2025-01-14T18:20:21Z","updateDate":"2024-12-17T09:05:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4227/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":7,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"4227","committees.url":"https://api.congress.gov/v3/bill/118/hr/4227/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4227/subjects?format=json","bill.updateDateIncludingText":"2025-01-14T18:20:21Z","title":"ReConnecting Rural America Act of 2023","bill.title":"Developing and Empowering our Aspiring Leaders Act of 2022","bill.number":"4227","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":32,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4227/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4227/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/4227/summaries?format=json","bill.titles.count":5,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001074?format=json","introducedDate":"2023-06-20","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":2,"bill.sponsors.0.firstName":"Trey","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4227/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4227/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4227?format=json","bill.introducedDate":"2021-06-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 107 (Tuesday, June 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 4227.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Rural Electrification Act of 1936 to establish\nthe ReConnect program under that Act, and for other purposes.\nBy Mrs. RODGERS of Washington\nH.R. 4228.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV\nThe single subject of this legislation is:\nThe bill creates Forest Active Management Areas to allow\nfor more active management projects in areas of National\nForests at risk of wildfire.\n[Page H2992]\n","sponsors.0.district":3,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":9,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4227/text?format=json","bill.sponsors.0.lastName":"Hollingsworth"}}} +{"type":"relationship","id":"8162","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8724","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8280/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-07-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Education","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8280/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"R.","number":"8280","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 110 (Friday, July 1, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TURNER:\nH.R. 8280.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority on which this bill rests is\nthe power of Congress ``to provide for the common Defence'',\n``to raise and support Armies'', to provide and maintain a\nNavy'' and ``to make Rules for the Government and Regulation\nof the land and naval Forces'' as enumerated in Article I,\nsection 8 of the United States Constitution\n[Page H5931]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8280/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8280/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8280/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-07","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"T000463","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8280/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Turner, Michael R. [R-OH-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8280/text?format=json","bill.updateDate":"2025-01-03T07:54:21Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8280/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"8280","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8280/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:54:21Z","title":"Safe Schools and Communities Act of 2024","bill.title":"Preventing Terrorist Transfers to Afghanistan Act","bill.number":"8280","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8280/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-07-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8280/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8280/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000463?format=json","introducedDate":"2024-05-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8280/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8280/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8280?format=json","bill.introducedDate":"2022-07-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 79 (Tuesday, May 7, 2024)]\n[House]\n[Pages H2937-H2938]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 8280.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the\n[[Page H2938]]\nforegoing Powers, and all other Powers vested by this\nConstitution in the Goverment of the United States, or in any\nDepartment or Officer thereof.\nThe single subject of this legislation is:\nTo direct the Secretary of Education to award grants to\nlocal educational agencies to enhance school and community\nsafety, and for other purposes.\n","sponsors.0.district":3,"bill.sponsors.0.state":"OH","bill.sponsors.0.district":10,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8280/text?format=json","bill.sponsors.0.lastName":"Turner"}}} +{"type":"relationship","id":"8163","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8765","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7781/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7781/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7781","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 83 (Monday, May 16, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BUCHANAN:\nH.R. 7781.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of Section 8 of Article I of the Constitution of\nthe United States\n[Page H5009]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7781/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7781/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7781/relatedbills?format=json","latestAction.actionDate":"2024-03-21","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"B001260","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7781/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Buchanan, Vern [R-FL-16]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7781/text?format=json","bill.updateDate":"2025-01-03T07:50:18Z","updateDate":"2024-10-15T14:40:45Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7781/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"7781","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7781/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7781/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:18Z","title":"AI PLAN Act","bill.title":"Urgently Feeding America’s Babies Act of 2022","bill.number":"7781","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7781/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7781/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7781/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001260?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Vern","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7781/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7781/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7781?format=json","bill.introducedDate":"2022-05-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 7781.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution To\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require a report on the economic and national security\nrisks posed by the use of artificial intelligence in the\ncommission of financial crimes, including fraud and the\ndissemination of misinformation, and for other purposes.\n[Page H1354]\n","sponsors.0.district":3,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":16,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-10-15T14:40:45Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7781/text?format=json","bill.sponsors.0.lastName":"Buchanan"}}} +{"type":"relationship","id":"8164","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8840","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6605/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2022-02-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Intelligence (Permanent Select).","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6605/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6605","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CROW:\nH.R. 6605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, U.S. Constitution.\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6605/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6605/actions?format=json","latestAction.actionDate":"2023-12-05","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"C001121","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Intelligence (Permanent Select).","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crow, Jason [D-CO-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6605/text?format=json","bill.updateDate":"2025-01-03T07:40:23Z","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6605/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"6605","committees.url":"https://api.congress.gov/v3/bill/118/hr/6605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6605/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:23Z","title":"STIFLE Act of 2023","bill.title":"Climate Security Intelligence Act of 2022","bill.number":"6605","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6605/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6605/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6605/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001121?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6605/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6605/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6605?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 6605.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to study the\nthreat of digital location obfuscation as it relates to\nnational security and financial technology, and for other\npurposes.\n[Page H6145]\n","sponsors.0.district":3,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":6,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6605/text?format=json","bill.sponsors.0.lastName":"Crow"}}} +{"type":"relationship","id":"8165","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8969","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5172/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Agriculture and Food","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5172/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5172","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H4507]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5172/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5172/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5172/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-25","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"R000610","bill.actions.count":3,"bill.originChamber":"House","titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5172/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5172/text?format=json","bill.updateDate":"2025-01-03T07:27:44Z","updateDate":"2024-12-18T09:05:48Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5172/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"5172","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5172/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5172/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:44Z","title":"To amend the Consolidated Farm and Rural Development Act to reduce the eligibility requirement for direct farm real estate loans, and for other purposes.","bill.title":"Honoring Purple Heart Recipients Act","bill.number":"5172","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5172/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5172/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5172/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-08","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Guy","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5172/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5172/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5172?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 134 (Tuesday, August 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 5172.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Consolidated Farm and Rural Development Act to\nreduce the eligibility requirement for direct farm real\nestate loans, and for other purposes.\n[Page H4172]\n","sponsors.0.district":3,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-12-18T09:05:48Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5172/text?format=json","bill.sponsors.0.lastName":"Reschenthaler"}}} +{"type":"relationship","id":"8166","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"8989","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4935/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4935/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"4935","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WITTMAN:\nH.R. 4935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4935/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4935/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4935/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"W000804","bill.originChamber":"House","bill.actions.count":3,"titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Wittman, Robert J. [R-VA-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4935/text?format=json","bill.updateDate":"2025-01-03T07:25:34Z","updateDate":"2024-07-24T15:20:47Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4935/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"4935","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4935/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4935/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:34Z","title":"To amend the Commodity Exchange Act to adjust the period during which amounts transferred by the Commodity Futures Trading Commission to the account for customer education initiatives and non-awards expenses shall remain available, and for other purposes.","bill.title":"SWOLE Act","bill.number":"4935","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4935/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4935/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4935/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000804?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"Robert","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4935/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4935/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4935?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 4935.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo amend the Commodity Exchange Act to adjust the period\nduring which amounts transferred by the Commodity Futures\nTrading Commission to the account for customer education\ninitiatives and non-awards expenses\n[Page H4032]\n","sponsors.0.district":3,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":1,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:47Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4935/text?format=json","bill.sponsors.0.lastName":"Wittman"}}} +{"type":"relationship","id":"8167","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"9079","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Economics and Public Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3526/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"X.","number":"3526","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOONEY:\nH.R. 3526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2668]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3526/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3526/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"bill.policyArea.name":"Economics and Public Finance","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"M001195","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Mooney, Alexander X. [R-WV-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3526/text?format=json","bill.updateDate":"2025-01-03T05:05:03Z","updateDate":"2024-08-16T15:00:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3526/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"3526","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3526/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:03Z","title":"Extraordinary Measures Transparency Act","bill.title":"Gold Reserve Transparency Act of 2021","bill.number":"3526","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3526/committees?format=json","request.format":"json","sponsors.0.middleName":"X.","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3526/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3526/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001195?format=json","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Alexander","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3526/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3526/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3526?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 3526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Goverment of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo require the Secretary of the Treasury to issue reports\nwith respect to extraordinary measures, and for other\npurposes.\n[Page H2459]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WV","bill.sponsors.0.district":2,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-08-16T15:00:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3526/text?format=json","bill.sponsors.0.lastName":"Mooney"}}} +{"type":"relationship","id":"8168","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"9217","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1601/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Nunn","bill.latestAction.actionDate":"2021-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Congress","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1601/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1601","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WALORSKI:\nH.R. 1601.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of article I of the Constitution, to\n``provide for the common defense and general welfare of the\nUnited States.''\n[Page H1082]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1601/cosponsors?format=json","sponsors.0.bioguideId":"N000193","bill.subjects.count":3,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1601/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","bill.sponsors.0.bioguideId":"W000813","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Walorski, Jackie [R-IN-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1601/text?format=json","bill.updateDate":"2025-01-03T04:50:09Z","updateDate":"2024-07-24T15:23:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1601/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","request.billNumber":"1601","committees.url":"https://api.congress.gov/v3/bill/118/hr/1601/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1601/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:09Z","title":"Ban Members from Becoming Lobbyists Act","bill.title":"Pandemic Relief for Working Seniors Act of 2021","bill.number":"1601","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1601/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1601/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1601/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000813?format=json","introducedDate":"2023-03-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1601/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1601/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1601?format=json","bill.introducedDate":"2021-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 47 (Tuesday, March 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. NUNN of Iowa:\nH.R. 1601.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution To\nmake all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nTo increase the length of the post-employment ban on\nlobbying of Members, officers, or employees of Congress by\nformer Members of Congress.\n[Page H1288]\n","sponsors.0.district":3,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":2,"sponsors.0.firstName":"Zachary","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:20Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1601/text?format=json","bill.sponsors.0.lastName":"Walorski"}}} +{"type":"relationship","id":"8169","label":"SPONSORED","start":{"id":"4149","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/n000193_200.jpg","district":"3","startYear":"2023","name":"Nunn, Zachary","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/N000193?format=json","bioguideId":"N000193"}},"end":{"id":"9840","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1265/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Nunn","sponsors.0.isByRequest":"N","request.billNumber":"1265","sponsors.0.url":"https://api.congress.gov/v3/member/N000193?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 131.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1265/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1265/subjects?format=json","policyArea.name":"Energy","type":"HRES","title":"Expressing support for the designation of May 2024 as \"Renewable Fuels Month\" to recognize the important role that renewable fuels play in reducing carbon impacts, lowering fuel prices for consumers, supporting rural communities, and lessening reliance on foreign adversaries.","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","sponsors.0.party":"R","number":"1265","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/524?format=json","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1265/cosponsors?format=json","sponsors.0.bioguideId":"N000193","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1265/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1265/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1265/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1265/relatedbills?format=json","latestAction.actionDate":"2024-06-07","textVersions.count":1,"sponsors.0.fullName":"Rep. Nunn, Zachary [R-IA-3]","titles.count":2,"cosponsors.count":8,"introducedDate":"2024-05-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1265?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Zachary","updateDateIncludingText":"2025-01-16T11:56:46Z","committeeReports.0.citation":"H. Rept. 117-524"}}} +{"type":"relationship","id":"8170","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"332","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7549/text?format=json","updateDate":"2024-06-11T15:44:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Mrvan","sponsors.0.isByRequest":"N","request.billNumber":"7549","sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","latestAction_text":"Referred to the Subcommittee on Economic Opportunity.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7549/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7549/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Gold Star Family Education Parity Act","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","sponsors.0.party":"D","number":"7549","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-03-22","sponsors.0.bioguideId":"M001214","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7549/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7549/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","titles.count":3,"introducedDate":"2024-03-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7549?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 7549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 provides Congress with the\npower to lay and collect taxes, duties, and imposts and\nexcises, to pay the debts and provide for the common defense\nand general welfare of the United States; but all duties,\nimposts and excises shall be uniform throuhgout the United\nStates\nThe single subject of this legislation is:\nThis bill would terminate Chapter 35 Survivors' and\nDependents' Education Assistance (DEA) on August 1, 2028 and\nmake survivors and dependents eligible for Chapter 33 (Post\n9/11 GI Bill) benefits\n[Page H823]\n","sponsors.0.district":1,"sponsors.0.firstName":"Frank","updateDateIncludingText":"2024-06-11T15:44:34Z"}}} +{"type":"relationship","id":"8171","label":"SPONSORED","start":{"id":"4154","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/m001214_200.jpg","startYear":"2021","partyName":"Democratic","name":"Mrvan, Frank J.","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/M001214?format=json","bioguideId":"M001214"}},"end":{"id":"8582","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7549/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Mrvan","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Immigration and Citizenship.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7549/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Opportunity.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7549","bill.cosponsors.countIncludingWithdrawnCosponsors":19,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CASTRO of Texas:\nH.R. 7549.\nCongress has the power to enact this legislation pursuant\nto the following:\nConstitutional Authority--Necessary and Proper Clause (Art.\nI, Sec. 8, Clause 18)\nTHE U.S. CONSTITUTION\nARTICLE I, SECTION 8: POWERS OF CONGRESS\nCLAUSE 18\nThe Congress shall have power . . . To make all laws which\nshall be necessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H4454]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7549/cosponsors?format=json","sponsors.0.bioguideId":"M001214","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7549/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-22","bill.policyArea.name":"Immigration","sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","bill.sponsors.0.bioguideId":"C001091","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":19,"bill.latestAction.text":"Referred to the Subcommittee on Immigration and Citizenship.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Castro, Joaquin [D-TX-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7549/text?format=json","bill.updateDate":"2025-01-03T07:48:01Z","updateDate":"2024-06-11T15:44:34Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7549/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","request.billNumber":"7549","committees.url":"https://api.congress.gov/v3/bill/118/hr/7549/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7549/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:01Z","title":"Gold Star Family Education Parity Act","bill.title":"Seasonal Worker Solidarity Act of 2022","bill.number":"7549","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":19,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7549/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7549/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7549/summaries?format=json","bill.cosponsors.count":19,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001091?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Joaquin","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7549/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7549/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7549?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 7549.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 provides Congress with the\npower to lay and collect taxes, duties, and imposts and\nexcises, to pay the debts and provide for the common defense\nand general welfare of the United States; but all duties,\nimposts and excises shall be uniform throuhgout the United\nStates\nThe single subject of this legislation is:\nThis bill would terminate Chapter 35 Survivors' and\nDependents' Education Assistance (DEA) on August 1, 2028 and\nmake survivors and dependents eligible for Chapter 33 (Post\n9/11 GI Bill) benefits\n[Page H823]\n","sponsors.0.district":1,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":20,"sponsors.0.firstName":"Frank","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:44:34Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7549/text?format=json","bill.sponsors.0.lastName":"Castro"}}} +{"type":"relationship","id":"8182","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9930","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/293/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:22:58Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Neguse","sponsors.0.isByRequest":"N","request.billNumber":"293","sponsors.0.url":"https://api.congress.gov/v3/member/N000191?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/hres/293/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/293/subjects?format=json","type":"HRES","title":"Supporting the designation of April 2023 as \"National Native Plant Month\".","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"293","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-04-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/293/cosponsors?format=json","sponsors.0.bioguideId":"N000191","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/293/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/293/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/293/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/293/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-13","sponsors.0.fullName":"Rep. Neguse, Joe [D-CO-2]","titles.count":2,"cosponsors.count":3,"introducedDate":"2023-04-13","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/293?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Joe","updateDateIncludingText":"2024-07-24T15:22:58Z"}}} +{"type":"relationship","id":"8187","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7552/text?format=json","updateDate":"2024-07-24T15:19:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"7552","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7552/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7552/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"RECOGNIZING Judea and Samaria Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"7552","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7552/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7552/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7552/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2024-03-05","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7552?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 7552.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis bill requires federal materials to use the term\n``Judea and Samaria'' instead of ``West Bank'' and makes\nconforming changes to existing law.\n[Page H823]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2024-07-24T15:19:01Z"}}} +{"type":"relationship","id":"8188","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"358","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7553/text?format=json","updateDate":"2024-07-09T18:13:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"7553","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7553/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7553/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Ensuring States Support Law Enforcement Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"7553","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-03-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7553/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7553/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7553/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7553?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 7553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill conditions Byrne JAG grants on state DMVs sharing\ninformation with the Department of Homeland Security\n[Page H823]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2024-07-09T18:13:26Z"}}} +{"type":"relationship","id":"8189","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"486","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5580/text?format=json","updateDate":"2024-06-11T16:07:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"5580","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5580/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Saving Our Mainstreet American Locations for Leisure and Shopping Act of 2023","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"5580","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5580/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5580/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5580/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-19","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":3,"introducedDate":"2023-09-19","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5580?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5580.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIt would amend Section 108 of the Tax Code to provide tax\nrelief for the cancellation of commercial and retail\nindebtedness.\n[Page H4409]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2024-06-11T16:07:20Z"}}} +{"type":"relationship","id":"8190","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"1741","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/749/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"749","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/749/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/749/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Turn OFF THE TAP Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"749","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/749/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/749/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/749/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/749/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/749/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2023-02-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/749?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nThe subject of this bill is preventing federal funds from\ngoing to sanctioned entities.\n[Page H680]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8191","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"1775","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/526/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"526","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hr/526/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/526/subjects?format=json","policyArea.name":"Labor and Employment","title":"Health Freedom for All Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"526","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2025-01-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/526/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/526/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/526?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 526.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3,\nThe single subject of this legislation is:\nPreventing OSHA from enacting COVID-19 vaccine mandate.\n[Page H325]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8192","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"8580","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7553/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7553/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7553","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 66 (Thursday, April 21, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LIEU:\nH.R. 7553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\n[Page H4454]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7553/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7553/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-05","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"L000582","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lieu, Ted [D-CA-33]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7553/text?format=json","bill.updateDate":"2025-01-03T07:48:05Z","updateDate":"2024-07-09T18:13:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7553/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"7553","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7553/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7553/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:48:05Z","title":"Ensuring States Support Law Enforcement Act","bill.title":"Warrant for Metadata Act","bill.number":"7553","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7553/committees?format=json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7553/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7553/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000582?format=json","introducedDate":"2024-03-05","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ted","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7553/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7553/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7553?format=json","bill.introducedDate":"2022-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 39 (Tuesday, March 5, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 7553.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis bill conditions Byrne JAG grants on state DMVs sharing\ninformation with the Department of Homeland Security\n[Page H823]\n","sponsors.0.district":24,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":33,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2024-07-09T18:13:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7553/text?format=json","bill.sponsors.0.lastName":"Lieu"}}} +{"type":"relationship","id":"8193","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"8898","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2021-11-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5820/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"5820","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 192 (Tuesday, November 2, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. LESKO:\nH.R. 5820\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\n[Page H6125]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5820/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5820/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5820/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"L000589","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":26,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lesko, Debbie [R-AZ-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5820/text?format=json","bill.updateDate":"2025-01-03T07:33:49Z","updateDate":"2025-01-21T19:51:15Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5820/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"5820","committees.url":"https://api.congress.gov/v3/bill/118/hr/5820/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5820/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:33:49Z","title":"Technology for Energy Security Act","bill.title":"To prohibit the use of certain Federal funds to facilitate mandatory vaccination programs, and for other purposes.","bill.number":"5820","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":26,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5820/committees?format=json","request.format":"json","latestAction_actionDate":"2021-11-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5820/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5820/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000589?format=json","introducedDate":"2023-09-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Debbie","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5820/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5820/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5820?format=json","bill.introducedDate":"2021-11-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5820.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIt would extend the investment tax credit for qualified\nfuel cells until January 1, 2033.\n[Page H4857]\n","sponsors.0.district":24,"bill.sponsors.0.state":"AZ","bill.sponsors.0.district":8,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2025-01-21T19:51:15Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5820/text?format=json","bill.sponsors.0.lastName":"Lesko"}}} +{"type":"relationship","id":"8194","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"8972","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5161/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5161/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Drew","number":"5161","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FERGUSON:\nH.R. 5161.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 1 of section 8 of article I of the Constitution, to\n``provide for the common defense and general welfare of the\nUnited States.''\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5161/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5161/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5161/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"F000465","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Committee on Education and Labor, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5161/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5161/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"5161","committees.url":"https://api.congress.gov/v3/bill/118/hr/5161/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5161/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Protecting Hunting and Archery in Schools Act of 2023","bill.title":"Expanding Small Employer Pooling Options for Paid Family Leave Act of 2021","bill.number":"5161","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5161/committees?format=json","request.format":"json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5161/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5161/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"A.","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5161/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5161/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5161?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 5161.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo protect hunting, archery, and shooting sports in schools\n[Page H4166]\n","sponsors.0.district":24,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5161/text?format=json","bill.sponsors.0.lastName":"Ferguson"}}} +{"type":"relationship","id":"8195","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"9017","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4357/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tenney","bill.latestAction.actionDate":"2021-07-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4357/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4357","bill.cosponsors.countIncludingWithdrawnCosponsors":15,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 118 (Tuesday, July 6, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. THOMPSON of Mississippi:\nH.R. 4357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H3610]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4357/cosponsors?format=json","sponsors.0.bioguideId":"T000478","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4357/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4357/relatedbills?format=json","latestAction.actionDate":"2023-06-23","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","bill.sponsors.0.bioguideId":"T000193","bill.originChamber":"House","bill.actions.count":8,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Oversight, Management, and Accountability.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4357/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Thompson, Bennie G. [D-MS-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4357/text?format=json","bill.updateDate":"2025-01-03T07:21:17Z","updateDate":"2024-07-24T15:21:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4357/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","request.billNumber":"4357","committees.url":"https://api.congress.gov/v3/bill/118/hr/4357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4357/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:21:17Z","title":"Permanent CFC Look-Through Act of 2023","bill.title":"DHS Reform Act of 2021","bill.number":"4357","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4357/committees?format=json","request.format":"json","latestAction_actionDate":"2021-07-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4357/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4357/summaries?format=json","bill.cosponsors.count":15,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000193?format=json","introducedDate":"2023-06-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"BENNIE","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4357/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4357/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4357?format=json","bill.introducedDate":"2021-07-06","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 110 (Friday, June 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 4357.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nIt would make the controlled foreign corporation look-\nthrough rule permanent.\n[Page H3144]\n","sponsors.0.district":24,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":2,"sponsors.0.firstName":"Claudia","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:21:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4357/text?format=json","bill.sponsors.0.lastName":"THOMPSON"}}} +{"type":"relationship","id":"8196","label":"SPONSORED","start":{"id":"4093","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"24","imageUrl":"https://www.congress.gov/img/member/t000478_200.jpg","startYear":"2017","partyName":"Republican","name":"Tenney, Claudia","attribution":"Image courtesy of the Member","state":"New York","endYear":"2019","url":"https://api.congress.gov/v3/member/T000478?format=json","bioguideId":"T000478"}},"end":{"id":"9692","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/749/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tenney","sponsors.0.isByRequest":"N","request.billNumber":"749","sponsors.0.url":"https://api.congress.gov/v3/member/T000478?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/hr/749/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/749/committees?format=json","type":"HR","title":"Turn OFF THE TAP Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"749","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/749/cosponsors?format=json","sponsors.0.bioguideId":"T000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/749/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/749/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/749/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/749/relatedbills?format=json","latestAction.actionDate":"2023-02-02","sponsors.0.fullName":"Rep. Tenney, Claudia [R-NY-24]","titles.count":4,"introducedDate":"2023-02-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/749?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. TENNEY:\nH.R. 749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1\nThe single subject of this legislation is:\nThe subject of this bill is preventing federal funds from\ngoing to sanctioned entities.\n[Page H680]\n","sponsors.0.district":24,"sponsors.0.firstName":"Claudia","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8207","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7243/text?format=json","updateDate":"2024-10-22T17:13:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"7243","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Border Security and Enforcement.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7243/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7243/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Border Security State Reimbursement Act","latestAction.text":"Referred to the Subcommittee on Border Security and Enforcement.","sponsors.0.party":"R","number":"7243","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7243/cosponsors?format=json","sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7243/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7243/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7243?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 7243.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nTo ensure reimbursements for states that take measures to\nsecure the border\n[Page H503]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-10-22T17:13:49Z"}}} +{"type":"relationship","id":"8208","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"605","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3307/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"3307","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3307/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3307/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Rural Broadband Permitting Efficiency Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3307","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-06-01","sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3307/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3307/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2023-05-15","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3307?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 3307.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo streamline the permitting process by delegating select\nauthorities back to the states\n[Page H2348]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:22:08Z"}}} +{"type":"relationship","id":"8209","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3306/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"3306","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3306/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3306/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Federal Broadband Permit Coordination Act of 2023","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3306","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-06-01","summaries.count":1,"sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3306/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3306/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3306/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2023-05-15","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3306?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 3306.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo streamline the federal permitting process\n[Page H2348]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:22:08Z"}}} +{"type":"relationship","id":"8210","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"705","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1671/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T09:05:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Curtis","sponsors.0.isByRequest":"N","request.billNumber":"1671","sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1671/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1671/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Increasing Access to Dental Insurance Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1671","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1671/cosponsors?format=json","sponsors.0.bioguideId":"C001114","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1671/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1671/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1671/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1671/relatedbills?format=json","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","titles.count":3,"introducedDate":"2023-03-21","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1671?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 1671.\nCongress has the power to enact this legislation pursuant\nto the following:\nCommerce clause--Article 1, Section 8, Clause 3 of the U.S.\nConstitution\nThe single subject of this legislation is:\nDental insurance availability by interstate commerce\n[Page H1301]\n","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-06T09:05:37Z"}}} +{"type":"relationship","id":"8211","label":"SPONSORED","start":{"id":"3991","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg","partyName":"Republican","startYear":"2017","name":"Curtis, John R.","attribution":"Image courtesy of the Member","state":"Utah","endYear":"2025","url":"https://api.congress.gov/v3/member/C001114?format=json","bioguideId":"C001114"}},"end":{"id":"8654","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9062/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Curtis","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Financial Services.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9062/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"R","number":"9062","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9062/cosponsors?format=json","sponsors.0.bioguideId":"C001114","bill.subjects.count":4,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9062/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-11-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9062/relatedbills?format=json","bill.policyArea.name":"Housing and Community Development","sponsors.0.fullName":"Rep. Curtis, John R. [R-UT-3]","bill.sponsors.0.bioguideId":"L000583","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":9,"bill.latestAction.text":"Referred to the House Committee on Financial Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Loudermilk, Barry [R-GA-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9062/text?format=json","bill.updateDate":"2025-01-03T08:02:07Z","updateDate":"2024-12-06T16:35:11Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9062/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/C001114?format=json","request.billNumber":"9062","committees.url":"https://api.congress.gov/v3/bill/118/hr/9062/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9062/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:07Z","title":"Operational Flexibility Grazing Management Program Act","bill.title":"Respect State Housing Laws Act","bill.number":"9062","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":9,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9062/committees?format=json","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9062/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9062/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000583?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-07-18","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"Barry","sponsors.0.state":"UT","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9062/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9062/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9062?format=json","bill.introducedDate":"2022-09-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 117 (Thursday, July 18, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CURTIS:\nH.R. 9062.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo provide for the establishment of an Operational\nFlexibility Grazing Management Program on land managed by the\nBureau of Land Management, and for other purposes.\n[Page H4641]\n","sponsors.0.district":3,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":11,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-12-06T16:35:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9062/text?format=json","bill.sponsors.0.lastName":"Loudermilk"}}} +{"type":"relationship","id":"8212","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"363","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7262/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Slotkin","sponsors.0.isByRequest":"N","request.billNumber":"7262","sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/7262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7262/subjects?format=json","policyArea.name":"Immigration","type":"HR","title":"Closing the Workforce Gap Act of 2024","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Education and the Workforce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"7262","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7262/cosponsors?format=json","sponsors.0.bioguideId":"S001208","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/7262/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/7262/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7262/relatedbills?format=json","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","titles.count":3,"introducedDate":"2024-02-06","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/7262?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 21 (Tuesday, February 6, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 7262.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill would strengthen the H-2B guest worker visa\nprogram by updating the H-2B visa cap so that it is tied to\nthe number of labor certifications that the Department of\nLabor approved in the previous fiscal year and exempt\nseasonal and rural locations from the annual H-2B visa cap.\n[Page H503]\n","sponsors.0.district":7,"sponsors.0.firstName":"Elissa","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8213","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"519","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5262/text?format=json","relatedBills.count":2,"updateDate":"2024-06-28T08:05:28Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Slotkin","sponsors.0.isByRequest":"N","request.billNumber":"5262","sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","latestAction_text":"Referred to the House Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5262/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5262/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"DoD PFAS Cleanup Transparency Act of 2023","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"D","number":"5262","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-08-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5262/cosponsors?format=json","sponsors.0.bioguideId":"S001208","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5262/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5262/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5262/relatedbills?format=json","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","titles.count":3,"introducedDate":"2023-08-22","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5262?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 138 (Tuesday, August 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 5262.\nCongress has the power to enact this legislation pursuant\nto the following:\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nThe single subject of this legislation is:\nRequires the Department of Defense to post on a publicly\navailable website timely and regularly updated information on\nthe status of cleanup at sites for which the Secretary has\nobligated funding for environmental restoration activities.\n[Page H4198]\n","sponsors.0.district":7,"sponsors.0.firstName":"Elissa","updateDateIncludingText":"2024-06-28T08:05:28Z"}}} +{"type":"relationship","id":"8214","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8544","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9583/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Veterans' Affairs.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9583","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9583/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9583/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9583/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"G000552","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Intelligence (Permanent Select), for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/9583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gohmert, Louie [R-TX-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9583/text?format=json","bill.updateDate":"2025-01-03T08:06:39Z","updateDate":"2024-11-18T16:24:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"9583","committees.url":"https://api.congress.gov/v3/bill/118/hr/9583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:39Z","title":"VOICE Act of 2024","bill.title":"Matthew Lawrence Perna Act of 2022","bill.number":"9583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9583/committees?format=json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9583/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000552?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Louie","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9583/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9583/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9583?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 9583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill requires the Department of Veterans Affairs to\nestablish a program to promote digital citizenship and media\nliteracy among veterans by awarding grants to eligible\nentities, which include civil society organizations and\ncongressionally chartered veterans service organizations.\n[Page H5231]\n","sponsors.0.district":7,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":1,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-11-18T16:24:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9583/text?format=json","bill.sponsors.0.lastName":"Gohmert"}}} +{"type":"relationship","id":"8215","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8545","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9584/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9584/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Education and the Workforce, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9584","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9584/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9584/actions?format=json","latestAction.actionDate":"2024-09-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9584/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"H001067","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hudson, Richard [R-NC-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9584/text?format=json","bill.updateDate":"2025-01-03T08:06:31Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9584/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"9584","committees.url":"https://api.congress.gov/v3/bill/118/hr/9584/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9584/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:31Z","title":"Digital Citizenship and Media Literacy Act","bill.title":"ACCESS Act of 2022","bill.number":"9584","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9584/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9584/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9584/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":4,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001067?format=json","bill.sponsors.0.party":"R","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Richard","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9584/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9584/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9584?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 9584.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill directs the National Telecommunications and\nInformation Administration to award grants to state and local\neducational agencies, public libraries, and qualified\nnonprofit organizations to develop and promote media literacy\nand digital citizenship education for elementary and\nsecondary school students.\n[Page H5231]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NC","bill.sponsors.0.district":8,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9584/text?format=json","bill.sponsors.0.lastName":"Hudson"}}} +{"type":"relationship","id":"8216","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8830","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6904/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6904/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6904","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. PORTER:\nH.R. 6904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6904/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6904/actions?format=json","latestAction.actionDate":"2023-12-22","textVersions.count":1,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"P000618","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Porter, Katie [D-CA-45]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6904/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6904/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6904","committees.url":"https://api.congress.gov/v3/bill/118/hr/6904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6904/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Support Our Afghan Partners Act of 2023","bill.title":"Patients Before Profits Act of 2022","bill.number":"6904","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6904/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6904/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6904/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000618?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Katie","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6904/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6904/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6904?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6904.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Officer thereof.\nThe single subject of this legislation is:\nThis bill requires the Department of State to increase\nconsular personnel to support the processing of visa\napplications for Afghan nationals.\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":45,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6904/text?format=json","bill.sponsors.0.lastName":"Porter"}}} +{"type":"relationship","id":"8217","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8831","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6901/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6901/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6901","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEGER FERNANDEZ:\nH.R. 6901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6901/cosponsors?format=json","sponsors.0.bioguideId":"S001208","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6901/actions?format=json","latestAction.actionDate":"2023-12-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6901/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"L000273","bill.actions.count":4,"bill.originChamber":"House","titles.count":2,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6901/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Leger Fernandez, Teresa [D-NM-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6901/text?format=json","bill.updateDate":"2025-01-15T18:51:50Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6901/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6901","committees.url":"https://api.congress.gov/v3/bill/118/hr/6901/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6901/subjects?format=json","bill.updateDateIncludingText":"2025-01-15T18:51:50Z","title":"To direct the Secretary of Defense to submit to Congress a report on Department of Defense restrictions on the employment of former Department employees by certain countries.","bill.title":"To prohibit the use of Federal funds for the private interim storage of spent nuclear fuel, and for other purposes.","bill.number":"6901","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6901/committees?format=json","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6901/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6901/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000273?format=json","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Teresa","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6901/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6901/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6901?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6901.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\nThe single subject of this legislation is:\nTo direct the Secretary of Defense to submit to Congress a\nreport on Department of Defense restrictions on the\nemployment of former Department employees by certain\ncountries\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"NM","bill.sponsors.0.district":3,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6901/text?format=json","bill.sponsors.0.lastName":"Leger Fernandez"}}} +{"type":"relationship","id":"8218","label":"SPONSORED","start":{"id":"3935","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001208_200.jpg","startYear":"2019","partyName":"Democratic","name":"Slotkin, Elissa","attribution":"Image courtesy of the Member","state":"Michigan","endYear":"2025","url":"https://api.congress.gov/v3/member/S001208?format=json","bioguideId":"S001208"}},"end":{"id":"8832","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Slotkin","bill.latestAction.actionDate":"2022-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6895/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"6895","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 38 (Wednesday, March 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 6895.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1275]\n","sponsors.0.bioguideId":"S001208","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6895/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6895/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-22","bill.policyArea.name":"Social Welfare","sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-7]","bill.sponsors.0.bioguideId":"B001257","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6895/text?format=json","bill.updateDate":"2025-01-03T07:42:51Z","updateDate":"2024-07-24T15:19:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6895/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","request.billNumber":"6895","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6895/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6895/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:51Z","title":"Defense Production and Active Pharmaceutical Ingredients Act","bill.title":"Commission on Sustaining Medicare and Social Security Act of 2022","bill.number":"6895","bill.sponsors.0.isByRequest":"N","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6895/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6895/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6895/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-12-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Gus","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6895/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6895/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6895?format=json","bill.introducedDate":"2022-03-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 211 (Friday, December 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SLOTKIN:\nH.R. 6895.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: To make all Laws which\nshall be necessary and proper for carrying into Execution the\nforegoing Powers, and all other Powers vested by this\nConstitution in the Government of the United States, or in\nany Department or Office thereof.\nThe single subject of this legislation is:\nTo amend the National Defense Authorization Act for Fiscal\nYear 2023 to extend Federal support for bioindustrial\nmanufacturing processes to include support for the\nmanufacturing of certain pharmaceutical ingredients.\n[Page H7008]\n","sponsors.0.district":7,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Elissa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6895/text?format=json","bill.sponsors.0.lastName":"Bilirakis"}}} +{"type":"relationship","id":"8235","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"378","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6609/text?format=json","updateDate":"2024-12-10T17:47:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Waltz","cboCostEstimates.0.pubDate":"2024-03-29T16:27:00Z","sponsors.0.isByRequest":"N","request.billNumber":"6609","sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6609/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6609/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"TIGER Act","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","sponsors.0.party":"R","number":"6609","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60015","request.format":"json","latestAction_actionDate":"2024-02-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6609/cosponsors?format=json","sponsors.0.bioguideId":"W000823","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6609/titles?format=json","cboCostEstimates.0.title":"H.R. 6609, Foreign Military Sales Technical, Industrial, and Governmental Engagement for Readiness Act","actions.url":"https://api.congress.gov/v3/bill/118/hr/6609/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","titles.count":4,"introducedDate":"2023-12-05","cosponsors.count":2,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6609?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 6609.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, ``The Congress Shall have Power . . . To\nregulate Commerce with foreign Nations, and among the several\nStates, and with the Indian Tribes;''\nThe single subject of this legislation is:\nForeign Military Sales\n[Page H6145]\n","sponsors.0.district":6,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-10T17:47:40Z"}}} +{"type":"relationship","id":"8236","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"637","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3546/text?format=json","updateDate":"2024-07-24T15:21:57Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Waltz","sponsors.0.isByRequest":"N","request.billNumber":"3546","sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3546/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Study To Observe and Prevent (STOP) Human Trafficking Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3546","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3546/cosponsors?format=json","sponsors.0.bioguideId":"W000823","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3546/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3546/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3546?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 3546.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo direct the Attorney General, in coordination with the\nPresident's Interagency Task Force to Monitor and Combat\nTrafficking in Persons, to study the prevalence and instances\nof human trafficking at adult entertainment clubs in the\nUnited States, and for other purposes.\n[Page H2460]\n","sponsors.0.district":6,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:21:57Z"}}} +{"type":"relationship","id":"8237","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"939","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5164/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Waltz","sponsors.0.isByRequest":"N","request.billNumber":"5164","sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5164/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"PAINTER Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"5164","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"W000823","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5164/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5164/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","titles.count":4,"introducedDate":"2023-08-04","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/5164?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 5164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Ethics\n[Page H4166]\n","sponsors.0.district":6,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8238","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"8844","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2022-02-04","cboCostEstimates.0.pubDate":"2024-03-29T16:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6609/summaries?format=json","type":"HR","latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by the Yeas and Nays: 26 - 20.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6609","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 23 (Friday, February 4, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. HUIZENGA:\nH.R. 6609.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\n[Page H976]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6609/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6609/actions?format=json","latestAction.actionDate":"2024-02-06","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"H001058","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Huizenga, Bill [R-MI-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6609/text?format=json","bill.updateDate":"2025-01-03T07:40:24Z","updateDate":"2024-12-10T17:47:40Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6609/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"6609","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6609/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:40:24Z","title":"TIGER Act","bill.title":"FACE Act","bill.number":"6609","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on February 6, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60015","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6609/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6609/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6609/summaries?format=json","cboCostEstimates.0.title":"H.R. 6609, Foreign Military Sales Technical, Industrial, and Governmental Engagement for Readiness Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001058?format=json","introducedDate":"2023-12-05","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Bill","sponsors.0.state":"FL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6609/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6609/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6609?format=json","bill.introducedDate":"2022-02-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 200 (Tuesday, December 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 6609.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8, ``The Congress Shall have Power . . . To\nregulate Commerce with foreign Nations, and among the several\nStates, and with the Indian Tribes;''\nThe single subject of this legislation is:\nForeign Military Sales\n[Page H6145]\n","sponsors.0.district":6,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":2,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-12-10T17:47:40Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6609/text?format=json","bill.sponsors.0.lastName":"Huizenga"}}} +{"type":"relationship","id":"8239","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"8968","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5164/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5164/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"A.","number":"5164","bill.cosponsors.countIncludingWithdrawnCosponsors":10,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GIMENEZ:\nH.R. 5164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8. To make all laws which shall be\nnecessary and proper for carrying into execution the\nforegoing powers, and all other powers vested by this\nConstitution in the government of the United States, or in\nany department or officer thereof.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5164/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5164/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-04","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"G000593","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gimenez, Carlos A. [R-FL-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5164/text?format=json","bill.updateDate":"2025-01-03T07:27:42Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5164/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"5164","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5164/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:42Z","title":"PAINTER Act","bill.title":"Prohibiting Assistance to the Taliban Act","bill.number":"5164","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5164/committees?format=json","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5164/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5164/summaries?format=json","bill.cosponsors.count":10,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000593?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Carlos","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5164/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5164/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5164?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 5164.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nGovernment Ethics\n[Page H4166]\n","sponsors.0.district":6,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":26,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5164/text?format=json","bill.sponsors.0.lastName":"Gimenez"}}} +{"type":"relationship","id":"8240","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"9288","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/583/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"583","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/583/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/583/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/583/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/583/text?format=json","bill.updateDate":"2025-01-03T04:43:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"583","committees.url":"https://api.congress.gov/v3/bill/118/hr/583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:27Z","title":"American Shores Protection Act of 2023","bill.title":"Green Bus Tax Credit Act of 2021","bill.number":"583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/583/committees?format=json","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/583/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/583/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/583/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/583?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nNatural Resources\n[Page H430]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/583/text?format=json","bill.sponsors.0.lastName":"Panetta"}}} +{"type":"relationship","id":"8241","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"9466","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-88.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/583/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"583","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/583/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/583/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/583/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/583/text?format=json","bill.updateDate":"2025-01-03T04:43:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"583","committees.url":"https://api.congress.gov/v3/bill/118/hr/583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:27Z","title":"American Shores Protection Act of 2023","bill.title":"Green Bus Tax Credit Act of 2021","bill.number":"583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/583/committees?format=json","request.format":"json","latestAction_actionDate":"2022-02-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/583/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/583/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/583/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/583?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nNatural Resources\n[Page H430]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/583/text?format=json","bill.sponsors.0.lastName":"Panetta"}}} +{"type":"relationship","id":"8242","label":"SPONSORED","start":{"id":"4027","labels":["Person"],"properties":{"updateDate":"2025-01-27T19:57:28Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/w000823_200.jpg","startYear":"2019","name":"Waltz, Michael","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Florida","endYear":"2025","url":"https://api.congress.gov/v3/member/W000823?format=json","bioguideId":"W000823"}},"end":{"id":"9898","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/583/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Waltz","bill.latestAction.actionDate":"2021-01-28","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Rules.","policyArea.name":"Energy","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/583/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Energy and Mineral Resources.","bill.summaries.count":1,"sponsors.0.party":"R","number":"583","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PANETTA:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 18\n[Page H252]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/583/cosponsors?format=json","sponsors.0.bioguideId":"W000823","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/583/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/583/relatedbills?format=json","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Waltz, Michael [R-FL-6]","bill.sponsors.0.bioguideId":"P000613","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/583/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Panetta, Jimmy [D-CA-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/583/text?format=json","bill.updateDate":"2025-01-03T04:43:27Z","updateDate":"2024-07-24T15:23:58Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/583/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/W000823?format=json","request.billNumber":"583","committees.url":"https://api.congress.gov/v3/bill/118/hr/583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/583/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:27Z","title":"American Shores Protection Act of 2023","bill.title":"Green Bus Tax Credit Act of 2021","bill.number":"583","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/583/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/583/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/583/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000613?format=json","introducedDate":"2023-01-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"FL","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/583/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/583/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/583?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 17 (Thursday, January 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. WALTZ:\nH.R. 583.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nNatural Resources\n[Page H430]\n","sponsors.0.district":6,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:58Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/583/text?format=json","bill.sponsors.0.lastName":"Panetta"}}} +{"type":"relationship","id":"8243","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6996/text?format=json","updateDate":"2024-07-24T15:19:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Golden","sponsors.0.isByRequest":"N","request.billNumber":"6996","sponsors.0.url":"https://api.congress.gov/v3/member/G000592?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6996/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6996/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Block Foreign-Funded Political Ads Act","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"6996","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-01-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6996/cosponsors?format=json","sponsors.0.bioguideId":"G000592","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6996/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6996/actions?format=json","latestAction.actionDate":"2024-01-16","textVersions.count":1,"sponsors.0.fullName":"Rep. Golden, Jared F. [D-ME-2]","titles.count":3,"introducedDate":"2024-01-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6996?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 8 (Tuesday, January 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDEN of Maine:\nH.R. 6996.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 1 of section 4 of article I of the Constitution.\nThe single subject of this legislation is:\nTo amend the Federal Election Campaign Act of 1971 to\nrequire broadcasting stations, providers of cable and\nsatellite television, and online platforms to make reasonable\nefforts to ensure that political advertisements are not\npurchased by a foreign national.\n[Page H148]\n","sponsors.0.district":2,"sponsors.0.firstName":"Jared","updateDateIncludingText":"2024-07-24T15:19:24Z"}}} +{"type":"relationship","id":"8244","label":"SPONSORED","start":{"id":"4139","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/g000592_200.jpg","startYear":"2019","partyName":"Democratic","name":"Golden, Jared F.","attribution":"Image courtesy of the Member","state":"Maine","url":"https://api.congress.gov/v3/member/G000592?format=json","bioguideId":"G000592"}},"end":{"id":"8745","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8000/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Golden","bill.latestAction.actionDate":"2022-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Worker and Family Support.","policyArea.name":"Government Operations and Politics","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8000/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8000","bill.cosponsors.countIncludingWithdrawnCosponsors":39,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 99 (Thursday, June 9, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BRADY:\nH.R. 8000.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnited States Constitution Article 1 Section 8.\n[Page H5447]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8000/cosponsors?format=json","sponsors.0.bioguideId":"G000592","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8000/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8000/relatedbills?format=json","bill.policyArea.name":"Labor and Employment","sponsors.0.fullName":"Rep. Golden, Jared F. [D-ME-2]","bill.sponsors.0.bioguideId":"B000755","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Worker and Family Support.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8000/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Brady, Kevin [R-TX-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8000/text?format=json","bill.updateDate":"2025-01-03T07:52:21Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8000/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000592?format=json","request.billNumber":"8000","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8000/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8000/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:21Z","title":"Timely Mail Delivery and Postal Services Protection Act","bill.title":"Chase COVID Unemployment Fraud Act of 2022","bill.number":"8000","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8000/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8000/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8000/summaries?format=json","bill.cosponsors.count":39,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000755?format=json","introducedDate":"2024-04-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"KEVIN","sponsors.0.state":"ME","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8000/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8000/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8000?format=json","bill.introducedDate":"2022-06-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 64 (Monday, April 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOLDEN of Maine:\nH.R. 8000.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo limit closures and consolidations of United States\nPostal Service mail processing facilities, and for other\npurposes.\n[Page H2398]\n","sponsors.0.district":2,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":8,"sponsors.0.firstName":"Jared","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8000/text?format=json","bill.sponsors.0.lastName":"BRADY"}}} +{"type":"relationship","id":"8245","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"392","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6982/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:45:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Salinas","sponsors.0.isByRequest":"N","request.billNumber":"6982","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6982/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6982/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Gambling Addiction, Recovery, Investment, and Treatment Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6982","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6982/cosponsors?format=json","sponsors.0.bioguideId":"S001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6982/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6982/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6982/relatedbills?format=json","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":3,"introducedDate":"2024-01-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6982?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 6982.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article 1, Section 8, Clause 3\nThe single subject of this legislation is:\nGambling Addiction\n[Page H108]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2024-09-18T16:27:12Z"}}} +{"type":"relationship","id":"8246","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"504","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4804/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Salinas","sponsors.0.isByRequest":"N","request.billNumber":"4804","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","latestAction_text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4804/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4804/committees?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Insuring Fairness for Family Farmers Act of 2023","latestAction.text":"Referred to the Subcommittee on General Farm Commodities, Risk Management, and Credit.","sponsors.0.party":"D","number":"4804","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4804/cosponsors?format=json","sponsors.0.bioguideId":"S001226","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4804/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4804/actions?format=json","latestAction.actionDate":"2023-08-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4804/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4804?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 4804.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article 1, Section 8, clause 3 of the U.S.\nConstitution\nThe single subject of this legislation is:\nFederal Crop Insurance\n[Page H3890]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2024-07-24T15:20:56Z"}}} +{"type":"relationship","id":"8247","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"1434","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1380/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Salinas","sponsors.0.isByRequest":"N","request.billNumber":"1380","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1380/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1380/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Supporting the designation of July 20, 2024 as \"National Moon Day\".","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"1380","request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"sponsors.0.bioguideId":"S001226","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1380/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1380/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1380/actions?format=json","latestAction.actionDate":"2024-07-23","textVersions.count":1,"sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":2,"introducedDate":"2024-07-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1380?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8248","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"1676","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Salinas","cboCostEstimates.0.pubDate":"2023-09-22T19:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Oversight and Government Reform, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Native Americans","type":"HR","latestAction.text":"Became Public Law No: 118-32.","sponsors.0.party":"D","number":"1722","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1722/cosponsors?format=json","sponsors.0.bioguideId":"S001226","laws.0.number":"118-32","actions.url":"https://api.congress.gov/v3/bill/118/hr/1722/actions?format=json","textVersions.count":6,"latestAction.actionDate":"2023-12-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1722/relatedbills?format=json","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","titles.count":8,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-265","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1722/text?format=json","updateDate":"2024-11-09T04:52:00Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":29,"request.billNumber":"1722","sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1722/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1722/committees?format=json","title":"Grand Ronde Reservation Act Amendment of 2023","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on July 26, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59594","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-02-27","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/265?format=json","summaries.count":5,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1722/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1722/summaries?format=json","cboCostEstimates.0.title":"H.R. 1722, Grand Ronde Reservation Act Amendment of 2023","introducedDate":"2023-03-22","subjects.count":6,"sponsors.0.state":"OR","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1722?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 1722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTribal Issues\n[Page H1329]\n","sponsors.0.district":6,"sponsors.0.firstName":"Andrea","updateDateIncludingText":"2024-11-09T04:52:00Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8249","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"9879","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/844/text?format=json","updateDate":"2024-07-24T15:20:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Krishnamoorthi","sponsors.0.isByRequest":"N","request.billNumber":"844","sponsors.0.url":"https://api.congress.gov/v3/member/K000391?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/844/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/844/committees?format=json","policyArea.name":"Arts, Culture, Religion","type":"HRES","title":"Recognizing the religious and historical significance of the festival of Diwali.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"844","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/844/cosponsors?format=json","sponsors.0.bioguideId":"K000391","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/844/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/844/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/844/actions?format=json","latestAction.actionDate":"2023-11-03","textVersions.count":1,"sponsors.0.fullName":"Rep. Krishnamoorthi, Raja [D-IL-8]","titles.count":2,"introducedDate":"2023-11-03","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/844?format=json","sponsors.0.district":8,"sponsors.0.firstName":"Raja","updateDateIncludingText":"2024-07-24T15:20:00Z"}}} +{"type":"relationship","id":"8250","label":"SPONSORED","start":{"id":"4026","labels":["Person"],"properties":{"updateDate":"2025-01-31T15:52:14Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/116_rp_fl_1_gaetz_matt_200.jpg","startYear":"2017","name":"Gaetz, Matt","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Florida","endYear":"2024","url":"https://api.congress.gov/v3/member/G000578?format=json","bioguideId":"G000578"}},"end":{"id":"9880","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/843/text?format=json","updateDate":"2024-11-15T22:24:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"ISSA","sponsors.0.isByRequest":"N","request.billNumber":"843","sponsors.0.url":"https://api.congress.gov/v3/member/I000056?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/843/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/843/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Reaffirming the United States-Philippines alliance and condemning the gray zone campaign of the People's Republic of China in the South China Sea against the Philippines, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"843","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/843/cosponsors?format=json","sponsors.0.bioguideId":"I000056","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/843/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/843/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/843/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-03","sponsors.0.fullName":"Rep. Issa, Darrell E. [R-CA-48]","titles.count":2,"introducedDate":"2023-11-03","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/843?format=json","sponsors.0.district":48,"sponsors.0.firstName":"DARRELL","updateDateIncludingText":"2024-11-15T22:24:46Z"}}} +{"type":"relationship","id":"8251","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"8954","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Salinas","bill.latestAction.actionDate":"2021-09-06","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Public Lands and Natural Resources","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5157/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5157","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRENSHAW:\nH.R. 5157.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, [The Congress shall have Power . . .]\nTo make all Laws which shall be necessary and proper for\ncarrying into Execution the foregoing Powers, and all other\nPowers vested by this Constitution in the Government of the\nUnited States, or in any Department or Officer thereof.\nArtl.S8.C3 To regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes;\nArtI.S8.C3.1.2 Commerce Among the Several States\nArtI.S8.C18 To make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5157/cosponsors?format=json","sponsors.0.bioguideId":"S001226","bill.subjects.count":11,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5157/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5157/relatedbills?format=json","latestAction.actionDate":"2023-09-25","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","bill.sponsors.0.bioguideId":"C001120","bill.actions.count":7,"bill.originChamber":"House","titles.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Health.","cosponsors.count":1,"request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5157/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crenshaw, Dan [R-TX-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5157/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5157/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","request.billNumber":"5157","committees.url":"https://api.congress.gov/v3/bill/118/hr/5157/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5157/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"To amend the Cooperative Forestry Assistance Act of 1978 to reauthorize and expand State-wide assessment and strategies for forest resources.","bill.title":"Direct Primary Care for America Act","bill.number":"5157","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5157/committees?format=json","request.format":"json","latestAction_actionDate":"2021-09-06","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5157/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5157/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001120?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":3,"bill.sponsors.0.firstName":"Dan","sponsors.0.state":"OR","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5157/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5157/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5157?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 5157.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to Article I, Section 8, clause 3\nThe single subject of this legislation is:\nForest Management Resources\n[Page H4166]\n","sponsors.0.district":6,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":2,"sponsors.0.firstName":"Andrea","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5157/text?format=json","bill.sponsors.0.lastName":"Crenshaw"}}} +{"type":"relationship","id":"8252","label":"SPONSORED","start":{"id":"4080","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"6","imageUrl":"https://www.congress.gov/img/member/s001226_200.jpg","startYear":"2023","partyName":"Democratic","name":"Salinas, Andrea","attribution":"Image courtesy of the Member","state":"Oregon","url":"https://api.congress.gov/v3/member/S001226?format=json","bioguideId":"S001226"}},"end":{"id":"9209","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1722/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Salinas","bill.latestAction.actionDate":"2021-03-10","cboCostEstimates.0.pubDate":"2023-09-22T19:34:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Native Americans","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1722/summaries?format=json","type":"HR","latestAction.text":"Became Public Law No: 118-32.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"M.","number":"1722","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 44 (Tuesday, March 9, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. VELAZQUEZ:\nH.R. 1722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1\nThe Congress shall have Power to . . . provide for the . .\n. general Welfare of the United States; . . .\n[Page H1191]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1722/cosponsors?format=json","sponsors.0.bioguideId":"S001226","laws.0.number":"118-32","bill.subjects.count":13,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1722/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1722/relatedbills?format=json","textVersions.count":6,"latestAction.actionDate":"2023-12-26","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Salinas, Andrea [D-OR-6]","bill.sponsors.0.bioguideId":"V000081","bill.originChamber":"House","bill.actions.count":4,"titles.count":8,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-265","bill.sponsors.0.fullName":"Rep. Velazquez, Nydia M. [D-NY-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1722/text?format=json","bill.updateDate":"2025-01-03T04:50:51Z","updateDate":"2024-11-09T04:52:00Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1722/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":29,"sponsors.0.url":"https://api.congress.gov/v3/member/S001226?format=json","request.billNumber":"1722","committees.url":"https://api.congress.gov/v3/bill/118/hr/1722/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1722/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:51Z","title":"Grand Ronde Reservation Act Amendment of 2023","bill.title":"Puerto Rico Health Care Fairness, Accountability, and Beneficiary Access Act of 2021","bill.number":"1722","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Natural Resources on July 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59594","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1722/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-10","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/265?format=json","summaries.count":5,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1722/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1722/summaries?format=json","bill.cosponsors.count":7,"cboCostEstimates.0.title":"H.R. 1722, Grand Ronde Reservation Act Amendment of 2023","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000081?format=json","introducedDate":"2023-03-22","bill.originChamberCode":"H","subjects.count":6,"bill.committees.count":1,"bill.sponsors.0.firstName":"NYDIA","sponsors.0.state":"OR","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1722/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1722/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1722?format=json","bill.introducedDate":"2021-03-09","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 52 (Wednesday, March 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SALINAS:\nH.R. 1722.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTribal Issues\n[Page H1329]\n","sponsors.0.district":6,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":7,"sponsors.0.firstName":"Andrea","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:52:00Z","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1722/text?format=json","bill.sponsors.0.lastName":"VELAZQUEZ"}}} +{"type":"relationship","id":"8253","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"397","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6956/text?format=json","updateDate":"2024-06-11T15:45:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"KAPTUR","sponsors.0.isByRequest":"N","request.billNumber":"6956","sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6956/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6956/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Opioid Settlement Accountability Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"6956","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6956/cosponsors?format=json","sponsors.0.bioguideId":"K000009","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6956/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6956/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6956/actions?format=json","latestAction.actionDate":"2024-01-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","titles.count":3,"introducedDate":"2024-01-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6956?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section VIII, to regulate commerce\nThe single subject of this legislation is:\nCommerce\n[Page H107]\n","sponsors.0.district":9,"sponsors.0.firstName":"MARCY","updateDateIncludingText":"2024-06-11T15:45:07Z"}}} +{"type":"relationship","id":"8254","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"8818","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2022-03-07","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6956/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6956","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 40 (Monday, March 7, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H1330]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6956/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6956/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-12","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"K000394","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6956/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-06-11T15:45:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6956/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"6956","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6956/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6956/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Opioid Settlement Accountability Act","bill.title":"Service Starts At Home Act","bill.number":"6956","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6956/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-07","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6956/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6956/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","introducedDate":"2024-01-11","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6956/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6956/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6956?format=json","bill.introducedDate":"2022-03-07","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 6 (Thursday, January 11, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 6956.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section VIII, to regulate commerce\nThe single subject of this legislation is:\nCommerce\n[Page H107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2024-06-11T15:45:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6956/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"8255","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"9086","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2021-05-25","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Crime and Law Enforcement","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3501/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"3501","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 91 (Tuesday, May 25, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 3501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H2667]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3501/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3501/actions?format=json","latestAction.actionDate":"2023-05-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3501/relatedbills?format=json","bill.policyArea.name":"Foreign Trade and International Finance","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"G000558","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3501/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3501/text?format=json","bill.updateDate":"2025-01-03T05:05:06Z","updateDate":"2024-07-23T08:06:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3501/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"3501","committees.url":"https://api.congress.gov/v3/bill/118/hr/3501/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3501/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:05:06Z","title":"Law Enforcement Training for Mental Health Crisis Response Act of 2023","bill.title":"To amend the Harmonized Tariff Schedule of the United States to provide for permanent duty-free treatment on imports of basketballs.","bill.number":"3501","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3501/committees?format=json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3501/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3501/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-05-18","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Brett","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3501/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3501/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3501?format=json","bill.introducedDate":"2021-05-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 3501.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, to provide for the common defense\nThe single subject of this legislation is:\nDefense\n[Page H2458]\n","sponsors.0.district":9,"bill.sponsors.0.state":"KY","bill.sponsors.0.district":2,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2024-07-23T08:06:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3501/text?format=json","bill.sponsors.0.lastName":"Guthrie"}}} +{"type":"relationship","id":"8256","label":"SPONSORED","start":{"id":"4095","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/k000009_200.jpg","district":"9","startYear":"1983","name":"Kaptur, Marcy","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/K000009?format=json","bioguideId":"K000009"}},"end":{"id":"9154","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2378/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"KAPTUR","bill.latestAction.actionDate":"2021-04-08","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Agriculture and Food","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2378/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"I.","number":"2378","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 61 (Thursday, April 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. BICE of Oklahoma:\nH.R. 2378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clauses 14, 15, and 16 of the U.S.\nConstitution.\n[Page H1720]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2378/cosponsors?format=json","sponsors.0.bioguideId":"K000009","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2378/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2378/relatedbills?format=json","latestAction.actionDate":"2023-04-25","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Kaptur, Marcy [D-OH-9]","bill.sponsors.0.bioguideId":"B000740","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2378/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Bice, Stephanie I. [R-OK-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2378/text?format=json","bill.updateDate":"2025-01-03T04:55:58Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2378/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/K000009?format=json","request.billNumber":"2378","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2378/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2378/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:55:58Z","title":"Farmers’ Market and Food Bank Local Revitalization Act of 2023","bill.title":"Protecting Military Families with Disabilities Act","bill.number":"2378","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2378/committees?format=json","request.format":"json","sponsors.0.middleName":"I.","latestAction_actionDate":"2021-04-08","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2378/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2378/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B000740?format=json","introducedDate":"2023-03-29","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephanie","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2378/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2378/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2378?format=json","bill.introducedDate":"2021-04-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 57 (Wednesday, March 29, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. KAPTUR:\nH.R. 2378.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII, To regulate Commerce\nThe single subject of this legislation is:\nCommerce\n[Page H1659]\n","sponsors.0.district":9,"bill.sponsors.0.state":"OK","bill.sponsors.0.district":5,"sponsors.0.firstName":"MARCY","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2378/text?format=json","bill.sponsors.0.lastName":"Bice"}}} +{"type":"relationship","id":"8275","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"9868","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1030/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T16:04:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Buck","sponsors.0.isByRequest":"N","request.billNumber":"1030","sponsors.0.url":"https://api.congress.gov/v3/member/B001297?format=json","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1030/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1030/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Calling on Vice President Kamala Harris to convene and mobilize the principal officers of the executive departments of the Cabinet to activate section 4 of the 25th Amendment to declare President Joseph R. Biden incapable of executing the duties of his office and to immediately exercise powers as Acting President.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1030","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1030/cosponsors?format=json","sponsors.0.bioguideId":"B001297","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1030/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1030/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1030/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1030/relatedbills?format=json","sponsors.0.fullName":"Rep. Buck, Ken [R-CO-4]","titles.count":2,"introducedDate":"2024-02-26","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1030?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Ken","updateDateIncludingText":"2024-12-06T16:04:21Z"}}} +{"type":"relationship","id":"8276","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"9873","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1094/text?format=json","relatedBills.count":3,"updateDate":"2024-12-16T20:37:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Morelle","sponsors.0.isByRequest":"N","request.billNumber":"1094","sponsors.0.url":"https://api.congress.gov/v3/member/M001206?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1094/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1094/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Recognizing the significance of Sjögren's as a serious and systemic autoimmune disease and designating April as \"Sjögren's Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"1094","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-05-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/1094/cosponsors?format=json","sponsors.0.bioguideId":"M001206","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1094/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1094/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1094/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1094/relatedbills?format=json","latestAction.actionDate":"2024-03-22","sponsors.0.fullName":"Rep. Morelle, Joseph D. [D-NY-25]","titles.count":2,"introducedDate":"2024-03-19","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1094?format=json","sponsors.0.district":25,"sponsors.0.firstName":"Joseph","updateDateIncludingText":"2024-12-16T20:37:40Z"}}} +{"type":"relationship","id":"8277","label":"SPONSORED","start":{"id":"4043","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg","district":"4","startYear":"2015","name":"Newhouse, Dan","partyName":"Republican","attribution":"Congressional Pictorial Directory","state":"Washington","url":"https://api.congress.gov/v3/member/N000189?format=json","bioguideId":"N000189"}},"end":{"id":"9912","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/462/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:05Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bera","sponsors.0.isByRequest":"N","request.billNumber":"462","sponsors.0.url":"https://api.congress.gov/v3/member/B001287?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","committees.url":"https://api.congress.gov/v3/bill/118/hres/462/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/462/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Remembering the victims of the 1989 Tiananmen Square massacre and condemning the continued and intensifying crackdown on human rights and basic freedoms within the People's Republic of China, including the Hong Kong Special Administrative Region, by the Chinese Communist Party, and for other purposes.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"462","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/462/cosponsors?format=json","sponsors.0.bioguideId":"B001287","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/462/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/462/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/462/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/462/relatedbills?format=json","sponsors.0.fullName":"Rep. Bera, Ami [D-CA-6]","titles.count":2,"cosponsors.count":18,"introducedDate":"2023-06-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/462?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Ami","updateDateIncludingText":"2024-07-24T15:22:05Z"}}} +{"type":"relationship","id":"8282","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"411","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6703/text?format=json","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"6703","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6703/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6703/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow a nonrefundable credit for certain organized sport equipment expenses.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6703","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"sponsors.0.bioguideId":"L000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6703/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6703/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6703/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-12-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6703?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6703.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H6815]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:19:34Z"}}} +{"type":"relationship","id":"8283","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"412","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6702/text?format=json","updateDate":"2024-12-04T09:05:25Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"6702","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6702/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6702/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to allow a nonrefundable credit for elementary and secondary school supply expenses.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6702","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6702/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6702/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6702/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6702/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-11","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-12-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6702?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6702.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H6815]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-04T09:05:25Z"}}} +{"type":"relationship","id":"8284","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6701/text?format=json","updateDate":"2024-07-24T15:19:34Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"6701","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/6701/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6701/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"To amend the Internal Revenue Code of 1986 to increase and adjust for inflation the above-the-line deduction for teachers.","latestAction.text":"Referred to the House Committee on Ways and Means.","sponsors.0.party":"R","number":"6701","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"sponsors.0.bioguideId":"L000599","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6701/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6701/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6701/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-12-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6701?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 203 (Monday, December 11, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6701.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nTaxes\n[Page H6815]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:19:34Z"}}} +{"type":"relationship","id":"8285","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"580","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lawler","cboCostEstimates.0.pubDate":"2023-05-24T17:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"International Affairs","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3099","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3099/cosponsors?format=json","sponsors.0.bioguideId":"L000599","actions.url":"https://api.congress.gov/v3/bill/118/hr/3099/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3099/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":5,"cosponsors.count":38,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3099/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":14,"request.billNumber":"3099","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3099/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3099/committees?format=json","title":"Special Envoy for the Abraham Accords Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on May 16, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59192","cosponsors.countIncludingWithdrawnCosponsors":38,"request.format":"json","latestAction_actionDate":"2023-06-14","summaries.count":2,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3099/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3099/summaries?format=json","cboCostEstimates.0.title":"H.R. 3099, Special Envoy for the Abraham Accords Act","introducedDate":"2023-05-05","subjects.count":13,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3099?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 77 (Friday, May 5, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3099.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo establish in the Department of State the position of\nSpecial Envoy for the Abraham Accords, and for other\npurposes.\n[Page H2137]\n","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8286","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"1462","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/888/text?format=json","updateDate":"2024-07-24T15:19:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"888","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/888/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/888/committees?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Reaffirming the State of Israel's right to exist.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"888","cosponsors.countIncludingWithdrawnCosponsors":27,"request.format":"json","latestAction_actionDate":"2023-11-28","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/888/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/888/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/888/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/888/actions?format=json","latestAction.actionDate":"2023-11-28","textVersions.count":2,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","latestAction.actionTime":"19:34:48","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":27,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/888?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:19:47Z","latestAction_actionTime":"19:34:48"}}} +{"type":"relationship","id":"8287","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"1471","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/889/text?format=json","updateDate":"2024-11-20T20:13:55Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"889","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/889/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/889/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Condemning the Hamas-led terrorist attack on the State of Israel on October 7, 2023, and calling for Hamas to immediately and unconditionally surrender, cease its attacks, and safely release all hostages.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"889","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/889/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/889/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/889/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/889/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/889?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-20T20:13:55Z"}}} +{"type":"relationship","id":"8288","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"8561","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-12-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9417/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9417","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9417/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9417/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"P000593","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Perlmutter, Ed [D-CO-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9417/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-12-19T09:07:14Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9417/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"9417","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9417/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9417/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Early Access to Screening Act","bill.title":"To amend the Legislative Reorganization Act of 1946 to tie the salaries of Members of Congress to the salaries of the judiciary.","bill.number":"9417","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9417/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9417/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9417/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000593?format=json","introducedDate":"2024-08-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ed","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9417/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9417/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9417?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 134 (Tuesday, August 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 9417.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend titles XVIII and XIX of the Social Security Act\nand title XXVII of the Public Health Service Act to provide\nno-cost coverage for annual screening mammography beginning\nat 30 years of age.\n[Page H5016]\n","bill.introducedDate":"2022-12-02","sponsors.0.district":17,"bill.sponsors.0.state":"CO","bill.sponsors.0.district":7,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:07:14Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9417/text?format=json","bill.sponsors.0.lastName":"Perlmutter"}}} +{"type":"relationship","id":"8289","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"8625","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6055/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6055/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6055","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 201 (Thursday, November 18, 2021)]\n[House]\n[Pages H6609-H6610]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. WATERS:\nH.R. 6055.\n[[Page H6610]]\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 1 of the U.S. Constitution and\nArticle 1, Section 9, clause 7 of the U.S. Constitution.\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6055/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6055/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6055/relatedbills?format=json","latestAction.actionDate":"2023-10-25","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"W000187","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the Subcommittee on Courts, Intellectual Property, and the Internet.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6055/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Waters, Maxine [D-CA-43]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6055/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:20:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6055/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"6055","committees.url":"https://api.congress.gov/v3/bill/118/hr/6055/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6055/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Schools Want Accountability for Threats Act","bill.title":"Court Legal Access and Student Support Act of 2021","bill.number":"6055","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6055/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6055/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6055/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000187?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"MAXINE","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6055/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6055/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6055?format=json","bill.introducedDate":"2021-11-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 6055.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Section 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to provide penalties\nfor communicating threats that target schools.\n[Page H5107]\n","sponsors.0.district":17,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":43,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6055/text?format=json","bill.sponsors.0.lastName":"WATERS"}}} +{"type":"relationship","id":"8290","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"8770","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7775/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2022-05-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Government Operations and Politics","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7775/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7775","bill.cosponsors.countIncludingWithdrawnCosponsors":64,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 82 (Friday, May 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 7775.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H4971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7775/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7775/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/7775/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"T000469","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Energy and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7775/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7775/text?format=json","bill.updateDate":"2025-01-03T07:50:06Z","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7775/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"7775","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7775/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7775/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:50:06Z","title":"PFAS-Free Procurement Act of 2024","bill.title":"NAPA Reauthorization Act","bill.number":"7775","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7775/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7775/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7775/summaries?format=json","bill.cosponsors.count":64,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","introducedDate":"2024-03-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Paul","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7775/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7775/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7775?format=json","bill.introducedDate":"2022-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 50 (Thursday, March 21, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 7775.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo prohibit the procurement of certain items containing\nperfluorooctane sulfonate (PFOS) or perfluorooctanoic acid\n(PFOA) and prioritize the procurement of products not\ncontaining PFAS.\n[Page H1354]\n","sponsors.0.district":17,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":20,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:54:13Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7775/text?format=json","bill.sponsors.0.lastName":"Tonko"}}} +{"type":"relationship","id":"8291","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"9068","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3774/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 240.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3774","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3774/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":6,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3774/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-11-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3774/relatedbills?format=json","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":8,"cosponsors.count":241,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3774/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:18:20Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3774/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":16,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3774","committees.url":"https://api.congress.gov/v3/bill/118/hr/3774/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3774/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"SHIP Act","bill.title":"Advancing Gig Economy Act","bill.number":"3774","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":241,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3774/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3774/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3774/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":16,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3774/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3774/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3774?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3774.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo impose additional sanctions with respect to the\nimportation or facilitation of the importation of petroleum\nproducts from Iran, and for other purposes.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2024-08-09T16:27:11Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3774/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"8292","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"9069","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3773","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8 Clause 3--Commerce clause\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3773/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3773/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3773/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3773/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Stop Anti-Semitism on College Campuses Act","bill.title":"PACT Act of 2021","bill.number":"3773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3773/committees?format=json","request.format":"json","latestAction_actionDate":"2021-06-09","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3773/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3773?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to prohibit\ninstitutions of higher education that authorize Anti-Semitic\nevents on campus from participating in the student loan and\ngrant programs under title IV of such Act.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3773/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"8293","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"9312","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3773/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Lawler","bill.latestAction.actionDate":"2021-06-09","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-346.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3773/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3773","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 99 (Tuesday, June 8, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle l, Section 8 Clause 3--Commerce clause\n[Page H2702]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3773/cosponsors?format=json","sponsors.0.bioguideId":"L000599","bill.subjects.count":17,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3773/actions?format=json","latestAction.actionDate":"2023-05-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3773/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","bill.sponsors.0.bioguideId":"J000302","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":29,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3773/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3773/text?format=json","bill.updateDate":"2025-01-03T05:06:48Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3773/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","request.billNumber":"3773","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3773/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3773/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:06:48Z","title":"Stop Anti-Semitism on College Campuses Act","bill.title":"PACT Act of 2021","bill.number":"3773","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":29,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3773/committees?format=json","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3773/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3773/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","introducedDate":"2023-05-31","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"John","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3773/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3773/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3773?format=json","bill.introducedDate":"2021-06-08","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 93 (Wednesday, May 31, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LAWLER:\nH.R. 3773.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18 of the U.S. Constitution\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to prohibit\ninstitutions of higher education that authorize Anti-Semitic\nevents on campus from participating in the student loan and\ngrant programs under title IV of such Act.\n[Page H2709]\n","sponsors.0.district":17,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Michael","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3773/text?format=json","bill.sponsors.0.lastName":"Joyce"}}} +{"type":"relationship","id":"8294","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"9825","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1528/text?format=json","updateDate":"2024-12-16T19:19:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"1528","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the Committee on Education and Labor, and in addition to the Committees on Ways and Means, the Judiciary, Financial Services, Energy and Commerce, Agriculture, Oversight and Reform, Armed Services, Veterans' Affairs, Natural Resources, Foreign Affairs, and House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1528/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1528/committees?format=json","policyArea.name":"Agriculture and Food","type":"HRES","title":"Expressing support for the recognition of September 29, 2024, as \"International Day of Awareness of Food Loss and Waste\".","latestAction.text":"Referred to the House Committee on Agriculture.","sponsors.0.party":"R","number":"1528","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1528/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1528/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1528/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1528/actions?format=json","latestAction.actionDate":"2024-10-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2024-10-01","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1528?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-16T19:19:20Z"}}} +{"type":"relationship","id":"8295","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"9839","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1272/text?format=json","relatedBills.count":1,"updateDate":"2024-09-26T08:05:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"1272","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 132.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/hres/1272/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1272/subjects?format=json","type":"HRES","title":"Calling on the Biden Administration to pursue censure of Iran at the International Atomic Energy Agency (IAEA), refer the issue to the United Nations Security Council, and reaffirm that all measures will be taken to prevent the regime in Iran from acquiring nuclear weapons.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1272","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/525?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1272/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1272/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1272/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1272/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1272/relatedbills?format=json","sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2024-06-03","cosponsors.count":32,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1272?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-09-26T08:05:41Z","committeeReports.0.citation":"H. Rept. 117-525"}}} +{"type":"relationship","id":"8296","label":"SPONSORED","start":{"id":"4103","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"17","imageUrl":"https://www.congress.gov/img/member/l000599_200.jpg","startYear":"2023","partyName":"Republican","name":"Lawler, Michael","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/L000599?format=json","bioguideId":"L000599"}},"end":{"id":"9894","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/586/text?format=json","updateDate":"2024-07-24T15:21:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lawler","sponsors.0.isByRequest":"N","request.billNumber":"586","sponsors.0.url":"https://api.congress.gov/v3/member/L000599?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hres/586/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/586/subjects?format=json","policyArea.name":"International Affairs","type":"HRES","title":"Calling for the restoration of power-sharing in Northern Ireland.","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"586","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2021-08-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/586/cosponsors?format=json","sponsors.0.bioguideId":"L000599","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/586/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/586/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/586/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/586/relatedbills?format=json","latestAction.actionDate":"2023-07-13","textVersions.count":1,"sponsors.0.fullName":"Rep. Lawler, Michael [R-NY-17]","titles.count":2,"introducedDate":"2023-07-13","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/586?format=json","sponsors.0.district":17,"sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-07-24T15:21:35Z"}}} +{"type":"relationship","id":"8303","label":"SPONSORED","start":{"id":"4122","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:56Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg","startYear":"2017","partyName":"Democratic","name":"Gottheimer, Josh","attribution":"Congressional Pictorial Directory","state":"New Jersey","url":"https://api.congress.gov/v3/member/G000583?format=json","bioguideId":"G000583"}},"end":{"id":"9830","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1525/text?format=json","updateDate":"2024-12-16T19:19:16Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Casar","sponsors.0.isByRequest":"N","request.billNumber":"1525","sponsors.0.url":"https://api.congress.gov/v3/member/C001131?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Immigration","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1525/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1525/committees?format=json","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1525","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1525/cosponsors?format=json","sponsors.0.bioguideId":"C001131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1525/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1525/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1525/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Rep. Casar, Greg [D-TX-35]","titles.count":2,"introducedDate":"2024-10-01","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1525?format=json","sponsors.0.district":35,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-16T19:19:16Z"}}} +{"type":"relationship","id":"8343","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"452","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6113/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:20:01Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"6113","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6113/committees?format=json","policyArea.name":"Economics and Public Finance","type":"HR","title":"Israel Supplemental Appropriations Act of 2023","latestAction.text":"Referred to the Committee on Appropriations, and in addition to the Committee on the Budget, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6113","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6113/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/6113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6113/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/6113/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6113/relatedbills?format=json","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-10-30","cosponsors.count":2,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/6113?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 178 (Monday, October 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 6113.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nIsrael\n[Page H5181]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:20:01Z"}}} +{"type":"relationship","id":"8344","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"628","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3463/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:22:03Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"3463","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3463/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Protecting Ballot Measures From Foreign Influence Act of 2023","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"3463","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-05-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3463/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3463/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3463/relatedbills?format=json","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3463?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 84 (Thursday, May 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 3463.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, Section 8 of the United\nStates Constitution, especially clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nnational security\n[Page H2457]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:22:03Z"}}} +{"type":"relationship","id":"8345","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"1752","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/757/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"757","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Referred to the House Committee on Oversight and Government Reform.","committees.url":"https://api.congress.gov/v3/bill/118/hr/757/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/757/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Kids from Candy-Flavored Drugs Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"757","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/757/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/757/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/757/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/757/actions?format=json","latestAction.actionDate":"2023-02-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/757/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/757?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 757.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact thIs\nlegislation is provided by Article 1, section 8 of the United\nStatos Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carring out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nTo amend the Controlled Substanes Act to prohibit\nmanufacturing or distributing candy-flavored controlled\nsubstances for mInors, and for other purposes.\n[Page H680]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:23:51Z"}}} +{"type":"relationship","id":"8346","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8573","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9383/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Banks","bill.latestAction.actionDate":"2022-12-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9383/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"Drew","number":"9383","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9383/cosponsors?format=json","sponsors.0.bioguideId":"B001299","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9383/actions?format=json","latestAction.actionDate":"2024-08-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9383/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","bill.sponsors.0.bioguideId":"F000465","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":11,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Ferguson, A. Drew, IV [R-GA-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9383/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9383/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","request.billNumber":"9383","committees.url":"https://api.congress.gov/v3/bill/118/hr/9383/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9383/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"SENIOR Act","bill.title":"To designate the facility of the United States Postal Service located at 151 Highway 74 South in Peachtree City, Georgia, as the \"SFC Shawn McCloskey Post Office\".","bill.number":"9383","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9383/committees?format=json","request.format":"json","sponsors.0.middleName":"Drew","latestAction_actionDate":"2022-12-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9383/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9383/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/F000465?format=json","introducedDate":"2024-08-20","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"A.","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9383/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9383/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9383?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 132 (Tuesday, August 20, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 9383.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nElderly loneliness\n[Page H5001]\n","bill.introducedDate":"2022-12-01","sponsors.0.district":3,"bill.sponsors.0.state":"GA","bill.sponsors.0.district":3,"sponsors.0.firstName":"Jim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9383/text?format=json","bill.sponsors.0.lastName":"Ferguson"}}} +{"type":"relationship","id":"8347","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"8738","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8039/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Banks","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8039/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8039","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLY of Mississippi:\nH.R. 8039.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 12 provides Congress with the\npower to raise and support armies, and provide and maintain a\nnavy.\n[Page H5487]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8039/cosponsors?format=json","sponsors.0.bioguideId":"B001299","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8039/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-17","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","bill.sponsors.0.bioguideId":"K000388","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kelly, Trent [R-MS-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8039/text?format=json","bill.updateDate":"2023-08-09T20:00:23Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8039/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","request.billNumber":"8039","committees.url":"https://api.congress.gov/v3/bill/118/hr/8039/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8039/subjects?format=json","bill.updateDateIncludingText":"2023-08-09T20:00:23Z","title":"American Students First Act","bill.title":"To amend title 10, United States Code, to expand the period during which days of service on active duty or of performance of active service reduce the age of eligibility for members of the Ready Reserve for retired or retainer pay, and for other purposes.","bill.number":"8039","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8039/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8039/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8039/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000388?format=json","introducedDate":"2024-04-17","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Trent","sponsors.0.state":"IN","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8039/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8039/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8039?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 67 (Wednesday, April 17, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 8039.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nFederal college preparation aid\n[Page H2502]\n","sponsors.0.district":3,"bill.sponsors.0.state":"MS","bill.sponsors.0.district":1,"sponsors.0.firstName":"Jim","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8039/text?format=json","bill.sponsors.0.lastName":"Kelly"}}} +{"type":"relationship","id":"8348","label":"SPONSORED","start":{"id":"4014","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg","startYear":"2017","name":"Banks, Jim","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Indiana","endYear":"2025","url":"https://api.congress.gov/v3/member/B001299?format=json","bioguideId":"B001299"}},"end":{"id":"9686","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/757/text?format=json","updateDate":"2024-07-24T15:23:51Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Banks","sponsors.0.isByRequest":"N","request.billNumber":"757","sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/757/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/757/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Protecting Kids from Candy-Flavored Drugs Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"757","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/757/cosponsors?format=json","sponsors.0.bioguideId":"B001299","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/757/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/757/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/757/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/757/relatedbills?format=json","latestAction.actionDate":"2023-02-10","textVersions.count":1,"sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":10,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/757?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 757.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact thIs\nlegislation is provided by Article 1, section 8 of the United\nStatos Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carring out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nTo amend the Controlled Substanes Act to prohibit\nmanufacturing or distributing candy-flavored controlled\nsubstances for mInors, and for other purposes.\n[Page H680]\n","sponsors.0.district":3,"sponsors.0.firstName":"Jim","updateDateIncludingText":"2024-07-24T15:23:51Z"}}} +{"type":"relationship","id":"8401","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"470","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5781/text?format=json","updateDate":"2024-07-24T15:20:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"5781","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5781/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5781/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend title 18, United States Code, to permit payments to be made to the law firms of court-appointed attorneys, and for other purposes.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"5781","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-28","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5781/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5781/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5781/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5781?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 158 (Thursday, September 28, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 5781.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 clause 18 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo amend title 18, United States Code, to permit payments\nto be made to the law firms of court appointed attorneys, and\nfor other purposes abides by the single subject requirement\nin that the provisions are limited to payments made to court\nappointed attorneys and law firms.\n[Page H4855]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2024-07-24T15:20:12Z"}}} +{"type":"relationship","id":"8402","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"502","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4764/text?format=json","updateDate":"2025-01-23T18:51:26Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"4764","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4764/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4764/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Honey Identification Verification and Enforcement Act","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"4764","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4764/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4764/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4764/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4764/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":7,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4764?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 4764.\nCongress has the power to enact this legislation pursuant\nto the following:\nUnder Article I, Section 8, Clause 3: [The Congress shall\nhave Power] To regulate Commerce with foreign Nations, and\namong the several States, and with the Indian Tribes.\nThe single subject of this legislation is:\nDevelops an identity and labeling standard for agriculture\nproduct known as ``honey''.\n[Page H3889]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-23T18:51:26Z"}}} +{"type":"relationship","id":"8403","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3294/text?format=json","updateDate":"2024-07-24T15:22:07Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"3294","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3294/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3294/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"Enhancing Administrative Reviews for Broadband Deployment Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"3294","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3294/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3294/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3294/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3294/actions?format=json","latestAction.actionDate":"2023-06-01","textVersions.count":1,"sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":3,"introducedDate":"2023-05-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3294?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 3294.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 3\nSingle Subject Statement\nThe single subject of this legislation is:\nThe single subject of this legislation is to require a\nstudy of timely reviews and improved processes for\ncommunications use authorizations for communications\nfacilities\n[Page H2348]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2024-07-24T15:22:07Z"}}} +{"type":"relationship","id":"8404","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"755","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1058/text?format=json","relatedBills.count":7,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":18,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","request.billNumber":"1058","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 16.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1058/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1058/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"Promoting Cross-border Energy Infrastructure Act","latestAction.text":"Placed on the Union Calendar, Calendar No. 16.","sponsors.0.party":"R","number":"1058","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2023-03-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/24?format=json","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1058/cosponsors?format=json","sponsors.0.bioguideId":"A000377","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1058/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1058/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1058/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1058/relatedbills?format=json","sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":4,"introducedDate":"2023-02-17","cosponsors.count":17,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1058?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 1058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by streamlining the permitting process of cross-\nborder pipelines and electric transmission lines.\n[Page H854]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-15T18:51:50Z","committeeReports.0.citation":"H. Rept. 118-24"}}} +{"type":"relationship","id":"8405","label":"SPONSORED","start":{"id":"4032","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:30:48Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/a000377_200.jpg","startYear":"2019","partyName":"Republican","name":"Armstrong, Kelly","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2024","url":"https://api.congress.gov/v3/member/A000377?format=json","bioguideId":"A000377"}},"end":{"id":"9664","labels":["Bill"],"properties":{"relatedBills.count":7,"congress":118,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship. (text: CR S1830-1831)","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 16.","sponsors.0.party":"R","number":"1058","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1058/cosponsors?format=json","sponsors.0.bioguideId":"A000377","actions.url":"https://api.congress.gov/v3/bill/118/hr/1058/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1058/relatedbills?format=json","sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":4,"cosponsors.count":17,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-24","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1058/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":18,"request.billNumber":"1058","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1058/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1058/committees?format=json","title":"Promoting Cross-border Energy Infrastructure Act","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-03-25","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/24?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1058/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1058/summaries?format=json","introducedDate":"2023-02-17","subjects.count":13,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1058?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 1058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by streamlining the permitting process of cross-\nborder pipelines and electric transmission lines.\n[Page H854]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"8455","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"482","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5565/text?format=json","updateDate":"2024-11-25T22:31:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzgerald","sponsors.0.isByRequest":"N","request.billNumber":"5565","sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/5565/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5565/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"BRIDGE Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"5565","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5565/cosponsors?format=json","sponsors.0.bioguideId":"F000471","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/5565/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5565/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/5565/actions?format=json","latestAction.actionDate":"2023-09-19","textVersions.count":1,"sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","titles.count":4,"introducedDate":"2023-09-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/5565?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 151 (Tuesday, September 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 5565.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 18 of section 8 of article I of the Constitution.\nThe single subject of this legislation is:\nThis bill requires a report on the Chinese Communist\nParty's use of the Belt and Road Initiative to undermine\nU.S.-led international order.\n[Page H4408]\n","sponsors.0.district":5,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2024-11-25T22:31:40Z"}}} +{"type":"relationship","id":"8456","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"1474","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/884/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fitzgerald","sponsors.0.isByRequest":"N","request.billNumber":"884","sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/884/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/884/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HRES","title":"Honoring the victims of the devastating attack that took place at the Waukesha, Wisconsin, Christmas parade on November 21, 2021.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"884","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/884/cosponsors?format=json","sponsors.0.bioguideId":"F000471","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/884/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/884/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/884/actions?format=json","latestAction.actionDate":"2023-11-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","titles.count":2,"introducedDate":"2023-11-21","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/884?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Scott","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8457","label":"SPONSORED","start":{"id":"4041","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/f000471_200.jpg","startYear":"2021","partyName":"Republican","name":"Fitzgerald, Scott","attribution":"Image courtesy of the Member","state":"Wisconsin","url":"https://api.congress.gov/v3/member/F000471?format=json","bioguideId":"F000471"}},"end":{"id":"9204","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1749/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Fitzgerald","bill.latestAction.actionDate":"2021-03-10","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1749/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Small Business, and Financial Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1749","bill.cosponsors.countIncludingWithdrawnCosponsors":16,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 45 (Wednesday, March 10, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KELLER:\nH.R. 1749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1326]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1749/cosponsors?format=json","sponsors.0.bioguideId":"F000471","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1749/actions?format=json","latestAction.actionDate":"2023-03-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1749/relatedbills?format=json","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Fitzgerald, Scott [R-WI-5]","bill.sponsors.0.bioguideId":"K000395","bill.actions.count":4,"bill.originChamber":"House","titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Keller, Fred [R-PA-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1749/text?format=json","bill.updateDate":"2025-01-03T04:51:24Z","updateDate":"2024-11-09T04:56:59Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1749/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000471?format=json","request.billNumber":"1749","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1749/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1749/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:51:24Z","title":"Making the CFPB Accountable to Small Businesses Act of 2023","bill.title":"RURAL HELP Act of 2021","bill.number":"1749","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1749/committees?format=json","latestAction_actionDate":"2021-03-10","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1749/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1749/summaries?format=json","bill.cosponsors.count":16,"bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000395?format=json","introducedDate":"2023-03-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Fred","sponsors.0.state":"WI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1749/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1749/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1749?format=json","bill.introducedDate":"2021-03-10","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 53 (Thursday, March 23, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FITZGERALD:\nH.R. 1749.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nThis bill would require the CFPB to presume that size and\nsophistication-based tailoring of regulations are needed in\nSBREFA panel revIews. If tailoring is not undertaken by the\npanel, they must issue a justification.\n[Page H1410]\n","sponsors.0.district":5,"bill.sponsors.0.state":"PA","bill.sponsors.0.district":12,"sponsors.0.firstName":"Scott","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:56:59Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1749/text?format=json","bill.sponsors.0.lastName":"Keller"}}} +{"type":"relationship","id":"8473","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"499","labels":["Bill"],"properties":{"relatedBills.count":4,"congress":118,"sponsors.0.lastName":"Joyce","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Environmental Protection","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"1435","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1435/cosponsors?format=json","sponsors.0.bioguideId":"J000302","actions.url":"https://api.congress.gov/v3/bill/118/hr/1435/actions?format=json","latestAction.actionDate":"2023-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1435/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","titles.count":6,"cosponsors.count":83,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-169","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1435/text?format=json","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":25,"request.billNumber":"1435","sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1435/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1435/subjects?format=json","title":"Preserving Choice in Vehicle Purchases Act","cosponsors.countIncludingWithdrawnCosponsors":83,"request.format":"json","latestAction_actionDate":"2023-09-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/169?format=json","summaries.count":3,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1435/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1435/summaries?format=json","introducedDate":"2023-03-08","subjects.count":7,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1435?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1435.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 provides Congress with the\npower to ``regulate commerce with foreign nations, and among\nthe several states, and with the Indian tribes.''\nThe single subject of this legislation is:\nTo amend the Clean Air Act to prevent the elimination of\nthe sale or use of internal combustion engines.\n[Page H1207]\n","sponsors.0.district":13,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-16T11:56:46Z"}}} +{"type":"relationship","id":"8474","label":"SPONSORED","start":{"id":"4090","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000302_200.jpg","district":"13","startYear":"2019","name":"Joyce, John","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/J000302?format=json","bioguideId":"J000302"}},"end":{"id":"9225","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Joyce","bill.latestAction.actionDate":"2021-03-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1462/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"F.","number":"1462","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 38 (Monday, March 1, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. LYNCH:\nH.R. 1462.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18.\n[Page H883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1462/cosponsors?format=json","sponsors.0.bioguideId":"J000302","bill.subjects.count":16,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1462/actions?format=json","latestAction.actionDate":"2023-03-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1462/relatedbills?format=json","bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. Joyce, John [R-PA-13]","bill.sponsors.0.bioguideId":"L000562","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":48,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lynch, Stephen F. [D-MA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1462/text?format=json","bill.updateDate":"2025-01-03T04:49:20Z","updateDate":"2024-10-05T08:05:50Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1462/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/J000302?format=json","request.billNumber":"1462","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1462/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:49:20Z","title":"DAIRY PRIDE Act","bill.title":"Civil Aviation Security and Safety Act of 2021","bill.number":"1462","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":48,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1462/committees?format=json","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1462/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1462/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000562?format=json","introducedDate":"2023-03-08","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Stephen","sponsors.0.state":"PA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1462/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1462/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1462?format=json","bill.introducedDate":"2021-03-01","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 44 (Wednesday, March 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JOYCE of Pennsylvania:\nH.R. 1462.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 18: The Congress shall have\nPower To . . . make all Laws which shall be necessary and\nproper for carrying into Execution the foregoing Powers, and\nall other Powers vested by this Constitution in the\nGovernment of the United States, or in any Department or\nOfficer thereof.\nThe single subject of this legislation is:\nTo require enforcement against misbranded milk\nalternatives.\n[Page H1208]\n","sponsors.0.district":13,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":8,"sponsors.0.firstName":"John","bill.type":"HR","updateDateIncludingText":"2024-10-05T08:05:50Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1462/text?format=json","bill.sponsors.0.lastName":"Lynch"}}} +{"type":"relationship","id":"8486","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"506","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4789/text?format=json","relatedBills.count":12,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":5,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Hinson","sponsors.0.isByRequest":"N","request.billNumber":"4789","sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","latestAction_text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4789/subjects?format=json","policyArea.name":"Families","type":"HR","title":"Providing for Life Act of 2023","latestAction.text":"Referred to the Subcommittee on Nutrition, Foreign Agriculture, and Horticulture.","sponsors.0.party":"R","number":"4789","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-08-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4789/cosponsors?format=json","sponsors.0.bioguideId":"H001091","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4789/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4789/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4789/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-08-24","sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-2]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":38,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4789?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 125 (Thursday, July 20, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 4789.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nThis bill provides support and assistance to unborn\nchildren, pregnant women, parents, and families.\n[Page H3890]\n","sponsors.0.district":2,"sponsors.0.firstName":"Ashley","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8488","label":"SPONSORED","start":{"id":"4155","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"2","imageUrl":"https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg","startYear":"2021","name":"Hinson, Ashley","partyName":"Republican","attribution":"Image Courtesy of Member","state":"Iowa","url":"https://api.congress.gov/v3/member/H001091?format=json","bioguideId":"H001091"}},"end":{"id":"8827","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6914/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Hinson","bill.latestAction.actionDate":"2022-03-04","cboCostEstimates.0.pubDate":"2024-01-11T22:45:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Education","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6914/summaries?format=json","type":"HR","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 310.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"6914","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BILIRAKIS:\nH.R. 6914.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to Article 1, Section 8,\nClause 18 of the Constitution of the United States.\n[[Page H1303]]\n[Page H1302]\n","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6914/cosponsors?format=json","sponsors.0.bioguideId":"H001091","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6914/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/6914/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-23","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Hinson, Ashley [R-IA-2]","bill.sponsors.0.bioguideId":"B001257","amendments.url":"https://api.congress.gov/v3/bill/118/hr/6914/amendments?format=json","bill.originChamber":"House","bill.actions.count":5,"titles.count":6,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-344","bill.sponsors.0.fullName":"Rep. Bilirakis, Gus M. [R-FL-12]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6914/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6914/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":23,"sponsors.0.url":"https://api.congress.gov/v3/member/H001091?format=json","request.billNumber":"6914","committees.url":"https://api.congress.gov/v3/bill/118/hr/6914/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6914/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Pregnant Students’ Rights Act","bill.title":"SMALL GOVT Act of 2022","bill.number":"6914","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Education and the Workforce on January 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59873","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6914/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-04","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/344?format=json","summaries.count":3,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6914/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/6914/summaries?format=json","bill.cosponsors.count":2,"cboCostEstimates.0.title":"H.R. 6914, Pregnant Students’ Rights Act","bill.titles.count":4,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001257?format=json","introducedDate":"2024-01-05","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"Gus","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6914/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6914/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6914?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HINSON:\nH.R. 6914.\nCongress has the power to enact this legislation pursuant\nto the following:\nAricle 1, Section 8 of the Constitution of the United\nStates\nThe single subject of this legislation is:\nRequires a public institution of higher education (IHE)\nthat participates in federal student-aid programs to provide\ninformation to admitted and enrolled students on the rights\nand resources for students who are pregnant or may become\npregnant, excluding abortion services.\n[Page H13]\n","sponsors.0.district":2,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":12,"sponsors.0.firstName":"Ashley","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6914/text?format=json","bill.sponsors.0.lastName":"Bilirakis"}}} +{"type":"relationship","id":"8494","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4713/text?format=json","updateDate":"2024-10-23T08:05:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"4713","sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","latestAction_text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4713/subjects?format=json","policyArea.name":"Agriculture and Food","type":"HR","title":"Rural Hospital Technical Assistance Program Act","latestAction.text":"Referred to the Subcommittee on Commodity Markets, Digital Assets, and Rural Development.","sponsors.0.party":"R","number":"4713","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-08-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4713/cosponsors?format=json","sponsors.0.bioguideId":"J000304","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4713/actions?format=json","latestAction.actionDate":"2023-08-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","titles.count":3,"introducedDate":"2023-07-18","cosponsors.count":49,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4713?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 123 (Tuesday, July 18, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 4713.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nRural Health Care\n[Page H3701]\n","sponsors.0.district":13,"sponsors.0.firstName":"Ronny","updateDateIncludingText":"2024-10-23T08:05:24Z"}}} +{"type":"relationship","id":"8495","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"1690","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1546/text?format=json","updateDate":"2024-07-24T15:23:24Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Jackson","sponsors.0.isByRequest":"N","request.billNumber":"1546","sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1546/subjects?format=json","policyArea.name":"International Affairs","title":"Protecting American Sovereignty Act","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1546","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1546/cosponsors?format=json","sponsors.0.bioguideId":"J000304","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1546/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1546/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-10","sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","titles.count":3,"introducedDate":"2023-03-10","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1546?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 1546.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the United States Constitution\nThe single subject of this legislation is:\nProhibit federal funds from being used to implement any\nobligations of the United States under the World Health\nOrganization (WHO)'s Global Pandemic Treaty.\n[Page H1280]\n","sponsors.0.district":13,"sponsors.0.firstName":"Ronny","updateDateIncludingText":"2024-07-24T15:23:24Z"}}} +{"type":"relationship","id":"8496","label":"SPONSORED","start":{"id":"4059","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/j000304_200.jpg","district":"13","startYear":"2021","name":"Jackson, Ronny","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/J000304?format=json","bioguideId":"J000304"}},"end":{"id":"9090","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1297/cosponsors?format=json","congress":118,"bill.cboCostEstimates.0.title":"H.R. 1297, Air America Act of 2021","bill.textVersions.count":1,"sponsors.0.lastName":"Jackson","bill.latestAction.actionDate":"2021-05-25","cboCostEstimates.0.pubDate":"2021-09-24T20:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Armed Forces and National Security","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1297/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1297","bill.cosponsors.countIncludingWithdrawnCosponsors":235,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GROTHMAN:\nH.R. 1297.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H617]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1297/cosponsors?format=json","sponsors.0.bioguideId":"J000304","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1297/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1297/relatedbills?format=json","latestAction.actionDate":"2023-03-01","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Jackson, Ronny [R-TX-13]","bill.sponsors.0.bioguideId":"G000576","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":80,"bill.latestAction.text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2021-09-24T20:18:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1297/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Grothman, Glenn [R-WI-6]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1297/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-11-09T04:42:21Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1297/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/J000304?format=json","request.billNumber":"1297","committees.url":"https://api.congress.gov/v3/bill/118/hr/1297/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1297/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T17:03:14Z","title":"To amend title 10, United States Code, to prohibit the Secretary of Defense from paying or reimbursing expenses relating to abortion services, and for other purposes.","bill.title":"Air America Act of 2021","bill.number":"1297","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Reform on May 25, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":80,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57501","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1297/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-25","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1297/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1297/summaries?format=json","bill.cosponsors.count":230,"cboCostEstimates.0.title":"H.R. 1297, Air America Act of 2021","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000576?format=json","introducedDate":"2023-03-01","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Glenn","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1297/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1297/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1297?format=json","bill.introducedDate":"2021-02-24","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACKSON of Texas:\nH.R. 1297.\n=========================== NOTE ===========================\nOn page H1051, March 1, 2023, the following appeared: By Mr.\nJACKSON: H.R. 1297.\nThe online version has been corrected to read: By Mr. JACKSON of\nTexas: H.R. 1297.\n========================= END NOTE =========================\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the United States Constitution\nThe single subject of this legislation is:\nProhibiting the Department of Defense from paying for\nexpenses relating to abortion services.\n[Page H1051]\n","sponsors.0.district":13,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":6,"sponsors.0.firstName":"Ronny","bill.type":"HR","updateDateIncludingText":"2024-11-09T04:42:21Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1297/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57501","bill.sponsors.0.lastName":"Grothman"}}} +{"type":"relationship","id":"8514","label":"SPONSORED","start":{"id":"4094","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000566_200.jpg","district":"5","partyName":"Republican","startYear":"2007","name":"Latta, Robert E.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/L000566?format=json","bioguideId":"L000566"}},"end":{"id":"9836","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Schiff","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 133.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1274","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1274/cosponsors?format=json","sponsors.0.bioguideId":"S001150","actions.url":"https://api.congress.gov/v3/bill/118/hres/1274/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1274/relatedbills?format=json","sponsors.0.fullName":"Rep. Schiff, Adam B. [D-CA-30]","titles.count":2,"cosponsors.count":5,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 117-527","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1274/text?format=json","updateDate":"2024-08-19T13:16:49Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"1274","sponsors.0.url":"https://api.congress.gov/v3/member/S001150?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1274/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1274/committees?format=json","title":"Responding to the promulgation of the Safeguarding National Security Ordinance, under Article 23 of the Basic Law, by the Hong Kong Special Administrative Region Government on March 19, 2024.","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"B.","latestAction_actionDate":"2022-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/527?format=json","summaries.count":2,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1274/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1274/summaries?format=json","introducedDate":"2024-06-03","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1274?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Adam","updateDateIncludingText":"2024-08-19T13:16:49Z"}}} +{"type":"relationship","id":"8529","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"546","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4047/text?format=json","relatedBills.count":1,"updateDate":"2024-06-29T08:05:40Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sorensen","sponsors.0.isByRequest":"N","request.billNumber":"4047","sponsors.0.url":"https://api.congress.gov/v3/member/S001225?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4047/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4047/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"HR","title":"Autonomy for All Disabled Veterans Act","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"4047","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4047/cosponsors?format=json","sponsors.0.bioguideId":"S001225","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4047/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4047/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/4047/relatedbills?format=json","sponsors.0.fullName":"Rep. Sorensen, Eric [D-IL-17]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":5,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4047?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 102 (Monday, June 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SORENSEN:\nH.R. 4047.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Commerce Clause\nThe single subject of this legislation is:\nDisabled veterans benefits\n[Page H2811]\n","sponsors.0.district":17,"sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-06-29T08:05:40Z"}}} +{"type":"relationship","id":"8530","label":"SPONSORED","start":{"id":"4148","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001225_200.jpg","district":"17","startYear":"2023","name":"Sorensen, Eric","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/S001225?format=json","bioguideId":"S001225"}},"end":{"id":"8962","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5160/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Sorensen","bill.latestAction.actionDate":"2021-09-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Small Business.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5160/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Conservation, Research, and Biotechnology.","bill.summaries.count":1,"sponsors.0.party":"D","number":"5160","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 153 (Friday, September 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DAVIDS of Kansas:\nH.R. 5160.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto the following: Article I, Section 8, Clause 1: ``The\nCongress shall have Power to . . . provide for the . . .\ngeneral welfare of the United States; . . .''\n[Page H4506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5160/cosponsors?format=json","sponsors.0.bioguideId":"S001225","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5160/actions?format=json","latestAction.actionDate":"2023-09-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/5160/relatedbills?format=json","bill.policyArea.name":"Native Americans","sponsors.0.fullName":"Rep. Sorensen, Eric [D-IL-17]","bill.sponsors.0.bioguideId":"D000629","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Small Business.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/5160/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Davids, Sharice [D-KS-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5160/text?format=json","bill.updateDate":"2025-01-03T07:27:43Z","updateDate":"2024-08-05T18:08:32Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5160/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001225?format=json","request.billNumber":"5160","committees.url":"https://api.congress.gov/v3/bill/118/hr/5160/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5160/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:27:43Z","title":"Advancing Research on Agricultural Climate Impacts Act of 2023","bill.title":"Native American Entrepreneurial Opportunity Act","bill.number":"5160","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5160/committees?format=json","latestAction_actionDate":"2021-09-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5160/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5160/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000629?format=json","introducedDate":"2023-08-04","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Sharice","sponsors.0.state":"IL","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5160/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5160/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5160?format=json","bill.introducedDate":"2021-09-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 133 (Friday, August 4, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SORENSEN:\nH.R. 5160.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nArticle 1, Section 8, Clause 18\nThe single subject of this legislation is:\nAgriculture\n[Page H4166]\n","sponsors.0.district":17,"bill.sponsors.0.state":"KS","bill.sponsors.0.district":3,"sponsors.0.firstName":"Eric","bill.type":"HR","updateDateIncludingText":"2024-08-05T18:08:32Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5160/text?format=json","bill.sponsors.0.lastName":"Davids"}}} +{"type":"relationship","id":"8547","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4626/text?format=json","updateDate":"2024-08-20T20:14:32Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"4626","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4626/subjects?format=json","policyArea.name":"Health","type":"HR","title":"OTC Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"4626","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-07-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4626/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4626/actions?format=json","latestAction.actionDate":"2023-07-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":4,"introducedDate":"2023-07-13","cosponsors.count":10,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4626?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 120 (Thursday, July 13, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 4626.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nLegislation that requires FDA to issue guidance on over-\nthe-counter oral contraceptives.\n[Page H3576]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-08-20T20:14:32Z"}}} +{"type":"relationship","id":"8548","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"598","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4124/text?format=json","updateDate":"2024-07-24T15:21:31Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"4124","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/4124/committees?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Flag Standardization Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"4124","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4124/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4124/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4124/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4124?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 104 (Wednesday, June 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 4124.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8.\nThe single subject of this legislation is:\nSpecifying which flags may be displayed at federal\nbuildings.\n[Page H2934]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-07-24T15:21:31Z"}}} +{"type":"relationship","id":"8549","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"706","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1790/text?format=json","updateDate":"2024-07-24T15:23:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"1790","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1790/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1790/committees?format=json","policyArea.name":"Health","type":"HR","title":"Biologics Competition Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1790","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1790/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1790/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1790/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1790/actions?format=json","latestAction.actionDate":"2023-03-31","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1790?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 1790.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nStudy to determine whether there are impediments to the\napproval process for interchangeable biologics.\n[Page H1438]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-07-24T15:23:12Z"}}} +{"type":"relationship","id":"8550","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"8736","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2022-06-13","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Armed Forces and National Security","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8029/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8029","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 100 (Monday, June 13, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 8029.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H5486]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8029/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8029/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8029/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Foreign Affairs.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8029/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8029/text?format=json","bill.updateDate":"2025-01-03T07:52:35Z","updateDate":"2024-12-16T20:39:28Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8029/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"8029","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8029/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:52:35Z","title":"VA Abortion Transparency Act of 2024","bill.title":"Taiwan Weapons Exports Act of 2022","bill.number":"8029","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8029/committees?format=json","request.format":"json","latestAction_actionDate":"2022-06-13","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8029/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8029/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2024-04-16","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"IA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8029/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8029/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8029?format=json","bill.introducedDate":"2022-06-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 66 (Tuesday, April 16, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 8029.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation requires the Department of Veterans\nAffairs to report abortion data to Congress on a quarterly\nbasis.\n[Page H2444]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-12-16T20:39:28Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8029/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"8551","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"8951","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/5390/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-09-29","cboCostEstimates.0.pubDate":"2024-03-01T18:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Commerce","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5390/summaries?format=json","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Commerce, Science, and Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"J.","number":"5390","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MRVAN:\nH.R. 5390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 1 provides Congress with the\npower to ``lay and collect Taxes, Duties, Imposts and\nExcises'' in order to ``provide for the . . . general Welfare\nof the United States.''\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5390/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5390/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":4,"bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"M001214","bill.originChamber":"House","bill.actions.count":7,"titles.count":6,"cosponsors.count":7,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-499","bill.sponsors.0.fullName":"Rep. Mrvan, Frank J. [D-IN-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5390/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5390/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":19,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"5390","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5390/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5390/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Critical Infrastructure Manufacturing Feasibility Act","bill.title":"COBRA Subsidy Extension for Workers and Families Act","bill.number":"5390","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on December 6, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60048","cosponsors.countIncludingWithdrawnCosponsors":7,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5390/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-29","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/499?format=json","summaries.count":2,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5390/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/5390/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 5390, Critical Infrastructure Manufacturing Feasibility Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001214?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Frank","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5390/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5390/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5390?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 5390.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nDirects the Secretary of Commerce to conduct a study on the\nfeasibility of manufacturing more goods in the United States\nthat are key to our critical infrastructure sector.\n[Page H4264]\n","sponsors.0.district":1,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5390/text?format=json","bill.sponsors.0.lastName":"Mrvan"}}} +{"type":"relationship","id":"8552","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"9059","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3837/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-06-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Health","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3837/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"3837","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 102 (Friday, June 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 3837.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1 and Clause 18\n[Page H2710]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3837/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":15,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3837/actions?format=json","latestAction.actionDate":"2023-06-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3837/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the Committee on Armed Services, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3837/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3837/text?format=json","bill.updateDate":"2025-01-03T05:07:20Z","updateDate":"2024-08-26T20:29:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3837/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"3837","committees.url":"https://api.congress.gov/v3/bill/118/hr/3837/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3837/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T05:07:20Z","title":"Improving Public Health Preparedness Act","bill.title":"HALT Act of 2021","bill.number":"3837","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3837/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-06-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3837/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3837/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","introducedDate":"2023-06-06","bill.originChamberCode":"H","subjects.count":7,"bill.committees.count":2,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3837/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3837/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3837?format=json","bill.introducedDate":"2021-06-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 98 (Tuesday, June 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 3837.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nThis legislation codifies the Strategic National Stockpile\nunder the Assistant Secretary for Preparedness and Response.\n[Page H2763]\n","sponsors.0.district":1,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-08-26T20:29:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3837/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}}} +{"type":"relationship","id":"8553","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"9216","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Miller-Meeks","bill.latestAction.actionDate":"2021-03-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Environmental Protection","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1557/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","number":"1557","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 40 (Wednesday, March 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CRIST:\nH.R. 1557.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H1080]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1557/cosponsors?format=json","sponsors.0.bioguideId":"M001215","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1557/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1557/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-17","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","bill.sponsors.0.bioguideId":"C001111","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":5,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Crist, Charlie [D-FL-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1557/text?format=json","bill.updateDate":"2025-01-03T04:50:09Z","updateDate":"2024-07-24T15:23:22Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1557/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","request.billNumber":"1557","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1557/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1557/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:50:09Z","title":"BID Act of 2023","bill.title":"Sunshine Forever Act","bill.number":"1557","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1557/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1557/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1557/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001111?format=json","introducedDate":"2023-03-10","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Charlie","sponsors.0.state":"IA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1557/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1557/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1557?format=json","bill.introducedDate":"2021-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 1557.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nReviewing medical device interoperability standards.\n[Page H1281]\n","sponsors.0.district":1,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":13,"sponsors.0.firstName":"Mariannette","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:22Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1557/text?format=json","bill.sponsors.0.lastName":"Crist"}}} +{"type":"relationship","id":"8554","label":"SPONSORED","start":{"id":"4153","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001215_200.jpg","district":"1","partyName":"Republican","startYear":"2021","name":"Miller-Meeks, Mariannette","attribution":"Image courtesy of the Member","state":"Iowa","url":"https://api.congress.gov/v3/member/M001215?format=json","bioguideId":"M001215"}},"end":{"id":"9492","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1790/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Miller-Meeks","sponsors.0.isByRequest":"N","request.billNumber":"1790","sponsors.0.url":"https://api.congress.gov/v3/member/M001215?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 214.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1790/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1790/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Biologics Competition Act of 2023","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"1790","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1790/cosponsors?format=json","sponsors.0.bioguideId":"M001215","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1790/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1790/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1790/actions?format=json","latestAction.actionDate":"2023-03-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1790/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Miller-Meeks, Mariannette [R-IA-1]","titles.count":3,"introducedDate":"2023-03-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1790?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. MILLER-MEEKS:\nH.R. 1790.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\nThe single subject of this legislation is:\nStudy to determine whether there are impediments to the\napproval process for interchangeable biologics.\n[Page H1438]\n","sponsors.0.district":1,"sponsors.0.firstName":"Mariannette","updateDateIncludingText":"2024-07-24T15:23:12Z"}}} +{"type":"relationship","id":"8555","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"563","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4388/text?format=json","updateDate":"2024-09-28T08:05:22Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Reschenthaler","sponsors.0.isByRequest":"N","request.billNumber":"4388","sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4388/subjects?format=json","policyArea.name":"International Affairs","type":"HR","title":"Marc Fogel Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"4388","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4388/cosponsors?format=json","sponsors.0.bioguideId":"R000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4388/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":1,"sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","titles.count":3,"introducedDate":"2023-06-27","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4388?format=json","sponsors.0.district":14,"sponsors.0.firstName":"Guy","updateDateIncludingText":"2024-09-28T08:05:22Z"}}} +{"type":"relationship","id":"8556","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"822","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/494/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Reschenthaler","sponsors.0.isByRequest":"N","request.billNumber":"494","sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hr/494/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/494/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund EcoHealth Alliance Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"494","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","latestAction_actionDate":"2023-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/494/cosponsors?format=json","sponsors.0.bioguideId":"R000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/494/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/494/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/494/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/494/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":34,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/494?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution\nThe single subject of this legislation is:\nProviding oversight of federal funding for the EcoHealth\nAlliance.\n[Page H324]\n","sponsors.0.district":14,"sponsors.0.firstName":"Guy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8557","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"1285","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/494/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Reschenthaler","sponsors.0.isByRequest":"N","request.billNumber":"494","sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/494/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/494/subjects?format=json","policyArea.name":"Health","type":"HR","title":"Defund EcoHealth Alliance Act","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"494","cosponsors.countIncludingWithdrawnCosponsors":34,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/494/cosponsors?format=json","sponsors.0.bioguideId":"R000610","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/494/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/494/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/494/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/494/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":34,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"PA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/494?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 16 (Wednesday, January 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 494.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, of the United States Constitution\nThe single subject of this legislation is:\nProviding oversight of federal funding for the EcoHealth\nAlliance.\n[Page H324]\n","sponsors.0.district":14,"sponsors.0.firstName":"Guy","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8558","label":"SPONSORED","start":{"id":"4089","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"14","imageUrl":"https://www.congress.gov/img/member/r000610_200.jpg","startYear":"2019","partyName":"Republican","name":"Reschenthaler, Guy","attribution":"Image courtesy of the Member","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/R000610?format=json","bioguideId":"R000610"}},"end":{"id":"9145","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2808/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Reschenthaler","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Finance and Financial Sector","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2808/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Financial Services.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"2808","bill.cosponsors.countIncludingWithdrawnCosponsors":7,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 70 (Thursday, April 22, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ROSENDALE:\nH.R. 2808.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\n[Page H2109]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2808/cosponsors?format=json","sponsors.0.bioguideId":"R000610","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2808/actions?format=json","latestAction.actionDate":"2023-04-24","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Reschenthaler, Guy [R-PA-14]","bill.sponsors.0.bioguideId":"R000103","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":46,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Rosendale Sr., Matthew M. [R-MT-At Large]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2808/text?format=json","bill.updateDate":"2025-01-03T04:59:13Z","updateDate":"2024-11-13T09:05:39Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2808/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/R000610?format=json","request.billNumber":"2808","committees.url":"https://api.congress.gov/v3/bill/118/hr/2808/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2808/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T04:59:13Z","title":"Arnold Daniel Palmer Commemorative Coin Act","bill.title":"Health Freedom and Flexibility Act","bill.number":"2808","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2808/committees?format=json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2808/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2808/summaries?format=json","bill.cosponsors.count":7,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/R000103?format=json","introducedDate":"2023-04-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Matthew","sponsors.0.state":"PA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2808/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2808/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2808?format=json","bill.introducedDate":"2021-04-22","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 68 (Monday, April 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. RESCHENTHALER:\nH.R. 2808.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle One Section Eight\nThe single subject of this legislation is:\nRequiring the Secretary of the Treasury to min\ncommemorative coins in recognition of Arnold Daniel Palmer.\n[Page H1915]\n","bill.sponsors.0.state":"MT","sponsors.0.district":14,"sponsors.0.firstName":"Guy","bill.type":"HR","updateDateIncludingText":"2024-11-13T09:05:39Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2808/text?format=json","bill.sponsors.0.lastName":"Rosendale"}}} +{"type":"relationship","id":"8577","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9294","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"Hoeven","cboCostEstimates.0.pubDate":"2021-11-05T15:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-335.","policyArea.name":"Energy","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"989","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/989/cosponsors?format=json","sponsors.0.bioguideId":"H001061","laws.0.number":"117-335","actions.url":"https://api.congress.gov/v3/bill/118/s/989/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/989/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-27","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","amendments.url":"https://api.congress.gov/v3/bill/117/s/989/amendments?format=json","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-46","textVersions.url":"https://api.congress.gov/v3/bill/118/s/989/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"989","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/989/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/989/committees?format=json","title":"North American Energy Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nAugust 4, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57568","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-01-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/46?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/989/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/989/summaries?format=json","cboCostEstimates.0.title":"S. 989, Native American Language Resource Center Act of 2021","introducedDate":"2023-03-27","subjects.count":1,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/989?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8578","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9808","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/39/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"39","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S2496)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/39/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/39/subjects?format=json","policyArea.name":"Immigration","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that individuals who have been wrongfully or unjustly deported from the United States who established significant ties to the United States through years of life in the United States deserve a chance to come home to reunite with loved ones through a fair and centralized process within the Department of Homeland Security.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","sponsors.0.party":"D","number":"39","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/39/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/39/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/39/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/39/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/39/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/39?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"8579","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9813","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/35/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"8580","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9942","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/35/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z","latestAction_actionTime":"09:03:48"}}} +{"type":"relationship","id":"8581","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9966","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/867/text?format=json","updateDate":"2024-07-24T15:23:44Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"867","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/867/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/867/committees?format=json","type":"HR","title":"National Commission on Renaming the J. Edgar Hoover FBI Headquarters Building Act of 2023","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"D","number":"867","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/867/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/867/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":1,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/867?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 867.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nTo establish a commission to redesignate the J. Edgar\nHoover F.B.I. Building.\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2024-07-24T15:23:44Z"}}} +{"type":"relationship","id":"8582","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"10000","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/385/text?format=json","relatedBills.count":3,"updateDate":"2024-08-15T13:52:41Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Chu","sponsors.0.isByRequest":"N","request.billNumber":"385","sponsors.0.url":"https://api.congress.gov/v3/member/C001080?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6680)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/385/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/385/committees?format=json","type":"HRES","title":"Supporting the designation of May 10, 2023, as \"National Asian American, Native Hawaiian, and Pacific Islander Mental Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"385","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/385/cosponsors?format=json","sponsors.0.bioguideId":"C001080","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/385/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/385/relatedbills?format=json","sponsors.0.fullName":"Rep. Chu, Judy [D-CA-28]","titles.count":2,"introducedDate":"2023-05-10","cosponsors.count":26,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/385?format=json","sponsors.0.district":28,"sponsors.0.firstName":"Judy","updateDateIncludingText":"2024-08-15T13:52:41Z"}}} +{"type":"relationship","id":"8598","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9296","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5328/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"5328","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Became Public Law No: 117-361.","committees.url":"https://api.congress.gov/v3/bill/118/s/5328/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/s/5328/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to direct the Secretary of Commerce to submit to Congress a report containing an assessment of the value, cost, and feasibility of a trans-Atlantic submarine fiber optic cable connecting the contiguous United States, the United States Virgin Islands, Ghana, and Nigeria.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"5328","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5328/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5328/titles?format=json","laws.0.number":"117-361","summaries.url":"https://api.congress.gov/v3/bill/117/s/5328/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5328/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5328/relatedbills?format=json","latestAction.actionDate":"2024-11-14","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":2,"cosponsors.count":1,"introducedDate":"2024-11-14","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5328?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8599","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9378","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4657/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"4657","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4657/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4657/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"CHIPS Training in America Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4657","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4657/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4657/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4657/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4657/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4657/relatedbills?format=json","latestAction.actionDate":"2024-07-10","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4657?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8600","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9398","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4436/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4436","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4436/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protect Infant Formula from Contamination Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4436","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4436/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4436/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4436/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"cosponsors.count":6,"introducedDate":"2024-06-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4436?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8606","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"576","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4279/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"4279","sponsors.0.url":"https://api.congress.gov/v3/member/B001313?format=json","latestAction_text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4279/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4279/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Critical Supply Chains Commission Act","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"D","number":"4279","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4279/cosponsors?format=json","sponsors.0.bioguideId":"B001313","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4279/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4279/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4279/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-23","sponsors.0.fullName":"Rep. Brown, Shontel M. [D-OH-11]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":9,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"OH","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/4279?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 109 (Thursday, June 22, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWN:\nH.R. 4279.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section VIII\nThe single subject of this legislation is:\nTo recommend improvements to the supply chain\n[Page H3110]\n","sponsors.0.district":11,"sponsors.0.firstName":"Shontel","updateDateIncludingText":"2025-01-16T11:48:07Z"}}} +{"type":"relationship","id":"8607","label":"SPONSORED","start":{"id":"4087","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001313_200.jpg","district":"11","partyName":"Democratic","startYear":"2021","name":"Brown, Shontel M.","attribution":"Image courtesy of the Member","state":"Ohio","url":"https://api.congress.gov/v3/member/B001313?format=json","bioguideId":"B001313"}},"end":{"id":"8779","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7272/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Brown","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","policyArea.name":"Crime and Law Enforcement","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7272/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"7272","bill.cosponsors.countIncludingWithdrawnCosponsors":17,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 55 (Tuesday, March 29, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 7272.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\n[Page H3971]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7272/cosponsors?format=json","sponsors.0.bioguideId":"B001313","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7272/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-07","bill.policyArea.name":"Agriculture and Food","sponsors.0.fullName":"Rep. Brown, Shontel M. [D-OH-11]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":34,"bill.latestAction.text":"Referred to the Subcommittee on Nutrition, Oversight, and Department Operations.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7272/text?format=json","bill.updateDate":"2025-01-23T18:51:26Z","updateDate":"2024-11-02T08:05:35Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7272/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/B001313?format=json","request.billNumber":"7272","committees.url":"https://api.congress.gov/v3/bill/118/hr/7272/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7272/subjects?format=json","bill.updateDateIncludingText":"2025-01-23T18:51:26Z","title":"Shining a Spotlight on Safer Communities Act","bill.title":"Feed Hungry Veterans Act of 2022","bill.number":"7272","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":34,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7272/committees?format=json","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7272/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/7272/summaries?format=json","bill.cosponsors.count":17,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","bill.sponsors.0.party":"D","introducedDate":"2024-02-07","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"OH","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7272/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7272/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7272?format=json","bill.introducedDate":"2022-03-29","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 22 (Wednesday, February 7, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BROWN:\nH.R. 7272.\nCongress has the power to enact this legislation pursuant\nto the following:\nPursuant to clause 7(c)(1) of Rule XII and Section 3(c) of\nH . Res. 5 the following statements are submitted regarding\n(1) the specific powers granted to Congress in the U.S.\nConstitution to enact the accompanying bill or joint\nresolution in Article I Section VIII.\nThe single subject of this legislation is:\nTo require additional reporting requirements of the\nDepartment of Justice with regards to the Bipartisan Safer\nCommunities Act.\n[Page H537]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"Shontel","bill.type":"HR","updateDateIncludingText":"2024-11-02T08:05:35Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7272/text?format=json","bill.sponsors.0.lastName":"Hayes"}}} +{"type":"relationship","id":"8609","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9297","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5168/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"5168","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Became Public Law No: 117-360.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5168/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5168/committees?format=json","policyArea.name":"Immigration","title":"Judiciary Accountability Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","sponsors.0.middleName":"K.","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5168/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5168/titles?format=json","laws.0.number":"117-360","summaries.url":"https://api.congress.gov/v3/bill/117/s/5168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5168/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5168/relatedbills?format=json","latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5168?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-09T01:57:48Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8610","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9305","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4439/text?format=json","relatedBills.count":2,"updateDate":"2024-08-05T16:12:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"4439","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Became Public Law No: 117-353.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/4439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4439/committees?format=json","type":"S","title":"Transparency in Debt Issuance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4439","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4439/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4439/titles?format=json","laws.0.number":"117-353","summaries.url":"https://api.congress.gov/v3/bill/117/s/4439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4439/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4439?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-05T16:12:59Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8611","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9323","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Braun","cboCostEstimates.0.pubDate":"2022-11-21T17:07:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 622.","policyArea.name":"Energy","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4080","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4080/cosponsors?format=json","sponsors.0.bioguideId":"B001310","actions.url":"https://api.congress.gov/v3/bill/118/s/4080/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4080/relatedbills?format=json","latestAction.actionDate":"2024-04-09","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-245","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4080/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4080","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4080/subjects?format=json","title":"A bill to require the Secretary of Energy to conduct a study and submit a report on national resource adequacy, and for other purposes.","cboCostEstimates.0.description":"As ordered reported on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58825","request.format":"json","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/245?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4080/summaries?format=json","cboCostEstimates.0.title":"S. 4080, Berryessa Snow Mountain National Monument Expansion Act","introducedDate":"2024-04-09","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4080?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"8612","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9338","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5081/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"5081","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6672)","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/5081/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5081/subjects?format=json","type":"S","title":"Arctic Research and Policy Amendments Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S6146-6147)","sponsors.0.party":"R","number":"5081","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5081/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5081/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5081/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5081/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5081/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5081?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8613","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9352","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Casey","cboCostEstimates.0.pubDate":"2022-11-21T16:49:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 533.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2693","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2693/cosponsors?format=json","sponsors.0.bioguideId":"C001070","actions.url":"https://api.congress.gov/v3/bill/118/s/2693/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2693/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-182","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2693/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2693","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2693/subjects?format=json","title":"Family Violence Prevention and Services Improvement Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58815","request.format":"json","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/182?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2693/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2693/summaries?format=json","cboCostEstimates.0.title":"S. 2693, Salton Sea Projects Improvements Act","introducedDate":"2023-07-27","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2693?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8614","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9367","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4879/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:18:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4879","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S4823)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4879/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4879/committees?format=json","policyArea.name":"Health","title":"American Cures Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Appropriations. (text: CR S5685)","sponsors.0.party":"D","number":"4879","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4879/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4879/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4879/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4879/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4879/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4879?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:18:18Z"}}} +{"type":"relationship","id":"8615","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9532","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2954/text?format=json","relatedBills.count":5,"updateDate":"2024-07-24T15:20:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"2954","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S7001)","subjects.url":"https://api.congress.gov/v3/bill/118/s/2954/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2954/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Medicaid Beneficiaries Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2954","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2954/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2954/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2954/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2954/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2954/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2954?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:16Z"}}} +{"type":"relationship","id":"8616","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9567","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2454","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S5053-5054)","committees.url":"https://api.congress.gov/v3/bill/118/s/2454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2454/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmaceutical Supply Chain Security Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2454/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2454/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2454/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2454?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8617","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1912/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"1912","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S3899-3900)","policyArea.name":"Emergency Management","subjects.url":"https://api.congress.gov/v3/bill/118/s/1912/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1912/committees?format=json","type":"S","title":"ARTICLE ONE Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1912","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1912/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1912/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1912/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1912/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1912/relatedbills?format=json","latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2023-06-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1912?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8618","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9980","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2535; text: CR S2549-2550)","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"8619","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9298","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5087/text?format=json","updateDate":"2024-11-04T14:38:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"5087","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Became Public Law No: 117-359.","policyArea.name":"Housing and Community Development","committees.url":"https://api.congress.gov/v3/bill/118/s/5087/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5087/subjects?format=json","type":"S","title":"Tenants’ Right to Organize Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5087","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-01-05","summaries.count":4,"amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5087/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5087/titles?format=json","laws.0.number":"117-359","summaries.url":"https://api.congress.gov/v3/bill/117/s/5087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5087/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/5087/amendments?format=json","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5087?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-04T14:38:58Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8620","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5066/text?format=json","updateDate":"2024-09-25T02:53:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"5066","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Became Public Law No: 117-358.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5066/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5066/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"No Taxation Without Representation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5066","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5066/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5066/titles?format=json","laws.0.number":"117-358","summaries.url":"https://api.congress.gov/v3/bill/117/s/5066/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5066/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-17","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":3,"introducedDate":"2024-09-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5066?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-03-07T17:27:15Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8621","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9300","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5016/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"5016","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Became Public Law No: 117-357.","committees.url":"https://api.congress.gov/v3/bill/118/s/5016/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5016/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Combat Chinese Economic Aggression Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5016","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5016/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5016/titles?format=json","laws.0.number":"117-357","summaries.url":"https://api.congress.gov/v3/bill/117/s/5016/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5016/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5016/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2024-09-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5016?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8622","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9462","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2022-05-12T20:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 285.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1354","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1354/cosponsors?format=json","sponsors.0.bioguideId":"M001111","actions.url":"https://api.congress.gov/v3/bill/118/s/1354/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1354/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"cosponsors.count":42,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-84","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1354/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1354","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1354/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1354/subjects?format=json","title":"Child Care for Working Families Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on February 28, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58108","cosponsors.countIncludingWithdrawnCosponsors":42,"request.format":"json","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/84?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1354/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1354/summaries?format=json","cboCostEstimates.0.title":"S. 1354, Alaska Trails Act","introducedDate":"2023-04-27","subjects.count":33,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1354?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8623","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9523","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2967/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"2967","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2967/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2967/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Intelligence Community Workforce Agility Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2967","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2967/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2967/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2967/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2967/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2967/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2967?format=json","updateDateIncludingText":"2024-07-24T15:20:14Z","sponsors.0.firstName":"Marco"}}} +{"type":"relationship","id":"8624","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9642","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-09-28T22:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 168.","sponsors.0.party":"D","number":"1352","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1352/cosponsors?format=json","sponsors.0.bioguideId":"K000367","actions.url":"https://api.congress.gov/v3/bill/118/s/1352/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1352/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1352/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1352","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1352/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1352/committees?format=json","title":"504 Modernization and Small Manufacturer Enhancement Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Small Business and Entrepreneurship on July 25, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59618","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1352/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1352/summaries?format=json","cboCostEstimates.0.title":"S. 1352, 504 Modernization and Small Manufacturer Enhancement Act of 2023","introducedDate":"2023-04-27","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1352?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"8662","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9307","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-351.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"4240","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4240/cosponsors?format=json","sponsors.0.bioguideId":"C001095","laws.0.number":"117-351","actions.url":"https://api.congress.gov/v3/bill/118/s/4240/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4240/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-02","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4240/amendments?format=json","titles.count":3,"cosponsors.count":21,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4240/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4240","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4240/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4240/committees?format=json","title":"No Bailouts for Campus Criminals Act","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4240/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4240/summaries?format=json","introducedDate":"2024-05-02","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4240?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8663","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9310","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Butler","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-348.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3949","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3949/cosponsors?format=json","sponsors.0.bioguideId":"B001320","laws.0.number":"117-348","actions.url":"https://api.congress.gov/v3/bill/118/s/3949/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3949/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Butler, Laphonza R. [D-CA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3949/amendments?format=json","titles.count":3,"cosponsors.count":9,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3949/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3949","sponsors.0.url":"https://api.congress.gov/v3/member/B001320?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3949/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3949/committees?format=json","title":"Pride In Mental Health Act of 2024","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3949/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3949/summaries?format=json","introducedDate":"2024-03-14","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3949?format=json","sponsors.0.firstName":"Laphonza","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8664","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9348","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Van Hollen","cboCostEstimates.0.pubDate":"2022-05-24T21:28:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 542.","policyArea.name":"Emergency Management","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"977","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/977/cosponsors?format=json","sponsors.0.bioguideId":"V000128","actions.url":"https://api.congress.gov/v3/bill/118/s/977/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/977/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-27","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":4,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/977/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"977","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/977/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/977/subjects?format=json","title":"FIRE STATION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on May 5, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58141","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-10-18","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/977/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/977/summaries?format=json","cboCostEstimates.0.title":"S. 977, No Oil Producing and Exporting Cartels Act of 2021","introducedDate":"2023-03-27","subjects.count":8,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/977?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8665","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9436","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3981/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3981","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3981/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3981/committees?format=json","policyArea.name":"Health","type":"S","title":"DeOndra Dixon INCLUDE Project Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3981","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3981/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3981/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3981/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3981/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3981/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":8,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3981?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8666","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3977/text?format=json","relatedBills.count":1,"updateDate":"2024-07-31T18:48:54Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"3977","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3977/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3977/committees?format=json","policyArea.name":"Health","type":"S","title":"Medicare Orthotics and Prosthetics Patient-Centered Care Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3977","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3977/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3977/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3977/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3977/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3977/relatedbills?format=json","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3977?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-31T18:48:54Z"}}} +{"type":"relationship","id":"8667","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9511","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-07-15T19:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 166.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2428","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2428/cosponsors?format=json","sponsors.0.bioguideId":"B001288","actions.url":"https://api.congress.gov/v3/bill/118/s/2428/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2428/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2428/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2428","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2428/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2428/subjects?format=json","title":"PATHS to Tutor Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on November 16, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58308","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-11-16","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2428/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2428/summaries?format=json","cboCostEstimates.0.title":"S. 2428, False Claims Amendments Act of 2021","introducedDate":"2023-07-20","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2428?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8668","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9637","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1362/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1362","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/1362/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1362/committees?format=json","type":"S","title":"Transparency in CFPB Cost-Benefit Analysis Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1362","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1362/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1362/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1362/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1362/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1362/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1362?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"8669","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9981","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/639/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T16:02:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Crockett","sponsors.0.isByRequest":"N","request.billNumber":"639","sponsors.0.url":"https://api.congress.gov/v3/member/C001130?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S2535; text: CR S2549)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/639/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/hres/639/committees?format=json","type":"HRES","title":"Supporting the goals and ideals of \"Minority Mental Health Awareness Month\" and recognizing the disproportionate impacts of mental health conditions and struggles on minority populations and communities.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"639","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/639/cosponsors?format=json","sponsors.0.bioguideId":"C001130","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/639/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/639/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/639/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/639/relatedbills?format=json","latestAction.actionDate":"2023-08-04","sponsors.0.fullName":"Rep. Crockett, Jasmine [D-TX-30]","titles.count":2,"introducedDate":"2023-08-01","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/639?format=json","sponsors.0.district":30,"sponsors.0.firstName":"Jasmine","updateDateIncludingText":"2024-12-19T16:02:23Z"}}} +{"type":"relationship","id":"8670","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9985","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/634/text?format=json","relatedBills.count":1,"updateDate":"2024-12-10T15:36:25Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schumer","sponsors.0.isByRequest":"N","request.billNumber":"634","sponsors.0.url":"https://api.congress.gov/v3/member/S000148?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2516; text: CR S2521-2522)","policyArea.name":"Arts, Culture, Religion","subjects.url":"https://api.congress.gov/v3/bill/118/sres/634/subjects?format=json","type":"SRES","title":"A resolution recognizing the cultural and educational contributions of the Youth America Grand Prix throughout its 25 years of service as the national youth dance competition of the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2703; text: CR S2712)","sponsors.0.party":"D","number":"634","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/634/cosponsors?format=json","sponsors.0.bioguideId":"S000148","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/634/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/634/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/634/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/634/relatedbills?format=json","sponsors.0.fullName":"Sen. Schumer, Charles E. [D-NY]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/634?format=json","sponsors.0.firstName":"Charles","updateDateIncludingText":"2024-12-10T15:36:25Z"}}} +{"type":"relationship","id":"8685","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9311","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2024-08-12T18:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-347.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-201.","sponsors.0.party":"R","number":"3946","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3946/cosponsors?format=json","sponsors.0.bioguideId":"C001098","laws.0.number":"118-201","actions.url":"https://api.congress.gov/v3/bill/118/s/3946/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3946/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3946/amendments?format=json","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3946/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"3946","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3946/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3946/committees?format=json","title":"A bill to designate the facility of the United States Postal Service located at 1106 Main Street in Bastrop, Texas, as the \"Sergeant Major Billy D. Waugh Post Office\".","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60622","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3946/summaries?format=json","cboCostEstimates.0.title":"S. 3946, a bill to designate the facility of the United States Postal Service located at 1106 Main Street in Bastrop, Texas, as the “Sergeant Major Billy D. Waugh Post Office”","introducedDate":"2024-03-14","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3946?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8686","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9332","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5234/text?format=json","relatedBills.count":1,"updateDate":"2024-11-05T15:36:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5234","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S7103-7104)","subjects.url":"https://api.congress.gov/v3/bill/118/s/5234/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5234/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protecting Endowments from Our Adversaries Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5234","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5234/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5234/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5234/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5234/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5234/relatedbills?format=json","latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5234?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-11-05T15:36:57Z"}}} +{"type":"relationship","id":"8687","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9333","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5233/text?format=json","relatedBills.count":1,"updateDate":"2024-10-22T19:53:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5233","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S7103)","committees.url":"https://api.congress.gov/v3/bill/118/s/5233/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5233/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"No Capital Gains Allowance for American Adversaries Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5233","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5233/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5233/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/5233/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5233/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5233/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5233?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-10-22T19:53:51Z"}}} +{"type":"relationship","id":"8688","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9359","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4888/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4888","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4888/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4888/committees?format=json","policyArea.name":"Immigration","type":"S","title":"A bill to include Czechia in the list of foreign states whose nationals are eligible for admission into the United States as E-1 nonimmigrants if United States nationals are treated similarly by the Government of Czechia.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4888","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4888/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4888/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4888/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4888/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4888/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4888?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"8689","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9405","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4160/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"4160","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Became Public Law No: 117-148.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4160/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4160/committees?format=json","policyArea.name":"Government Operations and Politics","title":"POSTAL Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4160","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-16","sponsors.0.middleName":"M.","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4160/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4160/titles?format=json","laws.0.number":"117-148","summaries.url":"https://api.congress.gov/v3/bill/117/s/4160/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4160/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4160/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":4,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4160?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8690","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9415","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-125.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3059","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3059/cosponsors?format=json","sponsors.0.bioguideId":"B001267","laws.0.number":"117-125","actions.url":"https://api.congress.gov/v3/bill/118/s/3059/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3059/relatedbills?format=json","latestAction.actionDate":"2023-10-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3059/amendments?format=json","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3059/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3059","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3059/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3059/subjects?format=json","title":"REAL Health Providers Act","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3059/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3059/summaries?format=json","introducedDate":"2023-10-17","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3059?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:57:51Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8691","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9416","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2021-04-05T15:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-122.","policyArea.name":"Agriculture and Food","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"658","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/658/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-122","actions.url":"https://api.congress.gov/v3/bill/118/s/658/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/658/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-24","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57628","textVersions.url":"https://api.congress.gov/v3/bill/118/s/658/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2021-11-19T20:30:00Z","actions.count":2,"request.billNumber":"658","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/658/subjects?format=json","title":"EQIP Improvement Act of 2023","cboCostEstimates.1.description":"As ordered reported by the House Committee on Homeland Security on October 26, 2021\n","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57108","request.format":"json","latestAction_actionDate":"2022-05-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/24?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/658/summaries?format=json","cboCostEstimates.0.title":"S. 658, National Cybersecurity Preparedness Consortium Act of 2021","introducedDate":"2023-03-06","subjects.count":7,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/658?format=json","cboCostEstimates.1.title":"S. 658, National Cybersecurity Preparedness Consortium Act of 2021","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8692","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9650","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1358/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Molinaro","sponsors.0.isByRequest":"N","request.billNumber":"1358","sponsors.0.url":"https://api.congress.gov/v3/member/M001221?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S2173-2175)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1358/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1358/committees?format=json","policyArea.name":"Commerce","title":"Combating Rural Inflation Act","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1358","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-04-22","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1358/cosponsors?format=json","sponsors.0.bioguideId":"M001221","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1358/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1358/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1358/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-03","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1358/relatedbills?format=json","sponsors.0.fullName":"Rep. Molinaro, Marcus J. [R-NY-19]","titles.count":3,"introducedDate":"2023-03-03","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1358?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 41 (Friday, March 3, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MOLINARO:\nH.R. 1358.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nEconomic Reporting\n[Page H1115]\n","sponsors.0.district":19,"sponsors.0.firstName":"Marcus","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8708","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"9316","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2022-10-31T20:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 630.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4109","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4109/cosponsors?format=json","sponsors.0.bioguideId":"W000817","actions.url":"https://api.congress.gov/v3/bill/118/s/4109/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4109/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"cosponsors.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4109/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4109","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4109/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4109/subjects?format=json","title":"Blast Overpressure Safety Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on May 25, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58432","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4109/summaries?format=json","cboCostEstimates.0.title":"S. 4109, National R&D Strategy for Distributed Ledger Technology Act of 2022","introducedDate":"2024-04-11","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4109?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"8709","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"9317","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blackburn","cboCostEstimates.0.pubDate":"2022-09-26T21:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 629.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3817","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3817/cosponsors?format=json","sponsors.0.bioguideId":"B001243","actions.url":"https://api.congress.gov/v3/bill/118/s/3817/actions?format=json","latestAction.actionDate":"2024-02-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3817/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3817/text?format=json","updateDate":"2024-11-09T01:57:45Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3817","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3817/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3817/committees?format=json","title":"Safer Prisons Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58518","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3817/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3817/summaries?format=json","cboCostEstimates.0.title":"S. 3817, TORNADO Act","introducedDate":"2024-02-27","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3817?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:45Z"}}} +{"type":"relationship","id":"8710","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"9347","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Padilla","cboCostEstimates.0.pubDate":"2022-07-14T17:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"By Senator Cantwell from Committee on Commerce, Science, and Transportation filed written report under authority of the order of the Senate of 10/14/2022. Report No. 117-191.","policyArea.name":"Commerce","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3375","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3375/cosponsors?format=json","sponsors.0.bioguideId":"P000145","actions.url":"https://api.congress.gov/v3/bill/118/s/3375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3375/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-191","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3375/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3375","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3375/committees?format=json","title":"Accelerating Small Business Growth Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58298","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/191?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3375/summaries?format=json","cboCostEstimates.0.title":"S. 3375, Omnibus Travel and Tourism Act of 2021","introducedDate":"2023-11-30","subjects.count":7,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3375?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8714","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9319","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Paul","cboCostEstimates.0.pubDate":"2024-07-31T19:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 488.","sponsors.0.party":"R","number":"3664","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3664/cosponsors?format=json","sponsors.0.bioguideId":"P000603","actions.url":"https://api.congress.gov/v3/bill/118/s/3664/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3664/relatedbills?format=json","latestAction.actionDate":"2024-09-09","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-210","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3664/text?format=json","updateDate":"2025-01-17T03:11:13Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"3664","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3664/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3664/subjects?format=json","title":"Royalty Transparency Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60589","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/210?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3664/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3664/summaries?format=json","cboCostEstimates.0.title":"S. 3664, Royalty Transparency Act","introducedDate":"2024-01-25","subjects.count":7,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3664?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-17T03:11:13Z"}}} +{"type":"relationship","id":"8715","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9442","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3972/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3972","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/3972/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3972/committees?format=json","type":"S","title":"SOS Act","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"3972","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3972/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3972/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3972/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3972/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3972?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:22:18Z"}}} +{"type":"relationship","id":"8716","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9458","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3710/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"3710","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/3710/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3710/committees?format=json","type":"S","title":"Regulation A+ Improvement Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3710","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3710/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3710/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3710/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3710/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3710/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3710?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"8717","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9473","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3702/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T12:03:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"3702","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3702/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3702/committees?format=json","policyArea.name":"Taxation","title":"Credit for Caring Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3702","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3702/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3702/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3702/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3702/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3702/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3702?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-04T12:03:19Z"}}} +{"type":"relationship","id":"8718","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"2444","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2444/committees?format=json","policyArea.name":"Health","title":"ATTAIN Mental Health Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2444/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2444/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2444/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":4,"introducedDate":"2023-07-20","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2444?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8719","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9591","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2183/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2183","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2183/subjects?format=json","policyArea.name":"Health","title":"Red Hill Health Impact Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2183","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2183/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2183/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2183/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2183/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2183/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2183?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"8720","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9320","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-08-30T14:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3434","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3434/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3434/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3434/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3434/committees?format=json","title":"Incentivizing the Expansion of U.S. Ports Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58438","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3434/summaries?format=json","cboCostEstimates.0.title":"S. 3434, Strengthening Support for American Manufacturing Act","introducedDate":"2023-12-07","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8721","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3543/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"3543","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3543/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3543/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Historic Greenwood District—Black Wall Street National Monument Establishment Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3543","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3543/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3543/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3543/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3543/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3543/relatedbills?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":3,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"18:25:58","titles.count":5,"introducedDate":"2023-12-14","cosponsors.count":6,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3543?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"8722","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9396","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blumenthal","cboCostEstimates.0.pubDate":"2022-04-19T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 428.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3511","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3511/cosponsors?format=json","sponsors.0.bioguideId":"B001277","actions.url":"https://api.congress.gov/v3/bill/118/s/3511/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3511/relatedbills?format=json","latestAction.actionDate":"2023-12-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-122","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3511/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3511","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3511/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3511/subjects?format=json","title":"Stopping Grinch Bots Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on\nMarch 30, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57997","request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/122?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3511/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3511/summaries?format=json","cboCostEstimates.0.title":"S. 3511, Satellite Cybersecurity Act","introducedDate":"2023-12-13","subjects.count":9,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3511?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8723","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9401","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Casey","cboCostEstimates.0.pubDate":"2022-04-27T19:53:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Agriculture and Food","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3309","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3309/cosponsors?format=json","sponsors.0.bioguideId":"C001070","actions.url":"https://api.congress.gov/v3/bill/118/s/3309/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3309/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3309/amendments?format=json","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"14:52:29","committeeReports.0.citation":"S. Rept. 117-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3309/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3309","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3309/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3309/subjects?format=json","title":"Rural Partnership and Prosperity Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58046","request.format":"json","latestAction_actionDate":"2022-06-21","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/109?format=json","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3309/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3309/summaries?format=json","cboCostEstimates.0.title":"S. 3309, Securing Semiconductor Supply Chains Act of 2021","latestAction.actionTime":"14:52:29","introducedDate":"2023-11-15","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3309?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"8724","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9407","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-09-07T21:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-145.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 291.","sponsors.0.party":"D","number":"2201","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2201/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-145","actions.url":"https://api.congress.gov/v3/bill/118/s/2201/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2201/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","amendments.url":"https://api.congress.gov/v3/bill/117/s/2201/amendments?format=json","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-43","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2201/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2201","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2201/subjects?format=json","title":"American Cybersecurity Literacy Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59553","request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/43?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2201/summaries?format=json","cboCostEstimates.0.title":"S. 2201, American Cybersecurity Literacy Act","introducedDate":"2023-06-22","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2201?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8725","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9461","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-01-14T15:56:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3035","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3035/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3035/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3035/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-82","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3035/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3035","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3035/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3035/subjects?format=json","title":"Protecting Our Kids from Harmful Research Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on\nNovember 3, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57758","request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/82?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3035/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3035/summaries?format=json","cboCostEstimates.0.title":"S. 3035, GOOD AI Act of 2021","introducedDate":"2023-10-04","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3035?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8726","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9565","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2456/text?format=json","relatedBills.count":3,"updateDate":"2024-10-04T19:08:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"2456","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2456/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Seniors from High Drug Costs Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2456","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2456/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2456/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2456/relatedbills?format=json","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2456?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2024-10-04T19:08:58Z"}}} +{"type":"relationship","id":"8727","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9581","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2191/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"2191","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2191/subjects?format=json","policyArea.name":"Health","type":"S","title":"Consensual Donation and Research Integrity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2191","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2191/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2191/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2191/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2191/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2191?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8728","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9654","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1044/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"1044","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1044/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1044/committees?format=json","title":"Railway Accountability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1044","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","sponsors.0.middleName":"K.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1044/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1044/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1044/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1044/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":3,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1044?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8729","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9963","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/871/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"871","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7202)","committees.url":"https://api.congress.gov/v3/bill/118/s/871/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/871/subjects?format=json","policyArea.name":"Education","type":"S","title":"A bill to amend section 7014 of the Elementary and Secondary Education Act of 1965 to advance toward full Federal funding for impact aid, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"871","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/871/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/871/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/871/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/871/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/871/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":2,"introducedDate":"2023-03-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/871?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8730","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9321","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Carson","cboCostEstimates.0.pubDate":"2022-11-21T16:39:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 618.","policyArea.name":"Commerce","type":"HR","latestAction.text":"Referred to the House Committee on Small Business.","sponsors.0.party":"D","number":"1538","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1538/cosponsors?format=json","sponsors.0.bioguideId":"C001072","actions.url":"https://api.congress.gov/v3/bill/118/hr/1538/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1538/relatedbills?format=json","latestAction.actionDate":"2023-03-10","sponsors.0.fullName":"Rep. Carson, Andre [D-IN-7]","titles.count":3,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-241","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1538/text?format=json","updateDate":"2024-12-21T09:05:53Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":4,"request.billNumber":"1538","sponsors.0.url":"https://api.congress.gov/v3/member/C001072?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1538/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1538/subjects?format=json","title":"Emerging Business Encouragement Act of 2023","cboCostEstimates.0.description":"As ordered reported on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58809","request.format":"json","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/241?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1538/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1538/summaries?format=json","cboCostEstimates.0.title":"S. 1538, Smith River National Recreation Area Expansion Act","introducedDate":"2023-03-10","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1538?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 46 (Friday, March 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARSON:\nH.R. 1538.\nCongress has the power to enact this legislation pursuant\nto the following:\nClause 18 of section 8 of Article I of the Constitution.\nThe single subject of this legislation is:\nTo amend the Small Business Act to provide for contracting\npreferences and other benefits for emerging business\nenterprises, and for other purposes.\n[Page H1280]\n","sponsors.0.district":7,"sponsors.0.firstName":"André","updateDateIncludingText":"2024-12-21T09:05:53Z"}}} +{"type":"relationship","id":"8731","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9453","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3953/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tester","sponsors.0.isByRequest":"N","request.billNumber":"3953","sponsors.0.url":"https://api.congress.gov/v3/member/T000464?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3953/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3953/committees?format=json","policyArea.name":"Education","type":"S","title":"NURSE Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3953","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3953/cosponsors?format=json","sponsors.0.bioguideId":"T000464","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3953/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3953/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3953/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3953/relatedbills?format=json","latestAction.actionDate":"2024-03-14","sponsors.0.fullName":"Sen. Tester, Jon [D-MT]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3953?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8732","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9529","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2960/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2960","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2960/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2960/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Expanding the VOTE Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"2960","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2960/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2960/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2960/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2960/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2960/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2960?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"8733","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9553","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 123.","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2021-08-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"8734","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9614","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1632/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"1632","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/1632/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1632/subjects?format=json","type":"S","title":"Compressed Gas Cylinder Safety and Oversight Improvements Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1632","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1632/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1632/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1632/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1632/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1632/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-05-17","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1632?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8735","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"9322","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Hassan","cboCostEstimates.0.pubDate":"2022-06-27T20:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 626.","policyArea.name":"Taxation","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3296","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3296/cosponsors?format=json","sponsors.0.bioguideId":"H001076","actions.url":"https://api.congress.gov/v3/bill/118/s/3296/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3296/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-14","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3296/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3296","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3296/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3296/subjects?format=json","title":"Upskilling and Retraining Assistance Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58257","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3296/summaries?format=json","cboCostEstimates.0.title":"S. 3296, TRANSLATE Act","introducedDate":"2023-11-14","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3296?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"8736","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"9394","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4437/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"4437","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4437/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4437/committees?format=json","type":"S","title":"Coordinating Care for Senior Veterans and Wounded Warriors Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4437/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4437/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4437?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"8737","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"9469","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/697/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"697","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/697/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/697/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Treating Tribes and Counties as Good Neighbors Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"697","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/697/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/697/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/697/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/697/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/697/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","latestAction.actionTime":"10:03:00","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/697?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"10:03:00"}}} +{"type":"relationship","id":"8738","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"9497","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rubio","cboCostEstimates.0.pubDate":"2024-05-23T19:32:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 371.","sponsors.0.party":"R","number":"1881","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1881/cosponsors?format=json","sponsors.0.bioguideId":"R000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1881/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1881/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-07","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1881/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1881","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1881/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1881/committees?format=json","title":"Restoring Sovereignty and Human Rights in Nicaragua Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on May 7, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60293","request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1881/summaries?format=json","cboCostEstimates.0.title":"S. 1881, Restoring Sovereignty and Human Rights in Nicaragua Act of 2024","introducedDate":"2023-06-08","subjects.count":32,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1881?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8739","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"10007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"377","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6627-6628)","committees.url":"https://api.congress.gov/v3/bill/118/s/377/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/377/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Domestic Reinvestment Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/377/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/377/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/377/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/377?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:47Z"}}} +{"type":"relationship","id":"8745","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"649","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3144/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:21Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"3144","sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3144/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3144/committees?format=json","policyArea.name":"Native Americans","type":"HR","title":"Prairie Band Potawatomi Nation Shab-eh-nay Band Reservation Settlement Act of 2023","latestAction.text":"Referred to the House Committee on Natural Resources.","sponsors.0.party":"D","number":"3144","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3144/cosponsors?format=json","sponsors.0.bioguideId":"G000586","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3144/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3144/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3144/actions?format=json","latestAction.actionDate":"2023-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3144/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3144?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 3144.\nCongress has the power to enact this legislation pursuant\nto the following:\nCongress has the power to enact this legislation pursuant\nto Article 1, Section 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo provide for the settlement of claims relating to the\nShab-eh-nay Band Reservation in Illinois.\n[Page H2173]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jesus","updateDateIncludingText":"2024-07-24T15:22:21Z"}}} +{"type":"relationship","id":"8746","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"803","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/832/text?format=json","updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"832","sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","latestAction_text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","committees.url":"https://api.congress.gov/v3/bill/118/hr/832/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/832/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"832","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2023-02-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/832/cosponsors?format=json","sponsors.0.bioguideId":"G000586","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/832/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/832/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/832/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","titles.count":3,"introducedDate":"2023-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/832?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 832.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation will strengthen and advance certain\ndisadvantaged businesses\n[Page H710]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jesus","updateDateIncludingText":"2024-07-24T15:23:46Z"}}} +{"type":"relationship","id":"8747","label":"SPONSORED","start":{"id":"4158","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","district":"4","imageUrl":"https://www.congress.gov/img/member/g000586_200.jpg","startYear":"2019","partyName":"Democratic","name":"García, Jesús G. \"Chuy\"","attribution":"Image courtesy of the Member","state":"Illinois","url":"https://api.congress.gov/v3/member/G000586?format=json","bioguideId":"G000586"}},"end":{"id":"9892","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/832/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Garcia","sponsors.0.isByRequest":"N","request.billNumber":"832","sponsors.0.url":"https://api.congress.gov/v3/member/G000586?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/832/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/832/subjects?format=json","policyArea.name":"Commerce","type":"HR","title":"Giving Disadvantaged Businesses Opportunities for Success Act","latestAction.text":"Referred to the Subcommittee on Railroads, Pipelines, and Hazardous Materials.","sponsors.0.party":"D","number":"832","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-12-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/832/cosponsors?format=json","sponsors.0.bioguideId":"G000586","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/832/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/832/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/832/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/832/relatedbills?format=json","latestAction.actionDate":"2023-02-07","sponsors.0.fullName":"Rep. Garcia, Jesus G. \"Chuy\" [D-IL-4]","titles.count":3,"introducedDate":"2023-02-06","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/832?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 24 (Monday, February 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GARCIA of Illinois:\nH.R. 832.\nCongress has the power to enact this legislation pursuant\nto the following:\nSection 8 of Article 1 of the United States Constitution\nThe single subject of this legislation is:\nThis legislation will strengthen and advance certain\ndisadvantaged businesses\n[Page H710]\n","sponsors.0.district":4,"sponsors.0.firstName":"Jesus","updateDateIncludingText":"2024-07-24T15:23:46Z"}}} +{"type":"relationship","id":"8750","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9327","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-11-09T16:14:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 615.","policyArea.name":"Foreign Trade and International Finance","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3531","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3531/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3531/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3531/relatedbills?format=json","latestAction.actionDate":"2023-12-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":11,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-237","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3531/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3531","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3531/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3531/subjects?format=json","title":"Protect American Gun Exporters Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58722","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/237?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3531/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3531/summaries?format=json","cboCostEstimates.0.title":"S. 3531, National Climate Adaptation and Resilience Strategy Act of 2022","introducedDate":"2023-12-14","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3531?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"8751","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9380","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4280/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4280","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4280/committees?format=json","policyArea.name":"Health","title":"Essential Caregivers Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4280","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4280/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4280/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4280/actions?format=json","latestAction.actionDate":"2024-05-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4280/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-05-08","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4280?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-12-17T12:03:18Z"}}} +{"type":"relationship","id":"8752","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9418","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-15T19:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-123.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"270","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/270/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-123","actions.url":"https://api.congress.gov/v3/bill/118/s/270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/270/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/117/s/270/amendments?format=json","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-87","textVersions.url":"https://api.congress.gov/v3/bill/118/s/270/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"270","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/270/subjects?format=json","title":"Protecting America’s Meatpacking Workers Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57932","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/87?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/270/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/270/summaries?format=json","cboCostEstimates.0.title":"S. 270, Brown v. Board of Education National Historic Site Expansion Act","introducedDate":"2023-02-02","subjects.count":62,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/270?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8753","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9439","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3975/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3975","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3975/committees?format=json","policyArea.name":"Commerce","title":"AI CONSENT Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3975","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3975/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3975/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3975/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3975/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3975/relatedbills?format=json","latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3975?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8754","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9554","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2464/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2464","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2464/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2464/committees?format=json","policyArea.name":"Health","type":"S","title":"Access to Breast Cancer Diagnosis Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2464","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2464/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2464/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2464/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2464/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2464/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2464?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8755","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9648","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1359/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1359","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/s/1359/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1359/subjects?format=json","title":"CLAIM Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1359","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1359/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1359/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1359/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1359/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1359/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1359?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"8756","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9665","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1057/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"1057","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/1057/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1057/subjects?format=json","type":"S","title":"Further Strengthening Supply Chains for Servicemembers and Security Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1057","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1057/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1057/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1057/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1057/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1057/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1057?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"8757","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9924","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-15T19:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"270","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/270/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-123","actions.url":"https://api.congress.gov/v3/bill/118/s/270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/270/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/117/s/270/amendments?format=json","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-87","textVersions.url":"https://api.congress.gov/v3/bill/118/s/270/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"270","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/270/subjects?format=json","title":"Protecting America’s Meatpacking Workers Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57932","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/87?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/270/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/270/summaries?format=json","cboCostEstimates.0.title":"S. 270, Brown v. Board of Education National Historic Site Expansion Act","introducedDate":"2023-02-02","subjects.count":62,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/270?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8758","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9329","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5235/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"5235","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/5235/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5235/subjects?format=json","type":"S","title":"Fiscally Responsible Highway Funding Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"5235","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5235/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5235/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5235/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5235/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5235/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5235?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"8759","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9330","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5236/text?format=json","updateDate":"2024-12-05T15:34:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"5236","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5236/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5236/committees?format=json","policyArea.name":"Health","title":"Keeping Obstetrics Local Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5236","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5236/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5236/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5236/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5236/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5236?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-12-05T15:34:27Z"}}} +{"type":"relationship","id":"8760","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9366","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4880/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"4880","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4880/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4880/committees?format=json","policyArea.name":"Families","title":"Child Care Workforce Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4880","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-19","sponsors.0.middleName":"M.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4880/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4880/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4880/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4880/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4880/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4880?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8761","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9629","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1613/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1613","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1613/committees?format=json","policyArea.name":"Agriculture and Food","title":"Feral Swine Eradication Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1613","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1613/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1613/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1613/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1613/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1613/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1613?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"8762","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9647","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1347/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1347","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1347/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1347/committees?format=json","type":"S","title":"Military Families Mental Health Services Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1347","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1347/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1347/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1347/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1347/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1347/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1347?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"8763","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9983","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2548)","policyArea.name":"Labor and Employment","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/637/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8771","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"657","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3141/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:17Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Fry","sponsors.0.isByRequest":"N","request.billNumber":"3141","sponsors.0.url":"https://api.congress.gov/v3/member/F000478?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/3141/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3141/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Targeting Child Predators Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3141","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3141/cosponsors?format=json","sponsors.0.bioguideId":"F000478","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/3141/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3141/relatedbills?format=json","sponsors.0.fullName":"Rep. Fry, Russell [R-SC-7]","titles.count":3,"introducedDate":"2023-05-09","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/3141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FRY:\nH.R. 3141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nPreventing child exploitation\n[Page H2173]\n","sponsors.0.district":7,"sponsors.0.firstName":"Russell","updateDateIncludingText":"2024-07-24T15:22:17Z"}}} +{"type":"relationship","id":"8772","label":"SPONSORED","start":{"id":"4085","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f000478_200.jpg","district":"7","startYear":"2023","name":"Fry, Russell","partyName":"Republican","attribution":"Image courtesy of the Member","state":"South Carolina","url":"https://api.congress.gov/v3/member/F000478?format=json","bioguideId":"F000478"}},"end":{"id":"9350","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Fry","cboCostEstimates.0.pubDate":"2022-11-21T16:54:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 534.","policyArea.name":"Crime and Law Enforcement","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"3141","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3141/cosponsors?format=json","sponsors.0.bioguideId":"F000478","actions.url":"https://api.congress.gov/v3/bill/118/hr/3141/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/3141/relatedbills?format=json","latestAction.actionDate":"2023-05-09","sponsors.0.fullName":"Rep. Fry, Russell [R-SC-7]","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-183","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3141/text?format=json","updateDate":"2024-07-24T15:22:17Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"3141","sponsors.0.url":"https://api.congress.gov/v3/member/F000478?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3141/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/3141/committees?format=json","title":"Targeting Child Predators Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58818","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-10-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/183?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/3141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3141/summaries?format=json","cboCostEstimates.0.title":"S. 3141, New Philadelphia National Historical Park Act","introducedDate":"2023-05-09","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/3141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 78 (Tuesday, May 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. FRY:\nH.R. 3141.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\nThe single subject of this legislation is:\nPreventing child exploitation\n[Page H2173]\n","sponsors.0.district":7,"sponsors.0.firstName":"Russell","updateDateIncludingText":"2024-07-24T15:22:17Z"}}} +{"type":"relationship","id":"8786","label":"SPONSORED","start":{"id":"4134","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/i000058_200.jpg","district":"4","startYear":"2023","name":"Ivey, Glenn","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Maryland","url":"https://api.congress.gov/v3/member/I000058?format=json","bioguideId":"I000058"}},"end":{"id":"663","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2870/text?format=json","updateDate":"2024-07-31T08:05:18Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Ivey","sponsors.0.isByRequest":"N","request.billNumber":"2870","sponsors.0.url":"https://api.congress.gov/v3/member/I000058?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2870/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2870/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"Raise the Age Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"D","number":"2870","cosponsors.countIncludingWithdrawnCosponsors":153,"request.format":"json","latestAction_actionDate":"2023-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2870/cosponsors?format=json","sponsors.0.bioguideId":"I000058","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2870/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2870/actions?format=json","latestAction.actionDate":"2023-04-26","textVersions.count":1,"sponsors.0.fullName":"Rep. Ivey, Glenn [D-MD-4]","titles.count":3,"introducedDate":"2023-04-26","cosponsors.count":153,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2870?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Glenn","updateDateIncludingText":"2024-07-31T08:05:18Z"}}} +{"type":"relationship","id":"8793","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"677","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2843/text?format=json","relatedBills.count":2,"updateDate":"2024-12-04T00:06:12Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"2843","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the Subcommittee on Transportation and Maritime Security.","committees.url":"https://api.congress.gov/v3/bill/118/hr/2843/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2843/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"HR","title":"Crime Doesn’t Fly Act of 2023","latestAction.text":"Referred to the Subcommittee on Transportation and Maritime Security.","sponsors.0.party":"R","number":"2843","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2843/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/2843/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2843/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/2843/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2843/relatedbills?format=json","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":3,"introducedDate":"2023-04-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/2843?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 69 (Tuesday, April 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 2843.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo prohibit the Administrator of the Transportation\nSecurity Administration from accepting warrants for the\narrest of aliens as valid proof of identification at aviation\nsecurity checkpoints, and for other purposes.\n[Page H1949]\n","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2024-12-04T00:06:12Z"}}} +{"type":"relationship","id":"8794","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"785","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/933/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"933","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/933/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Senator James L. Buckley Seashore Designation Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"933","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/933/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/933/relatedbills?format=json","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/933?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe single subject of this legislation is:\nThis legislation will name the Staten Island Unit of Gatway\nNational Recreation Area the ``Senator James L. Buckley\nSeashore''\n[Page H828]\n","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2024-07-24T15:23:46Z"}}} +{"type":"relationship","id":"8795","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"9335","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5084/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"5084","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5084/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5084/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Safe School Meals Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"5084","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5084/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5084/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5084/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5084/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5084?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"8796","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"9358","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4889/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:11:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Brown","sponsors.0.isByRequest":"N","request.billNumber":"4889","sponsors.0.url":"https://api.congress.gov/v3/member/B000944?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4889/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4889/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Federal Jobs for STARs Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4889","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4889/cosponsors?format=json","sponsors.0.bioguideId":"B000944","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4889/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4889/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4889/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4889/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Brown, Sherrod [D-OH]","titles.count":3,"cosponsors.count":2,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4889?format=json","sponsors.0.firstName":"Sherrod","updateDateIncludingText":"2025-01-17T03:11:17Z"}}} +{"type":"relationship","id":"8797","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"9448","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Wicker","cboCostEstimates.0.pubDate":"2024-09-20T18:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Became Public Law No: 118-202.","sponsors.0.party":"R","number":"3959","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3959/cosponsors?format=json","sponsors.0.bioguideId":"W000437","laws.0.number":"118-202","actions.url":"https://api.congress.gov/v3/bill/118/s/3959/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3959/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":6,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3959/text?format=json","updateDate":"2025-02-22T01:21:13Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"3959","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3959/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3959/committees?format=json","title":"Transportation Security Screening Modernization Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60738","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-30","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3959/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3959/summaries?format=json","cboCostEstimates.0.title":"S. 3959, Transportation Security Screening Modernization Act of 2024","introducedDate":"2024-03-14","subjects.count":5,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3959?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-02-22T01:21:13Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8798","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9336","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5083/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"5083","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5083/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to amend the John D. Dingell, Jr. Conservation, Management, and Recreation Act to extend the Every Kid Outdoors program.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"5083","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5083/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5083/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5083/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":2,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5083?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"8799","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9370","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4653/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4653","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 490.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4653/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4653/committees?format=json","policyArea.name":"Education","title":"Childcare Worker Opportunity Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4653","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-15","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4653/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4653/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4653/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4653/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4653/relatedbills?format=json","latestAction.actionDate":"2024-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4653?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8800","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9414","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Ogles","cboCostEstimates.0.pubDate":"2021-08-25T16:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-124.","policyArea.name":"Taxation","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","sponsors.0.party":"R","number":"812","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/812/cosponsors?format=json","sponsors.0.bioguideId":"O000175","laws.0.number":"117-124","actions.url":"https://api.congress.gov/v3/bill/118/hr/812/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/812/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-03","sponsors.0.fullName":"Rep. Ogles, Andrew [R-TN-5]","titles.count":3,"cosponsors.count":24,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/812/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":8,"request.congress":"118","actions.count":11,"request.billNumber":"812","sponsors.0.url":"https://api.congress.gov/v3/member/O000175?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/812/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/812/subjects?format=json","title":"Inflation Reduction Act of 2023","cboCostEstimates.0.description":"As passed by the Senate on August 6, 2021.\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57436","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/812/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/812/summaries?format=json","cboCostEstimates.0.title":"S. 812, a bill to direct the Secretary of State to develop a strategy to regain observer status for Taiwan in the World Health Organization, and for other purposes","introducedDate":"2023-02-02","subjects.count":280,"sponsors.0.state":"TN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/812?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. OGLES:\nH.R. 812.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section VIII of the United States Constitution\nThe single subject of this legislation is:\nTo repeal the Inflation Reduction Act of 2022\n[Page H683]\n","sponsors.0.district":5,"sponsors.0.firstName":"Andrew","updateDateIncludingText":"2025-02-04T16:54:13Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8801","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9505","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3220/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"3220","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/3220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3220/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to expand the tropical disease product priority review voucher program to encourage prevention and treatment of coccidioidomycosis.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3220","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3220/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3220/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3220/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3220/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3220/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3220?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8802","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3217/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T16:18:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3217","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3217/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Manifest Modernization Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3217","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3217/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3217/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3217/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3217?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-07-23T16:18:12Z"}}} +{"type":"relationship","id":"8803","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9551","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2715/text?format=json","relatedBills.count":2,"updateDate":"2025-01-24T21:14:37Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2715","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/s/2715/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2715/subjects?format=json","type":"S","title":"Countering Mexican Transnational Criminal Organizations in Cyberspace Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2715","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2715/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2715/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2715/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2715/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2715/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2715?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-24T21:14:37Z"}}} +{"type":"relationship","id":"8804","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9552","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2714/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"2714","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/2714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2714/subjects?format=json","title":"CREATE AI Act of 2024","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 721.","sponsors.0.party":"D","number":"2714","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-09-13","sponsors.0.middleName":"T.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2714/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2714/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2714/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2714/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2714/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":6,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2714?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T18:57:01Z"}}} +{"type":"relationship","id":"8805","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2465/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2465","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/2465/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2465/subjects?format=json","title":"DOULA for VA Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"2465","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2465/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2465/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2465/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2465/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2465/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-07-25","cosponsors.count":5,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2465?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"8806","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9621","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1623/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1623","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1623/committees?format=json","type":"S","title":"Fort Gordon Child Development Center Expansion Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1623","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1623/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1623/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1623/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1623/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1623?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"8807","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9674","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/765/text?format=json","updateDate":"2024-07-03T08:05:47Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Bowman","sponsors.0.isByRequest":"N","request.billNumber":"765","sponsors.0.url":"https://api.congress.gov/v3/member/B001223?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/765/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/765/committees?format=json","policyArea.name":"Arts, Culture, Religion","title":"African American History Act","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"D","number":"765","cosponsors.countIncludingWithdrawnCosponsors":122,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/765/cosponsors?format=json","sponsors.0.bioguideId":"B001223","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/765/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/765/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/765/actions?format=json","latestAction.actionDate":"2023-02-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/765/relatedbills?format=json","sponsors.0.fullName":"Rep. Bowman, Jamaal [D-NY-16]","titles.count":3,"introducedDate":"2023-02-02","cosponsors.count":122,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/765?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 22 (Thursday, February 2, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BOWMAN:\nH.R. 765.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nAfrican American history\n[Page H681]\n","sponsors.0.district":16,"sponsors.0.firstName":"Jamaal","updateDateIncludingText":"2024-07-27T16:27:11Z"}}} +{"type":"relationship","id":"8808","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9798","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/47/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":117,"request.congress":"117","actions.count":6,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"47","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 603.","committees.url":"https://api.congress.gov/v3/bill/117/sconres/47/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/47/subjects?format=json","policyArea.name":"International Affairs","type":"SCONRES","title":"A concurrent resolution commending the bravery, courage, and resolve of the women and men of Iran demonstrating in more than 80 cities and risking their safety to speak out against the Iranian regime's human rights abuses.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 603.","sponsors.0.party":"D","number":"47","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/47/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/47/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/47/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/47/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2022-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/47/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2022-09-29","cosponsors.count":23,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/47?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8809","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9807","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/40/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"40","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 415.","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/40/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/40/committees?format=json","policyArea.name":"Congress","title":"RESTORE Resolution of 2024","type":"SCONRES","latestAction.text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","sponsors.0.party":"R","number":"40","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-06-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/40/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/40/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/40/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/40/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/40/relatedbills?format=json","latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/40?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"8810","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9809","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","latestAction.actionTime":"12:06:52","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z","latestAction_actionTime":"12:06:52"}}} +{"type":"relationship","id":"8811","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9936","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/47/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":117,"request.congress":"117","actions.count":6,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"47","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","committees.url":"https://api.congress.gov/v3/bill/117/sconres/47/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/47/subjects?format=json","policyArea.name":"International Affairs","type":"SCONRES","title":"A concurrent resolution commending the bravery, courage, and resolve of the women and men of Iran demonstrating in more than 80 cities and risking their safety to speak out against the Iranian regime's human rights abuses.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 603.","sponsors.0.party":"D","number":"47","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","latestAction_actionDate":"2021-01-13","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/47/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/47/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/47/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/47/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2022-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/47/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2022-09-29","cosponsors.count":23,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/47?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8812","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9956","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/472/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"472","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and with a preamble by Unanimous Consent. (text of amendment in the nature of a substitute: CR S9754)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/472/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/472/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution expressing the sense of the Senate that the 90th anniversary of the Ukrainian Famine of 1932-1933, known as the Holodomor, should serve as a reminder of repressive Soviet policies against the people of Ukraine, and that Vladimir Putin's brutal and unprovoked war against Ukraine once again threatens the existence of the Ukrainian people, while exacerbating the problems of global hunger.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S5599-5600)","sponsors.0.party":"D","number":"472","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-21","summaries.count":1,"amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/472/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/472/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/472/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/472/actions?format=json","latestAction.actionDate":"2023-11-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/472/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/472/amendments?format=json","titles.count":2,"introducedDate":"2023-11-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/472?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8813","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9995","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/391/text?format=json","updateDate":"2024-07-24T15:22:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Dingell","sponsors.0.isByRequest":"N","request.billNumber":"391","sponsors.0.url":"https://api.congress.gov/v3/member/D000624?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6744-6745)","subjects.url":"https://api.congress.gov/v3/bill/118/hres/391/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/391/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 2023 as \"Arthritis Awareness Month\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"391","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/391/cosponsors?format=json","sponsors.0.bioguideId":"D000624","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/391/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/391/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/391/actions?format=json","latestAction.actionDate":"2023-05-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Dingell, Debbie [D-MI-6]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":4,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/391?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Debbie","updateDateIncludingText":"2024-07-24T15:22:23Z"}}} +{"type":"relationship","id":"8814","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/387/text?format=json","relatedBills.count":2,"updateDate":"2024-11-19T20:40:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"387","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6707)","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/sres/387/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/387/subjects?format=json","type":"SRES","title":"A resolution designating October 12, 2023, as \"National Loggers Day\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4828)","sponsors.0.party":"D","number":"387","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/387/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/387/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/387/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/387/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/387/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":2,"cosponsors.count":3,"introducedDate":"2023-09-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/387?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-11-19T20:40:20Z"}}} +{"type":"relationship","id":"8815","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"10006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/378/text?format=json","relatedBills.count":3,"updateDate":"2024-11-25T13:02:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"378","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S6630; text: CR S6628-6629)","committees.url":"https://api.congress.gov/v3/bill/118/sres/378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/378/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution expressing support for the recognition of the week of September 25 through October 1, 2023, as \"Asian American and Native American Pacific Islander-Serving Institutions Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4763)","sponsors.0.party":"D","number":"378","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/378/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/378/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/378/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/378?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-25T13:02:29Z"}}} +{"type":"relationship","id":"8816","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"10009","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"375","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6591-6592)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/375/committees?format=json","title":"Simplifying Grants Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"375","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/375/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/375/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/375/relatedbills?format=json","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":7,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/375?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8817","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"10011","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/373/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"373","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Referred to the Committee on Energy and Natural Resources. (text: CR S6590)","subjects.url":"https://api.congress.gov/v3/bill/118/s/373/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/373/committees?format=json","policyArea.name":"Energy","title":"RISEE Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 576.","sponsors.0.party":"D","number":"373","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/373/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/373/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/373/relatedbills?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":6,"introducedDate":"2023-02-09","cosponsors.count":26,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/373?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"8818","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"10025","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/99/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"99","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/99/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/99/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","latestAction.text":"Star Print ordered on the reported resolution.","sponsors.0.party":"D","number":"99","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/99/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/99/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/99/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/99/actions?format=json","latestAction.actionDate":"2023-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/99/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":6,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/99?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8819","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9337","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5082/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"5082","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/5082/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/s/5082/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Regulations from the Executive in Need of Scrutiny Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"5082","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5082/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5082/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5082/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5082/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":3,"cosponsors.count":7,"introducedDate":"2024-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5082?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"8820","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9454","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3714/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3714","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3714/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3714/committees?format=json","policyArea.name":"Immigration","title":"GRACE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3714","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2022-02-28","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3714/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3714/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3714/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3714/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3714/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":4,"introducedDate":"2024-01-31","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3714?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2024-07-24T15:19:17Z"}}} +{"type":"relationship","id":"8821","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9507","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3218/text?format=json","updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3218","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3218/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3218/committees?format=json","policyArea.name":"Immigration","title":"NOTICE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3218","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3218/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3218/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"cosponsors.count":3,"introducedDate":"2023-11-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3218?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2024-07-23T16:18:13Z"}}} +{"type":"relationship","id":"8822","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9646","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1348/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"1348","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Select Committee on Intelligence.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1348/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1348/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Wyoming Public Lands Initiative Act of 2023","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1348","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/185?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1348/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1348/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1348/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1348/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1348/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","latestAction.actionTime":"10:13:00","titles.count":5,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1348?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:11:28Z","committeeReports.0.citation":"S. Rept. 118-185"}}} +{"type":"relationship","id":"8823","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"1447","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1139/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"1139","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/hres/1139/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1139/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HRES","title":"Acknowledging April 17, 2024, as the 500th anniversary of the discovery of New York Bay by Giovanni da Verrazzano.","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"R","number":"1139","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-04-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1139/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1139/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1139/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1139/actions?format=json","latestAction.actionDate":"2024-04-12","textVersions.count":1,"sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":2,"introducedDate":"2024-04-12","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/1139?format=json","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8824","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"1550","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/933/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:46Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Malliotakis","sponsors.0.isByRequest":"N","request.billNumber":"933","sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7181-7182)","committees.url":"https://api.congress.gov/v3/bill/118/hr/933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/933/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Senator James L. Buckley Seashore Designation Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"933","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/933/cosponsors?format=json","sponsors.0.bioguideId":"M000317","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/933/relatedbills?format=json","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sres/933?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 27 (Thursday, February 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 933.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle IV, Section 3, Clause 2\nThe single subject of this legislation is:\nThis legislation will name the Staten Island Unit of Gatway\nNational Recreation Area the ``Senator James L. Buckley\nSeashore''\n[Page H828]\n","sponsors.0.district":11,"sponsors.0.firstName":"Nicole","updateDateIncludingText":"2024-07-24T15:23:46Z"}}} +{"type":"relationship","id":"8825","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"8623","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8914/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Malliotakis","bill.latestAction.actionDate":"2022-11-01","cboCostEstimates.0.pubDate":"2024-08-07T17:02:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8914/summaries?format=json","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 729.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8914","bill.cosponsors.countIncludingWithdrawnCosponsors":5,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 151 (Tuesday, September 20, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. BUSH:\nH.R. 8914.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H8010]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8914/cosponsors?format=json","sponsors.0.bioguideId":"M000317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8914/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","bill.sponsors.0.bioguideId":"B001224","bill.actions.count":7,"bill.originChamber":"House","titles.count":4,"cosponsors.count":13,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-894","bill.sponsors.0.fullName":"Rep. Bush, Cori [D-MO-1]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8914/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2025-02-26T23:41:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8914/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":8,"sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","request.billNumber":"8914","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8914/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8914/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"University Accountability Act","bill.title":"Helping Families Heal Act of 2022","bill.number":"8914","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Ways and Means on July 9, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60602","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8914/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/894?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/8914/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8914/summaries?format=json","bill.cosponsors.count":5,"cboCostEstimates.0.title":"H.R. 8914, University Accountability Act","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001224?format=json","introducedDate":"2024-07-02","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Cori","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8914/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8914/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8914?format=json","bill.introducedDate":"2022-09-20","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 110 (Tuesday, July 2, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 8914.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 1: The Congress shall have\nPower To lay and collect Taxes,\nThe single subject of this legislation is:\nTo amend the Internal Revenue Code of 1986 to impose\npenalties with respect to civil rights violations by certain\ntax-exempt educational institutions.\n[Page H4452]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":1,"sponsors.0.firstName":"Nicole","bill.type":"HR","updateDateIncludingText":"2025-02-26T23:41:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8914/text?format=json","bill.sponsors.0.lastName":"Bush"}}} +{"type":"relationship","id":"8826","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"8824","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6923/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Malliotakis","bill.latestAction.actionDate":"2022-03-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6923/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Coast Guard and Maritime Transportation.","bill.summaries.count":1,"sponsors.0.party":"R","number":"6923","bill.cosponsors.countIncludingWithdrawnCosponsors":6,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 39 (Thursday, March 3, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GOMEZ:\nH.R. 6923.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\n[Page H1303]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6923/cosponsors?format=json","sponsors.0.bioguideId":"M000317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6923/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6923/relatedbills?format=json","latestAction.actionDate":"2024-01-19","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","bill.sponsors.0.bioguideId":"G000585","bill.originChamber":"House","bill.actions.count":5,"titles.count":3,"cosponsors.count":6,"bill.latestAction.text":"Referred to the Subcommittee on Highways and Transit.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/6923/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Gomez, Jimmy [D-CA-34]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6923/text?format=json","bill.updateDate":"2025-01-03T07:42:56Z","updateDate":"2024-09-16T13:20:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6923/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","request.billNumber":"6923","committees.url":"https://api.congress.gov/v3/bill/118/hr/6923/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6923/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:42:56Z","title":"States Helping Apprehend Rogue Exports Act","bill.title":"Accelerating Small Business Growth Act","bill.number":"6923","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":6,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6923/committees?format=json","request.format":"json","latestAction_actionDate":"2022-03-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6923/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6923/summaries?format=json","bill.cosponsors.count":6,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/G000585?format=json","introducedDate":"2024-01-09","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":2,"bill.sponsors.0.firstName":"Jimmy","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6923/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6923/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6923?format=json","bill.introducedDate":"2022-03-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 4 (Tuesday, January 9, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 6923.\nCongress has the power to enact this legislation pursuant\nto the following:\nclause 3 of section 8 of article I of the Constitution\nThe single subject of this legislation is:\nTransportation and Public Works\n[Page H13]\n","sponsors.0.district":11,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":34,"sponsors.0.firstName":"Nicole","bill.type":"HR","updateDateIncludingText":"2024-09-16T13:20:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6923/text?format=json","bill.sponsors.0.lastName":"Gomez"}}} +{"type":"relationship","id":"8827","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"8992","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4923/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Malliotakis","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4923/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4923","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SMITH of Missouri:\nH.R. 4923.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4923/cosponsors?format=json","sponsors.0.bioguideId":"M000317","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4923/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4923/relatedbills?format=json","latestAction.actionDate":"2023-07-27","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Malliotakis, Nicole [R-NY-11]","bill.sponsors.0.bioguideId":"S001195","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":3,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4923/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Smith, Jason [R-MO-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4923/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-10-15T11:04:31Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4923/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/M000317?format=json","request.billNumber":"4923","committees.url":"https://api.congress.gov/v3/bill/118/hr/4923/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4923/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"HOV Lanes for Heroes Act","bill.title":"Love America Act of 2021","bill.number":"4923","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":3,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4923/committees?format=json","request.format":"json","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4923/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4923/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001195?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jason","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4923/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4923/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4923?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. MALLIOTAKIS:\nH.R. 4923.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nTo allow certain veterans to use high occupancy vehicle\nlanes, including toll lanes.\n[Page H4032]\n","sponsors.0.district":11,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":8,"sponsors.0.firstName":"Nicole","bill.type":"HR","updateDateIncludingText":"2024-10-15T11:04:31Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4923/text?format=json","bill.sponsors.0.lastName":"Smith"}}} +{"type":"relationship","id":"8835","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"703","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1677/text?format=json","updateDate":"2024-07-24T15:23:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Guthrie","sponsors.0.isByRequest":"N","request.billNumber":"1677","sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1677/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HR","title":"SMART Spectrum Act","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"1677","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1677/cosponsors?format=json","sponsors.0.bioguideId":"G000558","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1677/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1677/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1677/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","titles.count":4,"introducedDate":"2023-03-21","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1677?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 1677.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation would improve federal spectrum management\nby creating a new tool used by the National\nTelecommunications and Information Administration to improve\nthe coordination of federal spectrum and mitigate harmful\ninterference.\n[[Page H1302]]\n[Page H1301]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brett","updateDateIncludingText":"2024-07-24T15:23:15Z"}}} +{"type":"relationship","id":"8836","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"1674","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1677/text?format=json","updateDate":"2024-07-24T15:23:15Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Guthrie","sponsors.0.isByRequest":"N","request.billNumber":"1677","sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1677/subjects?format=json","policyArea.name":"Science, Technology, Communications","title":"SMART Spectrum Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"R","number":"1677","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1677/cosponsors?format=json","sponsors.0.bioguideId":"G000558","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1677/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1677/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1677/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-31","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","titles.count":4,"introducedDate":"2023-03-21","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1677?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 51 (Tuesday, March 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 1677.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nThis legislation would improve federal spectrum management\nby creating a new tool used by the National\nTelecommunications and Information Administration to improve\nthe coordination of federal spectrum and mitigate harmful\ninterference.\n[[Page H1302]]\n[Page H1301]\n","sponsors.0.district":2,"sponsors.0.firstName":"Brett","updateDateIncludingText":"2024-07-24T15:23:15Z"}}} +{"type":"relationship","id":"8837","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"1940","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/17/text?format=json","relatedBills.count":3,"updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Guthrie","sponsors.0.isByRequest":"N","request.billNumber":"17","sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","latestAction_text":"Resolution agreed to in Senate without amendment by Unanimous Consent.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/17/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/17/subjects?format=json","policyArea.name":"Energy","type":"HCONRES","title":"Expressing the sense of Congress that the Federal Government should not impose any restrictions on the export of crude oil or other petroleum products.","latestAction.text":"Reported by the Committee on Energy and Commerce. H. Rept. 118-27.","sponsors.0.party":"R","number":"17","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/27?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/hconres/17/cosponsors?format=json","sponsors.0.bioguideId":"G000558","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/17/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/17/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/17/actions?format=json","latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hconres/17/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","titles.count":2,"introducedDate":"2023-02-17","cosponsors.count":9,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/17?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Brett","updateDateIncludingText":"2025-01-15T18:51:50Z","committeeReports.0.citation":"H. Rept. 118-27"}}} +{"type":"relationship","id":"8838","label":"SPONSORED","start":{"id":"4162","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000558_200.jpg","district":"2","startYear":"2009","name":"Guthrie, Brett","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Kentucky","url":"https://api.congress.gov/v3/member/G000558?format=json","bioguideId":"G000558"}},"end":{"id":"8665","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Guthrie","bill.latestAction.actionDate":"2022-09-29","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9077/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"9077","sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/9077/cosponsors?format=json","sponsors.0.bioguideId":"G000558","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9077/actions?format=json","latestAction.actionDate":"2024-07-22","textVersions.count":1,"bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Guthrie, Brett [R-KY-2]","bill.sponsors.0.bioguideId":"S001208","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":8,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Slotkin, Elissa [D-MI-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9077/text?format=json","bill.updateDate":"2025-01-03T08:02:16Z","updateDate":"2024-09-03T17:33:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9077/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/G000558?format=json","request.billNumber":"9077","committees.url":"https://api.congress.gov/v3/bill/118/hr/9077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9077/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:02:16Z","title":"Fair and Efficient Regulatory Commonsense Act","bill.title":"Canine Members of the Armed Forces Act","bill.number":"9077","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":8,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9077/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9077/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9077/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001208?format=json","introducedDate":"2024-07-22","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Elissa","sponsors.0.state":"KY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9077/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9077/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9077?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 118 (Monday, July 22, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GUTHRIE:\nH.R. 9077.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1 of the U.S. Constitution\nThe single subject of this legislation is:\nThis legislation would remove existing authorities of the\nFederal Energy Regulatory Commission (FERC) to compensate\nindividuals seeking to intervene in Commission proceedings\nand re-designate the Office of Public Participation as a\nDivision under the existing Office of External Affairs\n[Page H4730]\n","bill.introducedDate":"2022-09-29","sponsors.0.district":2,"bill.sponsors.0.state":"MI","bill.sponsors.0.district":8,"sponsors.0.firstName":"Brett","bill.type":"HR","updateDateIncludingText":"2024-09-03T17:33:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9077/text?format=json","bill.sponsors.0.lastName":"Slotkin"}}} +{"type":"relationship","id":"8852","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"740","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1793/text?format=json","updateDate":"2024-07-24T15:21:54Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Self","sponsors.0.isByRequest":"N","request.billNumber":"1793","sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1793/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1793/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"EL CHAPO Act","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"1793","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1793/cosponsors?format=json","sponsors.0.bioguideId":"S001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1793/actions?format=json","latestAction.actionDate":"2023-03-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","titles.count":4,"introducedDate":"2023-03-24","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1793?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 54 (Friday, March 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SELF:\nH.R. 1793.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Seciton 8 of the U.S. Constitution.\nThe single subject of this legislation is:\nTo seize forfeited assets receovered by the United States\nto support border secuirty efforts.\n[Page H1438]\n","sponsors.0.district":3,"sponsors.0.firstName":"Keith","updateDateIncludingText":"2024-07-24T15:21:54Z"}}} +{"type":"relationship","id":"8853","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"834","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/487/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Self","sponsors.0.isByRequest":"N","request.billNumber":"487","sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/hr/487/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/487/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"HR","title":"Ensuring American Voters Act of 2023","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"487","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-01-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/487/cosponsors?format=json","sponsors.0.bioguideId":"S001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/487/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/487/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/487/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/487/relatedbills?format=json","sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/487?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Keith","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"8854","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"1289","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/487/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Self","sponsors.0.isByRequest":"N","request.billNumber":"487","sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/hr/487/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/487/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Ensuring American Voters Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on House Administration.","sponsors.0.party":"R","number":"487","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/487/cosponsors?format=json","sponsors.0.bioguideId":"S001224","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/487/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/487/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/487/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/487/relatedbills?format=json","sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":4,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/487?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Keith","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"8855","label":"SPONSORED","start":{"id":"4053","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001224_200.jpg","district":"3","startYear":"2023","name":"Self, Keith","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/S001224?format=json","bioguideId":"S001224"}},"end":{"id":"8633","labels":["Bill"],"properties":{"relatedBills.count":4,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8870/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Self","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Transportation and Public Works","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8870/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Highways and Transit.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"8870","bill.cosponsors.countIncludingWithdrawnCosponsors":11,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 149 (Thursday, September 15, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TIFFANY:\nH.R. 8870.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, of the United States Constitution\n[Page H7883]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8870/cosponsors?format=json","sponsors.0.bioguideId":"S001224","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8870/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8870/relatedbills?format=json","latestAction.actionDate":"2024-06-28","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Self, Keith [R-TX-3]","bill.sponsors.0.bioguideId":"T000165","bill.originChamber":"House","bill.actions.count":6,"titles.count":2,"cosponsors.count":11,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8870/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Tiffany, Thomas P. [R-WI-7]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8870/text?format=json","bill.updateDate":"2025-01-03T07:59:42Z","updateDate":"2024-11-18T14:48:54Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8870/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/S001224?format=json","request.billNumber":"8870","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8870/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/8870/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:59:42Z","title":"To rename the portion of United States Highway 75 between President George Bush Turnpike and United States Highway 380 as the \"U.S. Congressman and Prisoner of War Sam Johnson Memorial Highway\".","bill.title":"Combating Violent and Dangerous Crime Act","bill.number":"8870","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":11,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8870/committees?format=json","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8870/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8870/summaries?format=json","bill.cosponsors.count":11,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/T000165?format=json","introducedDate":"2024-06-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Thomas","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8870/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8870/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8870?format=json","bill.introducedDate":"2022-09-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 108 (Thursday, June 27, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. SELF:\nH.R. 8870\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the US Constitution\nThe single subject of this legislation is:\nHighway renaming\n[Page H4411]\n","sponsors.0.district":3,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":7,"sponsors.0.firstName":"Keith","bill.type":"HR","updateDateIncludingText":"2024-11-18T14:48:54Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8870/text?format=json","bill.sponsors.0.lastName":"Tiffany"}}} +{"type":"relationship","id":"8858","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10041","labels":["Order"],"properties":{"date_enacted":"2025-02-14","date_repealed":"None","description":"nan","id":"EO 14214","title":"Keeping Education Accessible and Ending COVID-19 Vaccine Mandates in Schools","url":"https://www.federalregister.gov/d/2025-02931"}}} +{"type":"relationship","id":"8859","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10066","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14189","title":"Celebrating Americas 250th Birthday","url":"https://www.federalregister.gov/d/2025-02231"}}} +{"type":"relationship","id":"8860","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10091","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14164","title":"Restoring the Death Penalty and Protecting Public Safety","url":"https://www.federalregister.gov/d/2025-02012"}}} +{"type":"relationship","id":"8884","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10042","labels":["Order"],"properties":{"date_enacted":"2025-02-14","date_repealed":"None","description":"nan","id":"EO 14213","title":"Establishing the National Energy Dominance Council","url":"https://www.federalregister.gov/d/2025-02928"}}} +{"type":"relationship","id":"8885","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10067","labels":["Order"],"properties":{"date_enacted":"2025-01-29","date_repealed":"None","description":"nan","id":"EO 14188","title":"Additional Measures To Combat Anti-Semitism","url":"https://www.federalregister.gov/d/2025-02230"}}} +{"type":"relationship","id":"8886","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10092","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14163","title":"Realigning the United States Refugee Admissions Program","url":"https://www.federalregister.gov/d/2025-02011"}}} +{"type":"relationship","id":"8922","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9345","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Bennet","cboCostEstimates.0.pubDate":"2022-11-21T17:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"An errata sheet on written report No. 117-187 was printed.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3450","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3450/cosponsors?format=json","sponsors.0.bioguideId":"B001267","actions.url":"https://api.congress.gov/v3/bill/118/s/3450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3450/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-187,Errata","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3450/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"committeeReports.1.citation":"S. Rept. 117-187","request.billNumber":"3450","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3450/subjects?format=json","title":"Mental and Physical Health Care Comorbidities Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58823","request.format":"json","latestAction_actionDate":"2022-11-07","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/187?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3450/summaries?format=json","cboCostEstimates.0.title":"S. 3450, Sun River Hydropower Authorization Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/117/SRPT/187?format=json","introducedDate":"2023-12-07","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3450?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"8923","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9362","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4283/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Casey","sponsors.0.isByRequest":"N","request.billNumber":"4283","sponsors.0.url":"https://api.congress.gov/v3/member/C001070?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4283/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4283/committees?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Alternatives to Guardianship Education Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4283","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4283/cosponsors?format=json","sponsors.0.bioguideId":"C001070","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4283/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4283/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4283/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4283/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-08","sponsors.0.fullName":"Sen. Casey, Robert P., Jr. [D-PA]","titles.count":3,"cosponsors.count":5,"introducedDate":"2024-05-08","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4283?format=json","sponsors.0.firstName":"Bob","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8924","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9512","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3214/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"3214","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3214/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3214/committees?format=json","policyArea.name":"Education","type":"S","title":"Counseling Not Criminalization in Schools Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3214","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3214/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3214/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3214/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3214?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8925","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9626","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1618/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1618","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1618/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1618/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Employee Equity Investment Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"1618","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1618/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1618/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1618/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1618/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1618/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1618?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"8926","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9800","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/117/sconres/49/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":117,"request.congress":"117","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"49","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6786-6787)","subjects.url":"https://api.congress.gov/v3/bill/117/sconres/49/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sconres/49/committees?format=json","policyArea.name":"International Affairs","type":"SCONRES","title":"A concurrent resolution expressing support for the Geneva Consensus Declaration on Promoting Women's Health and Strengthening the Family and urging that the United States be added as a signatory.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S6786-6787)","sponsors.0.party":"R","number":"49","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/49/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/117/sconres/49/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/49/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/117/sconres/49/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2022-11-17","relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/49/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2022-11-17","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/49?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"8927","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9346","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2022-08-30T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 537.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5751-5761)","sponsors.0.party":"D","number":"3404","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3404/cosponsors?format=json","sponsors.0.bioguideId":"D000563","actions.url":"https://api.congress.gov/v3/bill/118/s/3404/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3404/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-186","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3404/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3404","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3404/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3404/committees?format=json","title":"Student Loan Borrower Bill of Rights","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58440","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/186?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3404/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3404/summaries?format=json","cboCostEstimates.0.title":"S. 3404, a bill to provide the consent of Congress to an amendment to the Constitution of the State of New Mexico","introducedDate":"2023-12-05","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3404?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"8936","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"782","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1122/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:37Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Emmer","sponsors.0.isByRequest":"N","request.billNumber":"1122","sponsors.0.url":"https://api.congress.gov/v3/member/E000294?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1122/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"HR","title":"CBDC Anti-Surveillance State Act","latestAction.text":"Referred to the House Committee on Financial Services.","sponsors.0.party":"R","number":"1122","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1122/cosponsors?format=json","sponsors.0.bioguideId":"E000294","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1122/actions?format=json","latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Rep. Emmer, Tom [R-MN-6]","titles.count":3,"introducedDate":"2023-02-21","cosponsors.count":46,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/1122?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. EMMER:\nH.R. 1122.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nThis bill concerns central bank digital currencies.\n[Page H867]\n","sponsors.0.district":6,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:37Z"}}} +{"type":"relationship","id":"8953","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"791","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/726/text?format=json","updateDate":"2025-03-14T13:55:59Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"726","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/726/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/726/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Veterans for Mustangs Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"726","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2023-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/726/cosponsors?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/726/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/726/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/726/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":3,"introducedDate":"2023-02-01","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/726?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 21 (Wednesday, February 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 726.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nTo amend the Wild Free-Roaming Horses and Burros Act to\ndirect the Secretary of the Interior to implement fertility\ncontrols to manage populations of wild free-roaming horses\nand burros.\n[Page H630]\n","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-03-14T13:55:59Z"}}} +{"type":"relationship","id":"8954","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"941","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4927/text?format=json","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","committees.count":3,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"4927","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 469.","committees.url":"https://api.congress.gov/v3/bill/118/hr/4927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4927/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"ACES Act of 2023","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","sponsors.0.party":"R","number":"4927","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4927/cosponsors?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/4927/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4927/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/4927/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":4,"introducedDate":"2023-07-26","cosponsors.count":12,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/4927?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 4927.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nCFIUS overseeing the sale of ByteDance's TikTok and the\ndestruction of ByteDance's American data.\n[Page H4032]\n","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-16T11:48:07Z"}}} +{"type":"relationship","id":"8955","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"1706","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1311/text?format=json","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"1311","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Referred to the House Committee on Transportation and Infrastructure.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1311/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1311/subjects?format=json","policyArea.name":"Education","type":"HR","title":"College Cost Transparency and Student Protection Act","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","number":"1311","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1311/cosponsors?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1311/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1311/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1311/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1311?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to direct the\nSecretary of Education to publish requirements for financial\naid offers to be provided by institutions of higher education\nto enrolled and prospective students.\n[Page H1052]\n","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z"}}} +{"type":"relationship","id":"8956","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"8890","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6057/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClain","bill.latestAction.actionDate":"2021-11-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"International Affairs","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6057/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Foreign Affairs.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"S.","number":"6057","bill.cosponsors.countIncludingWithdrawnCosponsors":9,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 202 (Friday, November 19, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BEYER:\nH.R. 6057.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H6670]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6057/cosponsors?format=json","sponsors.0.bioguideId":"M001136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6057/actions?format=json","latestAction.actionDate":"2023-10-25","textVersions.count":1,"bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.sponsors.0.bioguideId":"B001292","bill.originChamber":"House","bill.actions.count":3,"titles.count":3,"cosponsors.count":10,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Beyer, Donald S., Jr. [D-VA-8]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6057/text?format=json","bill.updateDate":"2025-01-03T07:35:51Z","updateDate":"2024-07-24T15:20:05Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6057/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","request.billNumber":"6057","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6057/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6057/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:35:51Z","title":"Iran Nuclear Verification Act","bill.title":"Tax Simplification for Americans Abroad Act","bill.number":"6057","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":10,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6057/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-11-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6057/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6057/summaries?format=json","bill.cosponsors.count":9,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001292?format=json","introducedDate":"2023-10-25","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"MI","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6057/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6057/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6057?format=json","bill.introducedDate":"2021-11-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 176 (Wednesday, October 25, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 6057.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\nThe single subject of this legislation is:\nThis legislation is solely for preventing the US from\nreestablishing the JCPOA without Iran allowing UN nuclear\ninspectors from inspecting and confirming that Iran is in\n100% compliance with the JCPOA.\n[Page H5107]\n","sponsors.0.district":9,"bill.sponsors.0.state":"VA","bill.sponsors.0.district":8,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:20:05Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6057/text?format=json","bill.sponsors.0.lastName":"Beyer"}}} +{"type":"relationship","id":"8957","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"8937","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.cboCostEstimates.0.title":"H.R. 1311, Energy Diplomacy Act","sponsors.0.lastName":"McClain","cboCostEstimates.0.pubDate":"2022-01-18T16:00:00Z","sponsors.0.isByRequest":"N","policyArea.name":"Education","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1311/summaries?format=json","type":"HR","bill.summaries.count":1,"number":"1311","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"sponsors.0.bioguideId":"M001136","bill.subjects.count":11,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1311/relatedbills?format=json","bill.policyArea.name":"International Affairs","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.originChamber":"House","bill.latestAction.text":"Ordered to be Reported by Voice Vote.","request.contentType":"application/json","bill.cboCostEstimates.0.pubDate":"2022-01-18T16:00:00Z","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1311/relatedbills?format=json","bill.congress":117,"updateDate":"2025-02-04T16:28:27Z","committees.count":1,"request.billNumber":"1311","committees.url":"https://api.congress.gov/v3/bill/118/hr/1311/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:48:12Z","bill.number":"1311","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-09-30","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1311/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1311/summaries?format=json","cboCostEstimates.0.title":"H.R. 1311, Energy Diplomacy Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000048?format=json","introducedDate":"2023-03-01","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"August","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1311/actions?format=json","url":"https://api.congress.gov/v3/bill/117/hr/1311?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 39 (Wednesday, March 1, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo amend the Higher Education Act of 1965 to direct the\nSecretary of Education to publish requirements for financial\naid offers to be provided by institutions of higher education\nto enrolled and prospective students.\n[Page H1052]\n","bill.sponsors.0.district":11,"bill.type":"HR","bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1311/cosponsors?format=json","bill.textVersions.count":1,"bill.latestAction.actionDate":"2021-09-30","latestAction_text":"Ordered to be Reported by Voice Vote.","latestAction.text":"Referred to the House Committee on Education and the Workforce.","sponsors.0.party":"R","bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 35 (Wednesday, February 24, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PFLUGER:\nH.R. 1311.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\n[Page H618]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1311/cosponsors?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1311/actions?format=json","textVersions.count":1,"bill.sponsors.0.bioguideId":"P000048","bill.cboCostEstimates.0.description":"As ordered reported by the House Committee on Foreign Affairs on September 30, 2021\n","bill.actions.count":5,"titles.count":3,"cosponsors.count":2,"bill.sponsors.0.fullName":"Rep. Pfluger, August [R-TX-11]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1311/text?format=json","bill.updateDate":"2025-01-03T04:48:12Z","cboCostEstimates":[],"originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1311/subjects?format=json","request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1311/subjects?format=json","title":"College Cost Transparency and Student Protection Act","bill.title":"Energy Diplomacy Act","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57738","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1311/committees?format=json","request.billType":"hr","bill.cosponsors.count":3,"bill.sponsors.0.party":"R","bill.originChamberCode":"H","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1311/titles?format=json","originChamberCode":"H","bill.introducedDate":"2021-02-24","sponsors.0.district":9,"bill.sponsors.0.state":"TX","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1311/text?format=json","bill.cboCostEstimates.0.url":"https://www.cbo.gov/publication/57738","bill.sponsors.0.lastName":"Pfluger"}}} +{"type":"relationship","id":"8958","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"8982","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4927/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"McClain","bill.latestAction.actionDate":"2021-08-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Aviation.","policyArea.name":"Foreign Trade and International Finance","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4927/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Innovation, Data, and Commerce.","bill.summaries.count":1,"sponsors.0.party":"R","number":"4927","bill.cosponsors.countIncludingWithdrawnCosponsors":13,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 138 (Tuesday, August 3, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. SPEIER:\nH.R. 4927.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article 1, Section 8 of the United States\nConstitution.\n[Page H4313]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4927/cosponsors?format=json","sponsors.0.bioguideId":"M001136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4927/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"bill.policyArea.name":"Transportation and Public Works","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","bill.sponsors.0.bioguideId":"S001175","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":12,"bill.latestAction.text":"Referred to the Subcommittee on Aviation.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Speier, Jackie [D-CA-14]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4927/text?format=json","bill.updateDate":"2025-01-03T07:25:36Z","updateDate":"2025-01-16T11:48:07Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4927/subjects?format=json","committees.count":3,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","request.billNumber":"4927","committees.url":"https://api.congress.gov/v3/bill/118/hr/4927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4927/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:25:36Z","title":"ACES Act of 2023","bill.title":"NOTIFIED Act","bill.number":"4927","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4927/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-08-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4927/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4927/summaries?format=json","bill.cosponsors.count":13,"bill.titles.count":4,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/S001175?format=json","introducedDate":"2023-07-26","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jackie","sponsors.0.state":"MI","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4927/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4927/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4927?format=json","bill.introducedDate":"2021-08-03","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 129 (Wednesday, July 26, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. McCLAIN:\nH.R. 4927.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nCFIUS overseeing the sale of ByteDance's TikTok and the\ndestruction of ByteDance's American data.\n[Page H4032]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":14,"sponsors.0.firstName":"Lisa","bill.type":"HR","updateDateIncludingText":"2025-01-16T11:48:07Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4927/text?format=json","bill.sponsors.0.lastName":"Speier"}}} +{"type":"relationship","id":"8959","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"9835","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1275/text?format=json","updateDate":"2024-09-10T20:12:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","request.billNumber":"1275","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 134.","committees.url":"https://api.congress.gov/v3/bill/117/hres/1275/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1275/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Electing Members to certain standing committees of the House of Representatives.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"1275","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-29","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/528?format=json","sponsors.0.bioguideId":"M001136","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1275/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1275/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1275/actions?format=json","latestAction.actionDate":"2024-06-04","textVersions.count":1,"sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","latestAction.actionTime":"16:46:28","titles.count":2,"introducedDate":"2024-06-04","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1275?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2024-09-10T20:12:00Z","committeeReports.0.citation":"H. Rept. 117-528"}}} +{"type":"relationship","id":"8960","label":"SPONSORED","start":{"id":"4137","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg","startYear":"2021","partyName":"Republican","name":"McClain, Lisa C.","attribution":"Image courtesy of the Member","state":"Michigan","url":"https://api.congress.gov/v3/member/M001136?format=json","bioguideId":"M001136"}},"end":{"id":"9848","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"McClain","sponsors.0.isByRequest":"N","latestAction_text":"Placed on the House Calendar, Calendar No. 130.","policyArea.name":"Health","type":"HRES","latestAction.text":"Referred to the House Committee on Energy and Commerce.","sponsors.0.party":"R","number":"1283","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1283/cosponsors?format=json","sponsors.0.bioguideId":"M001136","actions.url":"https://api.congress.gov/v3/bill/118/hres/1283/actions?format=json","latestAction.actionDate":"2024-06-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1283/relatedbills?format=json","sponsors.0.fullName":"Rep. McClain, Lisa C. [R-MI-9]","titles.count":2,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 117-523","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1283/text?format=json","updateDate":"2024-11-18T14:09:42Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1283","sponsors.0.url":"https://api.congress.gov/v3/member/M001136?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1283/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1283/committees?format=json","title":"Supporting the designation of June 6, 2024, as National Naloxone Awareness Day.","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-09-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/523?format=json","summaries.count":1,"request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1283/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1283/summaries?format=json","introducedDate":"2024-06-07","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1283?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Lisa","updateDateIncludingText":"2024-11-18T14:09:42Z"}}} +{"type":"relationship","id":"8961","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"799","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/172/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"172","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Subcommittee on Federal Lands.","committees.url":"https://api.congress.gov/v3/bill/118/hr/172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/172/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Acre In, Acre Out Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"172","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-02-21","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/172/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/172/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/172/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\n[Pages H111-H112]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 172.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H112]]\nArticle I, Section 8 of the United States Consitution.\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2025-01-24T18:06:37Z"}}} +{"type":"relationship","id":"8962","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"844","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/168/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"168","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/168/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend chapter 44 of title 18, United States Code, to more comprehensively address the interstate transportation of firearms or ammunition.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/168/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/168/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"8963","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9355","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3441/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"3441","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Housing, Transportation, and Community Development. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3441/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3441/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Terrorist Financing Prevention Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"3441","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3441/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3441/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3441/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3441/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3441/relatedbills?format=json","latestAction.actionDate":"2024-02-08","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":3,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3441?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:24:11Z"}}} +{"type":"relationship","id":"8964","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9419","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4219/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4219","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4219/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4219/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Future Farmers and Ranchers of Tomorrow Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4219","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4219/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4219/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4219/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"cosponsors.count":2,"introducedDate":"2024-05-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4219?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"8965","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9618","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1626/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1626","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/1626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1626/subjects?format=json","title":"ASK Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1626","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1626/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1626/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1626/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1626?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"8966","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9968","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/866/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Connolly","sponsors.0.isByRequest":"N","request.billNumber":"866","sponsors.0.url":"https://api.congress.gov/v3/member/C001078?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7083-7084; text: CR S7073-7074)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/hr/866/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/866/committees?format=json","title":"Equal COLA Act","type":"HR","latestAction.text":"Referred to the House Committee on Oversight and Accountability.","sponsors.0.party":"D","number":"866","cosponsors.countIncludingWithdrawnCosponsors":95,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/866/cosponsors?format=json","sponsors.0.bioguideId":"C001078","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/866/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/866/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/866/actions?format=json","latestAction.actionDate":"2023-02-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/866/relatedbills?format=json","sponsors.0.fullName":"Rep. Connolly, Gerald E. [D-VA-11]","titles.count":3,"introducedDate":"2023-02-08","cosponsors.count":95,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/866?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 26 (Wednesday, February 8, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CONNOLLY:\nH.R. 866.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFederal retirement benefits\n[Page H781]\n","sponsors.0.district":11,"sponsors.0.firstName":"Gerald","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"8967","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"9356","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4892/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"4892","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4892/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4892/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"The First Responders Wellness Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4892","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4892/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4892/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4892/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4892/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4892?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"8968","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"9498","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1838/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"1838","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1838/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1838/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Credit Card Competition Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S2007-2008)","sponsors.0.party":"D","number":"1838","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-11-17","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1838/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1838/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1838/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1838/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1838/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-06-07","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1838?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"8969","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"9638","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/578/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","congress":118,"committees.count":1,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rubio","sponsors.0.isByRequest":"N","request.billNumber":"578","sponsors.0.url":"https://api.congress.gov/v3/member/R000595?format=json","latestAction_text":"Became Public Law No: 117-11.","policyArea.name":"Housing and Community Development","subjects.url":"https://api.congress.gov/v3/bill/118/s/578/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/578/committees?format=json","title":"Liberty City Rising Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"578","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/578/cosponsors?format=json","sponsors.0.bioguideId":"R000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/578/titles?format=json","laws.0.number":"117-11","summaries.url":"https://api.congress.gov/v3/bill/118/s/578/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/578/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/578/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Sen. Rubio, Marco [R-FL]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":8,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/578?format=json","sponsors.0.firstName":"Marco","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"8970","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"9967","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/868/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"868","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7084; text: CR S7074-7075)","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/868/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/868/committees?format=json","title":"Defending Our Defenders Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"868","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/868/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/868/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/868/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/868/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/868/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":13,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/868?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:18Z"}}} +{"type":"relationship","id":"8971","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"845","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/173/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:04Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"173","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/173/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/173/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Home Defense and Competitive Shooting Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"173","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/173/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/173/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/173/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/173/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/173/relatedbills?format=json","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hr/173?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 173.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H112]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-06-12T18:21:04Z"}}} +{"type":"relationship","id":"8972","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1314","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/171/text?format=json","relatedBills.count":6,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"171","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/171/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/171/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"HALT Fentanyl Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"171","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/171/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/171/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/171/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/171/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/171/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/171?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 171.\nCongress has the power to enace this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"8973","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1316","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/173/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:04Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"173","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/hr/173/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/173/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Home Defense and Competitive Shooting Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"173","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/173/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/173/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/173/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/173/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/173/relatedbills?format=json","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/173?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 173.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H112]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-06-12T18:21:04Z"}}} +{"type":"relationship","id":"8974","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1318","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/172/text?format=json","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"172","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/hr/172/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/172/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"HR","title":"Acre In, Acre Out Act","latestAction.text":"Referred to the Subcommittee on Federal Lands.","sponsors.0.party":"R","number":"172","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/172/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/172/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/172/actions?format=json","latestAction.actionDate":"2023-02-21","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/s/172?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\n[Pages H111-H112]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 172.\nCongress has the power to enact this legislation pursuant\nto the following:\n[[Page H112]]\nArticle I, Section 8 of the United States Consitution.\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2025-01-24T18:06:37Z"}}} +{"type":"relationship","id":"8975","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/171/text?format=json","relatedBills.count":6,"updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"171","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Subcommittee on Highways and Transit.","committees.url":"https://api.congress.gov/v3/bill/118/hr/171/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/171/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"HALT Fentanyl Act","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"171","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/171/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/171/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/171/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/171/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/171/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-20","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":4,"introducedDate":"2023-01-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/171?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 171.\nCongress has the power to enace this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"8976","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1793","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/173/text?format=json","relatedBills.count":1,"updateDate":"2024-06-12T18:21:04Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"173","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/hr/173/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/173/subjects?format=json","policyArea.name":"Taxation","type":"HR","title":"Home Defense and Competitive Shooting Act of 2023","latestAction.text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"173","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/173/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/173/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/173/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/173/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/173/relatedbills?format=json","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/173?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 173.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H112]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-06-12T18:21:04Z"}}} +{"type":"relationship","id":"8977","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1798","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/168/text?format=json","updateDate":"2024-07-24T15:24:11Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"168","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Committee on Agriculture, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/168/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/168/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"To amend chapter 44 of title 18, United States Code, to more comprehensively address the interstate transportation of firearms or ammunition.","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/168/cosponsors?format=json","sponsors.0.bioguideId":"G000568","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/168/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/168/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":2,"introducedDate":"2023-01-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/168?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 168.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\n[Page H111]\n","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:11Z"}}} +{"type":"relationship","id":"8978","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/6/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"6","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the House Committee on Rules.","committees.url":"https://api.congress.gov/v3/bill/118/hconres/6/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/6/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Reclaiming Congress’s Constitutional Mandate in Trade Resolution","latestAction.text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-28","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/6/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/6/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/6/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hconres/6?format=json","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:14Z"}}} +{"type":"relationship","id":"8979","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"1963","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hconres/6/text?format=json","updateDate":"2024-07-24T15:24:14Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Griffith","sponsors.0.isByRequest":"N","request.billNumber":"6","sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S374)","committees.url":"https://api.congress.gov/v3/bill/118/hconres/6/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hconres/6/subjects?format=json","policyArea.name":"Congress","type":"HCONRES","title":"Reclaiming Congress’s Constitutional Mandate in Trade Resolution","latestAction.text":"Referred to the Committee on Rules, and in addition to the Committee on Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"R","number":"6","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2025-01-24","summaries.count":1,"sponsors.0.bioguideId":"G000568","request.billType":"hconres","titles.url":"https://api.congress.gov/v3/bill/118/hconres/6/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hconres/6/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hconres/6/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","titles.count":3,"introducedDate":"2023-01-09","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sconres/6?format=json","sponsors.0.district":9,"sponsors.0.firstName":"H.","updateDateIncludingText":"2024-07-24T15:24:14Z"}}} +{"type":"relationship","id":"8980","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"8950","labels":["Bill"],"properties":{"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Griffith","bill.latestAction.actionDate":"2021-09-29","cboCostEstimates.0.pubDate":"2024-03-13T21:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/5393/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"M.","number":"5393","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 169 (Tuesday, September 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PAYNE:\nH.R. 5393.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8 Clause 3--Congress has the ability to\nregulate Commerce with foreign Nations, and among the several\nStates, and with the Indian Tribes.\n[Page H5506]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/5393/cosponsors?format=json","sponsors.0.bioguideId":"G000568","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/5393/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","bill.sponsors.0.bioguideId":"P000604","bill.originChamber":"House","bill.actions.count":4,"titles.count":2,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Communications and Technology.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Payne, Donald M., Jr. [D-NJ-10]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/5393/text?format=json","bill.updateDate":"2025-01-03T07:30:05Z","updateDate":"2025-01-23T08:06:12Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/5393/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","request.billNumber":"5393","subjects.url":"https://api.congress.gov/v3/bill/118/hr/5393/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/5393/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:30:05Z","title":"To amend title XVIII of the Social Security Act to ensure fair assessment of pharmacy performance and quality under Medicare part D, and for other purposes.","bill.title":"Eliminating Local News Deserts Act of 2021","bill.number":"5393","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As ordered reported by the House Committee on Energy and Commerce on December 6, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60103","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/5393/committees?format=json","request.format":"json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2021-09-29","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/5393/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/5393/summaries?format=json","cboCostEstimates.0.title":"H.R. 5393, a bill to amend title XVIII of the Social Security Act to ensure fair assessment of pharmacy performance and quality under Medicare Part D, and for other purposes","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/P000604?format=json","introducedDate":"2023-09-12","bill.originChamberCode":"H","subjects.count":8,"bill.committees.count":1,"bill.sponsors.0.firstName":"Donald","sponsors.0.state":"VA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/5393/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/5393/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/5393?format=json","bill.introducedDate":"2021-09-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 147 (Tuesday, September 12, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 5393.\nCongress has the power to enact this legislation pursuant\nto the following:\nThis bill is enacted pursuant to the power granted to\nCongress under Article I, Section 8 of the United States\nConstitution\nThe single subject of this legislation is:\nTo amend title XVIII of the Social Security Act to ensure\nfair assessment of pharmacy performance and quality under\nMedicare part D\n[Page H4264]\n","sponsors.0.district":9,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":10,"sponsors.0.firstName":"H.","bill.type":"HR","updateDateIncludingText":"2025-01-23T08:06:12Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/5393/text?format=json","bill.sponsors.0.lastName":"Payne"}}} +{"type":"relationship","id":"8981","label":"SPONSORED","start":{"id":"4067","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/g000568_200.jpg","startYear":"2011","partyName":"Republican","name":"Griffith, H. Morgan","attribution":"Image courtesy of the Member","state":"Virginia","url":"https://api.congress.gov/v3/member/G000568?format=json","bioguideId":"G000568"}},"end":{"id":"9097","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3295/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Griffith","bill.latestAction.actionDate":"2021-05-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Science, Technology, Communications","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3295/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","bill.summaries.count":1,"sponsors.0.party":"R","number":"3295","bill.cosponsors.countIncludingWithdrawnCosponsors":12,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 86 (Tuesday, May 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BANKS:\nH.R. 3295.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\n[Page H2541]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3295/cosponsors?format=json","sponsors.0.bioguideId":"G000568","bill.subjects.count":10,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3295/actions?format=json","latestAction.actionDate":"2023-05-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3295/relatedbills?format=json","bill.policyArea.name":"Government Operations and Politics","sponsors.0.fullName":"Rep. Griffith, H. Morgan [R-VA-9]","bill.sponsors.0.bioguideId":"B001299","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":12,"bill.latestAction.text":"Referred to the House Committee on Oversight and Reform.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3295/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Banks, Jim [R-IN-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3295/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2024-07-24T15:22:08Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3295/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/G000568?format=json","request.billNumber":"3295","committees.url":"https://api.congress.gov/v3/bill/118/hr/3295/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3295/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"BROADBAND Leadership Act","bill.title":"Prohibiting TSP Investment in China Act","bill.number":"3295","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3295/committees?format=json","sponsors.0.middleName":"Morgan","latestAction_actionDate":"2021-05-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3295/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/3295/summaries?format=json","bill.cosponsors.count":12,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001299?format=json","introducedDate":"2023-05-15","bill.originChamberCode":"H","subjects.count":11,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jim","sponsors.0.state":"VA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3295/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3295/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3295?format=json","bill.introducedDate":"2021-05-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 81 (Monday, May 15, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. GRIFFITH:\nH.R. 3295\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nTo expedite broadband deployment by streamlining permitting\nreviews\n[Page H2348]\n","sponsors.0.district":9,"bill.sponsors.0.state":"IN","bill.sponsors.0.district":3,"sponsors.0.firstName":"H.","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:08Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3295/text?format=json","bill.sponsors.0.lastName":"Banks"}}} +{"type":"relationship","id":"8996","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10043","labels":["Order"],"properties":{"date_enacted":"2025-02-13","date_repealed":"None","description":"nan","id":"EO 14212","title":"Establishing the Presidents Make America Healthy Again Commission","url":"https://www.federalregister.gov/d/2025-02871"}}} +{"type":"relationship","id":"8997","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10068","labels":["Order"],"properties":{"date_enacted":"2025-01-28","date_repealed":"None","description":"nan","id":"EO 14187","title":"Protecting Children From Chemical and Surgical Mutilation","url":"https://www.federalregister.gov/d/2025-02194"}}} +{"type":"relationship","id":"8998","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10093","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14162","title":"Putting America First in International Environmental Agreements","url":"https://www.federalregister.gov/d/2025-02010"}}} +{"type":"relationship","id":"9022","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10044","labels":["Order"],"properties":{"date_enacted":"2025-02-12","date_repealed":"None","description":"nan","id":"EO 14211","title":"One Voice for Americas Foreign Relations","url":"https://www.federalregister.gov/d/2025-02841"}}} +{"type":"relationship","id":"9023","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10069","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14186","title":"The Iron Dome for America ","url":"https://www.federalregister.gov/d/2025-02182"}}} +{"type":"relationship","id":"9024","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10094","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14161","title":"Protecting the United States From Foreign Terrorists and Other National Security and Public Safety Threats","url":"https://www.federalregister.gov/d/2025-02009"}}} +{"type":"relationship","id":"9053","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9364","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4883/text?format=json","updateDate":"2025-01-14T19:06:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"4883","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S4823)","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/4883/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4883/subjects?format=json","type":"S","title":"Unmasking Networks of Virtual Election Interference and Lies Act of 2024","latestAction.text":"Read twice and referred to the Select Committee on Intelligence.","sponsors.0.party":"R","number":"4883","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-09-19","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4883/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4883/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4883/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4883?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:06:24Z"}}} +{"type":"relationship","id":"9054","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9408","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/4434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4434/subjects?format=json","type":"S","title":"Modernizing Retrospective Regulatory Review Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4434","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4434/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4434/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9055","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9428","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4209/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"4209","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (Sponsor introductory remarks on measure: CR S2495)","committees.url":"https://api.congress.gov/v3/bill/118/s/4209/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4209/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Katahdin Woods and Waters National Monument Access Act","latestAction.text":"Held at the desk.","sponsors.0.party":"I","number":"4209","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4209/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4209/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4209/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4209/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","latestAction.actionTime":"18:05:40","titles.count":5,"introducedDate":"2024-04-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4209?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9056","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9584","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2186/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"2186","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","subjects.url":"https://api.congress.gov/v3/bill/118/s/2186/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2186/committees?format=json","type":"S","title":"Improving Access to Transfusion Care for Hospice Patients Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2186","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2186/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2186/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2186/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2186/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2186/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2186?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2024-07-24T15:21:23Z"}}} +{"type":"relationship","id":"9057","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9627","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1611/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1611","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services. (Sponsor introductory remarks on measure: CR S2525)","subjects.url":"https://api.congress.gov/v3/bill/118/s/1611/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1611/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Community Connect Grant Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1611","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1611/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1611/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1611/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1611?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9091","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10045","labels":["Order"],"properties":{"date_enacted":"2025-02-11","date_repealed":"None","description":"nan","id":"EO 14210","title":"Implementing the Presidents \"Department of Government Efficiency\" Workforce Optimization Initiative","url":"https://www.federalregister.gov/d/2025-02762"}}} +{"type":"relationship","id":"9092","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10070","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14185","title":"Restoring Americas Fighting Force","url":"https://www.federalregister.gov/d/2025-02181"}}} +{"type":"relationship","id":"9093","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10095","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14160","title":"Protecting the Meaning and Value of American Citizenship","url":"https://www.federalregister.gov/d/2025-02007"}}} +{"type":"relationship","id":"9095","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"860","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5319/text?format=json","relatedBills.count":2,"updateDate":"2025-02-21T19:41:15Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"5319","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Star Print ordered on the reported bill.","committees.url":"https://api.congress.gov/v3/bill/118/s/5319/committees?format=json","type":"S","title":"DHS Intelligence and Analysis Oversight and Transparency Act","latestAction.text":"Star Print ordered on the reported bill.","sponsors.0.party":"D","number":"5319","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/330?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5319/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5319/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5319/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2025-01-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5319/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"introducedDate":"2024-11-14","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5319?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-21T19:41:15Z","committeeReports.0.citation":"S. Rept. 118-330"}}} +{"type":"relationship","id":"9096","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"862","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2181/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":26,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2181","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Became Public Law No: 118-271.","committees.url":"https://api.congress.gov/v3/bill/118/s/2181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2181/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Keeping Military Families Together Act of 2024","latestAction.text":"Became Public Law No: 118-271.","sponsors.0.party":"D","number":"2181","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-01-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2181/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2181/titles?format=json","laws.0.number":"118-271","summaries.url":"https://api.congress.gov/v3/bill/118/s/2181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2181/actions?format=json","latestAction.actionDate":"2025-01-04","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2181/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":8,"introducedDate":"2023-06-22","cosponsors.count":6,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2181?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-16T12:03:17Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9097","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"866","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5639/text?format=json","updateDate":"2024-12-25T09:05:20Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"5639","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Held at the desk.","type":"S","title":"Counter-UAS Authority Extension Act","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"5639","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5639/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5639/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5639/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","latestAction.actionTime":"10:13:00","titles.count":3,"introducedDate":"2024-12-20","cosponsors.count":3,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5639?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2024-12-31T01:48:19Z","latestAction_actionTime":"10:13:00"}}} +{"type":"relationship","id":"9098","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"876","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-24T19:10:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-190.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-190.","sponsors.0.party":"D","number":"709","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/709/cosponsors?format=json","sponsors.0.bioguideId":"P000595","laws.0.number":"118-190","actions.url":"https://api.congress.gov/v3/bill/118/s/709/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/709/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":7,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-18","textVersions.url":"https://api.congress.gov/v3/bill/118/s/709/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":29,"request.billNumber":"709","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/709/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/709/subjects?format=json","title":"Federal Agency Performance Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59104","request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/18?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/709/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/709/summaries?format=json","cboCostEstimates.0.title":"S. 709, Federal Agency Performance Act of 2023","introducedDate":"2023-03-08","subjects.count":6,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/709?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9099","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"880","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5310/text?format=json","updateDate":"2025-02-19T14:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"5310","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 702.","committees.url":"https://api.congress.gov/v3/bill/118/s/5310/committees?format=json","type":"S","title":"Federal Acquisition Security Council Improvement Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 702.","sponsors.0.party":"D","number":"5310","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/296?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5310/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5310/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5310/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"introducedDate":"2024-11-13","cosponsors.count":2,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5310?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-19T14:06:12Z","committeeReports.0.citation":"S. Rept. 118-296"}}} +{"type":"relationship","id":"9100","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"882","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4495/text?format=json","updateDate":"2025-02-01T23:26:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2024-10-22T15:28:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4495","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 697.","committees.url":"https://api.congress.gov/v3/bill/118/s/4495/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4495/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"PREPARED for AI Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 697.","sponsors.0.party":"D","number":"4495","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs\non July 31, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60695","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/291?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4495/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4495/titles?format=json","cboCostEstimates.0.title":"S. 4495, Promoting Responsible Evaluation and Procurement to Advance Readiness for Enterprise-wide Deployment for Artificial Intelligence Act","actions.url":"https://api.congress.gov/v3/bill/118/s/4495/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"introducedDate":"2024-06-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4495?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-01T23:26:12Z","committeeReports.0.citation":"S. Rept. 118-291"}}} +{"type":"relationship","id":"9101","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"887","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-08-30T16:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 696.","policyArea.name":"Foreign Trade and International Finance","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 696.","sponsors.0.party":"D","number":"1253","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1253/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1253/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1253/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-290","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1253/text?format=json","updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1253","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1253/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1253/committees?format=json","title":"Securing America's Ports of Entry Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59539","request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/290?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1253/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1253/summaries?format=json","cboCostEstimates.0.title":"S. 1253, Securing America’s Ports of Entry Act of 2023","introducedDate":"2023-04-20","subjects.count":15,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1253?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-02-14T16:56:14Z"}}} +{"type":"relationship","id":"9102","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"983","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4436/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4436","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4436/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protect Infant Formula from Contamination Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4436","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-06-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4436/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4436/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4436/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4436?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9103","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1064","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1798/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-07-14T17:58:28Z","sponsors.0.isByRequest":"N","request.billNumber":"1798","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 268.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1798/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1798/committees?format=json","policyArea.name":"Emergency Management","type":"S","title":"Offices of Countering Weapons of Mass Destruction and Health Security Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 268.","sponsors.0.party":"D","number":"1798","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on June 14, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59369","request.format":"json","latestAction_actionDate":"2023-12-11","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/124?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1798/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1798/titles?format=json","cboCostEstimates.0.title":"S. 1798, Offices of Countering Weapons of Mass Destruction and Health Security Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/1798/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"introducedDate":"2023-06-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1798?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z","committeeReports.0.citation":"S. Rept. 118-124"}}} +{"type":"relationship","id":"9104","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1086","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-06-15T17:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","sponsors.0.party":"D","number":"1564","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1564/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1564/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":2,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1564/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1564","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1564/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1564/committees?format=json","title":"AI Leadership Training Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 17, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59204","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/109?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1564/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1564/summaries?format=json","cboCostEstimates.0.title":"S. 1564, AI Leadership Training Act","introducedDate":"2023-05-11","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1564?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9105","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1166","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2222","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2222/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2222/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Digital Defense Content Provenance Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2222","request.format":"json","latestAction_actionDate":"2023-07-10","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2222/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2222/actions?format=json","latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2222/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2023-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2222?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"9106","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1172","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2178/text?format=json","relatedBills.count":3,"updateDate":"2025-01-03T08:40:01Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2178","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 116.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2178/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Protecting and Securing Chemical Facilities from Terrorist Attacks Act of 2023","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 116.","sponsors.0.party":"D","number":"2178","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2178/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2178/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2178/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2178/actions?format=json","latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2178/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2178?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-03T08:40:01Z"}}} +{"type":"relationship","id":"9107","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1174","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-17T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-7.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Became Public Law No: 118-7.","sponsors.0.party":"D","number":"467","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/467/cosponsors?format=json","sponsors.0.bioguideId":"P000595","laws.0.number":"118-7","actions.url":"https://api.congress.gov/v3/bill/118/s/467/actions?format=json","latestAction.actionDate":"2023-06-30","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/467/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":14,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-22","textVersions.url":"https://api.congress.gov/v3/bill/118/s/467/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"467","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/467/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/467/subjects?format=json","title":"CADETS Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59072","request.format":"json","latestAction_actionDate":"2023-06-30","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/22?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/467/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/467/summaries?format=json","cboCostEstimates.0.title":"S. 467, CADETS Act","introducedDate":"2023-02-16","subjects.count":7,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/467?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9108","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1177","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-04-05T18:12:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"264","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/264/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/264/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/264/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"09:25:04","committeeReports.0.citation":"S. Rept. 118-12","textVersions.url":"https://api.congress.gov/v3/bill/118/s/264/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"264","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/264/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/264/committees?format=json","title":"Lobbying Disclosure Improvement Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59047","request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/12?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/264/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/264/summaries?format=json","cboCostEstimates.0.title":"S. 264, Lobbying Disclosure Improvement Act","latestAction.actionTime":"09:25:04","introducedDate":"2023-02-02","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/264?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9109","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1199","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1929/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"1929","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1929/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1929/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"PFAS-Free Firefighting Foam Transition Reporting Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1929","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-06-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1929/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1929/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1929/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1929/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1929/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":4,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1929?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9110","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1461","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","relatedBills.count":5,"updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Sponsor introductory remarks on measure. (H5971)","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-11-29","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9111","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1553","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/930/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"930","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7108)","committees.url":"https://api.congress.gov/v3/bill/118/sres/930/committees?format=json","type":"SRES","title":"A resolution condemning the Government of Azerbaijan for perpetrating an ethnic cleansing campaign against the Armenian population of Nagorno-Karabakh.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7108)","sponsors.0.party":"D","number":"930","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/930/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/930/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/930/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/930?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9112","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"1823","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","relatedBills.count":5,"updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9113","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9315","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2022-11-16T20:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2510","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2510/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/2510/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2510/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2510/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2510","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2510/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2510/subjects?format=json","title":"RAPID Reserve Act","cboCostEstimates.0.description":"As ordered reported on June 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58783","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-12-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2510/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2510/summaries?format=json","cboCostEstimates.0.title":"S. 2510,\t Preventing HEAT Illness and Deaths Act of 2021","introducedDate":"2023-07-26","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2510?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9114","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9381","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2024-12-11T19:43:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 679.","sponsors.0.party":"D","number":"4066","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4066/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/4066/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4066/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-09","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-276","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4066/text?format=json","updateDate":"2025-01-31T23:06:12Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"4066","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4066/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4066/subjects?format=json","title":"FIT Procurement Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 15, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61100","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/276?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4066/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4066/summaries?format=json","cboCostEstimates.0.title":"S. 4066, FIT Procurement Act","introducedDate":"2024-03-22","subjects.count":9,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4066?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-31T23:06:12Z"}}} +{"type":"relationship","id":"9115","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9393","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4648/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4648","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4648/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4648/committees?format=json","type":"S","title":"Classification Reform for Transparency Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4648","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4648/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4648/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4648/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4648/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4648/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2024-07-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4648?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9116","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9398","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4436/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4436","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4436/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protect Infant Formula from Contamination Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4436","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4436/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4436/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4436/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"cosponsors.count":6,"introducedDate":"2024-06-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4436?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9117","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9500","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Peters","cboCostEstimates.0.pubDate":"2023-06-15T17:26:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 234.","sponsors.0.party":"D","number":"1564","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1564/cosponsors?format=json","sponsors.0.bioguideId":"P000595","actions.url":"https://api.congress.gov/v3/bill/118/s/1564/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1564/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-109","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1564/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1564","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1564/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1564/subjects?format=json","title":"AI Leadership Training Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on May 17, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59204","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-11-17","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/109?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1564/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1564/summaries?format=json","cboCostEstimates.0.title":"S. 1564, AI Leadership Training Act","introducedDate":"2023-05-11","subjects.count":4,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1564?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9118","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9593","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2181/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":26,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"2181","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/2181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2181/subjects?format=json","type":"S","title":"Keeping Military Families Together Act of 2024","latestAction.text":"Became Public Law No: 118-271.","sponsors.0.party":"D","number":"2181","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2181/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2181/titles?format=json","laws.0.number":"118-271","summaries.url":"https://api.congress.gov/v3/bill/118/s/2181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2181/actions?format=json","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2181/relatedbills?format=json","latestAction.actionDate":"2025-01-04","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":8,"introducedDate":"2023-06-22","cosponsors.count":6,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2181?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-16T12:03:17Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9119","label":"SPONSORED","start":{"id":"3946","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/p000595_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Peters, Gary C.","state":"Michigan","endYear":"2015","url":"https://api.congress.gov/v3/member/P000595?format=json","bioguideId":"P000595"}},"end":{"id":"9964","labels":["Bill"],"properties":{"relatedBills.count":5,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/870/text?format=json","updateDate":"2025-01-26T22:41:18Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":41,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"870","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (Consideration: CR S7150; text: CR S7136)","subjects.url":"https://api.congress.gov/v3/bill/118/s/870/subjects?format=json","policyArea.name":"Energy","type":"S","title":"An act to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs, to advance the benefits of nuclear energy, and for other purposes.","latestAction.text":"Became Public Law No: 118-67.","sponsors.0.party":"D","number":"870","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":2,"amendments.count":30,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/870/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/870/titles?format=json","laws.0.number":"118-67","summaries.url":"https://api.congress.gov/v3/bill/118/s/870/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/870/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/870/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-07-09","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","amendments.url":"https://api.congress.gov/v3/bill/118/s/870/amendments?format=json","titles.count":13,"introducedDate":"2023-03-16","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/870?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-26T22:41:18Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9145","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"863","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4199/text?format=json","relatedBills.count":5,"updateDate":"2025-01-16T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":25,"sponsors.0.lastName":"Young","cboCostEstimates.0.pubDate":"2024-08-16T21:22:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4199","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Veto message received in Senate. Ordered held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/4199/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4199/subjects?format=json","policyArea.name":"Law","type":"S","title":"JUDGES Act of 2024","latestAction.text":"Veto message received in Senate. Ordered held at the desk.","sponsors.0.party":"R","number":"4199","cboCostEstimates.0.description":"As passed by the Senate on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60650","request.format":"json","latestAction_actionDate":"2025-01-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4199/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4199/titles?format=json","cboCostEstimates.0.title":"S. 4199, JUDGES Act of 2024","actions.url":"https://api.congress.gov/v3/bill/118/s/4199/actions?format=json","latestAction.actionDate":"2025-01-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4199/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":10,"introducedDate":"2024-04-19","cosponsors.count":17,"request.contentType":"application/json","subjects.count":21,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4199?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2025-01-16T12:03:17Z"}}} +{"type":"relationship","id":"9146","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"987","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4428/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"4428","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4428/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4428/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Biotechnology Oversight Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4428","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4428/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4428/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4428/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4428/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4428?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9147","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"9714","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/136/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"136","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/136/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"ISA Student Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"136","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/136/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/136/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/136/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/136?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"9148","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"10022","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/136/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Young","sponsors.0.isByRequest":"N","request.billNumber":"136","sponsors.0.url":"https://api.congress.gov/v3/member/Y000064?format=json","latestAction_text":"Referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S1831-1832)","subjects.url":"https://api.congress.gov/v3/bill/118/s/136/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/136/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"ISA Student Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"136","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/136/cosponsors?format=json","sponsors.0.bioguideId":"Y000064","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/136/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/136/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/136/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/136/relatedbills?format=json","sponsors.0.fullName":"Sen. Young, Todd [R-IN]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/136?format=json","sponsors.0.firstName":"Todd","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"9155","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9376","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4659/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4659","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4659/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4659/committees?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Debt-to-GDP Transparency and Stabilization Act","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"4659","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4659/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4659/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4659/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4659/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4659/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"cosponsors.count":3,"introducedDate":"2024-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4659?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:22:18Z"}}} +{"type":"relationship","id":"9156","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9395","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4353/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4353","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 426.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4353/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4353/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Quality Loss Adjustment Improvement for Farmers Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"4353","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4353/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4353/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4353/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4353/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4353/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-16","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4353?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9157","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9504","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3219/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"3219","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3219/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3219/committees?format=json","policyArea.name":"Health","type":"S","title":"Influenza Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3219","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3219/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3219/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3219/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":4,"introducedDate":"2023-11-02","cosponsors.count":3,"request.contentType":"application/json","subjects.count":25,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3219?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9158","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9573","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2446","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2446/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Miranda Rights for Kids Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2446","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2446/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2446/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2446/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2446?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:56Z"}}} +{"type":"relationship","id":"9159","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9579","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2023-06-07T22:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 286.","sponsors.0.party":"R","number":"1280","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1280/cosponsors?format=json","sponsors.0.bioguideId":"C001098","actions.url":"https://api.congress.gov/v3/bill/118/s/1280/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1280/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":6,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1280/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1280","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1280/committees?format=json","title":"TRANQ Research Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on May 10, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59250","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1280/summaries?format=json","cboCostEstimates.0.title":"S. 1280, TRANQ Research Act of 2023","introducedDate":"2023-04-25","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1280?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9160","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9644","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1360/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1360","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1360/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1360/committees?format=json","type":"S","title":"PFAS Exposure Assessment and Documentation Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1360","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1360/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1360/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1360/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1360?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"9161","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9657","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1063/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1063","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1063/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1063/subjects?format=json","policyArea.name":"Health","type":"S","title":"Jobs and Opportunities for Medicaid Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1063","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1063/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1063/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1063/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1063/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1063/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":12,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1063?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:23:01Z"}}} +{"type":"relationship","id":"9162","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9673","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1025/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1025","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1025/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1025/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"SAFEGUARD Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1025","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1025/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1025/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1025/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1025/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1025/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1025?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9163","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/785/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"785","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S10099; text: 09/20/2022 CR S4864-4865)","subjects.url":"https://api.congress.gov/v3/bill/118/s/785/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/785/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Consumer and Fuel Retailer Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"785","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/785/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/785/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/785/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/785?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9164","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9377","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"4658","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Water Resources Development","committees.url":"https://api.congress.gov/v3/bill/118/s/4658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4658/subjects?format=json","type":"S","title":"A bill to provide for the ongoing presence of certain structures at the Table Rock Lake project.","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"4658","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4658/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4658/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4658/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4658/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4658?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9165","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9433","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4201/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"4201","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4201/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4201/committees?format=json","policyArea.name":"Health","title":"Rural Health Sustainability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4201","request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4201/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4201/relatedbills?format=json","sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-04-23","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4201?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9166","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9441","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3973/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"3973","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/3973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3973/subjects?format=json","type":"S","title":"Countering China’s Political Warfare Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3973","request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3973/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3973/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3973/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3973/relatedbills?format=json","latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3973?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9167","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"10018","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/141/text?format=json","relatedBills.count":1,"updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Craig","sponsors.0.isByRequest":"N","request.billNumber":"141","sponsors.0.url":"https://api.congress.gov/v3/member/C001119?format=json","latestAction_text":"Referred to the Committee on Indian Affairs. (text: CR S1834-1835)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/141/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/141/committees?format=json","policyArea.name":"Congress","title":"No Pay for Disarray Act","type":"HR","latestAction.text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Accountability, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"141","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/141/cosponsors?format=json","sponsors.0.bioguideId":"C001119","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/141/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/141/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/141/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/141/relatedbills?format=json","sponsors.0.fullName":"Rep. Craig, Angie [D-MN-2]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/141?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. CRAIG:\nH.R. 141.\nCongress has the power to enact this legislation pursuant\nto the following:\nU.S. Const. art. 1, Sec. 1\n[Page H110]\n","sponsors.0.district":2,"sponsors.0.firstName":"Angie","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"9170","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"865","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5649/text?format=json","updateDate":"2025-01-07T17:10:41Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"5649","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5649/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Save Our Seas 2.0 Amendments Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"5649","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5649/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5649/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5649/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":2,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","latestAction.actionTime":"10:13:00","titles.count":3,"introducedDate":"2024-12-21","cosponsors.count":1,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5649?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-07T17:10:41Z","latestAction_actionTime":"10:13:00"}}} +{"type":"relationship","id":"9171","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"927","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5182/text?format=json","updateDate":"2024-10-12T00:23:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"5182","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5182/committees?format=json","type":"S","title":"UNDERSTAND Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5182","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5182/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5182/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5182/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5182?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-10-12T00:23:23Z"}}} +{"type":"relationship","id":"9172","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"928","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5184/text?format=json","updateDate":"2024-12-05T15:40:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"5184","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5184/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5184/subjects?format=json","policyArea.name":"Health","type":"S","title":"SOLES Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5184","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5184/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5184/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5184/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5184?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-12-05T15:40:17Z"}}} +{"type":"relationship","id":"9173","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1002","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4198/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"4198","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4198/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4198/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Veterans Cemetery Access Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4198","request.format":"json","latestAction_actionDate":"2024-04-19","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4198/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4198/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2024-04-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4198?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"9174","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1019","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4180/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"4180","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/4180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4180/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Contaminated Lands Reclamation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"4180","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4180/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4180/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4180/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4180?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9175","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1049","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3691/text?format=json","updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"3691","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3691/committees?format=json","type":"S","title":"Ensuring Outpatient Quality for Rural States Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3691","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3691/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3691/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3691/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":3,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3691?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-07-24T15:19:17Z"}}} +{"type":"relationship","id":"9176","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1122","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2700/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"2700","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2700/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2700/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"INDEX Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2700","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2700/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2700/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2700/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2700/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2700?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9177","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1178","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2208/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"2208","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2208/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2208/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"National Seafood Supply Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"2208","request.format":"json","latestAction_actionDate":"2023-06-22","summaries.count":1,"sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2208/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2208/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2208/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2208/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2023-06-22","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2208?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9178","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1352","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/110/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"110","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/110/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/110/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Alaska; Hunting and Trapping in National Preserves\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"110","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-09-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/110/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/110/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/110/actions?format=json","latestAction.actionDate":"2024-09-19","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-09-19","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/110?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9179","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1577","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/678/text?format=json","relatedBills.count":1,"updateDate":"2024-11-21T15:11:43Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"678","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3626; text: CR S3599)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/678/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution designating May 3, 2024, as \"United States Foreign Service Day\" in recognition of the men and women who have served, or are presently serving, in the Foreign Service of the United States, and honoring the members of the Foreign Service who have given their lives in the line of duty.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3626; text: CR S3599)","sponsors.0.party":"R","number":"678","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-08","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/678/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/678/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/678/actions?format=json","latestAction.actionDate":"2024-05-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/678/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-05-08","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/678?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-11-21T15:11:43Z"}}} +{"type":"relationship","id":"9180","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"1608","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/199/text?format=json","relatedBills.count":1,"updateDate":"2024-11-18T15:21:40Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"199","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: CR S1538)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/199/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution designating May 5, 2023, as \"United States Foreign Service Day\" in recognition of the men and women who have served, or are presently serving, in the Foreign Service of the United States, and honoring the members of the Foreign Service who have given their lives in the line of duty.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: CR S1538)","sponsors.0.party":"R","number":"199","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/199/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/199/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/199/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/199/actions?format=json","latestAction.actionDate":"2023-05-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/199/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2023-05-04","cosponsors.count":1,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/199?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2024-11-18T15:21:40Z"}}} +{"type":"relationship","id":"9181","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9577","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/539/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"539","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/539/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/539/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Veterans Member Business Loan Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"539","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/539/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/539/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/539/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/539/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/539/relatedbills?format=json","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2023-02-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/539?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9182","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9671","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1027/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"1027","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/1027/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1027/subjects?format=json","title":"STAND with Taiwan Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1027","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1027/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1027/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1027/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1027/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1027/relatedbills?format=json","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1027?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9183","label":"SPONSORED","start":{"id":"3931","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001198_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Sullivan, Dan","state":"Alaska","url":"https://api.congress.gov/v3/member/S001198?format=json","bioguideId":"S001198"}},"end":{"id":"9781","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/110/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"110","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/110/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/110/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Park Service relating to \"Alaska; Hunting and Trapping in National Preserves\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"110","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/110/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/110/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/110/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/110/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/110/relatedbills?format=json","latestAction.actionDate":"2024-09-19","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":2,"introducedDate":"2024-09-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/110?format=json","sponsors.0.district":22,"sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9209","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"867","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5098/text?format=json","updateDate":"2025-01-31T01:26:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Lankford","cboCostEstimates.0.pubDate":"2024-12-11T19:46:00Z","sponsors.0.isByRequest":"N","request.billNumber":"5098","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/5098/committees?format=json","type":"S","title":"Taxpayer Resources Used in Emergencies Accountability Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"5098","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on September 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61106","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/282?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5098/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5098/titles?format=json","cboCostEstimates.0.title":"S. 5098, TRUE Accountability Act","actions.url":"https://api.congress.gov/v3/bill/118/s/5098/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"10:13:00","titles.count":6,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5098?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-31T01:26:13Z","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-282"}}} +{"type":"relationship","id":"9210","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"9386","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3740/text?format=json","updateDate":"2024-12-21T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3740","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3740/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3740/committees?format=json","policyArea.name":"Health","type":"S","title":"STRONGER Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3740","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3740/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3740/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3740/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3740/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3740/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3740?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-21T12:03:17Z"}}} +{"type":"relationship","id":"9211","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"879","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5314/text?format=json","updateDate":"2025-01-08T21:14:31Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":18,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"5314","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Became Public Law No: 118-208.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5314/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"A bill to designate the medical center of the Department of Veterans Affairs in Tulsa, Oklahoma, as the James Mountain Inhofe VA Medical Center.","latestAction.text":"Became Public Law No: 118-208.","sponsors.0.party":"R","number":"5314","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5314/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5314/titles?format=json","laws.0.number":"118-208","summaries.url":"https://api.congress.gov/v3/bill/118/s/5314/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5314/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2024-11-13","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5314?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-08T21:14:31Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9212","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1148","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2454/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2454","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/2454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2454/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmaceutical Supply Chain Security Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2454/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2454/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2454?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9213","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1176","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Lankford","cboCostEstimates.0.pubDate":"2023-04-05T18:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"349","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/349/cosponsors?format=json","sponsors.0.bioguideId":"L000575","actions.url":"https://api.congress.gov/v3/bill/118/s/349/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/349/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-06-27","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":5,"cosponsors.count":8,"request.contentType":"application/json","latestAction_actionTime":"09:25:11","committeeReports.0.citation":"S. Rept. 118-14","textVersions.url":"https://api.congress.gov/v3/bill/118/s/349/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"349","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/349/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/349/committees?format=json","title":"Military Spouse Employment Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59040","request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/14?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/349/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/349/summaries?format=json","cboCostEstimates.0.title":"S. 349, Military Spouse Employment Act","latestAction.actionTime":"09:25:11","introducedDate":"2023-02-09","subjects.count":5,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/349?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9214","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/471/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"471","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/471/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/471/subjects?format=json","policyArea.name":"Health","type":"S","title":"Women’s Public Health and Safety Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"471","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/471/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/471/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/471/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/471/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/471/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":14,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/471?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-09T01:57:51Z"}}} +{"type":"relationship","id":"9215","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9216","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1391","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2024-05-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","latestAction.actionDate":"2023-06-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"19:09:15"}}} +{"type":"relationship","id":"9217","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1615/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"1615","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/s/1615/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1615/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Regulatory Accountability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1615","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1615/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1615/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1615/actions?format=json","latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1615/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1615?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9218","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1513","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/361/text?format=json","updateDate":"2024-07-24T15:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"361","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/361/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/361/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Pistol Brace Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"361","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/361/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/361/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/361?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-07-24T15:23:50Z"}}} +{"type":"relationship","id":"9219","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1559","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/925/text?format=json","updateDate":"2024-12-31T18:50:50Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"925","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6936-6937; text: CR S6915)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/925/subjects?format=json","policyArea.name":"Congress","type":"SRES","title":"A resolution relating to the death of the Honorable Fred R. Harris, former Senator for the State of Oklahoma.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6936-6937; text: CR S6915)","sponsors.0.party":"R","number":"925","cosponsors.countIncludingWithdrawnCosponsors":99,"request.format":"json","latestAction_actionDate":"2024-12-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/925/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/925/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/925/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2024-12-10","cosponsors.count":99,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/925?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-12-31T18:50:50Z"}}} +{"type":"relationship","id":"9220","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1601","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/204/text?format=json","updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"204","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: CR S1570)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/204/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution congratulating the University of Oklahoma women's gymnastics team for winning the 2023 National Collegiate Athletic Association championship, the program's sixth title overall.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: CR S1570)","sponsors.0.party":"R","number":"204","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/204/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/204/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/204/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/204/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/204?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"9221","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1877","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/361/text?format=json","updateDate":"2024-07-24T15:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"361","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/361/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/361/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Pistol Brace Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"361","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/361/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/361/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/361?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2024-07-24T15:23:50Z"}}} +{"type":"relationship","id":"9222","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"1923","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9223","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3543/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"3543","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3543/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3543/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Historic Greenwood District—Black Wall Street National Monument Establishment Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3543","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3543/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3543/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3543/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3543/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3543/relatedbills?format=json","latestAction.actionDate":"2024-12-18","textVersions.count":3,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"18:25:58","titles.count":5,"introducedDate":"2023-12-14","cosponsors.count":6,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3543?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9224","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9514","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2981/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2981","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2981/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2981/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"IRS Accountability and Transparency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"2981","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2981/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2981/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2981/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2981/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2981/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2981?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9225","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2726/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2726","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2726/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2726/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"CAMPUS Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2726","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2726/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2726/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2726/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2726/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2726/relatedbills?format=json","latestAction.actionDate":"2023-09-05","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":4,"introducedDate":"2023-09-05","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2726?format=json","updateDateIncludingText":"2025-01-14T19:00:46Z","sponsors.0.firstName":"James"}}} +{"type":"relationship","id":"9226","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9567","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2454","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S5053-5054)","committees.url":"https://api.congress.gov/v3/bill/118/s/2454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2454/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmaceutical Supply Chain Security Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2454/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2454/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2454/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2454?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9227","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9624","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1615/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"1615","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/1615/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1615/committees?format=json","type":"S","title":"Regulatory Accountability Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1615","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1615/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1615/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1615/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1615/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1615/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1615?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"James"}}} +{"type":"relationship","id":"9228","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9715","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9229","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9812","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2022-04-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","latestAction.actionDate":"2023-06-22","textVersions.count":1,"sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"12:12:28","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"12:12:28"}}} +{"type":"relationship","id":"9230","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9941","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/36/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"36","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/36/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/sjres/36/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"36","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/36/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/36/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/36/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/36/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/36/relatedbills?format=json","latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","latestAction.actionTime":"12:12:28","titles.count":2,"introducedDate":"2023-06-22","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/36?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"09:03:59"}}} +{"type":"relationship","id":"9231","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"10024","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/135/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"135","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1776-1777)","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/135/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/135/committees?format=json","type":"S","title":"Prevent Government Shutdowns Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"135","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/135/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/135/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/135/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/135/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/135/relatedbills?format=json","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":21,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/135?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9232","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"868","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3658","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/3658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3658/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"SAFE Orbit Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3658","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-12-24","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3658/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3658/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3658/actions?format=json","latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3658/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/118/s/3658/amendments?format=json","latestAction.actionTime":"10:13:00","titles.count":6,"introducedDate":"2024-01-25","cosponsors.count":6,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3658?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:57:03Z","latestAction_actionTime":"10:13:00"}}} +{"type":"relationship","id":"9233","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"906","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5380/text?format=json","updateDate":"2024-12-19T05:23:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"5380","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5380/committees?format=json","type":"S","title":"Portable Ultrasound Reimbursement Equity Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5380","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5380/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5380/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5380/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2024-11-21","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5380?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-19T05:23:19Z"}}} +{"type":"relationship","id":"9234","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"918","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3631/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3631","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 607.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3631/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3631/committees?format=json","policyArea.name":"Energy","type":"S","title":"Critical Minerals Security Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 607.","sponsors.0.party":"R","number":"3631","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3631/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3631/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3631/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3631/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2024-01-18","cosponsors.count":5,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3631?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9235","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1017","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4183/text?format=json","relatedBills.count":1,"updateDate":"2024-08-06T18:10:43Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"4183","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4183/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4183/committees?format=json","policyArea.name":"Immigration","type":"S","title":"A bill to amend the Homeland Security Act of 2002 relating to authority of U.S. Customs and Border Protection to consolidate, modify, or reorganize Customs revenue functions.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4183","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4183/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4183/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4183/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4183/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4183?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-08-06T18:10:43Z"}}} +{"type":"relationship","id":"9236","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1035","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3934/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3934","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3934/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3934/subjects?format=json","policyArea.name":"Health","type":"S","title":"Increasing Access to Biosimilars Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3934","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3934/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3934/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3934/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3934/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3934/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3934?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"9237","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1057","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-37.","policyArea.name":"Law","type":"S","latestAction.text":"Became Public Law No: 118-37.","sponsors.0.party":"R","number":"3250","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3250/cosponsors?format=json","sponsors.0.bioguideId":"C001056","laws.0.number":"118-37","actions.url":"https://api.congress.gov/v3/bill/118/s/3250/actions?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3250/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/118/s/3250/amendments?format=json","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3250/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":24,"request.billNumber":"3250","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3250/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3250/subjects?format=json","title":"A bill to provide remote access to court proceedings for victims of the 1988 Bombing of Pan Am Flight 103 over Lockerbie, Scotland.","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-26","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3250/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3250/summaries?format=json","introducedDate":"2023-11-08","subjects.count":13,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3250?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:27Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9238","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1063","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cornyn","cboCostEstimates.0.pubDate":"2023-10-26T15:55:50Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 269.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 269.","sponsors.0.party":"R","number":"2260","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2260/cosponsors?format=json","sponsors.0.bioguideId":"C001056","actions.url":"https://api.congress.gov/v3/bill/118/s/2260/actions?format=json","latestAction.actionDate":"2023-12-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2260/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-125","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2260/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2260","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2260/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2260/subjects?format=json","title":"Grant Transparency Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on July 26, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59707","request.format":"json","latestAction_actionDate":"2023-12-11","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/125?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2260/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2260/summaries?format=json","cboCostEstimates.0.title":"S. 2260, Grant Transparency Act of 2023","introducedDate":"2023-07-12","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2260?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9239","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1066","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3457/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3457","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/3457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3457/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Fans First Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3457","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3457/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3457/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3457/actions?format=json","latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3457/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":12,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3457?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9240","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9393","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4648/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Peters","sponsors.0.isByRequest":"N","request.billNumber":"4648","sponsors.0.url":"https://api.congress.gov/v3/member/P000595?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4648/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4648/committees?format=json","type":"S","title":"Classification Reform for Transparency Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4648","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4648/cosponsors?format=json","sponsors.0.bioguideId":"P000595","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4648/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4648/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4648/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-09","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4648/relatedbills?format=json","sponsors.0.fullName":"Sen. Peters, Gary C. [D-MI]","titles.count":3,"introducedDate":"2024-07-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4648?format=json","sponsors.0.firstName":"Gary","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9241","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2726/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lankford","sponsors.0.isByRequest":"N","request.billNumber":"2726","sponsors.0.url":"https://api.congress.gov/v3/member/L000575?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2726/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2726/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"CAMPUS Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2726","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2726/cosponsors?format=json","sponsors.0.bioguideId":"L000575","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2726/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2726/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2726/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2726/relatedbills?format=json","latestAction.actionDate":"2023-09-05","sponsors.0.fullName":"Sen. Lankford, James [R-OK]","titles.count":4,"introducedDate":"2023-09-05","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2726?format=json","updateDateIncludingText":"2025-01-14T19:00:46Z","sponsors.0.firstName":"James"}}} +{"type":"relationship","id":"9242","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/388/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","request.billNumber":"388","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6743)","committees.url":"https://api.congress.gov/v3/bill/118/sres/388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/388/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution designating the week of September 25 through September 29, 2023, as \"National Clean Energy Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4828)","sponsors.0.party":"R","number":"388","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/388/cosponsors?format=json","sponsors.0.bioguideId":"C001035","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/388/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/388/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":2,"introducedDate":"2023-09-29","cosponsors.count":18,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/388?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9243","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1097","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cornyn","cboCostEstimates.0.pubDate":"2023-08-08T21:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1170","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1170/cosponsors?format=json","sponsors.0.bioguideId":"C001056","actions.url":"https://api.congress.gov/v3/bill/118/s/1170/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1170/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"cosponsors.count":19,"request.contentType":"application/json","latestAction_actionTime":"16:52:56","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1170/text?format=json","updateDate":"2024-07-24T15:20:09Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"1170","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1170/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1170/committees?format=json","title":"Project Safe Childhood Act","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on May 15, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59464","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1170/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1170/summaries?format=json","cboCostEstimates.0.title":"S. 1170, Project Safe Childhood Act","latestAction.actionTime":"16:52:56","introducedDate":"2023-04-17","subjects.count":14,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1170?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:09Z"}}} +{"type":"relationship","id":"9244","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1131","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2678/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2678","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2678/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2678/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Outbound Investment Transparency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2678","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2678/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2678/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2678/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2678/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2678/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2678?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9245","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1147","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2453/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2453","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2453/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2453/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Armed Forces Facility Conditions and Quality of Life Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2453","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2453/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2453/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2453/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2453?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"9246","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1165","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2227/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2227","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2227/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2227/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Preventing the Financing of Illegal Synthetic Drugs Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2227","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2227/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2227/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2227/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2227/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2227/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2227?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9247","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1167","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2223/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2223","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2223/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2223/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"SHOPP Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"2223","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2223/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2223/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2223/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2223/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2223/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-10","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-07-10","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2223?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9248","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1416","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1613/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1613","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Referred to the Committee on Foreign Affairs, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/s/1613/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1613/subjects?format=json","policyArea.name":"Agriculture and Food","title":"Feral Swine Eradication Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1613","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1613/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1613/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1613/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1613/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1613/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1613?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9249","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1585","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/449/text?format=json","relatedBills.count":3,"updateDate":"2024-10-03T16:27:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"449","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5343-5344)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/449/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2023.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5343-5344)","sponsors.0.party":"R","number":"449","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/449/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/449/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/449/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/449?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-10-03T16:27:14Z"}}} +{"type":"relationship","id":"9250","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"1598","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"434","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S5217)","committees.url":"https://api.congress.gov/v3/bill/118/s/434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/434/subjects?format=json","policyArea.name":"International Affairs","title":"PAID OFF Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S427)","sponsors.0.party":"R","number":"434","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/434/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/434/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/434/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/434?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9251","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9386","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3740/text?format=json","updateDate":"2024-12-21T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3740","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3740/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3740/committees?format=json","policyArea.name":"Health","type":"S","title":"STRONGER Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3740","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3740/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3740/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3740/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3740/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3740/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2024-02-06","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3740?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-21T12:03:17Z"}}} +{"type":"relationship","id":"9252","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9389","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3145/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"3145","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3145/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3145/committees?format=json","policyArea.name":"Health","type":"S","title":"Improving Access to Addiction Medicine Providers Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3145","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3145/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3145/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3145/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3145/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3145/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-26","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-10-26","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3145?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9253","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9561","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2453/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"2453","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2453/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2453/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Armed Forces Facility Conditions and Quality of Life Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2453","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2453/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2453/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2453/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2453/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2453/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2453?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"9254","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9629","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1613/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1613","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1613/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1613/committees?format=json","policyArea.name":"Agriculture and Food","title":"Feral Swine Eradication Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1613","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1613/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1613/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1613/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1613/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1613/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":5,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1613?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9255","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9632","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1608/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1608","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1608/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1608/committees?format=json","type":"S","title":"Starr–Camargo Bridge Expansion Act","latestAction.text":"Became Public Law No: 118-80.","sponsors.0.party":"R","number":"1608","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1608/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1608/titles?format=json","laws.0.number":"118-80","summaries.url":"https://api.congress.gov/v3/bill/118/s/1608/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1608/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1608/relatedbills?format=json","latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1608?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:17:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9256","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9662","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cornyn","cboCostEstimates.0.pubDate":"2023-11-28T16:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1059","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1059/cosponsors?format=json","sponsors.0.bioguideId":"C001056","actions.url":"https://api.congress.gov/v3/bill/118/s/1059/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1059/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-145","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1059/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1059","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1059/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1059/subjects?format=json","title":"Big Bend National Park Boundary Adjustment Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59794","request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/145?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1059/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1059/summaries?format=json","cboCostEstimates.0.title":"S. 1059, Big Bend National Park Boundary Adjustment Act","latestAction.actionTime":"18:04:52","introducedDate":"2023-03-29","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1059?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9257","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9700","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"434","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/434/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"PAID OFF Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S427)","sponsors.0.party":"R","number":"434","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/434/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/434/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/434/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/434?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9258","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"9961","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/873/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"873","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7185-7186 text: CR S7202-7203)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/873/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/873/committees?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2024.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S6455-6456)","sponsors.0.party":"R","number":"873","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/873/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/873/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/873/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/873/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/873/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/873?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9259","label":"SPONSORED","start":{"id":"4001","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001056_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cornyn, John","state":"Texas","url":"https://api.congress.gov/v3/member/C001056?format=json","bioguideId":"C001056"}},"end":{"id":"10002","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/383/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"383","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6679)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/383/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/383/committees?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2023.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4765-4766)","sponsors.0.party":"R","number":"383","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/383/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/383/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/383/relatedbills?format=json","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/383?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9260","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"869","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3195/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"3195","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/3195/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3195/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to designate the General George C. Marshall House, in the Commonwealth of Virginia, as an affiliated area of the National Park System, and for other purposes.","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"3195","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-24","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3195/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3195/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3195/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3195/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","latestAction.actionTime":"10:13:00","titles.count":2,"introducedDate":"2023-11-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3195?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T17:20:42Z","latestAction_actionTime":"10:13:00"}}} +{"type":"relationship","id":"9261","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"1197","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1931/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"1931","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/1931/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1931/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"AFFECT Human Rights in Venezuela Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1931","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-06-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1931/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1931/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1931/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1931/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"introducedDate":"2023-06-13","cosponsors.count":4,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1931?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9262","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"1245","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2023-03-13T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"316","amendments.count":56,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/316/cosponsors?format=json","sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/316/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/316/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/316/amendments?format=json","titles.count":2,"cosponsors.count":46,"request.contentType":"application/json","latestAction_actionTime":"12:04:24","textVersions.url":"https://api.congress.gov/v3/bill/118/s/316/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"316","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/316/subjects?format=json","title":"A bill to repeal the authorizations for use of military force against Iraq.","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on March 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":46,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59000","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-03-30","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/316/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/316/summaries?format=json","cboCostEstimates.0.title":"S. 316, a bill to repeal the authorizations for use of military force against Iraq","latestAction.actionTime":"12:04:24","introducedDate":"2023-02-09","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/316?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9263","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"1392","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-05-06","summaries.count":1,"sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z","latestAction_actionTime":"19:25:34"}}} +{"type":"relationship","id":"9264","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"1404","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1624/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2024-09-13T15:44:00Z","sponsors.0.isByRequest":"N","request.billNumber":"1624","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1624/committees?format=json","policyArea.name":"Health","type":"S","title":"Gabriella Miller Kids First Research Act 2.0","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 224.","sponsors.0.party":"D","number":"1624","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on October 4, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60715","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1624/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1624/summaries?format=json","cboCostEstimates.0.title":"S. 1624, Gabriella Miller Kids First Research Act 2.0","actions.url":"https://api.congress.gov/v3/bill/118/s/1624/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-10-04","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":15,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1624?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9265","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"1909","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Presented to President.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-04","summaries.count":1,"sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9266","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"1927","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2025-03-10","summaries.count":1,"sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9267","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9366","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4880/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"4880","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4880/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4880/committees?format=json","policyArea.name":"Families","title":"Child Care Workforce Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4880","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-19","sponsors.0.middleName":"M.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4880/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4880/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4880/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4880/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4880/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4880?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9268","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9493","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2023-03-13T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 207.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"316","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/316/cosponsors?format=json","amendments.count":56,"sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/316/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/316/relatedbills?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":3,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/316/amendments?format=json","titles.count":2,"cosponsors.count":46,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/316/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"316","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/316/subjects?format=json","title":"A bill to repeal the authorizations for use of military force against Iraq.","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on March 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":46,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59000","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-12-17","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/316/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/316/summaries?format=json","cboCostEstimates.0.title":"S. 316, a bill to repeal the authorizations for use of military force against Iraq","latestAction.actionTime":"12:04:24","introducedDate":"2023-02-09","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/316?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9269","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9620","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2024-09-13T15:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Health","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 224.","sponsors.0.party":"D","number":"1624","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1624/cosponsors?format=json","sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/1624/actions?format=json","latestAction.actionDate":"2023-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1624/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"cosponsors.count":15,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1624/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1624","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1624/committees?format=json","title":"Gabriella Miller Kids First Research Act 2.0","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on October 4, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":15,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60715","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-05-13","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1624/summaries?format=json","cboCostEstimates.0.title":"S. 1624, Gabriella Miller Kids First Research Act 2.0","introducedDate":"2023-05-16","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1624?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9270","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9813","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/35/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9271","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9942","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/35/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"35","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/35/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/35/committees?format=json","type":"SJRES","title":"A joint resolution redesignating the Robert E. Lee Memorial in Arlington National Cemetery as the \"Arlington House National Historic Site\".","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S2188-2189)","sponsors.0.party":"D","number":"35","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/35/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/35/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/35/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/35/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/35/relatedbills?format=json","sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":2,"introducedDate":"2023-06-21","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/35?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-03T20:51:24Z","latestAction_actionTime":"09:03:48"}}} +{"type":"relationship","id":"9272","label":"SPONSORED","start":{"id":"3973","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000384_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kaine, Tim","state":"Virginia","url":"https://api.congress.gov/v3/member/K000384?format=json","bioguideId":"K000384"}},"end":{"id":"9956","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/472/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kaine","sponsors.0.isByRequest":"N","request.billNumber":"472","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and with a preamble by Unanimous Consent. (text of amendment in the nature of a substitute: CR S9754)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/472/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/472/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution expressing the sense of the Senate that the 90th anniversary of the Ukrainian Famine of 1932-1933, known as the Holodomor, should serve as a reminder of repressive Soviet policies against the people of Ukraine, and that Vladimir Putin's brutal and unprovoked war against Ukraine once again threatens the existence of the Ukrainian people, while exacerbating the problems of global hunger.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S5599-5600)","sponsors.0.party":"D","number":"472","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-21","summaries.count":1,"amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/472/cosponsors?format=json","sponsors.0.bioguideId":"K000384","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/472/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/472/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/472/actions?format=json","latestAction.actionDate":"2023-11-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/472/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/472/amendments?format=json","titles.count":2,"introducedDate":"2023-11-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/472?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9273","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"870","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Wyden","cboCostEstimates.0.pubDate":"2024-12-04T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1890","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1890/cosponsors?format=json","sponsors.0.bioguideId":"W000779","actions.url":"https://api.congress.gov/v3/bill/118/s/1890/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-222","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1890/text?format=json","updateDate":"2025-01-17T03:11:18Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1890","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1890/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1890/subjects?format=json","title":"Malheur Community Empowerment for the Owyhee Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61052","request.format":"json","latestAction_actionDate":"2024-12-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/222?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1890/summaries?format=json","cboCostEstimates.0.title":"S. 1890, Malheur Community Empowerment for the Owyhee Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-06-08","subjects.count":16,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1890?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-17T03:11:18Z"}}} +{"type":"relationship","id":"9274","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"908","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4424/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"4424","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","committees.url":"https://api.congress.gov/v3/bill/118/s/4424/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4424/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"National Prescribed Fire Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 624.","sponsors.0.party":"D","number":"4424","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4424/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4424/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4424/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4424/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4424?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"9275","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1040","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3692/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3692","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3692/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3692/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Preventing the Algorithmic Facilitation of Rental Housing Cartels Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3692","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3692/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3692/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3692/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3692/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3692?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9276","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1042","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3694/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3694","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/3694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3694/subjects?format=json","policyArea.name":"Animals","type":"S","title":"SWIMS Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3694","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3694/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3694/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3694/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3694/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3694?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9277","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1045","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3689/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3689","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3689/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3689/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Invest in Child Safety Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3689/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3689/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3689/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3689/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3689?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-07-24T15:19:18Z"}}} +{"type":"relationship","id":"9278","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1068","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2973/text?format=json","relatedBills.count":7,"updateDate":"2024-11-09T01:57:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2973","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","committees.url":"https://api.congress.gov/v3/bill/118/s/2973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2973/subjects?format=json","policyArea.name":"Health","type":"S","title":"Modernizing and Ensuring PBM Accountability Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","sponsors.0.party":"D","number":"2973","request.format":"json","latestAction_actionDate":"2023-12-07","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/122?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2973/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2973/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2973/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2023-09-28","subjects.count":19,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2973?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:47Z","committeeReports.0.citation":"S. Rept. 118-122"}}} +{"type":"relationship","id":"9279","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1151","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2451/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2451","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2451/subjects?format=json","policyArea.name":"Health","type":"S","title":"Hemp Access and Consumer Safety Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2451","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2451/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2451/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2451/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2451?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9280","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1200","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1668/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"1668","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1668/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1668/subjects?format=json","policyArea.name":"Health","type":"S","title":"Securing the U.S. Organ Procurement and Transplantation Network Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1668","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1668/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1668/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1668/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1668/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1668/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1668?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9281","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"1569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/686/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T16:24:00Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"686","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3689; text: CR S3689)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/686/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"SRES","title":"A resolution designating May 18, 2024, as \"Kids to Parks Day\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3689; text: CR S3689)","sponsors.0.party":"D","number":"686","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-05-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/686/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/686/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/686/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/686/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/686/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2024-05-14","cosponsors.count":6,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/686?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-12-04T16:24:00Z"}}} +{"type":"relationship","id":"9282","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9295","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5329/text?format=json","relatedBills.count":2,"updateDate":"2024-12-17T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"5329","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Became Public Law No: 117-362.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5329/subjects?format=json","policyArea.name":"Agriculture and Food","committees.url":"https://api.congress.gov/v3/bill/118/s/5329/committees?format=json","title":"FIGHTING for America Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5329","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5329/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5329/titles?format=json","laws.0.number":"117-362","summaries.url":"https://api.congress.gov/v3/bill/117/s/5329/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5329/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5329/relatedbills?format=json","latestAction.actionDate":"2024-11-14","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"cosponsors.count":5,"introducedDate":"2024-11-14","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5329?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-18T17:27:14Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9283","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9330","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5236/text?format=json","updateDate":"2024-12-05T15:34:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"5236","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5236/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5236/committees?format=json","policyArea.name":"Health","title":"Keeping Obstetrics Local Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5236","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5236/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5236/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5236/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5236/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5236?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-12-05T15:34:27Z"}}} +{"type":"relationship","id":"9284","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4881/text?format=json","relatedBills.count":1,"updateDate":"2025-02-11T14:06:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"4881","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4881/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4881/committees?format=json","type":"S","title":"A bill to repeal the Military Selective Service Act.","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4881","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4881/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4881/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4881/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4881/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4881/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4881?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-02-11T14:06:28Z"}}} +{"type":"relationship","id":"9285","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9491","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wyden","cboCostEstimates.0.pubDate":"2024-12-04T20:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 216.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1890","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1890/cosponsors?format=json","sponsors.0.bioguideId":"W000779","actions.url":"https://api.congress.gov/v3/bill/118/s/1890/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1890/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-222","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1890/text?format=json","updateDate":"2025-01-17T03:11:18Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1890","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1890/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1890/committees?format=json","title":"Malheur Community Empowerment for the Owyhee Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on September 10, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/61052","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/222?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1890/summaries?format=json","cboCostEstimates.0.title":"S. 1890, Malheur Community Empowerment for the Owyhee Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-06-08","subjects.count":16,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1890?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-17T03:11:18Z"}}} +{"type":"relationship","id":"9286","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9513","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3213/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"3213","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/3213/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3213/committees?format=json","type":"S","title":"Tech Safety for Victims of Domestic Violence, Dating Violence, Sexual Assault, and Stalking Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3213","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3213/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3213/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3213/relatedbills?format=json","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":30,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3213?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-07-23T16:18:13Z"}}} +{"type":"relationship","id":"9287","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9517","labels":["Bill"],"properties":{"relatedBills.count":7,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2973/text?format=json","updateDate":"2024-11-09T01:57:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2973","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2973/subjects?format=json","policyArea.name":"Health","type":"S","title":"Modernizing and Ensuring PBM Accountability Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 266.","sponsors.0.party":"D","number":"2973","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/122?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2973/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2973/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2973/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2973/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2973/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":4,"introducedDate":"2023-09-28","cosponsors.count":6,"subjects.count":19,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2973?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2024-11-09T01:57:47Z","committeeReports.0.citation":"S. Rept. 118-122"}}} +{"type":"relationship","id":"9288","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"9402","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2280/text?format=json","relatedBills.count":6,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2280","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2280/committees?format=json","policyArea.name":"Social Welfare","type":"S","title":"Social Security 2100 Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2280","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2280/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2280/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2280/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2280/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","latestAction.actionTime":"14:52:23","titles.count":3,"introducedDate":"2023-07-12","cosponsors.count":4,"request.contentType":"application/json","subjects.count":20,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2280?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:57:27Z","latestAction_actionTime":"14:52:23"}}} +{"type":"relationship","id":"9289","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"9412","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4426/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Braun","sponsors.0.isByRequest":"N","request.billNumber":"4426","sponsors.0.url":"https://api.congress.gov/v3/member/B001310?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4426/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4426/committees?format=json","policyArea.name":"Health","title":"Promising Pathway Act 2.0","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"4426","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4426/cosponsors?format=json","sponsors.0.bioguideId":"B001310","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4426/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4426/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4426/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4426/relatedbills?format=json","sponsors.0.fullName":"Sen. Braun, Mike [R-IN]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4426?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9290","label":"SPONSORED","start":{"id":"3919","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/y000064_200.jpg","startYear":"2011","name":"Young, Todd","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","endYear":"2017","url":"https://api.congress.gov/v3/member/Y000064?format=json","bioguideId":"Y000064"}},"end":{"id":"9569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2451/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2451","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2451/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2451/committees?format=json","policyArea.name":"Health","type":"S","title":"Hemp Access and Consumer Safety Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2451","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2451/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2451/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2451/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2451?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9291","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9524","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2965/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2965","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2965/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2965/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to establish a critical mineral environmental processing and mining cleanup program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"2965","request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2965/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2965/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2965/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":2,"introducedDate":"2023-09-28","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2965?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9292","label":"SPONSORED","start":{"id":"3920","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:30Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/w000779_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Wyden, Ron","state":"Oregon","endYear":"1996","url":"https://api.congress.gov/v3/member/W000779?format=json","bioguideId":"W000779"}},"end":{"id":"9569","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2451/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wyden","sponsors.0.isByRequest":"N","request.billNumber":"2451","sponsors.0.url":"https://api.congress.gov/v3/member/W000779?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2451/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2451/committees?format=json","policyArea.name":"Health","type":"S","title":"Hemp Access and Consumer Safety Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2451","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2451/cosponsors?format=json","sponsors.0.bioguideId":"W000779","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2451/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2451/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2451/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2451/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Wyden, Ron [D-OR]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2451?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9293","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"871","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2024-02-20T18:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"1723","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1723/cosponsors?format=json","sponsors.0.bioguideId":"W000817","actions.url":"https://api.congress.gov/v3/bill/118/s/1723/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1723/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/1723/amendments?format=json","titles.count":5,"cosponsors.count":32,"request.contentType":"application/json","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-187","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1723/text?format=json","updateDate":"2025-01-16T06:06:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"1723","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1723/subjects?format=json","title":"Truth and Healing Commission on Indian Boarding School Policies Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nJune 7, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":32,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59993","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-24","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/187?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1723/summaries?format=json","cboCostEstimates.0.title":"S. 1723, Truth and Healing Commission on Indian Boarding School Policies Act","latestAction.actionTime":"10:13:00","introducedDate":"2023-05-18","subjects.count":20,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1723?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-16T06:06:27Z"}}} +{"type":"relationship","id":"9294","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"901","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5382/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"5382","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5382/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Public Disclosure of Foreign Government Income Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5382","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5382/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5382/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2024-11-21","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5382?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9295","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"980","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4440/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"4440","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4440/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4440/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Public Housing Emergency Response Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4440","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-06-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4440/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4440/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4440/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4440/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4440?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9296","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"1015","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4188/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"4188","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4188/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4188/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Future of Water Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4188","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4188/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4188/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4188/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4188/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4188?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9297","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"1138","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2690/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2690","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2690/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Equal Employment for All Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"2690","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2690/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2690/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2690/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2690/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2690?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9298","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"1203","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1045/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":5,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"1045","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1045/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1045/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Failed Bank Executives Clawback Act","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"1045","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1045/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1045/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1045/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1045/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1045/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":4,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1045?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:24:07Z"}}} +{"type":"relationship","id":"9299","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"1205","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1663/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"1663","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1663/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1663/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Strengthening Federal Reserve System Accountability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1663","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1663/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1663/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1663/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1663/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1663?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9300","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"1544","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/938/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"938","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7333-7335)","committees.url":"https://api.congress.gov/v3/bill/118/sres/938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/938/subjects?format=json","policyArea.name":"Social Welfare","type":"SRES","title":"A resolution expressing the sense of the Senate that it is the duty of the Federal Government to dramatically expand and strengthen the care economy.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7333-7335)","sponsors.0.party":"D","number":"938","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-12-20","sponsors.0.bioguideId":"W000817","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/938/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/938/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/938/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-20","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":2,"introducedDate":"2024-12-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/938?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9301","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9316","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2022-10-31T20:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 630.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4109","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4109/cosponsors?format=json","sponsors.0.bioguideId":"W000817","actions.url":"https://api.congress.gov/v3/bill/118/s/4109/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4109/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"cosponsors.count":13,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4109/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4109","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4109/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4109/subjects?format=json","title":"Blast Overpressure Safety Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on May 25, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":13,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58432","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4109/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4109/summaries?format=json","cboCostEstimates.0.title":"S. 4109, National R&D Strategy for Distributed Ledger Technology Act of 2022","introducedDate":"2024-04-11","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4109?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"9302","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9480","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2021-12-14T16:01:00Z","sponsors.0.isByRequest":"N","notes.0.text":"Joint explanatory statement is in Armed Services Committee Print No. 2.","latestAction_text":"Became Public Law No: 117-81.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1605","amendments.count":13,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1605/cosponsors?format=json","sponsors.0.bioguideId":"W000817","laws.0.number":"117-81","actions.url":"https://api.congress.gov/v3/bill/118/s/1605/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1605/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/1605/amendments?format=json","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57693","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1605/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2021-12-14T16:01:00Z","actions.count":2,"request.billNumber":"1605","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1605/subjects?format=json","title":"Maternal Health Pandemic Response Act","cboCostEstimates.1.description":"As Passed by the House of Representatives on December 7, 2021\n","cboCostEstimates.0.description":"As Passed by the House of Representatives on December 7, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57693","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-12-27","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1605/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1605/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of S. 1605, The National Defense Authorization Act for Fiscal Year 2022","introducedDate":"2023-05-15","subjects.count":20,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1605?format=json","cboCostEstimates.1.title":"Statutory Pay-As-You-Go Effects of S. 1605, The National Defense Authorization Act for Fiscal Year 2022","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9303","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9530","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2961/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2961","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2961/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2961/committees?format=json","policyArea.name":"Emergency Management","title":"FEMA Equity Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"2961","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2961/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2961/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2961/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2961/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2961/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2961?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9304","label":"SPONSORED","start":{"id":"3922","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000817_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warren, Elizabeth","state":"Massachusetts","url":"https://api.congress.gov/v3/member/W000817?format=json","bioguideId":"W000817"}},"end":{"id":"9542","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2724/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warren","sponsors.0.isByRequest":"N","request.billNumber":"2724","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2724/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2724/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Nationwide Right To Unionize Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2724","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2724/cosponsors?format=json","sponsors.0.bioguideId":"W000817","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2724/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2724/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2724/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2724/relatedbills?format=json","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2724?format=json","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9305","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"872","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1553/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":11,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"1553","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1553/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1553/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Resiliency for Ranching and Natural Conservation Health Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1553","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-12-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1553/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1553/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1553/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1553/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","latestAction.actionTime":"10:13:00","titles.count":5,"introducedDate":"2023-05-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":18,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1553?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z","latestAction_actionTime":"10:13:00"}}} +{"type":"relationship","id":"9306","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"873","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1348","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1348/cosponsors?format=json","sponsors.0.bioguideId":"B001261","actions.url":"https://api.congress.gov/v3/bill/118/s/1348/actions?format=json","latestAction.actionDate":"2024-12-24","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1348/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","latestAction_actionTime":"10:13:00","committeeReports.0.citation":"S. Rept. 118-185","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1348/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"1348","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1348/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1348/subjects?format=json","title":"Wyoming Public Lands Initiative Act of 2023","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-24","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/185?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1348/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1348/summaries?format=json","latestAction.actionTime":"10:13:00","introducedDate":"2023-04-27","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1348?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9307","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"916","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"4454","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","committees.url":"https://api.congress.gov/v3/bill/118/s/4454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4454/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Operational Flexibility Grazing Management Program Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","sponsors.0.party":"R","number":"4454","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4454/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4454/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4454/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4454/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2024-06-04","cosponsors.count":1,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4454?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"9308","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"956","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4937/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"4937","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4937/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Defending American Sovereignty in Global Pandemics Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4937","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4937/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4937/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4937/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4937?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9309","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10046","labels":["Order"],"properties":{"date_enacted":"2025-02-10","date_repealed":"None","description":"nan","id":"EO 14209","title":"Pausing Foreign Corrupt Practices Act Enforcement To Further American Economic and National Security","url":"https://www.federalregister.gov/d/2025-02736"}}} +{"type":"relationship","id":"9310","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10071","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14184","title":"Reinstating Service Members Discharged Under the Militarys COVID-19 Vaccination Mandate","url":"https://www.federalregister.gov/d/2025-02180"}}} +{"type":"relationship","id":"9311","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10096","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14159","title":"Protecting the American People Against Invasion","url":"https://www.federalregister.gov/d/2025-02006"}}} +{"type":"relationship","id":"9312","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"1105","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2954/text?format=json","updateDate":"2024-07-24T15:20:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"2954","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2954/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2954/subjects?format=json","policyArea.name":"Health","type":"S","title":"Protecting Medicaid Beneficiaries Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2954","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-09-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2954/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2954/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2954/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2954?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:16Z"}}} +{"type":"relationship","id":"9313","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"1397","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","type":"S","title":"SPR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9314","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"1920","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 31.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","type":"S","title":"SPR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9315","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9532","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2954/text?format=json","relatedBills.count":5,"updateDate":"2024-07-24T15:20:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"2954","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S7001)","subjects.url":"https://api.congress.gov/v3/bill/118/s/2954/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2954/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Medicaid Beneficiaries Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2954","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2954/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2954/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2954/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2954/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2954/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2954?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:16Z"}}} +{"type":"relationship","id":"9316","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9586","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","title":"SPR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9317","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9646","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1348/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"1348","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Select Committee on Intelligence.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1348/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1348/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Wyoming Public Lands Initiative Act of 2023","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"1348","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/185?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1348/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1348/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1348/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1348/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1348/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","latestAction.actionTime":"10:13:00","titles.count":5,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1348?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:11:28Z","committeeReports.0.citation":"S. Rept. 118-185"}}} +{"type":"relationship","id":"9318","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9678","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/763/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"763","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/763/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/763/committees?format=json","policyArea.name":"Energy","title":"Reduce Russian Uranium Imports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"763","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/763/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/763/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/763/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/763/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/763/relatedbills?format=json","sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/763?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9319","label":"SPONSORED","start":{"id":"4015","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001261_200.jpg","startYear":"2007","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Barrasso, John","state":"Wyoming","url":"https://api.congress.gov/v3/member/B001261?format=json","bioguideId":"B001261"}},"end":{"id":"9947","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/31/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Barrasso","sponsors.0.isByRequest":"N","request.billNumber":"31","sponsors.0.url":"https://api.congress.gov/v3/member/B001261?format=json","latestAction_text":"Referred to the House Committee on Ethics.","committees.url":"https://api.congress.gov/v3/bill/118/s/31/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/31/subjects?format=json","policyArea.name":"Energy","title":"SPR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (Sponsor introductory remarks on measure: CR S75-76)","sponsors.0.party":"R","number":"31","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/31/cosponsors?format=json","sponsors.0.bioguideId":"B001261","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/31/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/31/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/31/actions?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Sen. Barrasso, John [R-WY]","titles.count":4,"introducedDate":"2023-01-24","cosponsors.count":14,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/31?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9332","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"874","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rosen","cboCostEstimates.0.pubDate":"2023-05-19T19:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-192.","policyArea.name":"Congress","type":"S","latestAction.text":"Became Public Law No: 118-192.","sponsors.0.party":"D","number":"932","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/932/cosponsors?format=json","sponsors.0.bioguideId":"R000608","laws.0.number":"118-192","actions.url":"https://api.congress.gov/v3/bill/118/s/932/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/932/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":10,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-37","textVersions.url":"https://api.congress.gov/v3/bill/118/s/932/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"932","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/932/subjects?format=json","title":"No CORRUPTION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59189","request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/37?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/932/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/932/summaries?format=json","cboCostEstimates.0.title":"S. 932, No CORRUPTION Act","introducedDate":"2023-03-22","subjects.count":5,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/932?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9333","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"884","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4898/text?format=json","relatedBills.count":1,"updateDate":"2025-02-01T01:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"4898","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 699.","committees.url":"https://api.congress.gov/v3/bill/118/s/4898/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4898/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Extreme Heat Emergency Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 699.","sponsors.0.party":"D","number":"4898","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/293?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4898/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4898/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4898/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":4,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4898?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-02-01T01:06:12Z","committeeReports.0.citation":"S. Rept. 118-293"}}} +{"type":"relationship","id":"9334","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"1056","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2853/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"2853","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/s/2853/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2853/subjects?format=json","policyArea.name":"Health","type":"S","title":"Train More Nurses Act","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"2853","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-01-29","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2853/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2853/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2853/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2853/actions?format=json","latestAction.actionDate":"2024-01-29","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2853/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","latestAction.actionTime":"14:19:22","titles.count":4,"introducedDate":"2023-09-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2853?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T19:11:28Z","latestAction_actionTime":"14:19:22"}}} +{"type":"relationship","id":"9335","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"1551","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2023-05-19T19:59:00Z","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7099; text: CR S7109)","policyArea.name":"Congress","type":"S","latestAction.text":"Became Public Law No: 118-192.","sponsors.0.party":"D","number":"932","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/932/cosponsors?format=json","sponsors.0.bioguideId":"R000608","laws.0.number":"118-192","actions.url":"https://api.congress.gov/v3/bill/118/s/932/actions?format=json","latestAction.actionDate":"2024-12-23","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/932/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":10,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-37","textVersions.url":"https://api.congress.gov/v3/bill/118/s/932/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"932","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/932/subjects?format=json","title":"No CORRUPTION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59189","request.format":"json","latestAction_actionDate":"2024-12-17","summaries.count":5,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/37?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/932/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/932/summaries?format=json","cboCostEstimates.0.title":"S. 932, No CORRUPTION Act","introducedDate":"2023-03-22","subjects.count":5,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/932?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9336","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"1833","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rosen","cboCostEstimates.0.pubDate":"2023-09-28T22:58:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","policyArea.name":"Commerce","type":"S","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"673","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/673/cosponsors?format=json","sponsors.0.bioguideId":"R000608","actions.url":"https://api.congress.gov/v3/bill/118/s/673/actions?format=json","latestAction.actionDate":"2024-04-10","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/673/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/673/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":9,"request.billNumber":"673","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/673/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/673/subjects?format=json","title":"Small Business Child Care Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Small Business and Entrepreneurship on July 25, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59615","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/673/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/673/summaries?format=json","cboCostEstimates.0.title":"S. 673, Small Business Child Care Investment Act","introducedDate":"2023-03-07","subjects.count":8,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/673?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T17:17:47Z"}}} +{"type":"relationship","id":"9337","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"9382","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4061/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"4061","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/4061/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4061/subjects?format=json","type":"S","title":"Veterans Assistance Helpline Act of 2024","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"4061","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4061/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4061/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4061/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4061/actions?format=json","latestAction.actionDate":"2024-03-22","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4061/relatedbills?format=json","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":3,"introducedDate":"2024-03-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4061?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"9338","label":"SPONSORED","start":{"id":"3945","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000608_200.jpg","startYear":"2017","name":"Rosen, Jacky","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Nevada","endYear":"2019","url":"https://api.congress.gov/v3/member/R000608?format=json","bioguideId":"R000608"}},"end":{"id":"9584","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2186/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:21:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rosen","sponsors.0.isByRequest":"N","request.billNumber":"2186","sponsors.0.url":"https://api.congress.gov/v3/member/R000608?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","subjects.url":"https://api.congress.gov/v3/bill/118/s/2186/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2186/committees?format=json","type":"S","title":"Improving Access to Transfusion Care for Hospice Patients Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2186","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2186/cosponsors?format=json","sponsors.0.bioguideId":"R000608","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2186/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2186/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2186/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2186/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Rosen, Jacky [D-NV]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2186?format=json","sponsors.0.firstName":"Jacklyn","updateDateIncludingText":"2024-07-24T15:21:23Z"}}} +{"type":"relationship","id":"9339","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"875","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/759/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"759","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Became Public Law No: 118-191.","committees.url":"https://api.congress.gov/v3/bill/118/s/759/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/759/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Beagle Brigade Act of 2023","latestAction.text":"Became Public Law No: 118-191.","sponsors.0.party":"D","number":"759","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/759/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/759/titles?format=json","laws.0.number":"118-191","summaries.url":"https://api.congress.gov/v3/bill/118/s/759/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/759/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/759/relatedbills?format=json","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":5,"introducedDate":"2023-03-09","cosponsors.count":11,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/759?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:43:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9340","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"1124","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2682/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"2682","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2682/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2682/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Protecting America’s Orchardists and Nursery Tree Growers Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2682","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2682/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2682/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2682/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2682/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2682/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2682?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9341","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"9296","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5328/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"5328","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Became Public Law No: 117-361.","committees.url":"https://api.congress.gov/v3/bill/118/s/5328/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/s/5328/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to direct the Secretary of Commerce to submit to Congress a report containing an assessment of the value, cost, and feasibility of a trans-Atlantic submarine fiber optic cable connecting the contiguous United States, the United States Virgin Islands, Ghana, and Nigeria.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"5328","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5328/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5328/titles?format=json","laws.0.number":"117-361","summaries.url":"https://api.congress.gov/v3/bill/117/s/5328/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5328/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5328/relatedbills?format=json","latestAction.actionDate":"2024-11-14","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":2,"cosponsors.count":1,"introducedDate":"2024-11-14","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5328?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9342","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"9683","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/759/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":23,"sponsors.0.lastName":"Warnock","sponsors.0.isByRequest":"N","request.billNumber":"759","sponsors.0.url":"https://api.congress.gov/v3/member/W000790?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/759/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/759/committees?format=json","title":"Beagle Brigade Act of 2023","type":"S","latestAction.text":"Became Public Law No: 118-191.","sponsors.0.party":"D","number":"759","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/759/cosponsors?format=json","sponsors.0.bioguideId":"W000790","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/759/titles?format=json","laws.0.number":"118-191","summaries.url":"https://api.congress.gov/v3/bill/118/s/759/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/759/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/759/relatedbills?format=json","sponsors.0.fullName":"Sen. Warnock, Raphael G. [D-GA]","titles.count":5,"introducedDate":"2023-03-09","cosponsors.count":11,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/759?format=json","sponsors.0.firstName":"Raphael","updateDateIncludingText":"2025-01-14T16:43:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9368","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"878","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5355/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"5355","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Became Public Law No: 118-209.","committees.url":"https://api.congress.gov/v3/bill/118/s/5355/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5355/subjects?format=json","policyArea.name":"Native Americans","type":"S","title":"NACIE Improvement Act","latestAction.text":"Became Public Law No: 118-209.","sponsors.0.party":"R","number":"5355","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-23","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5355/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5355/titles?format=json","laws.0.number":"118-209","summaries.url":"https://api.congress.gov/v3/bill/118/s/5355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5355/actions?format=json","latestAction.actionDate":"2024-12-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5355/relatedbills?format=json","textVersions.count":4,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":8,"introducedDate":"2024-11-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5355?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:11:08Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9369","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"984","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-06-26T16:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-64.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Became Public Law No: 118-64.","sponsors.0.party":"R","number":"546","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/546/cosponsors?format=json","sponsors.0.bioguideId":"F000463","laws.0.number":"118-64","actions.url":"https://api.congress.gov/v3/bill/118/s/546/actions?format=json","latestAction.actionDate":"2024-05-24","textVersions.count":5,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/546/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":6,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/546/text?format=json","updateDate":"2024-12-19T13:04:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"546","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/546/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/546/subjects?format=json","title":"Recruit and Retain Act","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on June 8, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59307","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2024-05-24","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/546/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/546/summaries?format=json","cboCostEstimates.0.title":"S. 546, Recruit and Retain Act","introducedDate":"2023-02-28","subjects.count":11,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/546?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2024-12-19T13:04:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9370","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1054","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3680/text?format=json","relatedBills.count":1,"updateDate":"2024-08-27T11:45:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"3680","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3680/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Paid Family and Medical Leave Tax Credit Extension and Enhancement Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3680","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3680/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3680/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3680/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3680/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3680/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3680?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2024-08-27T11:45:16Z"}}} +{"type":"relationship","id":"9371","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1159","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"2444","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2444/committees?format=json","policyArea.name":"Health","type":"S","title":"ATTAIN Mental Health Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2444/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2444/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":4,"introducedDate":"2023-07-20","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2444?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9372","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1208","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1659/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"1659","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1659/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1659/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Sustain Regional Air Travel Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1659","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1659/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1659/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1659/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1659/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1659/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1659?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9373","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1271","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/785/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"785","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/785/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/785/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Consumer and Fuel Retailer Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"785","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/785/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/785/actions?format=json","latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/785/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/785?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9374","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1831","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/719/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"719","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/719/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/719/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Precision Agriculture Loan Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"719","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/719/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/719/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/719/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/719/actions?format=json","latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/719/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/719?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9375","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1871","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/363/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"363","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/363/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/363/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"North Platte Canteen Congressional Gold Medal Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"363","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/363/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/363/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/363/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/363/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/363/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":16,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/363?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9376","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1924","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-05-22T17:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Presented to President.","policyArea.name":"Environmental Protection","type":"SJRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"11","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/11/cosponsors?format=json","sponsors.0.bioguideId":"F000463","actions.url":"https://api.congress.gov/v3/bill/118/sjres/11/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/11/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":2,"cosponsors.count":37,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/11/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":28,"request.billNumber":"11","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/11/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/11/subjects?format=json","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 16, 2023\nhttps://rules.house.gov/bill/118/sj-res-11\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59194","request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":3,"request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/11/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/11/summaries?format=json","cboCostEstimates.0.title":"S.J. Res. 11, a joint resolution providing for Congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to “Control of Air Pollution From New Motor Vehicles: Heavy-Duty","introducedDate":"2023-02-09","subjects.count":9,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/11?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:17:39Z"}}} +{"type":"relationship","id":"9377","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"1947","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-05-22T17:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Environmental Protection","type":"SJRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"11","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/11/cosponsors?format=json","sponsors.0.bioguideId":"F000463","actions.url":"https://api.congress.gov/v3/bill/118/sjres/11/actions?format=json","latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/11/relatedbills?format=json","textVersions.count":3,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":2,"cosponsors.count":37,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/11/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":28,"request.billNumber":"11","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/11/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/11/subjects?format=json","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 16, 2023\nhttps://rules.house.gov/bill/118/sj-res-11\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59194","request.format":"json","latestAction_actionDate":"2025-02-20","summaries.count":3,"request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/11/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/11/summaries?format=json","cboCostEstimates.0.title":"S.J. Res. 11, a joint resolution providing for Congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to “Control of Air Pollution From New Motor Vehicles: Heavy-Duty","introducedDate":"2023-02-09","subjects.count":9,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/11?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:17:39Z"}}} +{"type":"relationship","id":"9378","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"9571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"2444","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2444/committees?format=json","policyArea.name":"Health","title":"ATTAIN Mental Health Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2444/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2444/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2444/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":4,"introducedDate":"2023-07-20","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2444?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9379","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"9952","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Fischer","cboCostEstimates.0.pubDate":"2023-05-22T17:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Environmental Protection","type":"SJRES","latestAction.text":"Message on Senate action sent to the House.","sponsors.0.party":"R","number":"11","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/11/cosponsors?format=json","sponsors.0.bioguideId":"F000463","actions.url":"https://api.congress.gov/v3/bill/118/sjres/11/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/11/relatedbills?format=json","latestAction.actionDate":"2023-06-22","textVersions.count":3,"sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":2,"cosponsors.count":37,"request.contentType":"application/json","latestAction_actionTime":"16:53:20","textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/11/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":28,"request.billNumber":"11","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/11/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/11/committees?format=json","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards\".","cboCostEstimates.0.description":"As posted on the website of the House Committee on Rules on\nMay 16, 2023\nhttps://rules.house.gov/bill/118/sj-res-11\n","cosponsors.countIncludingWithdrawnCosponsors":37,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59194","request.format":"json","sponsors.0.middleName":"P.","latestAction_actionDate":"2021-01-04","summaries.count":3,"request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/11/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/11/summaries?format=json","cboCostEstimates.0.title":"S.J. Res. 11, a joint resolution providing for Congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to “Control of Air Pollution From New Motor Vehicles: Heavy-Duty","latestAction.actionTime":"16:53:20","introducedDate":"2023-02-09","subjects.count":9,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/11?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:17:39Z"}}} +{"type":"relationship","id":"9380","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"9954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/785/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fischer","sponsors.0.isByRequest":"N","request.billNumber":"785","sponsors.0.url":"https://api.congress.gov/v3/member/F000463?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S10099; text: 09/20/2022 CR S4864-4865)","subjects.url":"https://api.congress.gov/v3/bill/118/s/785/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/785/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Consumer and Fuel Retailer Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"785","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-12-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/785/cosponsors?format=json","sponsors.0.bioguideId":"F000463","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/785/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/785/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/785/relatedbills?format=json","sponsors.0.fullName":"Sen. Fischer, Deb [R-NE]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/785?format=json","sponsors.0.firstName":"Deb","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9441","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"9423","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4213/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"4213","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/4213/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4213/committees?format=json","title":"Kids Off Social Media Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4213","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4213/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4213/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4213/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2024-04-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4213?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9442","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"9429","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4207/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"4207","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/4207/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4207/subjects?format=json","type":"S","title":"Spectrum and National Security Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4207","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4207/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4207/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4207/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4207/actions?format=json","latestAction.actionDate":"2024-04-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4207/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":5,"introducedDate":"2024-04-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4207?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9443","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"9608","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1907/text?format=json","relatedBills.count":1,"updateDate":"2024-09-24T11:03:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"1907","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1907/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1907/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Federal Firearms Licensee Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1907","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1907/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1907/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1907/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1907/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1907/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1907?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-09-24T11:03:16Z"}}} +{"type":"relationship","id":"9456","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"883","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5535/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T16:32:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"5535","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5535/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5535/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Surprises Act Enforcement Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"5535","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5535/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5535/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5535/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5535/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-12-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5535?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-29T16:32:44Z"}}} +{"type":"relationship","id":"9457","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"1034","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3935/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:18:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3935","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3935/subjects?format=json","policyArea.name":"Families","type":"S","title":"Protecting Religious Freedom for Foster Families Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3935","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3935/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3935/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3935/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3935/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3935/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3935?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2024-07-24T15:18:55Z"}}} +{"type":"relationship","id":"9458","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"1041","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3693/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3693","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/3693/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3693/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"FAIR Labels Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"3693","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3693/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3693/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3693/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3693/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3693?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9459","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"1061","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3462/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3462","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3462/committees?format=json","policyArea.name":"Health","type":"S","title":"A bill to require the Secretary of Health and Human Services to issue draft guidance to address non-addictive analgesics for chronic pain.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3462","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3462/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3462/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3462/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3462/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":2,"introducedDate":"2023-12-11","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3462?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9460","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"1227","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"1375","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1375/committees?format=json","policyArea.name":"Health","type":"S","title":"HELP Copays Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1375","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1375/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1375/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":25,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1375?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9461","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"1231","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1374/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"1374","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1374/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1374/committees?format=json","policyArea.name":"Health","type":"S","title":"Patient Right to Shop Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1374","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-04-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1374/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1374/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1374/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1374?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9462","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"1438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1375/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"1375","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1375/committees?format=json","policyArea.name":"Health","title":"HELP Copays Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1375","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1375/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1375/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1375/relatedbills?format=json","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":25,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1375?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9463","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9431","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4203/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"4203","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/4203/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4203/committees?format=json","type":"S","title":"Agricultural Emergency Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"4203","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4203/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4203/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4203/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4203/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4203/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4203?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9464","label":"SPONSORED","start":{"id":"3960","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001198_200.jpg","startYear":"2017","partyName":"Republican","name":"Marshall, Roger","attribution":"Congressional Pictorial Directory","state":"Kansas","endYear":"2021","url":"https://api.congress.gov/v3/member/M001198?format=json","bioguideId":"M001198"}},"end":{"id":"9507","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3218/text?format=json","updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Marshall","sponsors.0.isByRequest":"N","request.billNumber":"3218","sponsors.0.url":"https://api.congress.gov/v3/member/M001198?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3218/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3218/committees?format=json","policyArea.name":"Immigration","title":"NOTICE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3218","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3218/cosponsors?format=json","sponsors.0.bioguideId":"M001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3218/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Marshall, Roger [R-KS]","titles.count":4,"cosponsors.count":3,"introducedDate":"2023-11-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3218?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2024-07-23T16:18:13Z"}}} +{"type":"relationship","id":"9472","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"886","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5534/text?format=json","updateDate":"2025-01-29T16:26:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5534","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5534/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5534/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Mapping Housing Discrimination Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5534","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-12-16","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5534/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5534/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5534/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-12-16","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5534?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-29T16:26:40Z"}}} +{"type":"relationship","id":"9473","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"936","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5169/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5169","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5169/committees?format=json","type":"S","title":"Employee and Retiree Access to Justice Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"5169","request.format":"json","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5169/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5169/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-09-25","request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5169?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9474","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"1144","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2457/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2457","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2457/subjects?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Self-Governance, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2457","request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2457/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":2,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2457?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9475","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"1221","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1389/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1389","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1389/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Rural Housing Service Reform Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1389","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1389/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1389/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1389/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1389/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1389?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9476","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"1417","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1611/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1611","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1611/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1611/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Community Connect Grant Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1611","request.format":"json","latestAction_actionDate":"2024-12-09","summaries.count":1,"sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1611/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1611/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1611?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"15:39:49"}}} +{"type":"relationship","id":"9477","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"1424","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1389/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1389","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/s/1389/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1389/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Rural Housing Service Reform Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1389","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1389/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1389/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1389/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1389/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":18,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1389?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9478","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"1824","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/869/text?format=json","relatedBills.count":1,"updateDate":"2025-01-30T13:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"869","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/869/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/869/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"CDFI Bond Guarantee Program Improvement Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"869","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/869/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/869/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/869/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/869/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/869/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":10,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/869?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-30T13:23:50Z"}}} +{"type":"relationship","id":"9479","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"1850","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Smith","cboCostEstimates.0.pubDate":"2024-09-16T20:21:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 517.","sponsors.0.party":"D","number":"616","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/616/cosponsors?format=json","sponsors.0.bioguideId":"S001203","actions.url":"https://api.congress.gov/v3/bill/118/s/616/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":2,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-225","textVersions.url":"https://api.congress.gov/v3/bill/118/s/616/text?format=json","updateDate":"2025-01-21T21:26:14Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":7,"request.billNumber":"616","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/616/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/616/subjects?format=json","title":"Leech Lake Reservation Restoration Amendments","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nMay 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60720","request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/225?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/616/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/616/summaries?format=json","cboCostEstimates.0.title":"S. 616, Leech Lake Reservation Restoration Technical Corrections Act","introducedDate":"2023-03-01","subjects.count":8,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/616?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-21T21:26:14Z"}}} +{"type":"relationship","id":"9480","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9341","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5078/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"5078","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5078/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5078/committees?format=json","policyArea.name":"Housing and Community Development","title":"Homes Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"5078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5078/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5078/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5078/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5078?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9481","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9391","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4650/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"4650","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4650/committees?format=json","title":"Housing for All Veterans Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4650","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4650/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4650/actions?format=json","latestAction.actionDate":"2024-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4650?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9482","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9564","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2457/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2457","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2457/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2457/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to amend the Department of Agriculture Reorganization Act of 1994 to establish an Office of Self-Governance, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2457","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2457/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2457/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2457/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2457/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2457/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2457?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9483","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9583","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2188/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"2188","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2188/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2188/committees?format=json","policyArea.name":"Health","title":"PrEP Access and Coverage Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2188","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2188/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2188/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2188/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2188/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2188/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":22,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2188?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9484","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9627","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1611/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"1611","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services. (Sponsor introductory remarks on measure: CR S2525)","subjects.url":"https://api.congress.gov/v3/bill/118/s/1611/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1611/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Community Connect Grant Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1611","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1611/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1611/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1611/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1611?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9485","label":"SPONSORED","start":{"id":"3929","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001203_200.jpg","startYear":"2018","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Smith, Tina","state":"Minnesota","url":"https://api.congress.gov/v3/member/S001203?format=json","bioguideId":"S001203"}},"end":{"id":"9965","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/869/text?format=json","relatedBills.count":1,"updateDate":"2025-01-30T13:23:50Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Smith","sponsors.0.isByRequest":"N","request.billNumber":"869","sponsors.0.url":"https://api.congress.gov/v3/member/S001203?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7150; text: CR S7135-7136)","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/869/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/869/committees?format=json","type":"S","title":"CDFI Bond Guarantee Program Improvement Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"869","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/869/cosponsors?format=json","sponsors.0.bioguideId":"S001203","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/869/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/869/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/869/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/869/relatedbills?format=json","sponsors.0.fullName":"Sen. Smith, Tina [D-MN]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":10,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/869?format=json","sponsors.0.firstName":"Tina","updateDateIncludingText":"2025-01-30T13:23:50Z"}}} +{"type":"relationship","id":"9503","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9434","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3982/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"3982","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3982/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3982/subjects?format=json","policyArea.name":"Agriculture and Food","title":"EAT Local Foods Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3982","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3982/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3982/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3982/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3982/actions?format=json","latestAction.actionDate":"2024-03-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"cosponsors.count":15,"introducedDate":"2024-03-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3982?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9504","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9451","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3960/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"3960","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3960/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3960/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"A bill to amend title 35, United States Code, to provide a good faith exception to the imposition of fines for false assertions and certifications, and for other purposes.","latestAction.text":"Became Public Law No: 118-151.","sponsors.0.party":"D","number":"3960","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-03-30","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3960/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3960/titles?format=json","laws.0.number":"118-151","summaries.url":"https://api.congress.gov/v3/bill/118/s/3960/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3960/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3960/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":4,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3960?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:15:30Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9505","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9480","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Warren","cboCostEstimates.0.pubDate":"2021-12-14T16:01:00Z","sponsors.0.isByRequest":"N","notes.0.text":"Joint explanatory statement is in Armed Services Committee Print No. 2.","latestAction_text":"Became Public Law No: 117-81.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1605","amendments.count":13,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1605/cosponsors?format=json","sponsors.0.bioguideId":"W000817","laws.0.number":"117-81","actions.url":"https://api.congress.gov/v3/bill/118/s/1605/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1605/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","sponsors.0.fullName":"Sen. Warren, Elizabeth [D-MA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/1605/amendments?format=json","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57693","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1605/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2021-12-14T16:01:00Z","actions.count":2,"request.billNumber":"1605","sponsors.0.url":"https://api.congress.gov/v3/member/W000817?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1605/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1605/subjects?format=json","title":"Maternal Health Pandemic Response Act","cboCostEstimates.1.description":"As Passed by the House of Representatives on December 7, 2021\n","cboCostEstimates.0.description":"As Passed by the House of Representatives on December 7, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57693","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-12-27","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1605/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1605/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of S. 1605, The National Defense Authorization Act for Fiscal Year 2022","introducedDate":"2023-05-15","subjects.count":20,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1605?format=json","cboCostEstimates.1.title":"Statutory Pay-As-You-Go Effects of S. 1605, The National Defense Authorization Act for Fiscal Year 2022","sponsors.0.firstName":"Elizabeth","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9506","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1899/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1899","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1899/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1899/committees?format=json","type":"S","title":"Hydrogen Aviation Development Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1899","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1899/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1899/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1899/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1899/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1899/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":2,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1899?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9507","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9615","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1630/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"1630","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1630/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1630/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"SOAR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1630","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1630/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1630/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1630/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1630/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":12,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1630?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9508","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9659","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1062/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1062","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1062/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1062/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Jobs and Opportunities for SNAP Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1062","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1062/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1062/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1062/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1062/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1062/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1062?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9517","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5533/text?format=json","updateDate":"2025-01-23T01:03:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"5533","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Budget.","committees.url":"https://api.congress.gov/v3/bill/118/s/5533/committees?format=json","type":"S","title":"A bill to repeal the Impoundment Control Act of 1974.","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"5533","request.format":"json","latestAction_actionDate":"2024-12-16","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5533/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5533/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-12-16","request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5533?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-23T01:03:26Z"}}} +{"type":"relationship","id":"9518","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"917","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3596/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3596","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 605.","committees.url":"https://api.congress.gov/v3/bill/118/s/3596/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3596/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to amend the Mineral Leasing Act to amend references of gilsonite to asphaltite.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 605.","sponsors.0.party":"R","number":"3596","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3596/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3596/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3596/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-01-17","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3596?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9519","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"966","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4696/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4696","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4696/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4696/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Restore the Port of Baltimore Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4696","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4696/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4696/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4696?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9520","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"967","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4695/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4695","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4695/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4695/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"BOWSER Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4695","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4695/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4695/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4695/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4695/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4695/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2024-07-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4695?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9521","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"968","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4694/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4694","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4694/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Baltimore Recovery Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"4694","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4694/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4694/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4694?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9522","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"985","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4434/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Modernizing Retrospective Regulatory Review Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4434","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4434/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4434/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4434/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9523","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1001","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4200/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4200","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4200/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4200/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"ALERT Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4200","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4200/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4200/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4200/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4200/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2024-04-19","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4200?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9524","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1003","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4197/text?format=json","updateDate":"2024-08-12T18:30:03Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4197","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4197/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4197/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"A bill to amend the FISA Amendments Act of 2008 to provide for an extension of certain authorities under title VII of the Foreign Intelligence Surveillance Act of 1978.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"4197","request.format":"json","latestAction_actionDate":"2024-04-19","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4197/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4197/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-19","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-04-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4197?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-08-12T18:30:03Z"}}} +{"type":"relationship","id":"9525","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1016","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4184/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4184","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/4184/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4184/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"State Grazing Management Authority Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4184","request.format":"json","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4184/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4184/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4184?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9526","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1029","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3941/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3941","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3941/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3941/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Davis-Bacon Repeal Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3941","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3941/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3941/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3941/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3941/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3941?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9527","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1118","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2940/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"2940","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2940/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2940/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Define the Mission Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2940","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2940/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2940/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2940/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2940/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2940/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2940?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9528","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1358","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-07-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":5,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9529","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1816","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1073/text?format=json","updateDate":"2024-07-24T15:22:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"1073","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1073/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1073/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"AMERICA Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1073","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1073/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1073/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1073/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1073/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2023-03-30","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1073?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:22:45Z"}}} +{"type":"relationship","id":"9530","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"1914","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/68/text?format=json","relatedBills.count":1,"updateDate":"2024-04-11T17:15:44Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"68","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/68/subjects?format=json","policyArea.name":"Congress","type":"SJRES","title":"A joint resolution providing for the issuance of a summons, providing for the appointment of a committee to receive and to report evidence, and establishing related procedures concerning the articles of impeachment against Alejandro Nicholas Mayorkas.","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 352.","sponsors.0.party":"R","number":"68","request.format":"json","latestAction_actionDate":"2025-03-03","sponsors.0.bioguideId":"L000577","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/68/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/68/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/68/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-03-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/68?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-04-11T17:15:44Z"}}} +{"type":"relationship","id":"9531","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9320","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-08-30T14:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 627.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3434","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3434/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3434/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3434/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3434/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3434/committees?format=json","title":"Incentivizing the Expansion of U.S. Ports Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58438","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3434/summaries?format=json","cboCostEstimates.0.title":"S. 3434, Strengthening Support for American Manufacturing Act","introducedDate":"2023-12-07","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9532","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9327","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-11-09T16:14:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 615.","policyArea.name":"Foreign Trade and International Finance","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3531","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3531/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3531/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3531/relatedbills?format=json","latestAction.actionDate":"2023-12-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":11,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-237","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3531/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3531","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3531/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3531/subjects?format=json","title":"Protect American Gun Exporters Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58722","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/237?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3531/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3531/summaries?format=json","cboCostEstimates.0.title":"S. 3531, National Climate Adaptation and Resilience Strategy Act of 2022","introducedDate":"2023-12-14","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3531?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9533","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9370","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4653/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4653","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 490.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4653/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4653/committees?format=json","policyArea.name":"Education","title":"Childcare Worker Opportunity Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4653","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-15","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4653/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4653/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4653/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4653/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4653/relatedbills?format=json","latestAction.actionDate":"2024-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4653?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9534","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9408","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4434/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"4434","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/4434/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4434/subjects?format=json","type":"S","title":"Modernizing Retrospective Regulatory Review Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4434","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4434/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4434/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4434/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4434/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4434/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4434?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9535","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9447","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3963/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"3963","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Environmental Protection","committees.url":"https://api.congress.gov/v3/bill/118/s/3963/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3963/subjects?format=json","title":"Native Species Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"3963","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3963/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3963/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3963/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3963/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3963/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3963?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9536","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9461","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lee","cboCostEstimates.0.pubDate":"2022-01-14T15:56:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3035","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3035/cosponsors?format=json","sponsors.0.bioguideId":"L000577","actions.url":"https://api.congress.gov/v3/bill/118/s/3035/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3035/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-82","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3035/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3035","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3035/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3035/subjects?format=json","title":"Protecting Our Kids from Harmful Research Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on\nNovember 3, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57758","request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/82?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3035/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3035/summaries?format=json","cboCostEstimates.0.title":"S. 3035, GOOD AI Act of 2021","introducedDate":"2023-10-04","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3035?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9537","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9518","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2972/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"2972","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2972/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2972/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require the Secretary of the Interior to repay States for amounts expended by States to operate units of the National Park System during a Government shutdown.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"2972","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2972/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2972/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2972/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2972/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2972?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9538","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1912/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"1912","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S3899-3900)","policyArea.name":"Emergency Management","subjects.url":"https://api.congress.gov/v3/bill/118/s/1912/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1912/committees?format=json","type":"S","title":"ARTICLE ONE Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"1912","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1912/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1912/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1912/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1912/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1912/relatedbills?format=json","latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":4,"introducedDate":"2023-06-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1912?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9539","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9732","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-01-26","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9540","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9735","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/105/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"105","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/105/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/105/subjects?format=json","policyArea.name":"Education","type":"S","title":"Children Have Opportunities in Classrooms Everywhere Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"105","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/105/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/105/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/105/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/105/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/105/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-01-26","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/105?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9541","label":"SPONSORED","start":{"id":"3967","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/l000577_200.jpg","partyName":"Republican","startYear":"2011","attribution":"Courtesy U.S. Senate Historical Office","name":"Lee, Mike","state":"Utah","url":"https://api.congress.gov/v3/member/L000577?format=json","bioguideId":"L000577"}},"end":{"id":"9756","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/68/text?format=json","relatedBills.count":1,"updateDate":"2024-04-11T17:15:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"68","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/117/sjres/68/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/68/subjects?format=json","policyArea.name":"Congress","type":"SJRES","title":"A joint resolution providing for the issuance of a summons, providing for the appointment of a committee to receive and to report evidence, and establishing related procedures concerning the articles of impeachment against Alejandro Nicholas Mayorkas.","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 352.","sponsors.0.party":"R","number":"68","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/68/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/68/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/68/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/68/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/68/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2024-03-23","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/68?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2024-04-11T17:15:44Z"}}} +{"type":"relationship","id":"9542","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"889","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4000/text?format=json","updateDate":"2025-01-21T22:06:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Padilla","cboCostEstimates.0.pubDate":"2024-09-04T15:51:00Z","sponsors.0.isByRequest":"N","request.billNumber":"4000","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4000/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4000/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"A bill to reaffirm the applicability of the Indian Reorganization Act to the Lytton Rancheria of California, and for other purposes.","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"4000","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nJuly 25, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/60686","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/223?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4000/titles?format=json","cboCostEstimates.0.title":" S. 4000, a bill to reaffirm the applicability of the Indian Reorganization Act to the Lytton Rancheria of California, and for other purposes","actions.url":"https://api.congress.gov/v3/bill/118/s/4000/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":3,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","latestAction.actionTime":"14:40:47","titles.count":2,"introducedDate":"2024-03-20","request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4000?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-21T22:06:12Z","latestAction_actionTime":"14:40:47","committeeReports.0.citation":"S. Rept. 118-223"}}} +{"type":"relationship","id":"9543","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"898","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5532/text?format=json","updateDate":"2025-01-22T01:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"5532","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S7004)","committees.url":"https://api.congress.gov/v3/bill/118/s/5532/committees?format=json","type":"S","title":"Wildfire Intelligence Collaboration and Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S7004)","sponsors.0.party":"D","number":"5532","request.format":"json","latestAction_actionDate":"2024-12-12","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5532/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5532/actions?format=json","latestAction.actionDate":"2024-12-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-12-12","request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5532?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-22T01:23:21Z"}}} +{"type":"relationship","id":"9544","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"938","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5165/text?format=json","relatedBills.count":1,"updateDate":"2024-11-07T15:56:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"5165","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6444)","committees.url":"https://api.congress.gov/v3/bill/118/s/5165/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5165/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom from Intimidation in Elections Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6444)","sponsors.0.party":"D","number":"5165","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5165/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5165/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5165/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5165/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5165?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-07T15:56:32Z"}}} +{"type":"relationship","id":"9545","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4421/text?format=json","relatedBills.count":1,"updateDate":"2025-01-29T11:37:04Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"4421","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3886-3887)","committees.url":"https://api.congress.gov/v3/bill/118/s/4421/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4421/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Agricultural Biotechnology Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S3886-3887)","sponsors.0.party":"D","number":"4421","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4421/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4421/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4421/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4421/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4421/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4421?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-29T11:37:04Z"}}} +{"type":"relationship","id":"9546","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"999","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4420/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"4420","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/4420/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4420/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Agriculture and National Security Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4420","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4420/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4420/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4420/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4420/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4420?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9547","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"1079","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3444","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","committees.url":"https://api.congress.gov/v3/bill/118/s/3444/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3444/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Local 9–8–8 Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","sponsors.0.party":"D","number":"3444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3444/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3444/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3444/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":13,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3444?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9548","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"1202","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1667/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"1667","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1708-1709)","committees.url":"https://api.congress.gov/v3/bill/118/s/1667/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1667/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"America’s CHILDREN Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1708-1709)","sponsors.0.party":"D","number":"1667","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1667/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1667/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1667/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1667/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":12,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1667?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9549","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"1293","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/485/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"485","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S459)","committees.url":"https://api.congress.gov/v3/bill/118/s/485/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/485/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"Hazard and Flooding Mitigation Funding Assurance Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S459)","sponsors.0.party":"D","number":"485","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/485/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/485/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/485/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/485/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/485?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9550","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"1546","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/936/text?format=json","relatedBills.count":1,"updateDate":"2025-01-21T17:44:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"936","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7215; text: CR S7242-7243)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/936/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution congratulating the Los Angeles Galaxy for winning the 2024 Major League Soccer Cup.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7215; text: CR S7242-7243)","sponsors.0.party":"D","number":"936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/936/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/936/actions?format=json","latestAction.actionDate":"2024-12-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/936/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":2,"introducedDate":"2024-12-19","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/936?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-21T17:44:14Z"}}} +{"type":"relationship","id":"9551","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9347","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Padilla","cboCostEstimates.0.pubDate":"2022-07-14T17:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"By Senator Cantwell from Committee on Commerce, Science, and Transportation filed written report under authority of the order of the Senate of 10/14/2022. Report No. 117-191.","policyArea.name":"Commerce","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3375","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3375/cosponsors?format=json","sponsors.0.bioguideId":"P000145","actions.url":"https://api.congress.gov/v3/bill/118/s/3375/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3375/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"cosponsors.count":10,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-191","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3375/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3375","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3375/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3375/committees?format=json","title":"Accelerating Small Business Growth Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":10,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58298","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/191?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3375/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3375/summaries?format=json","cboCostEstimates.0.title":"S. 3375, Omnibus Travel and Tourism Act of 2021","introducedDate":"2023-11-30","subjects.count":7,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3375?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9552","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9456","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3712/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3712","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S838)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/3712/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3712/committees?format=json","type":"S","title":"A bill to amend the National Voter Registration Act of 1993 to treat United States Citizenship and Immigration Services field offices as voter registration agencies, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S311)","sponsors.0.party":"D","number":"3712","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3712/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3712/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3712/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3712/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3712/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":2,"introducedDate":"2024-01-31","cosponsors.count":16,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3712?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-07-24T15:19:17Z"}}} +{"type":"relationship","id":"9553","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9457","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3711/text?format=json","relatedBills.count":3,"updateDate":"2024-12-20T12:57:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3711","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3711/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3711/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protect Innocent Victims Of Taxation After Fire Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S311)","sponsors.0.party":"D","number":"3711","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3711/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3711/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3711/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3711/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3711/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3711?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-12-20T12:57:55Z"}}} +{"type":"relationship","id":"9554","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9475","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3444/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3444","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/3444/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3444/committees?format=json","type":"S","title":"Local 9–8–8 Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S5853)","sponsors.0.party":"D","number":"3444","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3444/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3444/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3444/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3444/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3444/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3444?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9555","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9481","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3377","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Became Public Law No: 117-77.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/3377/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3377/committees?format=json","type":"S","title":"Disadvantaged Business Enterprise Supportive Services Expansion Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S5694-5695)","sponsors.0.party":"D","number":"3377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-12-22","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3377/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3377/titles?format=json","laws.0.number":"117-77","summaries.url":"https://api.congress.gov/v3/bill/117/s/3377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3377/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3377/relatedbills?format=json","latestAction.actionDate":"2023-11-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"introducedDate":"2023-11-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3377?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-07-24T15:19:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9556","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9502","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3221/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"3221","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3221/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3221/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Wildland Firefighter Fair Pay Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"3221","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3221/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3221/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3221/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3221/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3221/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":3,"cosponsors.count":7,"introducedDate":"2023-11-02","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3221?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9557","label":"SPONSORED","start":{"id":"3949","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000145_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Padilla, Alex","state":"California","url":"https://api.congress.gov/v3/member/P000145?format=json","bioguideId":"P000145"}},"end":{"id":"9588","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1771/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Padilla","sponsors.0.isByRequest":"N","request.billNumber":"1771","sponsors.0.url":"https://api.congress.gov/v3/member/P000145?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/1771/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1771/subjects?format=json","policyArea.name":"Law","type":"S","title":"CASE LOAD Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1846)","sponsors.0.party":"D","number":"1771","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1771/cosponsors?format=json","sponsors.0.bioguideId":"P000145","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1771/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1771/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1771/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1771/relatedbills?format=json","sponsors.0.fullName":"Sen. Padilla, Alex [D-CA]","titles.count":4,"introducedDate":"2023-05-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1771?format=json","sponsors.0.firstName":"Alex","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"9558","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"890","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Menendez","cboCostEstimates.0.pubDate":"2023-06-26T12:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"920","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/920/cosponsors?format=json","sponsors.0.bioguideId":"M000639","actions.url":"https://api.congress.gov/v3/bill/118/s/920/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":3,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/118/s/920/amendments?format=json","titles.count":5,"cosponsors.count":4,"request.contentType":"application/json","latestAction_actionTime":"14:40:39","textVersions.url":"https://api.congress.gov/v3/bill/118/s/920/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"920","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/920/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/920/committees?format=json","title":"International Trafficking Victims Protection Reauthorization Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on June 12, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59302","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/920/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/920/summaries?format=json","cboCostEstimates.0.title":"S. 920, International Trafficking Victims Protection Reauthorization Act of 2023","latestAction.actionTime":"14:40:39","introducedDate":"2023-03-22","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/920?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9559","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1213","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1653/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1653","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1653/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1653/subjects?format=json","policyArea.name":"Health","type":"S","title":"Prevent BLEEDing Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1653","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1653/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1653/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1653/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1653/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1653?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9560","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1222","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1386/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1386","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1386/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Vieques Recovery and Redevelopment Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1386","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1386/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1386/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1386/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1386?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9561","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1226","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1383/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1383","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1383/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1383/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"HEAR Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1383","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1383/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1383/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1383/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1383?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:22:28Z"}}} +{"type":"relationship","id":"9562","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1420","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1386/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1386","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/s/1386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1386/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Vieques Recovery and Redevelopment Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1386","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1386/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1386/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1386/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1386?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9563","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1428","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1383/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1383","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1383/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1383/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"HEAR Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1383","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1383/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1383/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1383/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1383/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1383/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1383?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2024-07-24T15:22:28Z"}}} +{"type":"relationship","id":"9564","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1492","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/617/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"617","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/617/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/617/subjects?format=json","policyArea.name":"Energy","title":"COAST Anti-Drilling Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"617","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/617/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/617/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/617/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/617/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/617/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-01","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/617?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9565","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1602","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/157/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"157","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: 03/30/2023 CR S1107-1108)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/157/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/157/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution commemorating the 25th anniversary of the signing of the Good Friday Agreement, and for other purposes.","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1572; text: 03/30/2023 CR S1107-1108)","sponsors.0.party":"D","number":"157","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/157/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/157/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/157/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/157/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":3,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":14,"subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/157?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9566","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1612","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/196/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"196","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1537)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/196/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/196/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution recognizing the cultural and historical significance of the Cinco de Mayo holiday.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S1537)","sponsors.0.party":"D","number":"196","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/196/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/196/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/196/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/196/actions?format=json","latestAction.actionDate":"2023-05-04","textVersions.count":1,"sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":2,"introducedDate":"2023-05-04","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/196?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9567","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"1849","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/617/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"617","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/617/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/617/subjects?format=json","policyArea.name":"Energy","title":"COAST Anti-Drilling Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"617","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/617/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/617/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/617/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/617/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/617/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-01","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/617?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9568","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9363","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3867/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"3867","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3867/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3867/committees?format=json","policyArea.name":"Housing and Community Development","title":"Livable Communities Act of 2024","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"3867","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3867/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3867/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3867/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3867/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3867/relatedbills?format=json","latestAction.actionDate":"2024-03-12","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":3,"introducedDate":"2024-03-05","cosponsors.count":5,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3867?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:24:12Z"}}} +{"type":"relationship","id":"9569","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9648","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1359/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1359","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/s/1359/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1359/subjects?format=json","title":"CLAIM Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1359","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1359/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1359/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1359/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1359/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1359/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1359?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9570","label":"SPONSORED","start":{"id":"4030","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:35:24Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000639_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Menendez, Robert","state":"New Jersey","endYear":"2006","url":"https://api.congress.gov/v3/member/M000639?format=json","bioguideId":"M000639"}},"end":{"id":"9673","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1025/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Menendez","sponsors.0.isByRequest":"N","request.billNumber":"1025","sponsors.0.url":"https://api.congress.gov/v3/member/M000639?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1025/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1025/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"SAFEGUARD Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1025","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1025/cosponsors?format=json","sponsors.0.bioguideId":"M000639","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1025/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1025/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1025/actions?format=json","latestAction.actionDate":"2023-03-29","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1025/relatedbills?format=json","sponsors.0.fullName":"Sen. Menendez, Robert [D-NJ]","titles.count":4,"introducedDate":"2023-03-29","cosponsors.count":7,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1025?format=json","sponsors.0.firstName":"Robert","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9573","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"893","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Murkowski","cboCostEstimates.0.pubDate":"2024-11-18T16:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"4365","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4365/cosponsors?format=json","sponsors.0.bioguideId":"M001153","actions.url":"https://api.congress.gov/v3/bill/118/s/4365/actions?format=json","latestAction.actionDate":"2024-12-16","textVersions.count":3,"sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":5,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"14:40:25","committeeReports.0.citation":"S. Rept. 118-248","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4365/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"4365","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4365/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4365/subjects?format=json","title":"Veterinary Services to Improve Public Health in Rural Communities Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs\non July 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60999","request.format":"json","latestAction_actionDate":"2024-12-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/248?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4365/titles?format=json","cboCostEstimates.0.title":"S. 4365, Veterinary Services to Improve Public Health in Rural Communities Act","latestAction.actionTime":"14:40:25","introducedDate":"2024-05-16","subjects.count":9,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4365?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:14:50Z"}}} +{"type":"relationship","id":"9574","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"1498","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Murkowski","cboCostEstimates.0.pubDate":"2023-08-07T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ethics.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"623","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/623/cosponsors?format=json","sponsors.0.bioguideId":"M001153","actions.url":"https://api.congress.gov/v3/bill/118/s/623/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/623/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-20","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-56","textVersions.url":"https://api.congress.gov/v3/bill/118/s/623/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"623","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/623/committees?format=json","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on July 11, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59463","request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/56?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/623/summaries?format=json","cboCostEstimates.0.title":"S. 623, a bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes","latestAction.actionTime":"17:03:55","introducedDate":"2023-03-02","subjects.count":6,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/623?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9575","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"1847","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Murkowski","cboCostEstimates.0.pubDate":"2023-08-07T19:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"623","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/623/cosponsors?format=json","sponsors.0.bioguideId":"M001153","actions.url":"https://api.congress.gov/v3/bill/118/s/623/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/623/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-20","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-56","textVersions.url":"https://api.congress.gov/v3/bill/118/s/623/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"623","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/623/committees?format=json","title":"A bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes.","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on July 11, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59463","request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/56?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/623/summaries?format=json","cboCostEstimates.0.title":"S. 623, a bill to amend the Alaska Native Claims Settlement Act to exclude certain payments to aged, blind, or disabled Alaska Natives or descendants of Alaska Natives from being used to determine eligibility for certain programs, and for other purposes","latestAction.actionTime":"17:03:55","introducedDate":"2023-03-02","subjects.count":6,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/623?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9576","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9338","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5081/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"5081","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6672)","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/5081/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5081/subjects?format=json","type":"S","title":"Arctic Research and Policy Amendments Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S6146-6147)","sponsors.0.party":"R","number":"5081","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5081/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5081/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5081/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5081/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5081/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5081?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9577","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9599","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1918/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"1918","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1918/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1918/committees?format=json","type":"S","title":"Don Young Veterans Advancing Conservation Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1918","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1918/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1918/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1918/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1918/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1918/relatedbills?format=json","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1918?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9578","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9772","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/52/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"52","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/52/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/52/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency entitled \"Finding That Lead Emissions From Aircraft Engines That Operate on Leaded Fuel Cause or Contribute to Air Pollution That May Reasonably Be Anticipated To Endanger Public Health and Welfare\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"52","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/52/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/52/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/52/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/52/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-06","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":2,"introducedDate":"2023-12-06","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/52?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9579","label":"SPONSORED","start":{"id":"3957","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001153_200.jpg","startYear":"2002","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Murkowski, Lisa","state":"Alaska","url":"https://api.congress.gov/v3/member/M001153?format=json","bioguideId":"M001153"}},"end":{"id":"9794","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/52/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"52","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/52/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/52/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency entitled \"Finding That Lead Emissions From Aircraft Engines That Operate on Leaded Fuel Cause or Contribute to Air Pollution That May Reasonably Be Anticipated To Endanger Public Health and Welfare\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"52","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/52/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/52/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/52/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/52/actions?format=json","latestAction.actionDate":"2023-12-06","textVersions.count":1,"sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":2,"cosponsors.count":2,"introducedDate":"2023-12-06","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/52?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T17:12:38Z","latestAction_actionTime":"13:16:31"}}} +{"type":"relationship","id":"9580","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"894","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Heinrich","cboCostEstimates.0.pubDate":"2024-11-18T16:04:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"2908","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2908/cosponsors?format=json","sponsors.0.bioguideId":"H001046","actions.url":"https://api.congress.gov/v3/bill/118/s/2908/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2908/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","amendments.url":"https://api.congress.gov/v3/bill/118/s/2908/amendments?format=json","titles.count":5,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"14:40:19","committeeReports.0.citation":"S. Rept. 118-246","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2908/text?format=json","updateDate":"2025-01-21T22:06:12Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":14,"request.billNumber":"2908","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2908/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2908/committees?format=json","title":"Indian Buffalo Management Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs\non September 25, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60997","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-12-16","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/246?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2908/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2908/summaries?format=json","cboCostEstimates.0.title":"S. 2908, Indian Buffalo Management Act","latestAction.actionTime":"14:40:19","introducedDate":"2023-09-21","subjects.count":8,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2908?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-21T22:06:12Z"}}} +{"type":"relationship","id":"9581","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"1007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4193/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"4193","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4193/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4193/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Habitat Connectivity on Working Lands Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4193","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4193/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4193/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4193/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4193?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9582","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"1023","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3954/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"3954","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/3954/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3954/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Geothermal Energy Optimization Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3954","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3954/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3954/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3954/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3954?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9583","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"1074","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3449/text?format=json","relatedBills.count":1,"updateDate":"2024-10-15T20:48:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"3449","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3449/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3449/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to provide low-income individuals with opportunities to enter and follow a career pathway in the health professions, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3449","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2023-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3449/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3449/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3449/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3449?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-10-15T20:48:14Z"}}} +{"type":"relationship","id":"9584","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9336","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5083/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"5083","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5083/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to amend the John D. Dingell, Jr. Conservation, Management, and Recreation Act to extend the Every Kid Outdoors program.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"5083","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5083/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5083/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5083/relatedbills?format=json","latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":2,"introducedDate":"2024-09-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5083?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9585","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9349","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Heinrich","cboCostEstimates.0.pubDate":"2022-11-21T16:56:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 535.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"3185","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3185/cosponsors?format=json","sponsors.0.bioguideId":"H001046","actions.url":"https://api.congress.gov/v3/bill/118/s/3185/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3185/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-184","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3185/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3185","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3185/subjects?format=json","title":"Tribal Cultural Areas Protection Act","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58819","request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2022-10-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/184?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3185/summaries?format=json","cboCostEstimates.0.title":"S. 3185,\t a bill to amend the Delaware Water Gap National Recreation Area Improvement Act to extend the exception to the closure of certain roads within the Recreation Area for local businesses, and for other purposes","introducedDate":"2023-11-01","subjects.count":13,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3185?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T18:13:01Z"}}} +{"type":"relationship","id":"9586","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9520","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2970/text?format=json","relatedBills.count":1,"updateDate":"2024-11-26T19:30:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"2970","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/2970/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2970/committees?format=json","type":"S","title":"Indigenous Peoples' Day Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2970","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2970/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2970/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2970/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2970/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2970/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":13,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2970?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-11-26T19:30:33Z"}}} +{"type":"relationship","id":"9587","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9552","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2714/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"2714","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/2714/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2714/subjects?format=json","title":"CREATE AI Act of 2024","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 721.","sponsors.0.party":"D","number":"2714","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-09-13","sponsors.0.middleName":"T.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2714/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2714/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2714/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2714/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2714/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":6,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2714?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-14T18:57:01Z"}}} +{"type":"relationship","id":"9588","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9602","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1909/text?format=json","relatedBills.count":1,"updateDate":"2024-11-14T12:03:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"1909","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/1909/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1909/committees?format=json","title":"BUMP Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1909","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2021-05-27","sponsors.0.middleName":"T.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1909/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1909/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1909/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1909/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1909/relatedbills?format=json","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":4,"introducedDate":"2023-06-08","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1909?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2024-11-14T12:03:16Z"}}} +{"type":"relationship","id":"9589","label":"SPONSORED","start":{"id":"3984","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001046_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Heinrich, Martin","state":"New Mexico","endYear":"2013","url":"https://api.congress.gov/v3/member/H001046?format=json","bioguideId":"H001046"}},"end":{"id":"9615","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1630/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Heinrich","sponsors.0.isByRequest":"N","request.billNumber":"1630","sponsors.0.url":"https://api.congress.gov/v3/member/H001046?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1630/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1630/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"SOAR Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1630","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"T.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1630/cosponsors?format=json","sponsors.0.bioguideId":"H001046","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1630/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1630/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1630/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Heinrich, Martin [D-NM]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":12,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1630?format=json","sponsors.0.firstName":"Martin","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9590","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"896","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-149.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Became Public Law No: 118-149.","sponsors.0.party":"R","number":"91","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/91/cosponsors?format=json","sponsors.0.bioguideId":"H000601","laws.0.number":"118-149","actions.url":"https://api.congress.gov/v3/bill/118/s/91/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/91/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-12","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/91/amendments?format=json","titles.count":6,"cosponsors.count":72,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/91/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":22,"request.billNumber":"91","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/91/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/91/subjects?format=json","title":"Forgotten Heroes of the Holocaust Congressional Gold Medal Act","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2024-12-12","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/91/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/91/summaries?format=json","introducedDate":"2023-01-26","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/91?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9591","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"981","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4439/text?format=json","updateDate":"2024-08-05T16:12:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"4439","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4439/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4439/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Transparency in Debt Issuance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4439","request.format":"json","latestAction_actionDate":"2024-06-03","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4439/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4439/actions?format=json","latestAction.actionDate":"2024-06-03","textVersions.count":1,"sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":3,"introducedDate":"2024-06-03","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4439?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-05T16:12:59Z"}}} +{"type":"relationship","id":"9592","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"1882","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Became Public Law No: 118-149.","sponsors.0.party":"R","number":"91","amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/91/cosponsors?format=json","sponsors.0.bioguideId":"H000601","laws.0.number":"118-149","actions.url":"https://api.congress.gov/v3/bill/118/s/91/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/91/relatedbills?format=json","textVersions.count":4,"latestAction.actionDate":"2024-12-12","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/91/amendments?format=json","titles.count":6,"cosponsors.count":72,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/91/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":22,"request.billNumber":"91","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/91/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/91/subjects?format=json","title":"Forgotten Heroes of the Holocaust Congressional Gold Medal Act","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/91/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/91/summaries?format=json","introducedDate":"2023-01-26","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/91?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:24:07Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9593","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"1933","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/12/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"12","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Indefinitely postponed by Senate by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/12/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/12/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution disapproving the action of the District of Columbia Council in approving the Revised Criminal Code Act of 2022.","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"12","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/12/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/12/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/12/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/12/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/12/relatedbills?format=json","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":47,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/12?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9594","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"1949","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/12/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"12","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/12/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/12/committees?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution disapproving the action of the District of Columbia Council in approving the Revised Criminal Code Act of 2022.","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"12","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2025-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/12/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/12/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/12/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/12/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/12/relatedbills?format=json","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":47,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/12?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9595","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"9305","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4439/text?format=json","relatedBills.count":2,"updateDate":"2024-08-05T16:12:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"4439","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Became Public Law No: 117-353.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/4439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4439/committees?format=json","type":"S","title":"Transparency in Debt Issuance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4439","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4439/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4439/titles?format=json","laws.0.number":"117-353","summaries.url":"https://api.congress.gov/v3/bill/117/s/4439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4439/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4439?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-05T16:12:59Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9596","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"9314","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3240/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"3240","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 620.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3240/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3240/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to require senior Department of State officials to maintain security clearances and to require the Secretary of State to notify Congress when the security clearances of such officials are suspended or revoked.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3240","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/243?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3240/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3240/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3240/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3240/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3240/relatedbills?format=json","latestAction.actionDate":"2023-11-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":2,"introducedDate":"2023-11-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3240?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:00:46Z","committeeReports.0.citation":"S. Rept. 117-243"}}} +{"type":"relationship","id":"9597","label":"SPONSORED","start":{"id":"3981","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000601_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hagerty, Bill","state":"Tennessee","url":"https://api.congress.gov/v3/member/H000601?format=json","bioguideId":"H000601"}},"end":{"id":"9472","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3703/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hagerty","sponsors.0.isByRequest":"N","request.billNumber":"3703","sponsors.0.url":"https://api.congress.gov/v3/member/H000601?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3703/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3703/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"RESPITE for Businesses Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3703","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3703/cosponsors?format=json","sponsors.0.bioguideId":"H000601","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3703/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3703/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3703/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3703/relatedbills?format=json","latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Hagerty, Bill [R-TN]","titles.count":4,"introducedDate":"2024-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3703?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9606","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9449","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3962/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"3962","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3962/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3962/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Enhanced End-Use Monitoring Accountability Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3962","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3962/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3962/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3962/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3962/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3962?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9607","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9533","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2955/text?format=json","updateDate":"2024-11-18T21:14:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2955","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2955/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Srebrenica Genocide Remembrance Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2955","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2955/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2955/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2955/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2955/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-09-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2955?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-11-18T21:14:40Z"}}} +{"type":"relationship","id":"9608","label":"SPONSORED","start":{"id":"3968","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000575_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Lankford, James","state":"Oklahoma","endYear":"2015","url":"https://api.congress.gov/v3/member/L000575?format=json","bioguideId":"L000575"}},"end":{"id":"9535","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2727/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"2727","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2727/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2727/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Advice and Consent Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2727","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2727/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2727/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-06","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2023-09-06","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2727?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9617","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"899","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5531/text?format=json","relatedBills.count":1,"updateDate":"2025-01-22T15:50:04Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"5531","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/5531/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5531/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"S","title":"Public Archives Resiliency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5531","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5531/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5531/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5531/actions?format=json","latestAction.actionDate":"2024-12-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5531/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2024-12-12","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5531?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-22T15:50:04Z"}}} +{"type":"relationship","id":"9618","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"1053","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3681/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3681","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3681/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3681/subjects?format=json","policyArea.name":"Education","type":"S","title":"Preparing And Retaining All (PARA) Educators Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3681","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-01-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3681/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3681/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3681/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3681/actions?format=json","latestAction.actionDate":"2024-01-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3681/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3681?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9619","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"1113","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2945/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"2945","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2945/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2945/subjects?format=json","policyArea.name":"Education","type":"S","title":"Alice Cogswell and Anne Sullivan Macy Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2945","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2945/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2945/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2945/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2945/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2945/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2945?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9620","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"1235","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1373/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"1373","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1373/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1373/committees?format=json","policyArea.name":"Health","type":"S","title":"Naloxone Affordability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1373","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1373/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1373/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1373?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9621","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"1265","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/787/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"787","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/787/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/787/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Airline Operational Resiliency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"787","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/787/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/787/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/787/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/787/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/787/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/787?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9622","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"1554","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/929/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"929","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: S7107-7108)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/929/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/929/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution expressing support for the designation of November 20, 2024, through December 20, 2024, as \"National Survivors of Homicide Victims Awareness Month\".","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: S7107-7108)","sponsors.0.party":"D","number":"929","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/929/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/929/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/929/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/929/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/929?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9623","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"1857","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Markey","cboCostEstimates.0.pubDate":"2023-10-20T19:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"608","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/608/cosponsors?format=json","sponsors.0.bioguideId":"M000133","actions.url":"https://api.congress.gov/v3/bill/118/s/608/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":5,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-151","textVersions.url":"https://api.congress.gov/v3/bill/118/s/608/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":12,"request.billNumber":"608","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/608/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/608/committees?format=json","title":"Deerfield River Wild and Scenic River Study Act of 2023","cboCostEstimates.0.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59679","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-02-18","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/151?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/608/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/608/summaries?format=json","cboCostEstimates.0.title":"S. 608, Deerfield River Wild and Scenic River Study Act of 2023","latestAction.actionTime":"18:04:39","introducedDate":"2023-03-01","subjects.count":7,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/608?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9624","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9454","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3714/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3714","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3714/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3714/committees?format=json","policyArea.name":"Immigration","title":"GRACE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3714","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2022-02-28","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3714/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3714/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3714/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3714/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3714/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":4,"introducedDate":"2024-01-31","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3714?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2024-07-24T15:19:17Z"}}} +{"type":"relationship","id":"9625","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9510","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3215/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3215","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3215/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3215/committees?format=json","policyArea.name":"Health","title":"Flu Vaccine Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3215","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-16","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3215/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3215/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3215/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3215?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9626","label":"SPONSORED","start":{"id":"3963","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000133_200.jpg","startYear":"1977","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Markey, Edward J.","state":"Massachusetts","endYear":"2013","url":"https://api.congress.gov/v3/member/M000133?format=json","bioguideId":"M000133"}},"end":{"id":"9672","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1026/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"1026","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1026/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1026/committees?format=json","policyArea.name":"Health","type":"S","title":"Gun Violence Prevention Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1026","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1026/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1026/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1026/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1026/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1026/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":30,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1026?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9627","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"900","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5383/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"5383","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/5383/committees?format=json","type":"S","title":"A bill to rescind funds for green energy loans.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"5383","request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"T000476","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5383/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5383/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5383?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9628","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"1587","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/447/text?format=json","updateDate":"2024-09-10T19:38:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"447","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5342)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/447/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SRES","title":"A resolution expressing support for the designation of October 23, 2023, as \"Beirut Veterans Remembrance Day\" to remember the tragic terrorist bombing of the Marine Corps headquarters in Beirut, Lebanon, in 1983.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S5336; text: CR S5342)","sponsors.0.party":"R","number":"447","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2023-11-02","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/447/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/447/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/447/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/447/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":1,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/447?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2024-09-10T19:38:07Z"}}} +{"type":"relationship","id":"9629","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"9773","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/50/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"50","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/sjres/50/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/50/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"50","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2022-06-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/50/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/50/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/50/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/50/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/50/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-09","sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"cosponsors.count":8,"introducedDate":"2023-11-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/50?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9630","label":"SPONSORED","start":{"id":"3930","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000476_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tillis, Thomas","state":"North Carolina","url":"https://api.congress.gov/v3/member/T000476?format=json","bioguideId":"T000476"}},"end":{"id":"9797","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/50/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tillis","sponsors.0.isByRequest":"N","request.billNumber":"50","sponsors.0.url":"https://api.congress.gov/v3/member/T000476?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S7075)","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/sjres/50/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/50/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to \"Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"50","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"Roland","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/50/cosponsors?format=json","sponsors.0.bioguideId":"T000476","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/50/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/50/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/50/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/50/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-09","sponsors.0.fullName":"Sen. Tillis, Thomas [R-NC]","titles.count":2,"cosponsors.count":8,"introducedDate":"2023-11-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/50?format=json","sponsors.0.firstName":"Thomas","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9643","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"902","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/739/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"739","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 579.","subjects.url":"https://api.congress.gov/v3/bill/118/s/739/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/739/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"A bill to clarify jurisdiction with respect to certain Bureau of Reclamation pumped storage development, and for other purposes.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 579.","sponsors.0.party":"D","number":"739","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/739/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/739/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/739/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/739/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/739/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":2,"introducedDate":"2023-03-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/739?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9644","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"1401","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1627/text?format=json","updateDate":"2024-07-24T15:22:08Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1627","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1627/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1627/committees?format=json","policyArea.name":"Taxation","title":"PRECEPT Nurses Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1627","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1627/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1627/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1627/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1627/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1627?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:08Z"}}} +{"type":"relationship","id":"9645","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"1870","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/368/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"368","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/368/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/368/subjects?format=json","policyArea.name":"Transportation and Public Works","title":"Aviation WORKS Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"368","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/368/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/368/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/368/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/368/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/368/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/368?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9646","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"9378","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4657/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"4657","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4657/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4657/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"CHIPS Training in America Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4657","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4657/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4657/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4657/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4657/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4657/relatedbills?format=json","latestAction.actionDate":"2024-07-10","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":3,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4657?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9647","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"9505","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3220/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"3220","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/3220/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3220/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to expand the tropical disease product priority review voucher program to encourage prevention and treatment of coccidioidomycosis.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3220","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3220/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3220/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3220/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3220/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3220/relatedbills?format=json","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3220?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9648","label":"SPONSORED","start":{"id":"3970","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000377_200.jpg","startYear":"2020","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Kelly, Mark","state":"Arizona","url":"https://api.congress.gov/v3/member/K000377?format=json","bioguideId":"K000377"}},"end":{"id":"9617","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1627/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:08Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kelly","sponsors.0.isByRequest":"N","request.billNumber":"1627","sponsors.0.url":"https://api.congress.gov/v3/member/K000377?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1627/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1627/committees?format=json","policyArea.name":"Taxation","type":"S","title":"PRECEPT Nurses Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1627","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1627/cosponsors?format=json","sponsors.0.bioguideId":"K000377","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1627/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1627/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1627/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1627/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Kelly, Mark [D-AZ]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AZ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1627?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:22:08Z"}}} +{"type":"relationship","id":"9649","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"903","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4936/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"4936","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 634.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4936/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4936/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require a study relating to the Minidoka National Historic Site.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 634.","sponsors.0.party":"R","number":"4936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4936/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4936/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4936?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9650","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"1510","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/367/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"367","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/s/367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/367/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"ECON Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"367","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-05-12","summaries.count":1,"sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/367/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/367/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/367/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/367?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9651","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"1568","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/687/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"687","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3713-3714)","committees.url":"https://api.congress.gov/v3/bill/118/sres/687/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/687/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution expressing the sense of the Senate regarding United Nations General Assembly Resolution 2758 (XXVI) and the harmful conflation of China's \"One China Principle\" and the United States \"One China Policy\".","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3713-3714)","sponsors.0.party":"R","number":"687","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-05-15","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/687/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/687/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/687/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2024-05-15","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/687?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9652","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"1596","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/436/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"436","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5217-5218)","committees.url":"https://api.congress.gov/v3/bill/118/s/436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/436/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"SAFE Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"436","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/436/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/436/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/436?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9653","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"1867","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/367/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"367","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S546)","subjects.url":"https://api.congress.gov/v3/bill/118/s/367/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/367/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"ECON Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"367","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/367/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/367/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/367/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/367/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/367?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9654","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9432","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4202/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"4202","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S2494-2495)","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/4202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4202/subjects?format=json","title":"Embassy in a Box Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4202","cosponsors.countIncludingWithdrawnCosponsors":23,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4202/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4202/actions?format=json","latestAction.actionDate":"2024-04-23","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4202/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":3,"introducedDate":"2024-04-23","cosponsors.count":23,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4202?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9655","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9469","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/697/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"697","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/697/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/697/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Treating Tribes and Counties as Good Neighbors Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"697","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/697/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/697/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/697/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/697/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/697/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","latestAction.actionTime":"10:03:00","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/697?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"10:03:00"}}} +{"type":"relationship","id":"9656","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9699","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/436/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"436","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (Sponsor introductory remarks on measure: CR S864-865)","committees.url":"https://api.congress.gov/v3/bill/118/s/436/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/436/subjects?format=json","policyArea.name":"International Affairs","title":"SAFE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"436","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/436/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/436/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/436/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/436/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/436?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9657","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9705","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/431/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"431","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/431/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/431/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"UNRWA Accountability and Transparency Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"431","cosponsors.countIncludingWithdrawnCosponsors":24,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/431/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/431/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/431/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/431/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/431/relatedbills?format=json","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":24,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/431?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9658","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9707","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/430/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Risch","sponsors.0.isByRequest":"N","request.billNumber":"430","sponsors.0.url":"https://api.congress.gov/v3/member/R000584?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/430/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/430/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to provide authority to enter into a cooperative agreement to protect civilians in Iraq and the Arabian Peninsula from weaponized unmanned aerial systems.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"430","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/430/cosponsors?format=json","sponsors.0.bioguideId":"R000584","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/430/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/430/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/430/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/430/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Risch, James E. [R-ID]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ID","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/430?format=json","sponsors.0.firstName":"James","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9659","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"904","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4932/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4932","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 633.","committees.url":"https://api.congress.gov/v3/bill/118/s/4932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4932/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Department of Energy Quantum Leadership Act of 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 633.","sponsors.0.party":"D","number":"4932","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-11-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4932/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4932/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4932/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4932?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9660","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"960","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4701/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4701","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4556-4563)","committees.url":"https://api.congress.gov/v3/bill/118/s/4701/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4701/subjects?format=json","policyArea.name":"Education","type":"S","title":"POST Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4556-4563)","sponsors.0.party":"D","number":"4701","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4701/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4701/actions?format=json","latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4701/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4701?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9661","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1010","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4187/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4187","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works. (text: CR S2877-2887)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4187/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4187/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Forever Chemical Regulation and Accountability Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (text: CR S2877-2887)","sponsors.0.party":"D","number":"4187","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4187/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4187/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4187/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4187?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9662","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1062","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3460/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"3460","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3460/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3460/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Corporate Crime Database Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3460","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-12-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3460/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3460/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3460/actions?format=json","latestAction.actionDate":"2023-12-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3460/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-12-11","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3460?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:19:35Z"}}} +{"type":"relationship","id":"9663","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1369","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Message on Senate action sent to the House.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2024-09-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9664","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1529","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9665","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1580","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (text: CR S5365-5366)","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-11-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9666","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1893","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2023-07-06T18:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 18.","sponsors.0.party":"D","number":"79","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/79/cosponsors?format=json","sponsors.0.bioguideId":"D000563","actions.url":"https://api.congress.gov/v3/bill/118/s/79/actions?format=json","latestAction.actionDate":"2023-03-01","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/79/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/79/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"79","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/79/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/79/subjects?format=json","title":"Interagency Patent Coordination and Improvement Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on March 1, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59353","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-01-13","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/79/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/79/summaries?format=json","cboCostEstimates.0.title":"S. 79, Interagency Patent Coordination and Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":7,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/79?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:57:48Z"}}} +{"type":"relationship","id":"9667","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"1995","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1716-1717)","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","latestAction.actionDate":"2023-01-26","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9668","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4411/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4411","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Became Public Law No: 117-352.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4411/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4411/committees?format=json","policyArea.name":"Energy","title":"REDUCE Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources. (text: CR S3886)","sponsors.0.party":"D","number":"4411","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4411/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4411/titles?format=json","laws.0.number":"117-352","summaries.url":"https://api.congress.gov/v3/bill/117/s/4411/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4411/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4411/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4411?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-03T20:51:24Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9669","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9318","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4121/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4121","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 623.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4121/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4121/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"Solitary Confinement Reform Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4121","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-12","sponsors.0.middleName":"J.","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/246?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4121/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4121/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4121/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4121/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4121/relatedbills?format=json","latestAction.actionDate":"2024-04-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-04-15","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4121?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:28:28Z","committeeReports.0.citation":"S. Rept. 117-246"}}} +{"type":"relationship","id":"9670","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9346","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2022-08-30T19:41:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 537.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5751-5761)","sponsors.0.party":"D","number":"3404","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3404/cosponsors?format=json","sponsors.0.bioguideId":"D000563","actions.url":"https://api.congress.gov/v3/bill/118/s/3404/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3404/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-186","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3404/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3404","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3404/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3404/committees?format=json","title":"Student Loan Borrower Bill of Rights","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on July 21, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58440","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-10-18","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/186?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3404/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3404/summaries?format=json","cboCostEstimates.0.title":"S. 3404, a bill to provide the consent of Congress to an amendment to the Constitution of the State of New Mexico","introducedDate":"2023-12-05","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3404?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9671","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9367","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4879/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:18:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4879","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S4823)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4879/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4879/committees?format=json","policyArea.name":"Health","title":"American Cures Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Appropriations. (text: CR S5685)","sponsors.0.party":"D","number":"4879","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4879/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4879/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4879/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4879/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4879/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4879?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:18:18Z"}}} +{"type":"relationship","id":"9672","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9463","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-04T21:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 284.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"904","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/904/cosponsors?format=json","sponsors.0.bioguideId":"B001288","actions.url":"https://api.congress.gov/v3/bill/118/s/904/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/904/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":17,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-83","textVersions.url":"https://api.congress.gov/v3/bill/118/s/904/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"904","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/904/subjects?format=json","title":"Sickle Cell Disease Comprehensive Care Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on February 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57903","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/83?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/904/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/904/summaries?format=json","cboCostEstimates.0.title":"S. 904, Modernizing Access to Our Public Land Act","introducedDate":"2023-03-21","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/904?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"9673","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9556","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2463/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"2463","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2463/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Ban Stock Trading for Government Officials Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"2463","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2463/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2463/actions?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":5,"introducedDate":"2023-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2463?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9674","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9636","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/814/text?format=json","updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2021-05-18T20:05:00Z","sponsors.0.isByRequest":"N","request.billNumber":"814","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 49.","committees.url":"https://api.congress.gov/v3/bill/118/s/814/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/814/subjects?format=json","policyArea.name":"Immigration","title":"Romania Visa Waiver Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (text: CR S802)","sponsors.0.party":"D","number":"814","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on April 26, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57232","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/814/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/814/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/814/summaries?format=json","cboCostEstimates.0.title":"S. 814, Ukraine Security Partnership Act of 2021","actions.url":"https://api.congress.gov/v3/bill/118/s/814/actions?format=json","latestAction.actionDate":"2023-03-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-03-15","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/814?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-03-01T17:27:14Z"}}} +{"type":"relationship","id":"9675","label":"SPONSORED","start":{"id":"3947","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000584_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Risch, James E.","state":"Idaho","url":"https://api.congress.gov/v3/member/R000584?format=json","bioguideId":"R000584"}},"end":{"id":"9972","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/713/text?format=json","relatedBills.count":2,"updateDate":"2024-11-25T20:30:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"713","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 610.","committees.url":"https://api.congress.gov/v3/bill/118/sres/713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/713/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution designating May 2024 as \"ALS Awareness Month\".","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S4023; text: 5/23/2024 CR S3893)","sponsors.0.party":"D","number":"713","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-07","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/713/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/713/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-06-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/713/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":7,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/713?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-25T20:30:46Z"}}} +{"type":"relationship","id":"9676","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9371","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4878/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4878","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4878/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4878/committees?format=json","policyArea.name":"Health","type":"S","title":"REMEDY Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S5684-5685)","sponsors.0.party":"D","number":"4878","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4878/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4878/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4878/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4878/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4878/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4878?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9677","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9426","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4210/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"4210","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Housing and Community Development","committees.url":"https://api.congress.gov/v3/bill/118/s/4210/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4210/subjects?format=json","type":"S","title":"Lead-Safe Housing for Kids Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S3080-3081)","sponsors.0.party":"D","number":"4210","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4210/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4210/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4210/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4210/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4210/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4210?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9678","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9498","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1838/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"1838","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1838/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1838/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Credit Card Competition Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S2007-2008)","sponsors.0.party":"D","number":"1838","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-11-17","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1838/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1838/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1838/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1838/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1838/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-06-07","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1838?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9679","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9544","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2722/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"2722","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S6459-6460; text: CR S6460)","policyArea.name":"Labor and Employment","committees.url":"https://api.congress.gov/v3/bill/118/s/2722/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2722/subjects?format=json","type":"S","title":"Investing in Tomorrow's Workforce Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2722","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2722/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2722/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2722/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2722/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2722/relatedbills?format=json","latestAction.actionDate":"2023-09-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"cosponsors.count":4,"introducedDate":"2023-09-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2722?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9680","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9595","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1921/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"1921","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/117/s/1921/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1921/committees?format=json","policyArea.name":"Energy","type":"S","title":"Children Don't Belong on Tobacco Farms Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1921","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1921/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1921/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1921/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1921/actions?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1921/relatedbills?format=json","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-06-12","cosponsors.count":3,"request.contentType":"application/json","subjects.count":30,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1921?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9681","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9636","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/814/text?format=json","updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","cboCostEstimates.0.pubDate":"2021-05-18T20:05:00Z","sponsors.0.isByRequest":"N","request.billNumber":"814","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 49.","committees.url":"https://api.congress.gov/v3/bill/118/s/814/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/814/subjects?format=json","policyArea.name":"Immigration","title":"Romania Visa Waiver Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (text: CR S802)","sponsors.0.party":"D","number":"814","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on April 26, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57232","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/814/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/814/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/814/summaries?format=json","cboCostEstimates.0.title":"S. 814, Ukraine Security Partnership Act of 2021","actions.url":"https://api.congress.gov/v3/bill/118/s/814/actions?format=json","latestAction.actionDate":"2023-03-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":3,"introducedDate":"2023-03-15","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/814?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-03-01T17:27:14Z"}}} +{"type":"relationship","id":"9682","label":"SPONSORED","start":{"id":"3996","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000563_200.jpg","startYear":"1983","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Durbin, Richard J.","state":"Illinois","endYear":"1997","url":"https://api.congress.gov/v3/member/D000563?format=json","bioguideId":"D000563"}},"end":{"id":"9727","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/126/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:24:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Durbin","sponsors.0.isByRequest":"N","request.billNumber":"126","sponsors.0.url":"https://api.congress.gov/v3/member/D000563?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/126/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/126/committees?format=json","policyArea.name":"Immigration","title":"FLED Accountability Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S123; text: 01/30/2023 CR S148)","sponsors.0.party":"D","number":"126","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-01-28","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/126/cosponsors?format=json","sponsors.0.bioguideId":"D000563","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/126/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/126/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/126/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/126/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Durbin, Richard J. [D-IL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/126?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-24T15:24:01Z"}}} +{"type":"relationship","id":"9706","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"9471","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3704/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:06:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"3704","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3704/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3704/committees?format=json","policyArea.name":"Energy","type":"S","title":"Unlocking Domestic LNG Potential Act of 2024","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3704","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3704/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3704/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3704/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3704/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3704/relatedbills?format=json","latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3704?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-17T03:06:27Z"}}} +{"type":"relationship","id":"9707","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"9476","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3442/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"3442","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/3442/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3442/committees?format=json","type":"S","title":"Timely Review of SNAP Online Retailer Applications Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3442","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3442/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3442/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3442/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3442/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3442/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-12-07","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3442?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9708","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"9667","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rodgers","cboCostEstimates.0.pubDate":"2023-12-05T16:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Energy","type":"HR","latestAction.text":"Became Public Law No: 118-62.","sponsors.0.party":"R","number":"1042","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1042/cosponsors?format=json","sponsors.0.bioguideId":"M001159","laws.0.number":"118-62","actions.url":"https://api.congress.gov/v3/bill/118/hr/1042/actions?format=json","textVersions.count":6,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1042/relatedbills?format=json","latestAction.actionDate":"2024-05-13","sponsors.0.fullName":"Rep. McMorris Rodgers, Cathy [R-WA-5]","titles.count":6,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-296","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1042/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":27,"request.billNumber":"1042","sponsors.0.url":"https://api.congress.gov/v3/member/M001159?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1042/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1042/committees?format=json","title":"Prohibiting Russian Uranium Imports Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on December 1, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59805","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"McMorris","latestAction_actionDate":"2021-03-25","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/296?format=json","summaries.count":5,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1042/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1042/summaries?format=json","cboCostEstimates.0.title":"H.R. 1042, Prohibiting Russian Uranium Imports Act","introducedDate":"2023-02-14","subjects.count":6,"sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1042?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 30 (Tuesday, February 14, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. RODGERS of Washington:\nH.R. 1042.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 10\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by preventing imports of uranium from Russia.\n[Page H842]\n","sponsors.0.district":5,"sponsors.0.firstName":"Cathy","updateDateIncludingText":"2025-01-15T18:51:50Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9709","label":"SPONSORED","start":{"id":"3921","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000790_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warnock, Raphael G.","state":"Georgia","url":"https://api.congress.gov/v3/member/W000790?format=json","bioguideId":"W000790"}},"end":{"id":"10019","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Comer","cboCostEstimates.0.pubDate":"2023-03-02T20:36:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1834)","policyArea.name":"Government Operations and Politics","type":"HR","latestAction.text":"Received in the Senate and Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"140","amendments.count":10,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/140/cosponsors?format=json","sponsors.0.bioguideId":"C001108","actions.url":"https://api.congress.gov/v3/bill/118/hr/140/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/140/relatedbills?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":4,"sponsors.0.fullName":"Rep. Comer, James [R-KY-1]","amendments.url":"https://api.congress.gov/v3/bill/118/hr/140/amendments?format=json","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-5","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/140/text?format=json","updateDate":"2025-02-04T16:54:13Z","originChamber":"House","committees.count":2,"request.congress":"118","actions.count":48,"request.billNumber":"140","sponsors.0.url":"https://api.congress.gov/v3/member/C001108?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/140/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/140/committees?format=json","title":"Protecting Speech from Government Interference Act","cboCostEstimates.0.description":"As ordered reported by the House Committee on Oversight and Accountability on February 28, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58971","request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2021-03-25","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/5?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/140/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/140/summaries?format=json","cboCostEstimates.0.title":"H.R. 140, Protecting Speech from Government Interference Act","introducedDate":"2023-01-09","subjects.count":5,"sponsors.0.state":"KY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/140?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. COMER:\nH.R. 140.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, clause 3 of the Constitution, in that\nthe legislation regulates forms of commerce specified in that\nclause; and, Article I, Section 8, clause 18 of the\nConstitution, in that the legislation ``is necessary and\nproper for carrying into Execution the foregoing Powers'' and\n``other Powers vested by this Constitution in the Government\nof the United States, or in any Department or Officer\nthereof,'' including the powers of the President specified in\nArticle II of the Constitution.\n[Page H110]\n","sponsors.0.district":1,"sponsors.0.firstName":"James","updateDateIncludingText":"2025-02-04T16:54:13Z"}}} +{"type":"relationship","id":"9712","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"907","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5379/text?format=json","updateDate":"2024-12-07T00:23:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"5379","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5379/committees?format=json","type":"S","title":"TRAIN Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5379","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5379/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5379/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-11-21","request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5379?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-07T00:23:16Z"}}} +{"type":"relationship","id":"9713","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"920","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5178/text?format=json","updateDate":"2024-10-28T13:33:03Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"5178","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5178/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5178/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"Social Security Survivor Benefits Equity Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5178","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5178/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5178/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5178/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5178?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-10-28T13:33:03Z"}}} +{"type":"relationship","id":"9714","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"949","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4945/text?format=json","updateDate":"2025-02-18T13:09:02Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4945","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/4945/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4945/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Rural Opportunities and Revitalization Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4945","request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4945/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4945/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4945/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4945?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-02-18T13:09:02Z"}}} +{"type":"relationship","id":"9715","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"1011","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4186/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4186","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4186/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4186/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Banning Toxics from Plastic Bottles Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4186","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4186/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4186/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4186/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4186?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9716","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"1028","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3942/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3942","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3942/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3942/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"MAPLE Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3942","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3942/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3942/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3942/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3942/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3942/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3942?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9717","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"1192","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1936/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"1936","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/1936/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1936/subjects?format=json","policyArea.name":"Energy","type":"S","title":"E-Access Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-06-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1936/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1936/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2023-06-13","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1936?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9718","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"1327","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 653.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hjres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}}} +{"type":"relationship","id":"9719","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"1342","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}}} +{"type":"relationship","id":"9720","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"1373","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}}} +{"type":"relationship","id":"9721","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"2001","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1632)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/120?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}}} +{"type":"relationship","id":"9722","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"9324","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3667/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3667","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 621.","committees.url":"https://api.congress.gov/v3/bill/118/s/3667/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3667/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Consumer Advocacy and Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3667","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/244?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3667/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3667/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3667/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3667/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3667/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"introducedDate":"2024-01-25","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3667?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z","committeeReports.0.citation":"S. Rept. 117-244"}}} +{"type":"relationship","id":"9723","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"9359","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4888/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4888","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4888/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4888/committees?format=json","policyArea.name":"Immigration","type":"S","title":"A bill to include Czechia in the list of foreign states whose nationals are eligible for admission into the United States as E-1 nonimmigrants if United States nationals are treated similarly by the Government of Czechia.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4888","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4888/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4888/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4888/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4888/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4888/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4888?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"9724","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"9419","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4219/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"4219","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4219/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4219/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Future Farmers and Ranchers of Tomorrow Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4219","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4219/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4219/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4219/relatedbills?format=json","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":3,"cosponsors.count":2,"introducedDate":"2024-05-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4219?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9725","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"9439","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3975/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"3975","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3975/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3975/committees?format=json","policyArea.name":"Commerce","title":"AI CONSENT Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3975","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3975/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3975/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3975/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3975/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3975/relatedbills?format=json","latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3975?format=json","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9726","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"9703","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Welch","cboCostEstimates.0.pubDate":"2023-10-24T18:27:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"432","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/432/cosponsors?format=json","sponsors.0.bioguideId":"W000800","actions.url":"https://api.congress.gov/v3/bill/118/s/432/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/432/relatedbills?format=json","latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-149","cboCostEstimates.1.url":"https://www.cbo.gov/publication/59700","textVersions.url":"https://api.congress.gov/v3/bill/118/s/432/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"cboCostEstimates.1.pubDate":"2023-10-24T18:27:00Z","request.congress":"118","actions.count":12,"request.billNumber":"432","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/432/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/432/subjects?format=json","title":"Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023","cboCostEstimates.1.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cboCostEstimates.0.description":"As order reported by the Senate Committee on Energy and Natural Resources on September 21, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59700","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/149?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/432/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/432/summaries?format=json","cboCostEstimates.0.title":"S. 432, Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023","latestAction.actionTime":"18:04:11","introducedDate":"2023-02-15","subjects.count":6,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/432?format=json","cboCostEstimates.1.title":"S. 432, Nulhegan River and Paul Stream Wild and Scenic River Study Act of 2023 ","sponsors.0.firstName":"Peter","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"9727","label":"SPONSORED","start":{"id":"3925","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg","startYear":"2007","name":"Welch, Peter","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Vermont","endYear":"2023","url":"https://api.congress.gov/v3/member/W000800?format=json","bioguideId":"W000800"}},"end":{"id":"9780","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/120/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:10:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Welch","sponsors.0.isByRequest":"N","request.billNumber":"120","sponsors.0.url":"https://api.congress.gov/v3/member/W000800?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/120/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/120/committees?format=json","policyArea.name":"Law","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to normalize vacancies and appointments for justices of the Supreme Court of the United States and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"120","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/120/cosponsors?format=json","sponsors.0.bioguideId":"W000800","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/120/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/120/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/120/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/120/relatedbills?format=json","latestAction.actionDate":"2024-12-05","sponsors.0.fullName":"Sen. Welch, Peter [D-VT]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/120?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Peter","updateDateIncludingText":"2024-12-20T19:10:33Z"}}} +{"type":"relationship","id":"9745","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"912","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4432/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4432","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4432/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4432/committees?format=json","policyArea.name":"Energy","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","sponsors.0.party":"R","number":"4432","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4432/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4432/actions?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4432?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"9746","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1078","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3445/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3445","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/3445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3445/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Supporting Made in America Energy Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3445","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3445/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3445/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3445?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9747","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1089","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3199/text?format=json","updateDate":"2024-07-23T16:18:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3199","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3199/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3199/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"IRS Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3199","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3199/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3199/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3199/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":4,"introducedDate":"2023-11-02","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3199?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-23T16:18:13Z"}}} +{"type":"relationship","id":"9748","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1278","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/758/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:41Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"758","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/758/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Moving Americans Privacy Protection Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"758","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/758/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/758/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/758/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/758/actions?format=json","latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/758/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","latestAction.actionTime":"16:09:50","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/758?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:23:41Z","latestAction_actionTime":"16:09:50"}}} +{"type":"relationship","id":"9749","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1360","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/34/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"34","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 758.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/34/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/34/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States authorizing the Congress to prohibit the physical desecration of the flag of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"34","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/34/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/34/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/34/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/34/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/34/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/34?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-04-17T23:51:48Z"}}} +{"type":"relationship","id":"9750","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1393","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/34/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"34","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/34/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/34/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States authorizing the Congress to prohibit the physical desecration of the flag of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"34","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/34/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/34/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/34/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/34/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/34/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/34?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-04-17T23:51:48Z","latestAction_actionTime":"19:24:47"}}} +{"type":"relationship","id":"9751","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1613","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/194/text?format=json","relatedBills.count":1,"updateDate":"2024-08-12T14:41:25Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"194","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1515)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/194/subjects?format=json","policyArea.name":"Native Americans","type":"SRES","title":"A resolution designating May 5, 2023, as the \"National Day of Awareness for Missing and Murdered Native Women and Girls\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1515)","sponsors.0.party":"R","number":"194","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/194/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/194/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/194/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/194/actions?format=json","latestAction.actionDate":"2023-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/194/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-05-03","cosponsors.count":22,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/194?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-08-12T14:41:25Z"}}} +{"type":"relationship","id":"9752","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"1926","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/34/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"34","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/34/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/34/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States authorizing the Congress to prohibit the physical desecration of the flag of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"34","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/34/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/34/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/34/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/34/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/34/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/34?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-04-17T23:51:48Z"}}} +{"type":"relationship","id":"9753","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4890/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4890","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4890/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4890/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Access to Small Business Investor Capital Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"4890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4890/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4890/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4890/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4890/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4890?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"9754","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9400","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4431/text?format=json","relatedBills.count":3,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","congress":118,"committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4431","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 425.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4431/subjects?format=json","policyArea.name":"Energy","committees.url":"https://api.congress.gov/v3/bill/118/s/4431/committees?format=json","type":"S","title":"A bill to reinstate the Bull Mountains Mining Plan Modification, and for other purposes.","latestAction.text":"Committee on Energy and Natural Resources Subcommittee on Public Lands, Forests, and Mining. Hearings held.","sponsors.0.party":"R","number":"4431","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4431/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4431/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4431/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4431/actions?format=json","latestAction.actionDate":"2024-06-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4431/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":4,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4431?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9755","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4432/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"4432","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4432/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4432/subjects?format=json","policyArea.name":"Energy","type":"S","title":"A bill to allow certain Federal minerals to be mined consistent with the Bull Mountains Mining Plan Modification.","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 625.","sponsors.0.party":"R","number":"4432","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4432/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4432/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4432/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4432/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4432/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":5,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4432?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"9756","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9474","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3445/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"3445","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3445/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3445/committees?format=json","policyArea.name":"Energy","type":"S","title":"Supporting Made in America Energy Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3445","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2022-01-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3445/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3445?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9757","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9684","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/758/text?format=json","updateDate":"2024-07-24T15:23:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"758","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/117/s/758/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/758/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Moving Americans Privacy Protection Act","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"758","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/758/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/758/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/758/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/758/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/758/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","latestAction.actionTime":"16:09:50","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":3,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/758?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:23:41Z"}}} +{"type":"relationship","id":"9758","label":"SPONSORED","start":{"id":"3994","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000618_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Daines, Steve","state":"Montana","endYear":"2015","url":"https://api.congress.gov/v3/member/D000618?format=json","bioguideId":"D000618"}},"end":{"id":"9710","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/428/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Daines","sponsors.0.isByRequest":"N","request.billNumber":"428","sponsors.0.url":"https://api.congress.gov/v3/member/D000618?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/428/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/428/committees?format=json","type":"S","title":"FIND Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"428","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/428/cosponsors?format=json","sponsors.0.bioguideId":"D000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/428/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/428/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/428/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/428/relatedbills?format=json","sponsors.0.fullName":"Sen. Daines, Steve [R-MT]","titles.count":4,"introducedDate":"2023-02-15","cosponsors.count":22,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/428?format=json","sponsors.0.firstName":"Steve","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9760","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"915","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4457/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4457","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","committees.url":"https://api.congress.gov/v3/bill/118/s/4457/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4457/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Southern Nevada Economic Development and Conservation Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","sponsors.0.party":"D","number":"4457","request.format":"json","latestAction_actionDate":"2024-11-21","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4457/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4457/actions?format=json","latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4457/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":4,"introducedDate":"2024-06-04","subjects.count":26,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4457?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"9761","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1012","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4190/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4190","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/4190/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4190/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Expediting Generator Interconnection Procedures Act of 2024","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"4190","request.format":"json","latestAction_actionDate":"2024-04-18","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4190/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4190/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4190/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2024-04-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4190?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9762","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1228","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1378/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1378","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1378/subjects?format=json","policyArea.name":"Health","type":"S","title":"Connecting Our Medical Providers with Links to Expand Tailored and Effective Care","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1378","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1378/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1378/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1378/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1378?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-07-24T15:22:28Z"}}} +{"type":"relationship","id":"9763","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1394","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/29/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"29","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/29/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/29/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Michael Govan as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"29","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-04-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/29/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/29/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/29/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/29/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/29/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/29?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"14:10:38"}}} +{"type":"relationship","id":"9764","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1398","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/30/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"30","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2284-2285)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/30/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/30/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the appointment of Antoinette Bush as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"30","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-03-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/30/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/30/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/30/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/30/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/30/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/30?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"9765","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1399","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/28/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"28","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S959)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/28/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/28/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Roger W. Ferguson as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"28","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-02-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/28/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/28/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/28/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/28/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/28/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/28?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"9766","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1405","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1622/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1622","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1622/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1622/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"End Speculative Oil and Gas Leasing Act of 2023","latestAction.text":"Committee on Energy and Natural Resources Subcommittee on Public Lands, Forests, and Mining. Hearings held.","sponsors.0.party":"D","number":"1622","request.format":"json","latestAction_actionDate":"2024-12-19","summaries.count":1,"sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1622/actions?format=json","latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1622/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-05-16","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1622?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9767","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1436","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1378/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1378","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1378/subjects?format=json","policyArea.name":"Health","type":"S","title":"Connecting Our Medical Providers with Links to Expand Tailored and Effective Care","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1378","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1378/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1378/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1378/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1378?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-07-24T15:22:28Z"}}} +{"type":"relationship","id":"9768","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1879","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/358/text?format=json","updateDate":"2024-04-17T23:51:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"358","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/358/committees?format=json","type":"S","title":"A bill for the relief of Cesar Carlos Silva Rodriguez.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"358","request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/358/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/358/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/358/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-02-09","request.contentType":"application/json","sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/358?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-04-17T23:51:56Z"}}} +{"type":"relationship","id":"9769","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1925","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/28/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"28","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Held at the Desk","committees.url":"https://api.congress.gov/v3/bill/118/sjres/28/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/28/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Roger W. Ferguson as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"28","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/28/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/28/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/28/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/28/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/28/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/28?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"18:41:31"}}} +{"type":"relationship","id":"9770","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1931","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/30/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"30","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/30/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/30/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the appointment of Antoinette Bush as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"30","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/30/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/30/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/30/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/30/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/30/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/30?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"9771","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"1932","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/29/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"29","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/29/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/29/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for the reappointment of Michael Govan as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"29","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/29/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/29/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/29/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/29/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/29/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/29?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"9772","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9354","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4872/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"4872","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Housing, Transportation, and Community Development. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4872/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4872/committees?format=json","policyArea.name":"Sports and Recreation","title":"WAGER Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4872","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4872/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4872/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4872/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4872?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T18:59:41Z"}}} +{"type":"relationship","id":"9773","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9539","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1815/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1815","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1815/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1815/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Filing Relief for Natural Disasters Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1815","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1815/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1815/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1815/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1815/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1815/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-06-06","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1815?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"9774","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9622","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1622/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"1622","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/1622/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1622/committees?format=json","type":"S","title":"End Speculative Oil and Gas Leasing Act of 2023","latestAction.text":"Committee on Energy and Natural Resources Subcommittee on Public Lands, Forests, and Mining. Hearings held.","sponsors.0.party":"D","number":"1622","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1622/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1622/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1622/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1622/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1622/relatedbills?format=json","latestAction.actionDate":"2023-07-12","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1622?format=json","sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9775","label":"SPONSORED","start":{"id":"3998","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001113_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cortez Masto, Catherine","state":"Nevada","url":"https://api.congress.gov/v3/member/C001113?format=json","bioguideId":"C001113"}},"end":{"id":"9948","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/29/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cortez Masto","sponsors.0.isByRequest":"N","request.billNumber":"29","sponsors.0.url":"https://api.congress.gov/v3/member/C001113?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/29/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/29/committees?format=json","type":"SJRES","title":"A joint resolution providing for the reappointment of Michael Govan as a citizen regent of the Board of Regents of the Smithsonian Institution.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"29","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/29/cosponsors?format=json","sponsors.0.bioguideId":"C001113","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/29/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/29/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/29/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/29/relatedbills?format=json","sponsors.0.fullName":"Sen. Cortez Masto, Catherine [D-NV]","titles.count":2,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/29?format=json","sponsors.0.district":13,"sponsors.0.firstName":"Catherine","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"9796","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10047","labels":["Order"],"properties":{"date_enacted":"2025-02-10","date_repealed":"None","description":"nan","id":"EO 14208","title":"Ending Procurement and Forced Use of Paper Straws","url":"https://www.federalregister.gov/d/2025-02735"}}} +{"type":"relationship","id":"9797","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10072","labels":["Order"],"properties":{"date_enacted":"2025-01-27","date_repealed":"None","description":"nan","id":"EO 14183","title":"Prioritizing Military Excellence and Readiness","url":"https://www.federalregister.gov/d/2025-02178"}}} +{"type":"relationship","id":"9798","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10097","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14158","title":"Establishing and Implementing the Presidents \"Department of Government Efficiency\"","url":"https://www.federalregister.gov/d/2025-02005"}}} +{"type":"relationship","id":"9833","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"9485","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Schatz","cboCostEstimates.0.pubDate":"2021-07-15T20:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 227.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2016","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2016/cosponsors?format=json","sponsors.0.bioguideId":"S001194","actions.url":"https://api.congress.gov/v3/bill/118/s/2016/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2016/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"cosponsors.count":65,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2016/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2016","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2016/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2016/committees?format=json","title":"CONNECT for Health Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on June 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57359","cosponsors.countIncludingWithdrawnCosponsors":65,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2016/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2016/summaries?format=json","cboCostEstimates.0.title":"S. 2016, Surface Transportation Investment Act of 2021","introducedDate":"2023-06-15","subjects.count":15,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2016?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"9834","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"9490","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1995/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2021-09-22T12:55:00Z","sponsors.0.isByRequest":"N","request.billNumber":"1995","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 218.","committees.url":"https://api.congress.gov/v3/bill/118/s/1995/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1995/subjects?format=json","policyArea.name":"Health","type":"S","title":"Public Health Infrastructure Saves Lives Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S2100)","sponsors.0.party":"D","number":"1995","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on June 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57483","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1995/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1995/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1995/summaries?format=json","cboCostEstimates.0.title":"S. 1995, Sport Fish Restoration and Recreational Boating Safety Act of 2021","actions.url":"https://api.congress.gov/v3/bill/118/s/1995/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1995?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9835","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"9493","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2023-03-13T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 207.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"D","number":"316","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/316/cosponsors?format=json","amendments.count":56,"sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/316/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/316/relatedbills?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":3,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","amendments.url":"https://api.congress.gov/v3/bill/118/s/316/amendments?format=json","titles.count":2,"cosponsors.count":46,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/316/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"316","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/316/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/316/subjects?format=json","title":"A bill to repeal the authorizations for use of military force against Iraq.","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations on March 8, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":46,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59000","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-12-17","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/316/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/316/summaries?format=json","cboCostEstimates.0.title":"S. 316, a bill to repeal the authorizations for use of military force against Iraq","latestAction.actionTime":"12:04:24","introducedDate":"2023-02-09","subjects.count":7,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/316?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9836","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"10003","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cantwell","cboCostEstimates.0.pubDate":"2023-10-25T18:37:01Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6666-6667; text: CR S6679)","policyArea.name":"Native Americans","type":"S","latestAction.text":"Became Public Law No: 118-48.","sponsors.0.party":"D","number":"382","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/382/cosponsors?format=json","sponsors.0.bioguideId":"C000127","laws.0.number":"118-48","actions.url":"https://api.congress.gov/v3/bill/118/s/382/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/382/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-130","textVersions.url":"https://api.congress.gov/v3/bill/118/s/382/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":26,"request.billNumber":"382","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/382/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/382/committees?format=json","title":"Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on July 19, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59705","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-23","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/130?format=json","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/382/summaries?format=json","cboCostEstimates.0.title":"S. 382, Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","introducedDate":"2023-02-09","subjects.count":5,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/382?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:14:49Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9845","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"919","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3542/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3542","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 601.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3542/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3542/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Atchafalaya National Heritage Area Boundary Modification Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 601.","sponsors.0.party":"R","number":"3542","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-11-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3542/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3542/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3542/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3542/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3542/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2023-12-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3542?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9846","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"970","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4692/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"4692","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4692/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4692/subjects?format=json","policyArea.name":"Congress","type":"S","title":"USA Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4692","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4692/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4692/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4692?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9847","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10048","labels":["Order"],"properties":{"date_enacted":"2025-02-10","date_repealed":"None","description":"nan","id":"EO 14207","title":"Eliminating the Federal Executive Institute ","url":"https://www.federalregister.gov/d/2025-02734"}}} +{"type":"relationship","id":"9848","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10073","labels":["Order"],"properties":{"date_enacted":"2025-01-24","date_repealed":"None","description":"nan","id":"EO 14182","title":"Enforcing the Hyde Amendment","url":"https://www.federalregister.gov/d/2025-02175"}}} +{"type":"relationship","id":"9849","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10098","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14157","title":"Designating Cartels and Other Organizations as Foreign Terrorist Organizations and Specially Designated Global Terrorists","url":"https://www.federalregister.gov/d/2025-02004"}}} +{"type":"relationship","id":"9850","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"1021","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3950/text?format=json","relatedBills.count":3,"updateDate":"2024-08-22T14:50:36Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3950","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3950/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3950/committees?format=json","policyArea.name":"Health","type":"S","title":"DUALS Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3950","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3950/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3950/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3950/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3950/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3950/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3950?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-08-22T14:50:36Z"}}} +{"type":"relationship","id":"9851","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"1048","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3682/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3682","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3682/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3682/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"GHOST Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3682","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3682/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3682/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3682/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3682/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3682?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9852","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"1059","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3678/text?format=json","relatedBills.count":2,"updateDate":"2024-12-20T12:57:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3678","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3678/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3678/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Federal Disaster Tax Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3678","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-01-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3678/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3678/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3678/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3678/actions?format=json","latestAction.actionDate":"2024-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3678/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2024-01-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3678?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2024-12-20T12:57:55Z"}}} +{"type":"relationship","id":"9853","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"1164","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2225/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"2225","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2225/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2225/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"TLDR Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2225","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2225/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2225/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2225/actions?format=json","latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2225/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2023-07-11","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2225?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9854","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"1918","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/63/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"63","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Referred to the Committee on Veterans' Affairs, and in addition to the Committee on Armed Services, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/63/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/63/subjects?format=json","policyArea.name":"Labor and Employment","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Employee or Independent Contractor Classification Under the Fair Labor Standards Act\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"63","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/63/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/63/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/63/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/63/actions?format=json","latestAction.actionDate":"2024-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/63/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":2,"introducedDate":"2024-03-06","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/63?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9855","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9406","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cassidy","cboCostEstimates.0.pubDate":"2022-06-13T15:38:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-146.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3580","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3580/cosponsors?format=json","sponsors.0.bioguideId":"C001075","laws.0.number":"117-146","actions.url":"https://api.congress.gov/v3/bill/118/s/3580/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3580/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-11","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3580/amendments?format=json","titles.count":3,"cosponsors.count":8,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3580/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3580","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3580/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3580/subjects?format=json","title":"Protecting Students on Campus Act of 2024","cboCostEstimates.0.description":"As Posted on the Website of the Clerk of the House on June 10, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":8,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58204","request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3580/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3580/summaries?format=json","cboCostEstimates.0.title":"CBO’s Estimate of the Statutory Pay-As-You-Go Effects of S. 3580, the Ocean Shipping Reform Act of 2022","introducedDate":"2024-01-11","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3580?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9856","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9442","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3972/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:22:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"3972","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Economics and Public Finance","subjects.url":"https://api.congress.gov/v3/bill/118/s/3972/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3972/committees?format=json","type":"S","title":"SOS Act","latestAction.text":"Read twice and referred to the Committee on the Budget.","sponsors.0.party":"R","number":"3972","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3972/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3972/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3972/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3972/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3972?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:22:18Z"}}} +{"type":"relationship","id":"9857","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9535","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2727/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"2727","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2727/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2727/committees?format=json","policyArea.name":"Government Operations and Politics","title":"Advice and Consent Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2727","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2727/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2727/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-06","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2023-09-06","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2727?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9858","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9645","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1349/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"1349","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1349/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1349/committees?format=json","policyArea.name":"Education","title":"College Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1349","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1349/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1349/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1349/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1349/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1349/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":31,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1349?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9859","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9669","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1029/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"1029","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1029/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1029/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Protecting Military Servicemembers' Data Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1029","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1029/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1029/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1029/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1029/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1029/relatedbills?format=json","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-03-29","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1029?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"9860","label":"SPONSORED","start":{"id":"4003","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001075_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cassidy, Bill","state":"Louisiana","endYear":"2015","url":"https://api.congress.gov/v3/member/C001075?format=json","bioguideId":"C001075"}},"end":{"id":"9762","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/63/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cassidy","sponsors.0.isByRequest":"N","request.billNumber":"63","sponsors.0.url":"https://api.congress.gov/v3/member/C001075?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/63/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/63/committees?format=json","policyArea.name":"Labor and Employment","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Employee or Independent Contractor Classification Under the Fair Labor Standards Act\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"63","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2022-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/63/cosponsors?format=json","sponsors.0.bioguideId":"C001075","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/63/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/63/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/63/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/63/relatedbills?format=json","latestAction.actionDate":"2024-03-06","sponsors.0.fullName":"Sen. Cassidy, Bill [R-LA]","latestAction.actionTime":"16:08:39","titles.count":2,"introducedDate":"2024-03-06","cosponsors.count":37,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/63?format=json","sponsors.0.firstName":"Bill","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"16:08:39"}}} +{"type":"relationship","id":"9873","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10049","labels":["Order"],"properties":{"date_enacted":"2025-02-07","date_repealed":"None","description":"nan","id":"EO 14206","title":"Protecting Second Amendment Rights","url":"https://www.federalregister.gov/d/2025-02636"}}} +{"type":"relationship","id":"9874","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10074","labels":["Order"],"properties":{"date_enacted":"2025-01-24","date_repealed":"None","description":"nan","id":"EO 14181","title":"Emergency Measures To Provide Water Resources in California and Improve Disaster Response in Certain Areas","url":"https://www.federalregister.gov/d/2025-02174"}}} +{"type":"relationship","id":"9875","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10099","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14156","title":"Declaring a National Energy Emergency","url":"https://www.federalregister.gov/d/2025-02003"}}} +{"type":"relationship","id":"9880","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"921","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5179/text?format=json","updateDate":"2024-10-15T23:53:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"5179","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5179/committees?format=json","type":"S","title":"Direct Support Worker Training Reimbursement Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"5179","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5179/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5179/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5179/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5179?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-10-15T23:53:18Z"}}} +{"type":"relationship","id":"9881","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"923","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5180/text?format=json","updateDate":"2024-12-05T15:50:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"5180","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/5180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5180/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"Mollie Baldwin Upskilling of Personal and Home Care Aides Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"5180","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5180/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5180/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5180/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5180?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-12-05T15:50:41Z"}}} +{"type":"relationship","id":"9882","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"1312","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/176/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"176","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/176/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/176/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Expanding Agricultural Exports Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"176","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/176/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/176/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/176/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/176/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/176/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/176?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9883","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"1415","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1612/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1612","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1612/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1612/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reimburse Veterans for Domiciliary Care Act","latestAction.text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-217.","sponsors.0.party":"I","number":"1612","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-12-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1612/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1612/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1612/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1612/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1612?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:05:17Z","latestAction_actionTime":"14:17:40"}}} +{"type":"relationship","id":"9884","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"1599","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/433/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"433","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Referred to the Committee on Environment and Public Works. (text: CR S5216-5217)","committees.url":"https://api.congress.gov/v3/bill/118/s/433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/433/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require the Secretary of Agriculture to convene a blue ribbon panel to review the forest inventory and analysis program of the Forest Service, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"433","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/433/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/433/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/433?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9885","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"1814","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1075/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1075","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1075/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1075/subjects?format=json","policyArea.name":"Health","type":"S","title":"CARE for Mental Health Professionals Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"1075","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1075/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1075/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1075/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1075/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":4,"introducedDate":"2023-03-30","subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1075?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9886","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"9368","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4785/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"4785","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Became Public Law No: 117-177.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4785/subjects?format=json","policyArea.name":"Health","committees.url":"https://api.congress.gov/v3/bill/118/s/4785/committees?format=json","type":"S","title":"Responsibility in Drug Advertising Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"4785","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-16","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4785/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4785/titles?format=json","laws.0.number":"117-177","summaries.url":"https://api.congress.gov/v3/bill/117/s/4785/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4785/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4785/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-25","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2024-07-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4785?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9887","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"9428","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4209/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"4209","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (Sponsor introductory remarks on measure: CR S2495)","committees.url":"https://api.congress.gov/v3/bill/118/s/4209/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4209/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Katahdin Woods and Waters National Monument Access Act","latestAction.text":"Held at the desk.","sponsors.0.party":"I","number":"4209","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4209/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4209/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4209/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4209/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","latestAction.actionTime":"18:05:40","titles.count":5,"introducedDate":"2024-04-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4209?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"9888","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"9628","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1612/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"1612","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1612/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1612/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reimburse Veterans for Domiciliary Care Act","latestAction.text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 118-217.","sponsors.0.party":"I","number":"1612","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1612/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1612/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1612/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1612/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1612/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1612?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T17:05:17Z"}}} +{"type":"relationship","id":"9889","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"9701","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/433/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"433","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/433/subjects?format=json","type":"S","title":"A bill to require the Secretary of Agriculture to convene a blue ribbon panel to review the forest inventory and analysis program of the Forest Service, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"I","number":"433","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/433/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/433/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/433/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/433?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9890","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"9974","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/645/text?format=json","relatedBills.count":1,"updateDate":"2024-12-12T20:36:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"645","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2630; text: CR S2624)","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/sres/645/subjects?format=json","type":"SRES","title":"A resolution designating the week of April 20 through April 28, 2024, as \"National Park Week\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2781; text: CR S2794)","sponsors.0.party":"I","number":"645","cosponsors.countIncludingWithdrawnCosponsors":63,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-05-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/645/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/645/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/645/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/645/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/645/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2024-04-16","cosponsors.count":63,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/645?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-12-12T20:36:14Z"}}} +{"type":"relationship","id":"9902","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"924","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5186/text?format=json","updateDate":"2024-10-15T14:21:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"5186","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5186/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5186/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Stop Corrupt Gratuities Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5186","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5186/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5186/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5186/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5186?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-10-15T14:21:49Z"}}} +{"type":"relationship","id":"9903","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10050","labels":["Order"],"properties":{"date_enacted":"2025-02-07","date_repealed":"None","description":"nan","id":"EO 14205","title":"Establishment of the White House Faith Office","url":"https://www.federalregister.gov/d/2025-02635"}}} +{"type":"relationship","id":"9904","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10075","labels":["Order"],"properties":{"date_enacted":"2025-01-24","date_repealed":"None","description":"nan","id":"EO 14180","title":"Council To Assess the Federal Emergency Management Agency","url":"https://www.federalregister.gov/d/2025-02173"}}} +{"type":"relationship","id":"9905","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10100","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14155","title":"Withdrawing the United States From the World Health Organization ","url":"https://www.federalregister.gov/d/2025-01957"}}} +{"type":"relationship","id":"9906","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1013","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4185/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"4185","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4185/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Green Climate Fund Authorization Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"4185","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4185/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4185/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4185/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4185/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4185?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9907","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1018","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4182/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"4182","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/4182/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4182/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Oregon Research Bounty Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4182","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4182/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4182/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4182/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4182?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9908","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1069","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3455/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"3455","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3455/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3455/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Sustainable International Financial Institutions Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"3455","request.format":"json","latestAction_actionDate":"2023-12-07","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3455/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3455?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"9909","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1087","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3201/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"3201","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/3201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3201/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Stop Arctic Ocean Drilling Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3201","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3201/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3201/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3201/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3201?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"9910","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1112","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2946/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"2946","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2946/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2946/subjects?format=json","policyArea.name":"Health","type":"S","title":"School Access to Naloxone Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2946","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2946/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2946/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2946/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2946/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2946?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9911","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1184","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1947/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"1947","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1947/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Methane Emissions Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1947","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1947/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1947/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1947/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1947/actions?format=json","latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1947/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1947?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9912","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1189","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1940/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"1940","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1940/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1940/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Canyon’s Law","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1940","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1940/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1940/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1940/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1940/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1940/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":7,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1940?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9913","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1257","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1069/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"1069","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1069/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1069/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Alan Reinstein Ban Asbestos Now Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1069","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1069/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1069/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1069/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1069/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1069/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1069?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"9914","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1395","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-04-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/33?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z","latestAction_actionTime":"18:20:30"}}} +{"type":"relationship","id":"9915","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1604","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/201/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"201","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1569)","committees.url":"https://api.congress.gov/v3/bill/118/sres/201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/201/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of National Nurses Week, to be observed from May 6 through May 12, 2023.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1569)","sponsors.0.party":"D","number":"201","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/201/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/201/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/201/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":28,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/201?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9916","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"1928","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/33?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z"}}} +{"type":"relationship","id":"9917","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9369","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Merkley","cboCostEstimates.0.pubDate":"2022-08-10T18:19:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-176.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"3103","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3103/cosponsors?format=json","sponsors.0.bioguideId":"M001176","laws.0.number":"117-176","actions.url":"https://api.congress.gov/v3/bill/118/s/3103/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3103/relatedbills?format=json","latestAction.actionDate":"2023-10-19","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3103/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3103","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3103/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3103/subjects?format=json","title":"Medical Debt Relief Act of 2023","cboCostEstimates.0.description":"As passed by the Senate on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58380","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2022-09-16","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3103/summaries?format=json","cboCostEstimates.0.title":"S. 3103, Eliminating Limits to Justice for Child Sex Abuse Victims Act of 2022","introducedDate":"2023-10-19","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3103?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"9918","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9372","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4876/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"4876","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4876/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4876/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Summer Meals and Learning Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4876","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4876/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4876/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4876/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4876/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4876/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4876?format=json","sponsors.0.firstName":"Jeff","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9919","label":"SPONSORED","start":{"id":"3962","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m001176_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Merkley, Jeff","state":"Oregon","url":"https://api.congress.gov/v3/member/M001176?format=json","bioguideId":"M001176"}},"end":{"id":"9946","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/33?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z"}}} +{"type":"relationship","id":"9962","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"930","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5183/text?format=json","updateDate":"2024-11-13T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"5183","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5183/committees?format=json","type":"S","title":"BE GONE Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"5183","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5183/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5183/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5183/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":4,"introducedDate":"2024-09-25","cosponsors.count":22,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5183?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-13T12:03:18Z"}}} +{"type":"relationship","id":"9963","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1092","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3197/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T12:03:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"3197","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3197/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3197/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Iranian Sanctions Enforcement Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3197","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3197/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3197/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3197/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3197/actions?format=json","latestAction.actionDate":"2023-11-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3197/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-11-01","cosponsors.count":28,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3197?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-12-04T12:03:19Z"}}} +{"type":"relationship","id":"9964","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1180","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1949/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:21:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1949","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1949/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1949/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Why Does the IRS Need Guns Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1949","request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1949/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1949/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1949/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1949/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-06-13","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1949?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-07-24T15:21:41Z"}}} +{"type":"relationship","id":"9965","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1277","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/778/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"778","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/778/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/778/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"COST Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"778","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/778/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/778/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/778/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/778/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/778/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/778?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9966","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1281","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/501/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"501","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/501/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/501/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Presidential Allowance Modernization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"501","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/501/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/501/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/501/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/501/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/501?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9967","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1406","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1619/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1619","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1619/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1619/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Disrupt Fentanyl Trafficking Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1619","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1619/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1619/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1619/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1619/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1619?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"9968","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1499","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/621/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"621","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","committees.url":"https://api.congress.gov/v3/bill/118/s/621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/621/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to amend the Food, Conservation, and Energy Act of 2008 to clarify propane storage as an eligible use for funds provided under the storage facility loan program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/621/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/621/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/621/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"introducedDate":"2023-03-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/621?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9969","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"9970","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1839","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/621/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"621","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/621/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"A bill to amend the Food, Conservation, and Energy Act of 2008 to clarify propane storage as an eligible use for funds provided under the storage facility loan program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/621/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/621/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/621/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"introducedDate":"2023-03-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/621?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9971","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1863","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"9972","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"1889","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/84/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"84","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/84/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/84/subjects?format=json","policyArea.name":"Health","title":"Defund EcoHealth Alliance Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"84","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/84/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/84/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/84/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/84/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/84/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/84?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9973","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9549","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2716/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"2716","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S6458)","subjects.url":"https://api.congress.gov/v3/bill/118/s/2716/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2716/committees?format=json","policyArea.name":"Health","type":"S","title":"Accountability in Foreign Animal Research Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2716","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2716/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2716/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2716/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2716/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2716/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2716?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9974","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9580","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2189/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"2189","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2189/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Executive Branch Emissions Transparency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"2189","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2189/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2189/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2189?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"9976","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9643","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1361/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"1361","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1361/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1361/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"A bill to amend the Agricultural Credit Act of 1978 to authorize the Secretary of Agriculture to provide for floodplain easement restoration and management, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1361","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1361/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1361/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1361/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":2,"cosponsors.count":1,"introducedDate":"2023-04-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1361?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"9977","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9743","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/84/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"84","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/s/84/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/84/subjects?format=json","policyArea.name":"Health","title":"Defund EcoHealth Alliance Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"84","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/84/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/84/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/84/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/84/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/84/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-01-25","subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/84?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 70 (Thursday, April 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.J. Res. 84.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H4609]\n","sponsors.0.district":10,"sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9978","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"9791","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/84/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"84","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","committees.url":"https://api.congress.gov/v3/bill/118/s/84/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/84/subjects?format=json","policyArea.name":"Health","title":"Defund EcoHealth Alliance Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"84","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/84/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/84/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/84/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/84/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/84/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-01-25","subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/84?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 70 (Thursday, April 28, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PERRY:\nH.J. Res. 84.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H4609]\n","sponsors.0.district":10,"sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"9979","label":"SPONSORED","start":{"id":"3992","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/e000295_200.jpg","partyName":"Republican","startYear":"2015","attribution":"Courtesy U.S. Senate Historical Office","name":"Ernst, Joni","state":"Iowa","url":"https://api.congress.gov/v3/member/E000295?format=json","bioguideId":"E000295"}},"end":{"id":"10010","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6590-6591)","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"10018","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"934","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5171/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"5171","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/5171/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5171/subjects?format=json","policyArea.name":"Social Welfare","type":"S","title":"HOPE Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"5171","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5171/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5171/actions?format=json","latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5171/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":4,"introducedDate":"2024-09-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5171?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10019","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"935","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5170/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"5170","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5170/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5170/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Data Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"5170","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-09-25","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5170/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5170/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-09-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5170?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10020","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"1116","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2938/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"2938","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2938/subjects?format=json","policyArea.name":"Education","type":"S","title":"Head Start for Our Future Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2938","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2938/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2938/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2938/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2938/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2938/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2938?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-02-14T02:41:12Z"}}} +{"type":"relationship","id":"10021","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"1224","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1384/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"1384","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1384/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1384/subjects?format=json","policyArea.name":"Health","type":"S","title":"Living Donor Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1384","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1384/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1384/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1384/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":43,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1384?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10022","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"1430","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1384/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"1384","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","committees.url":"https://api.congress.gov/v3/bill/118/s/1384/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1384/subjects?format=json","policyArea.name":"Health","title":"Living Donor Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1384","cosponsors.countIncludingWithdrawnCosponsors":43,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1384/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1384/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1384/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1384/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1384/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":43,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1384?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10023","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"9356","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4892/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"4892","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4892/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4892/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"The First Responders Wellness Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4892","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4892/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4892/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4892/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4892/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4892?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"10024","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"9422","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4214/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T14:03:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"4214","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4214/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4214/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Trafficking Survivors Relief Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4214","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4214/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4214/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4214/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":9,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4214?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2024-12-17T14:03:33Z"}}} +{"type":"relationship","id":"10025","label":"SPONSORED","start":{"id":"3989","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000555_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Gillibrand, Kirsten E.","state":"New York","endYear":"2009","url":"https://api.congress.gov/v3/member/G000555?format=json","bioguideId":"G000555"}},"end":{"id":"9556","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2463/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Gillibrand","sponsors.0.isByRequest":"N","request.billNumber":"2463","sponsors.0.url":"https://api.congress.gov/v3/member/G000555?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2463/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2463/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Ban Stock Trading for Government Officials Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"2463","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2463/cosponsors?format=json","sponsors.0.bioguideId":"G000555","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2463/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2463/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2463/actions?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Gillibrand, Kirsten E. [D-NY]","titles.count":5,"introducedDate":"2023-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2463?format=json","sponsors.0.firstName":"Kirsten","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10031","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"9510","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3215/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Markey","sponsors.0.isByRequest":"N","request.billNumber":"3215","sponsors.0.url":"https://api.congress.gov/v3/member/M000133?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3215/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3215/committees?format=json","policyArea.name":"Health","title":"Flu Vaccine Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3215","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-16","sponsors.0.middleName":"J.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3215/cosponsors?format=json","sponsors.0.bioguideId":"M000133","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3215/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3215/relatedbills?format=json","sponsors.0.fullName":"Sen. Markey, Edward J. [D-MA]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"MA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3215?format=json","sponsors.0.firstName":"Edward","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10032","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"9992","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/473/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Mace","sponsors.0.isByRequest":"N","request.billNumber":"473","sponsors.0.url":"https://api.congress.gov/v3/member/M000194?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S2460; text: 12/8/2021 CR S9048)","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hr/473/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/473/subjects?format=json","title":"Parris Island Protection Act","type":"HR","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"473","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/473/cosponsors?format=json","sponsors.0.bioguideId":"M000194","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/473/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/473/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/473/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/473/relatedbills?format=json","latestAction.actionDate":"2023-01-24","textVersions.count":1,"sponsors.0.fullName":"Rep. Mace, Nancy [R-SC-1]","titles.count":3,"introducedDate":"2023-01-24","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/473?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Nancy","updateDateIncludingText":"2024-11-09T01:57:51Z"}}} +{"type":"relationship","id":"10050","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"937","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5168/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"5168","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/5168/committees?format=json","type":"S","title":"Judiciary Accountability Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5168/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5168/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5168/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/5168?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-09T01:57:48Z"}}} +{"type":"relationship","id":"10051","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"995","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4423/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"4423","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4423/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4423/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"Parity for Native Hawaiian Veterans Act of 2024","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"4423","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4423/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4423/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4423/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4423/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4423?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"10052","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"1210","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1656/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"1656","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1656/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1656/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"My Body, My Data Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1656","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-05-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1656/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1656/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1656/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1656/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":16,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1656?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10053","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"1574","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/681/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"681","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S3659)","committees.url":"https://api.congress.gov/v3/bill/118/sres/681/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/681/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the designation of May 10, 2024, as \"National Asian American, Native Hawaiian, and Pacific Islander Mental Health Day\".","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S3659)","sponsors.0.party":"D","number":"681","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2024-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/681/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/681/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/681/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/681/actions?format=json","latestAction.actionDate":"2024-05-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/681/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2024-05-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/681?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10054","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9297","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5168/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"5168","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Became Public Law No: 117-360.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5168/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5168/committees?format=json","policyArea.name":"Immigration","title":"Judiciary Accountability Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"5168","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","sponsors.0.middleName":"K.","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5168/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5168/titles?format=json","laws.0.number":"117-360","summaries.url":"https://api.congress.gov/v3/bill/117/s/5168/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5168/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5168/relatedbills?format=json","latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5168?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-09T01:57:48Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10055","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"9994","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/392/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T22:54:53Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"392","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6746; text: CR S6745)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/392/subjects?format=json","policyArea.name":"Emergency Management","type":"SRES","title":"A resolution recognizing and honoring the first responders and those who lost their lives in the Maui wildfires in August 2023 that affected thousands of people.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S4895; text: CR S4893)","sponsors.0.party":"D","number":"392","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-28","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/392/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/392/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/392/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/392/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/392/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2023-09-30","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/392?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-12-19T22:54:53Z"}}} +{"type":"relationship","id":"10056","label":"SPONSORED","start":{"id":"3979","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001042_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hirono, Mazie K.","state":"Hawaii","endYear":"2013","url":"https://api.congress.gov/v3/member/H001042?format=json","bioguideId":"H001042"}},"end":{"id":"10006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/378/text?format=json","relatedBills.count":3,"updateDate":"2024-11-25T13:02:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hirono","sponsors.0.isByRequest":"N","request.billNumber":"378","sponsors.0.url":"https://api.congress.gov/v3/member/H001042?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S6630; text: CR S6628-6629)","committees.url":"https://api.congress.gov/v3/bill/118/sres/378/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/378/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution expressing support for the recognition of the week of September 25 through October 1, 2023, as \"Asian American and Native American Pacific Islander-Serving Institutions Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4763)","sponsors.0.party":"D","number":"378","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/378/cosponsors?format=json","sponsors.0.bioguideId":"H001042","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/378/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/378/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/378/actions?format=json","latestAction.actionDate":"2023-09-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/378/relatedbills?format=json","sponsors.0.fullName":"Sen. Hirono, Mazie K. [D-HI]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/378?format=json","sponsors.0.firstName":"Mazie","updateDateIncludingText":"2024-11-25T13:02:29Z"}}} +{"type":"relationship","id":"10084","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"9518","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2972/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lee","sponsors.0.isByRequest":"N","request.billNumber":"2972","sponsors.0.url":"https://api.congress.gov/v3/member/L000577?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2972/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2972/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"A bill to require the Secretary of the Interior to repay States for amounts expended by States to operate units of the National Park System during a Government shutdown.","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"2972","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2972/cosponsors?format=json","sponsors.0.bioguideId":"L000577","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2972/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2972/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2972/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2972/relatedbills?format=json","sponsors.0.fullName":"Sen. Lee, Mike [R-UT]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"UT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2972?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10085","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"9570","labels":["Bill"],"properties":{"relatedBills.count":4,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2443/text?format=json","updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"2443","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Economics and Public Finance","committees.url":"https://api.congress.gov/v3/bill/118/s/2443/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2443/subjects?format=json","type":"S","title":"Energy and Water Development and Related Agencies Appropriations Act, 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 145.","sponsors.0.party":"D","number":"2443","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/72?format=json","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2443/cosponsors?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2443/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2443/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2443/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2443/relatedbills?format=json","sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":4,"subjects.count":55,"request.contentType":"application/json","sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2443?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"S. Rept. 118-72"}}} +{"type":"relationship","id":"10091","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"942","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4952/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"4952","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4952/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4952/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Dark and Quiet Skies Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4952","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4952/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4952/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4952/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4952?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10092","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"1071","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3453/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3453","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3453/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3453/subjects?format=json","policyArea.name":"Education","type":"S","title":"Peer-to-Peer Mental Health Support Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3453","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3453/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3453/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3453/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3453/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3453?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10093","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"1183","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1945/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1945","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1945/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1945/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"John Lewis Civil Rights Fellowship Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1945","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1945/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1945/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1945/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1945/actions?format=json","latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1945/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1945?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10094","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"1591","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/441/text?format=json","relatedBills.count":2,"updateDate":"2024-11-20T21:24:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"441","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5232)","committees.url":"https://api.congress.gov/v3/bill/118/sres/441/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/441/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating October 2023 as \"National Learning Disabilities Awareness Month\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5232)","sponsors.0.party":"D","number":"441","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2023-10-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/441/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/441/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/441/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/441/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/441/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":2,"introducedDate":"2023-10-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/441?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-20T21:24:51Z"}}} +{"type":"relationship","id":"10095","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9435","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3985/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3985","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/3985/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3985/subjects?format=json","type":"S","title":"Sarvis Creek Wilderness Completion Act","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 609.","sponsors.0.party":"D","number":"3985","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3985/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3985/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3985/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3985/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3985/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":4,"introducedDate":"2024-03-20","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3985?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:20:42Z"}}} +{"type":"relationship","id":"10096","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9436","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3981/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"3981","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3981/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3981/committees?format=json","policyArea.name":"Health","type":"S","title":"DeOndra Dixon INCLUDE Project Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3981","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3981/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3981/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3981/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3981/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3981/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":8,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3981?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10097","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9496","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2329/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"2329","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/2329/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2329/subjects?format=json","policyArea.name":"Health","type":"S","title":"Emerging Pathogen Preparedness Program Authorization Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2329","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2329/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2329/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2329/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2329/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2329/relatedbills?format=json","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"introducedDate":"2023-07-13","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2329?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10098","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9590","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1526/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1526","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1526/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"NTIA Policy and Cybersecurity Coordination Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1526","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1526/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1526/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1526/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1526?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10099","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9527","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2962/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Vance","sponsors.0.isByRequest":"N","request.billNumber":"2962","sponsors.0.url":"https://api.congress.gov/v3/member/V000137?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2962/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2962/committees?format=json","policyArea.name":"Taxation","title":"Drive American Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2962","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2962/cosponsors?format=json","sponsors.0.bioguideId":"V000137","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2962/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2962/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2962/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2962/relatedbills?format=json","sponsors.0.fullName":"Sen. Vance, J. D. [R-OH]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2962?format=json","sponsors.0.firstName":"J.","updateDateIncludingText":"2024-07-24T15:20:14Z"}}} +{"type":"relationship","id":"10100","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9594","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1922/text?format=json","updateDate":"2024-04-17T23:52:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1922","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1922/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1922/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide coverage for wigs as durable medical equipment under the Medicare program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1922","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1922/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1922/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1922/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1922/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1922/relatedbills?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":2,"cosponsors.count":5,"introducedDate":"2023-06-12","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1922?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-04-17T23:52:24Z"}}} +{"type":"relationship","id":"10101","label":"SPONSORED","start":{"id":"3980","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h000273_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hickenlooper, John W.","state":"Colorado","url":"https://api.congress.gov/v3/member/H000273?format=json","bioguideId":"H000273"}},"end":{"id":"9831","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1526/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hickenlooper","sponsors.0.isByRequest":"N","request.billNumber":"1526","sponsors.0.url":"https://api.congress.gov/v3/member/H000273?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1526/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1526/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"NTIA Policy and Cybersecurity Coordination Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1526","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1526/cosponsors?format=json","sponsors.0.bioguideId":"H000273","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1526/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1526/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1526/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1526/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Hickenlooper, John W. [D-CO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1526?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10102","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"943","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4951/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"4951","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4951/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4951/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Unleashing AI Innovation in Financial Services Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"4951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4951/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4951/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4951/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4951/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4951?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10103","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1067","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3456/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"3456","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/3456/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3456/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Military Personnel Confirmation Restoration Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"3456","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3456/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3456/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3456/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3456/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":37,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3456?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10104","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1091","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rounds","cboCostEstimates.0.pubDate":"2023-03-06T20:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"R","number":"185","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/185/cosponsors?format=json","sponsors.0.bioguideId":"R000605","actions.url":"https://api.congress.gov/v3/bill/118/s/185/actions?format=json","latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/185/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/185/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":2,"request.congress":"118","actions.count":4,"request.billNumber":"185","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/185/subjects?format=json","title":"Native American Direct Loan Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58958","request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/185/summaries?format=json","cboCostEstimates.0.title":"S. 185, Native American Direct Loan Improvement Act of 2023","introducedDate":"2023-01-31","subjects.count":6,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/185?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10105","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1146","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2455/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2455","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2455/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2455/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Research, Development, Test and Evaluation Unmet Needs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2455","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2455/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2455/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2455/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2455?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10106","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1253","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1078/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1078","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1078/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"NRCS Wetland Compliance and Appeals Reform Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1078/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1078/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1078?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10107","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1254","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1077","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1077/subjects?format=json","policyArea.name":"Health","type":"S","title":"Home-Based Telemental Health Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1077","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1077/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1077/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1077/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1077?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10108","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1386","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/40/text?format=json","updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"40","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/40/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/40/subjects?format=json","policyArea.name":"Congress","type":"SCONRES","title":"RESTORE Resolution of 2024","latestAction.text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","sponsors.0.party":"R","number":"40","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/40/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/40/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/40/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/40?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10109","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1616","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Rounds","cboCostEstimates.0.pubDate":"2023-03-06T20:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: 4/27/2023 CR S1424-1425)","policyArea.name":"Native Americans","type":"S","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"R","number":"185","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/185/cosponsors?format=json","sponsors.0.bioguideId":"R000605","actions.url":"https://api.congress.gov/v3/bill/118/s/185/actions?format=json","latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/185/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/185/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":2,"request.congress":"118","actions.count":4,"request.billNumber":"185","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/185/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/185/subjects?format=json","title":"Native American Direct Loan Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Veterans’ Affairs on February 16, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58958","request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/185/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/185/summaries?format=json","cboCostEstimates.0.title":"S. 185, Native American Direct Loan Improvement Act of 2023","introducedDate":"2023-01-31","subjects.count":6,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/185?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10110","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1802","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1077","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Introduced in the Senate, read twice, considered, read the third time, and passed without amendment by Voice Vote.","committees.url":"https://api.congress.gov/v3/bill/118/s/1077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1077/subjects?format=json","policyArea.name":"Health","type":"S","title":"Home-Based Telemental Health Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1077","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1077/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1077/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1077/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1077?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10111","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"1812","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1078/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"1078","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1078/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1078/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"NRCS Wetland Compliance and Appeals Reform Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1078","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1078/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1078/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1078/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1078/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1078?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10112","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"9384","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3856/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"3856","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/3856/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3856/committees?format=json","type":"S","title":"Timber Harvesting Restoration Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"3856","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3856/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3856/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3856/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3856/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3856/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-29","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2024-02-29","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3856?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10113","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"9551","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2715/text?format=json","relatedBills.count":2,"updateDate":"2025-01-24T21:14:37Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2715","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/s/2715/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2715/subjects?format=json","type":"S","title":"Countering Mexican Transnational Criminal Organizations in Cyberspace Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2715","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2715/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2715/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2715/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2715/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2715/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2715?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-24T21:14:37Z"}}} +{"type":"relationship","id":"10114","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"9566","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2455/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2455","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/2455/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2455/committees?format=json","type":"S","title":"Research, Development, Test and Evaluation Unmet Needs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2455","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2455/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2455/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2455/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2455/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2455?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10115","label":"SPONSORED","start":{"id":"3938","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000605_200.jpg","startYear":"2015","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Rounds, Mike","state":"South Dakota","url":"https://api.congress.gov/v3/member/R000605?format=json","bioguideId":"R000605"}},"end":{"id":"9807","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/40/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"40","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 415.","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/40/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/40/committees?format=json","policyArea.name":"Congress","title":"RESTORE Resolution of 2024","type":"SCONRES","latestAction.text":"Referred to the Committee on Rules and Administration. (text: CR S5791-5793)","sponsors.0.party":"R","number":"40","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-06-14","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/40/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/40/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/40/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/40/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/40/relatedbills?format=json","latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":4,"introducedDate":"2024-08-01","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/40?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10116","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"944","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4950/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4950","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4950/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4950/subjects?format=json","policyArea.name":"Native Americans","type":"S","title":"Tribal Employment and Training Support Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4950","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4950/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4950/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4950?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10117","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4422/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4422","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4422/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4422/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Fair Repair Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4422","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4422/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4422/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4422/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4422/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4422?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10118","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"1009","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4191/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4191","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4191/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4191/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Regional Leadership in Wildland Fire Research Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4191","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4191/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4191/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4191/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4191?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10119","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"1076","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3447/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"3447","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3447/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3447/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pregnant and Postpartum Women Treatment Reauthorization Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3447","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-12-07","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3447/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3447/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3447/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3447/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3447?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10120","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"1152","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2449/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"2449","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2449/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2449/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Ensuring Fee-Free Benefit Transactions Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2449","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2449/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2449/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2449/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2449/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2449/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2449?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10121","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"1264","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/793/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"793","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/793/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/793/subjects?format=json","policyArea.name":"Health","type":"S","title":"Prevent Interruptions in Physical Therapy Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"793","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/793/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/793/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/793/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":16,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/793?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-02-14T16:56:14Z"}}} +{"type":"relationship","id":"10122","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"1463","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/793/text?format=json","relatedBills.count":1,"updateDate":"2025-02-14T16:56:14Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"793","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/s/793/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/793/committees?format=json","policyArea.name":"Health","type":"S","title":"Prevent Interruptions in Physical Therapy Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"793","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-11-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/793/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/793/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/793/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/793/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/793/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":16,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/793?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-02-14T16:56:14Z","latestAction_actionTime":"19:09:47"}}} +{"type":"relationship","id":"10123","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"1822","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/871/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"871","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/871/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/871/subjects?format=json","policyArea.name":"Education","type":"S","title":"A bill to amend section 7014 of the Elementary and Secondary Education Act of 1965 to advance toward full Federal funding for impact aid, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"871","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/871/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/871/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/871/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/871/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/871/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":2,"introducedDate":"2023-03-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/871?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10124","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9383","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4038/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"4038","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/4038/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4038/committees?format=json","title":"CARE Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4038","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","sponsors.0.middleName":"R.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4038/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4038/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4038/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4038/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-21","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":4,"introducedDate":"2024-03-21","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4038?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10125","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9385","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3769/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"3769","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3769/subjects?format=json","policyArea.name":"Families","type":"S","title":"Alternative Pathways to Child Abuse Prevention Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3769","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3769/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3769/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3769/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-08","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2024-02-08","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3769?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10126","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9489","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2424/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"2424","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 220.","policyArea.name":"Native Americans","subjects.url":"https://api.congress.gov/v3/bill/118/s/2424/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2424/committees?format=json","type":"S","title":"Indian Programs Advance Appropriations Act of 2023","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"2424","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-12-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2424/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2424/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2424/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2424/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2424/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2424?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T18:13:01Z"}}} +{"type":"relationship","id":"10127","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9616","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1629/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"1629","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1629/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1629/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Hatch Act Enforcement Transparency and Accountability Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"1629","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1629/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1629/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1629/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1629?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10128","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9708","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/429/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"429","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/429/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/429/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Abandoned Well Remediation Research and Development Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"429","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/429/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/429/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/429/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/429/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/429/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":3,"cosponsors.count":5,"introducedDate":"2023-02-15","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/429?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"10129","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9963","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/871/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lujan","sponsors.0.isByRequest":"N","request.billNumber":"871","sponsors.0.url":"https://api.congress.gov/v3/member/L000570?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7202)","committees.url":"https://api.congress.gov/v3/bill/118/s/871/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/871/subjects?format=json","policyArea.name":"Education","type":"S","title":"A bill to amend section 7014 of the Elementary and Secondary Education Act of 1965 to advance toward full Federal funding for impact aid, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"871","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/871/cosponsors?format=json","sponsors.0.bioguideId":"L000570","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/871/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/871/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/871/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/871/relatedbills?format=json","sponsors.0.fullName":"Sen. Lujan, Ben Ray [D-NM]","titles.count":2,"introducedDate":"2023-03-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NM","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/871?format=json","sponsors.0.firstName":"Ben","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10130","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"947","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4947/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4947","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4947/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Cruise Passenger Protection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4947","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4947/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4947/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4947/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4947/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4947?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10131","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"951","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4943/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4943","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4943/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4943/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Protecting Consumers From Payment Scams Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4943","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4943/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4943/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4943/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4943/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4943?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10132","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"954","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4939/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4939","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4939/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Safeguarding Infants from Dangerous Sleep Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4939","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4939/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4939/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4939?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10133","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"965","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4699/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4699","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/4699/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4699/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Insurrection Act of 2024","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"4699","request.format":"json","latestAction_actionDate":"2024-07-11","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4699/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4699/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4699?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10134","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"1102","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2957/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2957","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2957/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2957/committees?format=json","policyArea.name":"Commerce","type":"S","title":"BOSS and SWIFT ACT of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"2957","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-09-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2957/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2957/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2957/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2957/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":2,"subjects.count":16,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2957?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10135","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"1230","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1376","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1376/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1376/subjects?format=json","policyArea.name":"Law","type":"S","title":"Forced Arbitration Injustice Repeal Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1376","cosponsors.countIncludingWithdrawnCosponsors":39,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1376/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1376/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1376/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":39,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1376?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-16T06:06:22Z"}}} +{"type":"relationship","id":"10136","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"1261","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/799/text?format=json","relatedBills.count":1,"updateDate":"2024-07-25T11:03:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"799","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/799/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/799/subjects?format=json","policyArea.name":"Health","type":"S","title":"Chiropractic Medicare Coverage Modernization Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"799","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/799/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/799/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/799/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/799/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/799/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/799?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-07-25T11:03:13Z"}}} +{"type":"relationship","id":"10137","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"1311","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/178/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"178","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/178/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/178/committees?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Airline Passengers' Bill of Rights","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"178","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/178/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/178/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/178/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/178/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/178/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":8,"request.contentType":"application/json","subjects.count":24,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/178?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10138","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"1426","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1376","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1376/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1376/committees?format=json","policyArea.name":"Law","type":"S","title":"Forced Arbitration Injustice Repeal Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"1376","cosponsors.countIncludingWithdrawnCosponsors":39,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1376/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1376/actions?format=json","latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1376/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":39,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1376?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-16T06:06:22Z","latestAction_actionTime":"21:16:52"}}} +{"type":"relationship","id":"10139","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"1851","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/615/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"615","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/615/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/615/committees?format=json","policyArea.name":"Transportation and Public Works","title":"Cabin Air Safety Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"615","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/615/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/615/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/615/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/615/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/615/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/615?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10140","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9380","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4280/text?format=json","relatedBills.count":1,"updateDate":"2024-12-17T12:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4280","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4280/committees?format=json","policyArea.name":"Health","title":"Essential Caregivers Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4280","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4280/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4280/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4280/actions?format=json","latestAction.actionDate":"2024-05-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4280/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-05-08","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4280?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-12-17T12:03:18Z"}}} +{"type":"relationship","id":"10141","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9396","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blumenthal","cboCostEstimates.0.pubDate":"2022-04-19T20:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 428.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3511","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3511/cosponsors?format=json","sponsors.0.bioguideId":"B001277","actions.url":"https://api.congress.gov/v3/bill/118/s/3511/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3511/relatedbills?format=json","latestAction.actionDate":"2023-12-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-122","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3511/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3511","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3511/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3511/subjects?format=json","title":"Stopping Grinch Bots Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on\nMarch 30, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57997","request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/122?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3511/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3511/summaries?format=json","cboCostEstimates.0.title":"S. 3511, Satellite Cybersecurity Act","introducedDate":"2023-12-13","subjects.count":9,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3511?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10142","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9402","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2280/text?format=json","relatedBills.count":6,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2280","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2280/committees?format=json","policyArea.name":"Social Welfare","type":"S","title":"Social Security 2100 Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2280","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2280/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2280/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2280/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2280/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","latestAction.actionTime":"14:52:23","titles.count":3,"introducedDate":"2023-07-12","cosponsors.count":4,"request.contentType":"application/json","subjects.count":20,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2280?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-11-09T01:57:27Z","latestAction_actionTime":"14:52:23"}}} +{"type":"relationship","id":"10143","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9427","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4206/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"4206","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4206/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4206/committees?format=json","policyArea.name":"Animals","type":"S","title":"Captive Primate Safety Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"4206","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4206/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4206/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4206/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4206/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4206/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":3,"introducedDate":"2024-04-30","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4206?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"10144","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9558","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2461/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"2461","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2461/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2461/subjects?format=json","policyArea.name":"Education","title":"COREY Safety Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2461","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2461/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2461/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2461/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2461/actions?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2461/relatedbills?format=json","sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":4,"introducedDate":"2023-07-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2461?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10145","label":"SPONSORED","start":{"id":"4011","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001277_200.jpg","startYear":"2011","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Blumenthal, Richard","state":"Connecticut","url":"https://api.congress.gov/v3/member/B001277?format=json","bioguideId":"B001277"}},"end":{"id":"9594","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1922/text?format=json","updateDate":"2024-04-17T23:52:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blumenthal","sponsors.0.isByRequest":"N","request.billNumber":"1922","sponsors.0.url":"https://api.congress.gov/v3/member/B001277?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1922/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1922/subjects?format=json","policyArea.name":"Health","type":"S","title":"A bill to amend title XVIII of the Social Security Act to provide coverage for wigs as durable medical equipment under the Medicare program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"1922","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"W.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1922/cosponsors?format=json","sponsors.0.bioguideId":"B001277","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1922/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1922/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1922/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1922/relatedbills?format=json","latestAction.actionDate":"2023-06-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Blumenthal, Richard [D-CT]","titles.count":2,"cosponsors.count":5,"introducedDate":"2023-06-12","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1922?format=json","sponsors.0.firstName":"Richard","updateDateIncludingText":"2024-04-17T23:52:24Z"}}} +{"type":"relationship","id":"10146","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"948","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4946/text?format=json","relatedBills.count":1,"updateDate":"2025-03-03T11:57:02Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"4946","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/4946/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4946/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Justice for 9/11 Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"4946","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4946/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4946/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4946/actions?format=json","latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4946/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4946?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-03-03T11:57:02Z"}}} +{"type":"relationship","id":"10147","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1343","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}}} +{"type":"relationship","id":"10148","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1377","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}}} +{"type":"relationship","id":"10149","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1547","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/935/text?format=json","updateDate":"2025-01-03T13:56:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"935","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S7242)","committees.url":"https://api.congress.gov/v3/bill/118/sres/935/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/935/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution condemning the commutation of Michael Conahan granted by President Biden on December 12, 2024.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S7242)","sponsors.0.party":"R","number":"935","request.format":"json","latestAction_actionDate":"2024-12-19","sponsors.0.bioguideId":"C001095","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/935/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/935/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/935?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T13:56:45Z"}}} +{"type":"relationship","id":"10150","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1606","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1543; text: 3/23/2023 CR S935-936)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}}} +{"type":"relationship","id":"10151","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1821","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/872/text?format=json","updateDate":"2025-01-17T03:11:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"872","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/872/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/872/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"SAFETY on Social Media Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"872","request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/872/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-03-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/872?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-17T03:11:17Z"}}} +{"type":"relationship","id":"10152","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1825","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/868/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"868","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/868/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/868/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Defending Our Defenders Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"868","request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/868/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/868/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/868/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/868/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-16","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-16","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/868?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:18Z"}}} +{"type":"relationship","id":"10153","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1828","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/761/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"761","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/761/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/761/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Stop Forced Organ Harvesting Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"761","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/761/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/761/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/761/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/761/actions?format=json","latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/761/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":21,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/761?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10154","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"1853","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/614/text?format=json","relatedBills.count":4,"updateDate":"2024-07-24T15:23:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"614","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (text: CR S1010-1011)","committees.url":"https://api.congress.gov/v3/bill/118/s/614/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/614/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Americans from Fentanyl Trafficking Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"614","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/614/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/614/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/614/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/614/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/614/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-01","cosponsors.count":9,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/614?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:35Z"}}} +{"type":"relationship","id":"10155","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"2004","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1610)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/119?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}}} +{"type":"relationship","id":"10156","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9307","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-351.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"4240","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4240/cosponsors?format=json","sponsors.0.bioguideId":"C001095","laws.0.number":"117-351","actions.url":"https://api.congress.gov/v3/bill/118/s/4240/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4240/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-02","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4240/amendments?format=json","titles.count":3,"cosponsors.count":21,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4240/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4240","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4240/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4240/committees?format=json","title":"No Bailouts for Campus Criminals Act","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4240/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4240/summaries?format=json","introducedDate":"2024-05-02","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4240?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10157","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9364","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4883/text?format=json","updateDate":"2025-01-14T19:06:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"4883","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S4823)","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/4883/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4883/subjects?format=json","type":"S","title":"Unmasking Networks of Virtual Election Interference and Lies Act of 2024","latestAction.text":"Read twice and referred to the Select Committee on Intelligence.","sponsors.0.party":"R","number":"4883","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2022-09-19","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4883/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4883/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4883/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-07-31","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4883?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:06:24Z"}}} +{"type":"relationship","id":"10158","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9441","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3973/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"3973","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"International Affairs","committees.url":"https://api.congress.gov/v3/bill/118/s/3973/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3973/subjects?format=json","type":"S","title":"Countering China’s Political Warfare Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3973","request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3973/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3973/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3973/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3973/relatedbills?format=json","latestAction.actionDate":"2024-03-19","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2024-03-19","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3973?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10159","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9479","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3438/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"3438","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3438/committees?format=json","policyArea.name":"Families","title":"SAFE Home Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3438","request.format":"json","latestAction_actionDate":"2022-01-04","summaries.count":1,"sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3438/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3438/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3438?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:19:32Z"}}} +{"type":"relationship","id":"10160","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9681","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/761/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"761","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/761/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/761/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Stop Forced Organ Harvesting Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"761","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/761/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/761/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/761/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/761/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/761/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":21,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/761?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10161","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9689","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/752/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"752","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1571-1572)","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/752/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/752/committees?format=json","type":"S","title":"Preventing Violence Against Female Inmates Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"752","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/752/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/752/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/752/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/752/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/752/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/752?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:26Z"}}} +{"type":"relationship","id":"10162","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9782","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/119/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T16:52:11Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"119","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/119/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/119/subjects?format=json","policyArea.name":"Taxation","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to \"Advanced Manufacturing Production Credit\".","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"119","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/119/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/119/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/119/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/119/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/119/relatedbills?format=json","latestAction.actionDate":"2024-12-05","textVersions.count":1,"sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":2,"introducedDate":"2024-12-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/119?format=json","sponsors.0.district":4,"sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-03T16:52:11Z"}}} +{"type":"relationship","id":"10163","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9962","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/872/text?format=json","relatedBills.count":3,"updateDate":"2025-01-17T03:11:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"872","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7185; text: CR S7202)","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/872/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/872/committees?format=json","title":"SAFETY on Social Media Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"872","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/872/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/872/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/872/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/872/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/872/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":4,"introducedDate":"2023-03-16","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/872?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2025-01-17T03:11:17Z"}}} +{"type":"relationship","id":"10164","label":"SPONSORED","start":{"id":"4000","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001095_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cotton, Tom","state":"Arkansas","endYear":"2015","url":"https://api.congress.gov/v3/member/C001095?format=json","bioguideId":"C001095"}},"end":{"id":"9967","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/868/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cotton","sponsors.0.isByRequest":"N","request.billNumber":"868","sponsors.0.url":"https://api.congress.gov/v3/member/C001095?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7084; text: CR S7074-7075)","policyArea.name":"Crime and Law Enforcement","subjects.url":"https://api.congress.gov/v3/bill/118/s/868/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/868/committees?format=json","title":"Defending Our Defenders Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"868","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sres/868/cosponsors?format=json","sponsors.0.bioguideId":"C001095","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/868/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/868/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/868/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/868/relatedbills?format=json","sponsors.0.fullName":"Sen. Cotton, Tom [R-AR]","titles.count":3,"introducedDate":"2023-03-16","cosponsors.count":13,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/868?format=json","sponsors.0.firstName":"Tom","updateDateIncludingText":"2024-07-24T15:23:18Z"}}} +{"type":"relationship","id":"10188","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9549","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2716/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"2716","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S6458)","subjects.url":"https://api.congress.gov/v3/bill/118/s/2716/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2716/committees?format=json","policyArea.name":"Health","type":"S","title":"Accountability in Foreign Animal Research Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2716","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2716/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2716/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2716/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2716/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2716/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":14,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2716?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10189","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9664","labels":["Bill"],"properties":{"relatedBills.count":7,"congress":118,"sponsors.0.lastName":"Armstrong","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship. (text: CR S1830-1831)","policyArea.name":"Energy","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 16.","sponsors.0.party":"R","number":"1058","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1058/cosponsors?format=json","sponsors.0.bioguideId":"A000377","actions.url":"https://api.congress.gov/v3/bill/118/hr/1058/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1058/relatedbills?format=json","sponsors.0.fullName":"Rep. Armstrong, Kelly [R-ND-At Large]","titles.count":4,"cosponsors.count":17,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-24","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1058/text?format=json","updateDate":"2025-01-15T18:51:50Z","originChamber":"House","committees.count":3,"request.congress":"118","actions.count":18,"request.billNumber":"1058","sponsors.0.url":"https://api.congress.gov/v3/member/A000377?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1058/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1058/committees?format=json","title":"Promoting Cross-border Energy Infrastructure Act","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-03-25","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/24?format=json","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1058/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1058/summaries?format=json","introducedDate":"2023-02-17","subjects.count":13,"sponsors.0.state":"ND","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/s/1058?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 33 (Friday, February 17, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARMSTRONG:\nH.R. 1058.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution.\nThe single subject of this legislation is:\nTo increase American energy production and restore energy\nleadership by streamlining the permitting process of cross-\nborder pipelines and electric transmission lines.\n[Page H854]\n","sponsors.0.firstName":"Kelly","updateDateIncludingText":"2025-01-15T18:51:50Z"}}} +{"type":"relationship","id":"10199","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"952","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4941/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"4941","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4941/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4941/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Meat Business Innovation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"4941","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4941/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4941/actions?format=json","latestAction.actionDate":"2024-08-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2024-08-01","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4941?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10200","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"1829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/748/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"748","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/748/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/748/subjects?format=json","policyArea.name":"Armed Forces and National Security","title":"American Aviator Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"748","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/748/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/748/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/748/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/748/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/748/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/748?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10201","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9504","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3219/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"3219","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3219/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3219/committees?format=json","policyArea.name":"Health","type":"S","title":"Influenza Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3219","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3219/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3219/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3219/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3219/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3219/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":4,"introducedDate":"2023-11-02","cosponsors.count":3,"request.contentType":"application/json","subjects.count":25,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3219?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10202","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9693","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/748/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"748","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/748/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/748/committees?format=json","type":"S","title":"American Aviator Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"748","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-03-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/748/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/748/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/748/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/748/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/748/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/748?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10203","label":"SPONSORED","start":{"id":"4017","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001230_200.jpg","startYear":"1999","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Baldwin, Tammy","state":"Wisconsin","endYear":"2013","url":"https://api.congress.gov/v3/member/B001230?format=json","bioguideId":"B001230"}},"end":{"id":"9998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/387/text?format=json","relatedBills.count":2,"updateDate":"2024-11-19T20:40:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Baldwin","sponsors.0.isByRequest":"N","request.billNumber":"387","sponsors.0.url":"https://api.congress.gov/v3/member/B001230?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6707)","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/sres/387/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/387/subjects?format=json","type":"SRES","title":"A resolution designating October 12, 2023, as \"National Loggers Day\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4828)","sponsors.0.party":"D","number":"387","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/387/cosponsors?format=json","sponsors.0.bioguideId":"B001230","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/387/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/387/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/387/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/387/relatedbills?format=json","sponsors.0.fullName":"Sen. Baldwin, Tammy [D-WI]","titles.count":2,"cosponsors.count":3,"introducedDate":"2023-09-29","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/387?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-11-19T20:40:20Z"}}} +{"type":"relationship","id":"10204","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"953","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4940/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"4940","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4940/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4940/subjects?format=json","policyArea.name":"Civil Rights and Liberties, Minority Issues","type":"S","title":"Bivens Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4940","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4940/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4940/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4940/actions?format=json","latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4940/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-08-01","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4940?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"10205","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"973","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4688/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"4688","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4688/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4688/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Counter Kleptocracy Coordination Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4688","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4688/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4688/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4688/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4688?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10206","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"1030","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3940/text?format=json","relatedBills.count":1,"updateDate":"2024-09-12T11:03:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3940","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3940/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3940/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"First-Time Homebuyer Tax Credit Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3940","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3940/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3940/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3940/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3940/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3940/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3940?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-09-12T11:03:18Z"}}} +{"type":"relationship","id":"10207","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"1036","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3939/text?format=json","relatedBills.count":3,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3939","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3939/subjects?format=json","policyArea.name":"Health","type":"S","title":"ACO Assignment Improvement Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3939","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3939/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3939/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3939/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3939/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3939/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3939?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"10208","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"1193","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1934/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"1934","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1934/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1934/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Empowering States' Rights To Protect Consumers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"1934","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1934/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1934/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1934/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1934/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1934?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10209","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"1592","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/440/text?format=json","relatedBills.count":2,"updateDate":"2024-12-05T20:01:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"440","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5231-5232)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/440/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/440/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution expressing support for the designation of October 2023 as \"National Youth Justice Action Month\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5231-5232)","sponsors.0.party":"D","number":"440","request.format":"json","latestAction_actionDate":"2023-10-30","summaries.count":1,"sponsors.0.bioguideId":"W000802","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/440/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/440/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/440/actions?format=json","latestAction.actionDate":"2023-10-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/440/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":2,"introducedDate":"2023-10-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/440?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-12-05T20:01:26Z"}}} +{"type":"relationship","id":"10210","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"1864","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/373/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"373","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/373/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/373/subjects?format=json","policyArea.name":"Energy","title":"RISEE Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 576.","sponsors.0.party":"D","number":"373","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/373/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/373/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/373/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":6,"introducedDate":"2023-02-09","cosponsors.count":26,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/373?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"10211","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"1878","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/357/text?format=json","relatedBills.count":3,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"357","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/357/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/357/subjects?format=json","policyArea.name":"Taxation","title":"No Tax Breaks for Outsourcing Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"357","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/357/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/357/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/357/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/357/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/357/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":16,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/357?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"10212","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"9508","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3217/text?format=json","relatedBills.count":1,"updateDate":"2024-07-23T16:18:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"3217","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3217/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Manifest Modernization Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3217","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3217/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3217/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3217/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3217?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2024-07-23T16:18:12Z"}}} +{"type":"relationship","id":"10213","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"9973","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/650/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"650","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 609.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sres/650/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/650/committees?format=json","type":"SRES","title":"A resolution recognizing the anniversary of the establishment of the United States Naval Construction Force, known as the \"Seabees\", and the tremendous sacrifices and contributions by the Seabees who have fought and served on behalf of our country.","latestAction.text":"Referred to the Committee on Armed Services. (text: CR S2888)","sponsors.0.party":"D","number":"650","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/650/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/650/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/650/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/650/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/650/relatedbills?format=json","sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":2,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/650?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10214","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"10011","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/373/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Whitehouse","sponsors.0.isByRequest":"N","request.billNumber":"373","sponsors.0.url":"https://api.congress.gov/v3/member/W000802?format=json","latestAction_text":"Referred to the Committee on Energy and Natural Resources. (text: CR S6590)","subjects.url":"https://api.congress.gov/v3/bill/118/s/373/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/373/committees?format=json","policyArea.name":"Energy","title":"RISEE Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 576.","sponsors.0.party":"D","number":"373","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/373/cosponsors?format=json","sponsors.0.bioguideId":"W000802","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/373/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/373/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/373/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/373/relatedbills?format=json","latestAction.actionDate":"2024-11-21","textVersions.count":2,"sponsors.0.fullName":"Sen. Whitehouse, Sheldon [D-RI]","titles.count":6,"introducedDate":"2023-02-09","cosponsors.count":26,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/373?format=json","sponsors.0.firstName":"Sheldon","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"10231","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"955","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4938/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"4938","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4938/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4938/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"A bill to designate the facility of the United States Postal Service located at 114 Center Street East in Roseau, Minnesota, as the \"Floyd B. Olson Post Office\".","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"4938","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-08-01","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4938/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4938/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4938/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4938/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2024-08-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4938?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10232","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1050","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3686/text?format=json","updateDate":"2024-07-24T15:19:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3686","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3686/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3686/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Preventing Algorithmic Collusion Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"3686","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3686/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3686/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3686/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3686?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2024-07-26T16:27:12Z"}}} +{"type":"relationship","id":"10233","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1052","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3684/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3684","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3684/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3684/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"Housing Supply and Affordability Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"3684","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3684/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3684/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3684/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3684/actions?format=json","latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3684/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3684?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10234","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1058","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-02T20:21:22Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3222","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Became Public Law No: 118-36.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3222/subjects?format=json","policyArea.name":"Congress","type":"S","title":"A bill to ensure the security of office space rented by Senators, and for other purposes.","latestAction.text":"Became Public Law No: 118-36.","sponsors.0.party":"D","number":"3222","request.format":"json","latestAction_actionDate":"2024-01-26","summaries.count":2,"sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3222/titles?format=json","laws.0.number":"118-36","summaries.url":"https://api.congress.gov/v3/bill/118/s/3222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3222/actions?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3222/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-11-02","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3222?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-02T20:21:22Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10235","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1137","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2676/text?format=json","updateDate":"2024-07-24T15:20:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2676","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2676/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2676/subjects?format=json","policyArea.name":"Law","type":"S","title":"Safe at Home Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2676","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2676/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2676/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2676/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2676?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2024-07-24T15:20:41Z"}}} +{"type":"relationship","id":"10236","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1143","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2458/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2458","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2458/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2458/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Crop Insurance for Future Farmers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2458","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2458/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2458/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2458/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2458/actions?format=json","latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2458/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2458?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10237","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1149","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2452/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2452","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2452/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2452/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Biomanufacturing and Jobs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2452","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2452/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2452/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2452/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2452/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":3,"subjects.count":13,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2452?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10238","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1201","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1666/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1666","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1666/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1666/subjects?format=json","policyArea.name":"Animals","type":"S","title":"Foreign Animal Disease Prevention, Surveillance, and Rapid Response Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1666","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1666/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1666/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1666/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1666/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1666/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":6,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1666?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-03-04T17:27:13Z"}}} +{"type":"relationship","id":"10239","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1419","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1609/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1609","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Without objection, the motion to reconsider is laid upon the table.","committees.url":"https://api.congress.gov/v3/bill/118/s/1609/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1609/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Support Our Election Workers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1609","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2024-12-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1609/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1609/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1609/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1609/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1609/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1609?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"18:13:04"}}} +{"type":"relationship","id":"10240","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1548","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/934/text?format=json","updateDate":"2025-01-31T18:06:00Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"934","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Voice Vote. (consideration: CR S7171; text: CR S7182-7183)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/934/subjects?format=json","policyArea.name":"Congress","type":"SRES","title":"A resolution amending the broadcasting and recording procedures of the Senate.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment by Voice Vote. (consideration: CR S7171; text: CR S7182-7183)","sponsors.0.party":"D","number":"934","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/934/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/934/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/934/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":1,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/934?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-31T18:06:00Z"}}} +{"type":"relationship","id":"10241","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1614","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/193/text?format=json","relatedBills.count":3,"updateDate":"2024-07-31T15:27:48Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"193","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1514-1515)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/193/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SRES","title":"A resolution designating April 2023 as \"Second Chance Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Voice Vote. (consideration: CR S1496; text: CR S1514-1515)","sponsors.0.party":"D","number":"193","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-03","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/193/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/193/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/193/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/193/actions?format=json","latestAction.actionDate":"2023-05-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/193/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-05-03","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/193?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2024-07-31T15:27:48Z"}}} +{"type":"relationship","id":"10242","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1840","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/630/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"630","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/630/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/630/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Sustaining Our Democracy Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"630","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2025-02-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/630/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/630/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/630/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/630/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/630/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":15,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/630?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10243","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1890","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/83/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"83","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/83/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/83/subjects?format=json","policyArea.name":"Labor and Employment","title":"American Apprenticeship Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"83","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/83/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/83/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/83/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/83/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/83/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/83?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10244","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1915","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-04-17T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 282.","sponsors.0.party":"D","number":"66","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/66/cosponsors?format=json","sponsors.0.bioguideId":"K000367","actions.url":"https://api.congress.gov/v3/bill/118/s/66/actions?format=json","latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/66/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/66/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"66","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/66/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/66/subjects?format=json","title":"NOTAM Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59070","request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/66/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/66/summaries?format=json","cboCostEstimates.0.title":"S. 66, NOTAM Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/66?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10245","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1957","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Received in the Senate.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2025-01-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10246","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"1968","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z","latestAction_actionTime":"18:21:55"}}} +{"type":"relationship","id":"10247","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9404","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-04-17T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-144.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 282.","sponsors.0.party":"D","number":"66","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/66/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-144","actions.url":"https://api.congress.gov/v3/bill/118/s/66/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/66/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-64","textVersions.url":"https://api.congress.gov/v3/bill/118/s/66/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"66","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/66/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/66/committees?format=json","title":"NOTAM Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59070","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/64?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/66/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/66/summaries?format=json","cboCostEstimates.0.title":"S. 66, NOTAM Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/66?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10248","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9407","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-09-07T21:48:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-145.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 291.","sponsors.0.party":"D","number":"2201","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2201/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-145","actions.url":"https://api.congress.gov/v3/bill/118/s/2201/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2201/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","amendments.url":"https://api.congress.gov/v3/bill/117/s/2201/amendments?format=json","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-43","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2201/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2201","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2201/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2201/subjects?format=json","title":"American Cybersecurity Literacy Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59553","request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/43?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2201/summaries?format=json","cboCostEstimates.0.title":"S. 2201, American Cybersecurity Literacy Act","introducedDate":"2023-06-22","subjects.count":5,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2201?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10249","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9503","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3222/text?format=json","relatedBills.count":3,"updateDate":"2025-01-02T20:21:22Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":17,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"3222","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3222/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/s/3222/committees?format=json","policyArea.name":"Congress","type":"S","title":"A bill to ensure the security of office space rented by Senators, and for other purposes.","latestAction.text":"Became Public Law No: 118-36.","sponsors.0.party":"D","number":"3222","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3222/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3222/titles?format=json","laws.0.number":"118-36","summaries.url":"https://api.congress.gov/v3/bill/118/s/3222/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3222/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3222/relatedbills?format=json","latestAction.actionDate":"2024-01-26","textVersions.count":4,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2023-11-02","cosponsors.count":4,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3222?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-02T20:21:22Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10250","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9529","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2960/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2960","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2960/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2960/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Expanding the VOTE Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"2960","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2960/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2960/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2960/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2960/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2960/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"introducedDate":"2023-09-27","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2960?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10251","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9553","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1/text?format=json","relatedBills.count":26,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 123.","committees.url":"https://api.congress.gov/v3/bill/118/s/1/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Freedom to Vote Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1","cosponsors.countIncludingWithdrawnCosponsors":51,"request.format":"json","latestAction_actionDate":"2021-08-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1/relatedbills?format=json","latestAction.actionDate":"2023-07-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":19,"introducedDate":"2023-07-25","cosponsors.count":51,"request.contentType":"application/json","subjects.count":95,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10252","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9562","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2452/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2452","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S5053)","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/2452/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2452/committees?format=json","type":"S","title":"Biomanufacturing and Jobs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2452","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2452/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2452/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2452/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2452/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2452/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":3,"request.contentType":"application/json","subjects.count":13,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2452?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10253","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9563","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2458/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"2458","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2458/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2458/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Crop Insurance for Future Farmers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2458","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2458/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2458/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2458/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2458/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2458/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2458?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10254","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9631","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1609/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"1609","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/1609/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1609/committees?format=json","title":"Support Our Election Workers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"1609","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1609/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1609/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1609/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1609/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1609/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1609?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10255","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9642","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-09-28T22:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 168.","sponsors.0.party":"D","number":"1352","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1352/cosponsors?format=json","sponsors.0.bioguideId":"K000367","actions.url":"https://api.congress.gov/v3/bill/118/s/1352/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1352/relatedbills?format=json","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1352/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1352","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1352/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1352/committees?format=json","title":"504 Modernization and Small Manufacturer Enhancement Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Small Business and Entrepreneurship on July 25, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59618","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1352/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1352/summaries?format=json","cboCostEstimates.0.title":"S. 1352, 504 Modernization and Small Manufacturer Enhancement Act of 2023","introducedDate":"2023-04-27","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1352?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"10256","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9687","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/754/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"754","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/754/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/754/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Mental Health and Wellness in Schools Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"754","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/754/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/754/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/754/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/754/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/754/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/754?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10257","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9759","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Klobuchar","cboCostEstimates.0.pubDate":"2023-04-17T20:37:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 282.","sponsors.0.party":"D","number":"66","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/66/cosponsors?format=json","sponsors.0.bioguideId":"K000367","laws.0.number":"117-144","actions.url":"https://api.congress.gov/v3/bill/118/s/66/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/66/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-64","textVersions.url":"https://api.congress.gov/v3/bill/118/s/66/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"66","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/66/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/66/committees?format=json","title":"NOTAM Improvement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59070","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-13","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/64?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/66/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/66/summaries?format=json","cboCostEstimates.0.title":"S. 66, NOTAM Improvement Act of 2023","introducedDate":"2023-01-25","subjects.count":10,"sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/66?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-01-14T18:51:33Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10258","label":"SPONSORED","start":{"id":"3966","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000367_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Klobuchar, Amy","state":"Minnesota","url":"https://api.congress.gov/v3/member/K000367?format=json","bioguideId":"K000367"}},"end":{"id":"9971","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/730/text?format=json","updateDate":"2025-02-03T21:55:23Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Klobuchar","sponsors.0.isByRequest":"N","request.billNumber":"730","sponsors.0.url":"https://api.congress.gov/v3/member/K000367?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 611.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/sres/730/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/730/subjects?format=json","type":"SRES","title":"A resolution designating June 23, 2024, as \"Social Media Harms Victim Remembrance Day\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4058)","sponsors.0.party":"D","number":"730","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/730/cosponsors?format=json","sponsors.0.bioguideId":"K000367","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/730/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/730/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/730/actions?format=json","latestAction.actionDate":"2024-06-12","textVersions.count":1,"sponsors.0.fullName":"Sen. Klobuchar, Amy [D-MN]","titles.count":2,"introducedDate":"2024-06-12","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/730?format=json","sponsors.0.firstName":"Amy","updateDateIncludingText":"2025-02-03T21:55:23Z"}}} +{"type":"relationship","id":"10319","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"9566","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2455/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Rounds","sponsors.0.isByRequest":"N","request.billNumber":"2455","sponsors.0.url":"https://api.congress.gov/v3/member/R000605?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/2455/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2455/committees?format=json","type":"S","title":"Research, Development, Test and Evaluation Unmet Needs Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2455","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2455/cosponsors?format=json","sponsors.0.bioguideId":"R000605","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2455/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2455/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2455/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2455/relatedbills?format=json","sponsors.0.fullName":"Sen. Rounds, Mike [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2455?format=json","sponsors.0.firstName":"Mike","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10320","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"9632","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1608/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"1608","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1608/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1608/committees?format=json","type":"S","title":"Starr–Camargo Bridge Expansion Act","latestAction.text":"Became Public Law No: 118-80.","sponsors.0.party":"R","number":"1608","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1608/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1608/titles?format=json","laws.0.number":"118-80","summaries.url":"https://api.congress.gov/v3/bill/118/s/1608/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1608/actions?format=json","textVersions.count":4,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1608/relatedbills?format=json","latestAction.actionDate":"2024-09-13","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":5,"introducedDate":"2023-05-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1608?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:17:41Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10321","label":"SPONSORED","start":{"id":"3923","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000802_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Whitehouse, Sheldon","state":"Rhode Island","url":"https://api.congress.gov/v3/member/W000802?format=json","bioguideId":"W000802"}},"end":{"id":"10010","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/374/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"374","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S6590-6591)","subjects.url":"https://api.congress.gov/v3/bill/118/s/374/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/374/committees?format=json","policyArea.name":"Immigration","type":"S","title":"Transnational Criminal Organization Illicit Spotter Prevention and Elimination Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"374","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/374/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/374/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/374/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/374/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/374/relatedbills?format=json","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":2,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/374?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"10363","label":"SPONSORED","start":{"id":"3988","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg","startYear":"2013","name":"Fischer, Deb","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/F000463?format=json","bioguideId":"F000463"}},"end":{"id":"9574","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/951/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"951","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/951/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/951/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Office of Gun Violence Prevention Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/951/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/951/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/951/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/951/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/951/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-03-22","cosponsors.count":1,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/951?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:21Z"}}} +{"type":"relationship","id":"10369","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"9577","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/539/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sullivan","sponsors.0.isByRequest":"N","request.billNumber":"539","sponsors.0.url":"https://api.congress.gov/v3/member/S001198?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/539/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/539/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Veterans Member Business Loan Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"539","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/539/cosponsors?format=json","sponsors.0.bioguideId":"S001198","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/539/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/539/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/539/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/539/relatedbills?format=json","sponsors.0.fullName":"Sen. Sullivan, Dan [R-AK]","titles.count":3,"introducedDate":"2023-02-28","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/539?format=json","sponsors.0.firstName":"Dan","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10379","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"9580","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2189/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ernst","sponsors.0.isByRequest":"N","request.billNumber":"2189","sponsors.0.url":"https://api.congress.gov/v3/member/E000295?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/2189/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2189/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Executive Branch Emissions Transparency Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"2189","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2189/cosponsors?format=json","sponsors.0.bioguideId":"E000295","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2189/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2189/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2189/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Ernst, Joni [R-IA]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2189?format=json","sponsors.0.firstName":"Joni","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10402","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"969","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4691/text?format=json","updateDate":"2025-01-14T18:59:41Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"4691","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4691/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4691/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"No Tax Breaks for Drug Ads Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4691","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2024-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4691/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4691/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4691/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4691/actions?format=json","latestAction.actionDate":"2024-07-11","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":17,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4691?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T18:59:41Z"}}} +{"type":"relationship","id":"10403","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"979","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4680/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"4680","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4680/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4680/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Secretary General Jens Stoltenberg Congressional Gold Medal Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"4680","cosponsors.countIncludingWithdrawnCosponsors":72,"request.format":"json","latestAction_actionDate":"2024-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4680/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4680/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4680/actions?format=json","latestAction.actionDate":"2024-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4680/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2024-07-11","cosponsors.count":72,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4680?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10404","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"994","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4425/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"4425","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/4425/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4425/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"GPA Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"4425","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4425/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4425/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4425/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4425/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":19,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4425?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10405","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1094","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2611/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":2,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2611","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2611/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2611/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"Snow Survey Northeast Expansion Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"2611","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2611/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2611/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2611/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2611/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2611?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"10406","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1104","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2955/text?format=json","updateDate":"2024-11-18T21:14:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2955","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2955/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Srebrenica Genocide Remembrance Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2955","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2955/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2955/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2955/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2955/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2955?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-11-18T21:14:40Z"}}} +{"type":"relationship","id":"10407","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1135","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2677/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2677","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","committees.url":"https://api.congress.gov/v3/bill/118/s/2677/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2677/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Small Business Broadband and Emerging Information Technology Enhancement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"2677","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2677/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2677/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2677/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2677?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"10408","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1238","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10409","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1240","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1098/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1098","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/1098/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1098/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Global Health, Empowerment and Rights Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1098","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1098/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1098/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1098/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1098/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1098/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1098?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10410","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1252","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1079/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1079","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1079/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1079/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"Assistance for Rural Water Systems Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1079","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1079/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1079/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1079/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1079/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1079?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10411","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1418","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1610/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1610","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1610/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1610/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Protecting Service Members and Military Families’ Access to Reproductive Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1610","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2024-12-06","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1610/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1610/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1610/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1610/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":33,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1610?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10412","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1439","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z","latestAction_actionTime":"19:17:12"}}} +{"type":"relationship","id":"10413","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1600","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/99/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"99","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Star Print ordered on the reported resolution.","committees.url":"https://api.congress.gov/v3/bill/118/sres/99/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/99/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","latestAction.text":"Star Print ordered on the reported resolution.","sponsors.0.party":"D","number":"99","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-05-10","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/99/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/99/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/99/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/99/actions?format=json","latestAction.actionDate":"2023-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/99/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/99?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10414","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1811","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1079/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1079","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1079/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1079/committees?format=json","policyArea.name":"Water Resources Development","type":"S","title":"Assistance for Rural Water Systems Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1079","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1079/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1079/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1079/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1079/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1079?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10415","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1830","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/723/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"723","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/723/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/723/subjects?format=json","policyArea.name":"Health","type":"S","title":"Access to Prescription Digital Therapeutics Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"723","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/723/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/723/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/723/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/723/actions?format=json","latestAction.actionDate":"2023-03-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/723/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/723?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-07-24T15:23:29Z"}}} +{"type":"relationship","id":"10416","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1875","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/356/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"356","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/356/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/356/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Syria Detainee and Displaced Persons Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"356","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/356/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/356/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/356/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/356/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/356/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":15,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/356?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10417","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1880","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/94/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"94","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/94/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/94/subjects?format=json","policyArea.name":"Energy","type":"S","title":"Investing in State Energy Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"94","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-01-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/94/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/94/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/94/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/94/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/94?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"10418","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"1891","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/77/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"77","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/77/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/77/subjects?format=json","policyArea.name":"Commerce","title":"STEP Improvement Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"77","request.format":"json","latestAction_actionDate":"2025-01-13","summaries.count":1,"sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/77/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/77/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/77/actions?format=json","latestAction.actionDate":"2023-01-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-25","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/77?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"10419","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9533","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2955/text?format=json","updateDate":"2024-11-18T21:14:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2955","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2955/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2955/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Srebrenica Genocide Remembrance Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2955","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2955/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2955/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2955/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2955/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":2,"introducedDate":"2023-09-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2955?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-11-18T21:14:40Z"}}} +{"type":"relationship","id":"10420","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9554","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2464/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"2464","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2464/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2464/committees?format=json","policyArea.name":"Health","type":"S","title":"Access to Breast Cancer Diagnosis Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2464","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2464/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2464/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2464/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2464/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2464/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2464?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10421","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9589","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1527/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1527","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1527/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Access to Contraception for Servicemembers and Dependents Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1527","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1527/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1527/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1527/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1527/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":30,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1527?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10422","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9604","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1914/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1914","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1914/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1914/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Air Traffic Control Workforce Transparency Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1914","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1914/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1914/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1914/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1914/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1914/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1914?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10423","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9630","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1610/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1610","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1610/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1610/committees?format=json","type":"S","title":"Protecting Service Members and Military Families’ Access to Reproductive Care Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1610","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1610/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1610/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1610/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1610/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1610/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1610?format=json","updateDateIncludingText":"2025-01-14T17:07:58Z","sponsors.0.firstName":"Jeanne"}}} +{"type":"relationship","id":"10424","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9634","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1366/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1366","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/1366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1366/subjects?format=json","type":"S","title":"Forest Incentives Program Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"1366","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1366/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1366/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1366/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1366?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10425","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9644","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1360/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1360","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1360/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1360/committees?format=json","type":"S","title":"PFAS Exposure Assessment and Documentation Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1360","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1360/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1360/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1360/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1360?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10426","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9747","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/77/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"77","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","subjects.url":"https://api.congress.gov/v3/bill/118/s/77/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/77/committees?format=json","policyArea.name":"Commerce","title":"STEP Improvement Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"77","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/hjres/77/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/77/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/77/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/77/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/77/relatedbills?format=json","latestAction.actionDate":"2023-01-25","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/77?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 48 (Thursday, March 17, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.J. Res. 77.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle V of the U.S. Constitution.\n[Page H3828]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"10427","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9829","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1527/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1527","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1527/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1527/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Access to Contraception for Servicemembers and Dependents Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1527","cosponsors.countIncludingWithdrawnCosponsors":30,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1527/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1527/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1527/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1527/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-10","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"cosponsors.count":30,"introducedDate":"2023-05-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1527?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10428","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9870","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1098/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"1098","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/1098/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1098/committees?format=json","type":"S","title":"Global Health, Empowerment and Rights Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1098","cosponsors.countIncludingWithdrawnCosponsors":50,"request.format":"json","latestAction_actionDate":"2022-05-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1098/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1098/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1098/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1098/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1098/relatedbills?format=json","latestAction.actionDate":"2023-03-30","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":50,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1098?format=json","sponsors.0.district":27,"updateDateIncludingText":"2025-01-14T19:00:46Z","sponsors.0.firstName":"Jeanne"}}} +{"type":"relationship","id":"10429","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"9955","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/877/text?format=json","relatedBills.count":1,"updateDate":"2024-12-05T20:17:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"877","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S9781-9782)","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/117/sres/877/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/877/subjects?format=json","type":"SRES","title":"A resolution designating the week of October 6, 2024, through October 12, 2024, as \"National Community Policing Week\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6467; text: CR S6457)","sponsors.0.party":"D","number":"877","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/877/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/877/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/877/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/877/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/877/relatedbills?format=json","sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/877?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2024-12-05T20:17:49Z"}}} +{"type":"relationship","id":"10430","label":"SPONSORED","start":{"id":"3936","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001181_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Shaheen, Jeanne","state":"New Hampshire","url":"https://api.congress.gov/v3/member/S001181?format=json","bioguideId":"S001181"}},"end":{"id":"10025","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/99/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Shaheen","sponsors.0.isByRequest":"N","request.billNumber":"99","sponsors.0.url":"https://api.congress.gov/v3/member/S001181?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/99/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/99/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the goals of International Women's Day.","latestAction.text":"Star Print ordered on the reported resolution.","sponsors.0.party":"D","number":"99","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-03-24","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/99/cosponsors?format=json","sponsors.0.bioguideId":"S001181","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/99/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/99/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/99/actions?format=json","latestAction.actionDate":"2023-05-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/99/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Shaheen, Jeanne [D-NH]","titles.count":2,"introducedDate":"2023-03-08","cosponsors.count":6,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/99?format=json","sponsors.0.firstName":"Jeanne","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10504","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"982","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4437/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"4437","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4437/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4437/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Coordinating Care for Senior Veterans and Wounded Warriors Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-06-03","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4437/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4437/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4437/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4437?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"10505","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"1055","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3646/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:24Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"3646","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3646/subjects?format=json","policyArea.name":"Housing and Community Development","type":"S","title":"A bill to amend the Housing Act of 1949 to extend the term of rural housing site loans and clarify the permissible uses of such loans.","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"3646","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-01-29","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3646/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3646/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3646/actions?format=json","latestAction.actionDate":"2024-01-29","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3646/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","latestAction.actionTime":"14:19:30","titles.count":2,"introducedDate":"2024-01-23","cosponsors.count":2,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3646?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2024-07-24T15:19:24Z","latestAction_actionTime":"14:19:30"}}} +{"type":"relationship","id":"10506","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"1082","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3205/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"3205","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3205/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3205/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Federal Artificial Intelligence Risk Management Act of 2023","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"3205","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3205/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3205/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3205/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3205/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3205/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3205?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10507","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"1108","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2951/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"2951","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2951/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2951/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Butcher Block Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"2951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2951/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2951/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2951/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2951/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2951?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10508","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"1543","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/939/text?format=json","updateDate":"2025-01-29T16:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"939","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7335)","committees.url":"https://api.congress.gov/v3/bill/118/sres/939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/939/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution commending and congratulating the Hutchinson Community College Blue Dragons football team for winning the 2024 National Junior College Athletic Association Football National Championship.","latestAction.text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7335)","sponsors.0.party":"R","number":"939","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/939/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/939/actions?format=json","latestAction.actionDate":"2024-12-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":2,"introducedDate":"2024-12-20","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/939?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-29T16:16:21Z"}}} +{"type":"relationship","id":"10509","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9394","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4437/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"4437","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/4437/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4437/committees?format=json","type":"S","title":"Coordinating Care for Senior Veterans and Wounded Warriors Act","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"4437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4437/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4437/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-03","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4437/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"introducedDate":"2024-06-03","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4437?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"10510","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9437","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3979/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Moran","sponsors.0.isByRequest":"N","request.billNumber":"3979","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (Sponsor introductory remarks on measure: CR S1912-1913)","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/3979/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3979/committees?format=json","type":"S","title":"A bill to amend title 38, United States Code, to make permanent and codify the pilot program for use of contract physicians for disability examinations, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"R","number":"3979","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3979/cosponsors?format=json","sponsors.0.bioguideId":"M000934","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3979/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3979/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3979/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3979/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":2,"introducedDate":"2024-03-19","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3979?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"10511","label":"SPONSORED","start":{"id":"3956","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m000934_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Moran, Jerry","state":"Kansas","endYear":"2011","url":"https://api.congress.gov/v3/member/M000934?format=json","bioguideId":"M000934"}},"end":{"id":"9468","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Moran","cboCostEstimates.0.pubDate":"2022-03-22T15:07:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3541","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3541/cosponsors?format=json","sponsors.0.bioguideId":"M000934","actions.url":"https://api.congress.gov/v3/bill/118/s/3541/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3541/relatedbills?format=json","sponsors.0.fullName":"Sen. Moran, Jerry [R-KS]","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","latestAction_actionTime":"10:03:20","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3541/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3541","sponsors.0.url":"https://api.congress.gov/v3/member/M000934?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3541/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3541/subjects?format=json","title":"Fair Audits and Inspections for Regulators’ Exams Act","cboCostEstimates.0.description":"As passed by the Senate on February 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57910","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-02-18","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3541/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3541/summaries?format=json","cboCostEstimates.0.title":"S. 3541, Health Care for Burn Pit Veterans Act","latestAction.actionTime":"10:03:20","introducedDate":"2023-12-14","subjects.count":1,"sponsors.0.state":"KS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3541?format=json","sponsors.0.firstName":"Jerry","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10550","label":"SPONSORED","start":{"id":"3965","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000383_200.jpg","startYear":"2013","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"King, Angus S., Jr.","state":"Maine","url":"https://api.congress.gov/v3/member/K000383?format=json","bioguideId":"K000383"}},"end":{"id":"9599","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1918/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murkowski","sponsors.0.isByRequest":"N","request.billNumber":"1918","sponsors.0.url":"https://api.congress.gov/v3/member/M001153?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1918/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1918/committees?format=json","type":"S","title":"Don Young Veterans Advancing Conservation Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1918","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1918/cosponsors?format=json","sponsors.0.bioguideId":"M001153","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1918/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1918/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1918/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1918/relatedbills?format=json","sponsors.0.fullName":"Sen. Murkowski, Lisa [R-AK]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"AK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1918?format=json","sponsors.0.firstName":"Lisa","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10580","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"988","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4433/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"4433","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4433/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4433/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"BOLSTER Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4433","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4433/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4433/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4433/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4433?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10581","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"1555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/928/text?format=json","updateDate":"2025-01-15T21:07:46Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"928","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7068-7069; text: S7107)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/928/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SRES","title":"A resolution honoring the life of Nebraska community leader John Edmund Gottschalk.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7068-7069; text: S7107)","sponsors.0.party":"R","number":"928","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/928/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/928/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/928/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/928?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-15T21:07:46Z"}}} +{"type":"relationship","id":"10582","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"1561","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/694/text?format=json","relatedBills.count":3,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"694","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/sres/694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/694/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution expressing support for the designation of May 2024 as \"Renewable Fuels Month\" to recognize the important role that renewable fuels play in reducing carbon impacts, lowering fuel prices for consumers, supporting rural communities, and lessening reliance on foreign adversaries.","latestAction.text":"Referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"694","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-05-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/694/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/694/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/694/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/694/actions?format=json","latestAction.actionDate":"2024-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/694/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":2,"introducedDate":"2024-05-16","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/694?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10583","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"9331","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5237/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5237","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5237/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5237/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"No China in Index Funds Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"5237","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5237/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5237/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5237/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5237/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5237/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5237?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10584","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"9332","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5234/text?format=json","relatedBills.count":1,"updateDate":"2024-11-05T15:36:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5234","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S7103-7104)","subjects.url":"https://api.congress.gov/v3/bill/118/s/5234/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5234/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Protecting Endowments from Our Adversaries Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5234","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5234/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5234/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5234/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5234/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5234/relatedbills?format=json","latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5234?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-11-05T15:36:57Z"}}} +{"type":"relationship","id":"10585","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"9333","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5233/text?format=json","relatedBills.count":1,"updateDate":"2024-10-22T19:53:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"5233","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S7103)","committees.url":"https://api.congress.gov/v3/bill/118/s/5233/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5233/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"No Capital Gains Allowance for American Adversaries Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5233","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5233/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5233/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/5233/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5233/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5233/relatedbills?format=json","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5233?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2024-10-22T19:53:51Z"}}} +{"type":"relationship","id":"10586","label":"SPONSORED","start":{"id":"3944","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/r000618_200.jpg","startYear":"2023","name":"Ricketts, Pete","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Nebraska","url":"https://api.congress.gov/v3/member/R000618?format=json","bioguideId":"R000618"}},"end":{"id":"9409","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4433/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ricketts","sponsors.0.isByRequest":"N","request.billNumber":"4433","sponsors.0.url":"https://api.congress.gov/v3/member/R000618?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/4433/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4433/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"BOLSTER Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4433","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4433/cosponsors?format=json","sponsors.0.bioguideId":"R000618","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4433/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4433/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4433/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Ricketts, Pete [R-NE]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4433?format=json","sponsors.0.firstName":"Pete","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10587","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"989","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4429/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"4429","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4429/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4429/subjects?format=json","policyArea.name":"Health","type":"S","title":"SUPPORT Rx Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4429","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4429/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4429/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4429/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4429?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10588","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4194/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"4194","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/4194/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4194/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Protecting Communities from Plastics Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"4194","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4194/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4194/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4194/actions?format=json","latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4194/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":6,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4194?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"10589","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1073","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3451/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:19:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"3451","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3451/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3451/subjects?format=json","policyArea.name":"Health","type":"S","title":"Rehabilitation and Recovery During Incarceration Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3451","request.format":"json","latestAction_actionDate":"2023-12-07","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3451/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3451/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3451/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-12-07","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3451?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:19:32Z"}}} +{"type":"relationship","id":"10590","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1154","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2448/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2448","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2448/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2448/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Eliminating Debtor’s Prison for Kids Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2448","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2448/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2448/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2448/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2448?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"10591","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1156","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2446","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2446/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Miranda Rights for Kids Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2446","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2446/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2446/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2446/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2446?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:56Z"}}} +{"type":"relationship","id":"10592","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1157","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2445/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2445","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2445/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Community-Based Gang Intervention Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2445","request.format":"json","latestAction_actionDate":"2023-07-20","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2445/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2445/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2445/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2445?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:57Z"}}} +{"type":"relationship","id":"10593","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1209","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"1658","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S1707-1708)","committees.url":"https://api.congress.gov/v3/bill/118/s/1658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1658/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Law Enforcement Officers Parity Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs. (Sponsor introductory remarks on measure: CR S1707-1708)","sponsors.0.party":"D","number":"1658","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1658/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1658/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1658/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1658/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1658?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10594","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1305","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/183/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"183","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/183/subjects?format=json","policyArea.name":"Education","type":"S","title":"Students Helping Young Students Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"183","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/183/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/183/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/183/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/183/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/183/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/183?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10595","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1306","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/182/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:26Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"182","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/182/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/182/subjects?format=json","policyArea.name":"Education","type":"S","title":"Transition-to-Success Mentoring Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"182","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/182/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/182/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/182/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/182/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/182/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/182?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-16T06:06:26Z"}}} +{"type":"relationship","id":"10596","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1309","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/179/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"179","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/179/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/179/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"COMPOST Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"179","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/179/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/179/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/179/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/179/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/179/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-01-31","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/179?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10597","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1313","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/177/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"177","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/177/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/177/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Zero Food Waste Act","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"177","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/177/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/177/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/177/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/177/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/177/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/177?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"10598","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1387","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/39/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"39","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/39/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/39/subjects?format=json","policyArea.name":"Immigration","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that individuals who have been wrongfully or unjustly deported from the United States who established significant ties to the United States through years of life in the United States deserve a chance to come home to reunite with loved ones through a fair and centralized process within the Department of Homeland Security.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","sponsors.0.party":"D","number":"39","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2024-07-31","cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/39/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/39/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/39/actions?format=json","latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/39/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/39?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"10599","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1512","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/364/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"364","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Subcommittee on Health.","subjects.url":"https://api.congress.gov/v3/bill/118/s/364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/364/committees?format=json","policyArea.name":"Education","title":"GAAME Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"364","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/364/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/364/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/364/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/364/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/364/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/364?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10600","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1556","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/927/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"927","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sres/927/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/927/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution commemorating and supporting the goals of World AIDS Day.","latestAction.text":"Referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"927","request.format":"json","latestAction_actionDate":"2024-12-16","sponsors.0.bioguideId":"B001288","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/927/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/927/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/927/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-16","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-12-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/927?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10601","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1566","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/689/text?format=json","relatedBills.count":1,"updateDate":"2024-05-24T10:56:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"689","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3718-3719)","committees.url":"https://api.congress.gov/v3/bill/118/s/689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/689/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"A bill to amend the Controlled Substances Act to define currently accepted medical use with severe restrictions, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-05-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/689/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/689/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/689/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/689/actions?format=json","latestAction.actionDate":"2023-03-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/689/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2023-03-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/689?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-05-24T10:56:42Z"}}} +{"type":"relationship","id":"10602","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1832","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/689/text?format=json","relatedBills.count":1,"updateDate":"2024-05-24T10:56:42Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"689","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/689/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/689/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"A bill to amend the Controlled Substances Act to define currently accepted medical use with severe restrictions, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"689","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/689/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/689/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/689/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/689/actions?format=json","latestAction.actionDate":"2023-03-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/689/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2023-03-07","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/689?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-05-24T10:56:42Z"}}} +{"type":"relationship","id":"10603","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"1873","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/364/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"364","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/364/committees?format=json","policyArea.name":"Education","type":"S","title":"GAAME Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"364","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/364/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/364/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/364/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/364/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/364/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/364?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10604","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9335","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5084/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"5084","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/5084/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5084/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Safe School Meals Act of 2024","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"5084","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5084/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5084/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5084/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5084/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5084?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10605","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9411","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4429/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"4429","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4429/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4429/committees?format=json","policyArea.name":"Health","type":"S","title":"SUPPORT Rx Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4429","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4429/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4429/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4429/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4429/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4429/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2024-05-23","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4429?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10606","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9416","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2021-04-05T15:08:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-122.","policyArea.name":"Agriculture and Food","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"658","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/658/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-122","actions.url":"https://api.congress.gov/v3/bill/118/s/658/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/658/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-24","cboCostEstimates.1.url":"https://www.cbo.gov/publication/57628","textVersions.url":"https://api.congress.gov/v3/bill/118/s/658/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","cboCostEstimates.1.pubDate":"2021-11-19T20:30:00Z","actions.count":2,"request.billNumber":"658","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/658/subjects?format=json","title":"EQIP Improvement Act of 2023","cboCostEstimates.1.description":"As ordered reported by the House Committee on Homeland Security on October 26, 2021\n","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57108","request.format":"json","latestAction_actionDate":"2022-05-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/24?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/658/summaries?format=json","cboCostEstimates.0.title":"S. 658, National Cybersecurity Preparedness Consortium Act of 2021","introducedDate":"2023-03-06","subjects.count":7,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/658?format=json","cboCostEstimates.1.title":"S. 658, National Cybersecurity Preparedness Consortium Act of 2021","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10607","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9418","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-15T19:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-123.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"270","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/270/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-123","actions.url":"https://api.congress.gov/v3/bill/118/s/270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/270/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/117/s/270/amendments?format=json","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-87","textVersions.url":"https://api.congress.gov/v3/bill/118/s/270/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"270","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/270/subjects?format=json","title":"Protecting America’s Meatpacking Workers Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57932","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/87?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/270/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/270/summaries?format=json","cboCostEstimates.0.title":"S. 270, Brown v. Board of Education National Historic Site Expansion Act","introducedDate":"2023-02-02","subjects.count":62,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/270?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10608","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9463","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-04T21:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 284.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"904","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/904/cosponsors?format=json","sponsors.0.bioguideId":"B001288","actions.url":"https://api.congress.gov/v3/bill/118/s/904/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/904/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":17,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-83","textVersions.url":"https://api.congress.gov/v3/bill/118/s/904/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"904","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/904/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/904/subjects?format=json","title":"Sickle Cell Disease Comprehensive Care Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on February 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":17,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/57903","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/83?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/904/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/904/summaries?format=json","cboCostEstimates.0.title":"S. 904, Modernizing Access to Our Public Land Act","introducedDate":"2023-03-21","subjects.count":14,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/904?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"10609","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9476","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3442/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"3442","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/3442/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3442/committees?format=json","type":"S","title":"Timely Review of SNAP Online Retailer Applications Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3442","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-01-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3442/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3442/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3442/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3442/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3442/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-12-07","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3442?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10610","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9511","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-07-15T19:55:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 166.","policyArea.name":"Education","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2428","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2428/cosponsors?format=json","sponsors.0.bioguideId":"B001288","actions.url":"https://api.congress.gov/v3/bill/118/s/2428/actions?format=json","latestAction.actionDate":"2023-07-20","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2428/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2428/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2428","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2428/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2428/subjects?format=json","title":"PATHS to Tutor Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on the Judiciary on November 16, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58308","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-11-16","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2428/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2428/summaries?format=json","cboCostEstimates.0.title":"S. 2428, False Claims Amendments Act of 2021","introducedDate":"2023-07-20","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2428?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10611","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9519","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2971/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2971","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/2971/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2971/subjects?format=json","type":"S","title":"Unhoused VOTE Act","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"D","number":"2971","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2971/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2971/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2971/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2971/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2971/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-09-28","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2971?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"10612","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9555","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2465/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2465","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/2465/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2465/subjects?format=json","title":"DOULA for VA Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"2465","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2465/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2465/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2465/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2465/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2465/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":4,"introducedDate":"2023-07-25","cosponsors.count":5,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2465?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"10613","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9572","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2445/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2445","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/s/2445/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2445/subjects?format=json","type":"S","title":"Community-Based Gang Intervention Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2445","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2445/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2445/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2445?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:57Z"}}} +{"type":"relationship","id":"10614","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9573","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2446","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2446/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Protecting Miranda Rights for Kids Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2446","cosponsors.countIncludingWithdrawnCosponsors":25,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2446/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2446/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2446/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":25,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2446?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2024-07-24T15:20:56Z"}}} +{"type":"relationship","id":"10615","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9582","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2187/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"2187","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2187/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2187/subjects?format=json","policyArea.name":"Education","type":"S","title":"Endowment Transparency Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2187","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2187/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2187/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2187/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2187/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2187/relatedbills?format=json","latestAction.actionDate":"2023-06-22","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2187?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10616","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9600","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1916/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"1916","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1916/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1916/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Combating International Islamophobia Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"1916","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1916/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1916/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1916/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1916/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1916/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1916?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10617","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9633","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1606/text?format=json","relatedBills.count":27,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"1606","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/1606/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1606/subjects?format=json","policyArea.name":"Health","type":"S","title":"Black Maternal Health Momnibus Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1606","cosponsors.countIncludingWithdrawnCosponsors":32,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1606/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1606/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1606/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1606/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1606/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":3,"cosponsors.count":32,"introducedDate":"2023-05-15","subjects.count":51,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1606?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10618","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9808","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/39/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Booker","sponsors.0.isByRequest":"N","request.billNumber":"39","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S2496)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/39/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/39/subjects?format=json","policyArea.name":"Immigration","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that individuals who have been wrongfully or unjustly deported from the United States who established significant ties to the United States through years of life in the United States deserve a chance to come home to reunite with loved ones through a fair and centralized process within the Department of Homeland Security.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5690-5691)","sponsors.0.party":"D","number":"39","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/39/cosponsors?format=json","sponsors.0.bioguideId":"B001288","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/39/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/39/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/39/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/39/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","titles.count":2,"introducedDate":"2024-07-31","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/39?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"10619","label":"SPONSORED","start":{"id":"4010","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001288_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Booker, Cory A.","state":"New Jersey","url":"https://api.congress.gov/v3/member/B001288?format=json","bioguideId":"B001288"}},"end":{"id":"9924","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Booker","cboCostEstimates.0.pubDate":"2022-03-15T19:31:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Disability Assistance and Memorial Affairs.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"270","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/270/cosponsors?format=json","sponsors.0.bioguideId":"B001288","laws.0.number":"117-123","actions.url":"https://api.congress.gov/v3/bill/118/s/270/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/270/relatedbills?format=json","sponsors.0.fullName":"Sen. Booker, Cory A. [D-NJ]","amendments.url":"https://api.congress.gov/v3/bill/117/s/270/amendments?format=json","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-87","textVersions.url":"https://api.congress.gov/v3/bill/118/s/270/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"270","sponsors.0.url":"https://api.congress.gov/v3/member/B001288?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/270/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/270/subjects?format=json","title":"Protecting America’s Meatpacking Workers Act of 2023","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on March 2, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57932","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-04-12","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/87?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/270/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/270/summaries?format=json","cboCostEstimates.0.title":"S. 270, Brown v. Board of Education National Historic Site Expansion Act","introducedDate":"2023-02-02","subjects.count":62,"sponsors.0.state":"NJ","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/270?format=json","sponsors.0.firstName":"Cory","updateDateIncludingText":"2025-01-14T16:41:20Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10620","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4430/text?format=json","updateDate":"2024-11-09T01:57:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"4430","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/4430/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4430/subjects?format=json","policyArea.name":"Health","type":"S","title":"Fatal Overdose Reduction Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"4430","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-23","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4430/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4430/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4430/actions?format=json","latestAction.actionDate":"2024-05-23","textVersions.count":1,"sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4430?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2024-11-09T01:57:48Z"}}} +{"type":"relationship","id":"10621","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1000","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cantwell","cboCostEstimates.0.pubDate":"2023-10-25T18:37:01Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 118-48.","policyArea.name":"Native Americans","type":"S","latestAction.text":"Became Public Law No: 118-48.","sponsors.0.party":"D","number":"382","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/382/cosponsors?format=json","sponsors.0.bioguideId":"C000127","laws.0.number":"118-48","actions.url":"https://api.congress.gov/v3/bill/118/s/382/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/382/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-130","textVersions.url":"https://api.congress.gov/v3/bill/118/s/382/text?format=json","updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":26,"request.billNumber":"382","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/382/subjects?format=json","title":"Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on July 19, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59705","request.format":"json","latestAction_actionDate":"2024-04-19","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/130?format=json","summaries.count":5,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/382/summaries?format=json","cboCostEstimates.0.title":"S. 382, Puyallup Tribe of Indians Land Into Trust Confirmation Act of 2023","introducedDate":"2023-02-09","subjects.count":5,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/382?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:14:49Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10622","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1046","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3683/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"3683","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3683/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3683/subjects?format=json","policyArea.name":"Emergency Management","type":"S","title":"MALDEN Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"3683","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3683/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3683/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3683/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3683/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3683?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"10623","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1223","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1385/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"1385","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/1385/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1385/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Recreation for All Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1385","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1385/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1385/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1385/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1385?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10624","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1365","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2024-09-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10625","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1431","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1385/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"1385","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Referred to the House Committee on Agriculture.","committees.url":"https://api.congress.gov/v3/bill/118/s/1385/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1385/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","title":"Recreation for All Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"1385","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1385/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1385/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1385/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1385/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1385/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1385?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10626","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1976","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Ordered to be Reported Adversely by the Yeas and Nays: 25 - 18.","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10627","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"1993","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10628","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"9429","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4207/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"4207","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/4207/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4207/subjects?format=json","type":"S","title":"Spectrum and National Security Act of 2024","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4207","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4207/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4207/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4207/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4207/actions?format=json","latestAction.actionDate":"2024-04-30","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4207/relatedbills?format=json","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":5,"introducedDate":"2024-04-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4207?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10629","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"9726","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S201)","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Benefit Manager Transparency Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/127/relatedbills?format=json","latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/127?format=json","updateDateIncludingText":"2025-01-14T18:51:33Z","sponsors.0.firstName":"Maria"}}} +{"type":"relationship","id":"10631","label":"SPONSORED","start":{"id":"4006","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c000127_200.jpg","startYear":"1993","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Cantwell, Maria","state":"Washington","endYear":"1995","url":"https://api.congress.gov/v3/member/C000127?format=json","bioguideId":"C000127"}},"end":{"id":"10033","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/127/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Cantwell","sponsors.0.isByRequest":"N","request.billNumber":"127","sponsors.0.url":"https://api.congress.gov/v3/member/C000127?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","subjects.url":"https://api.congress.gov/v3/bill/118/s/127/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/127/committees?format=json","policyArea.name":"Health","title":"Pharmacy Benefit Manager Transparency Act of 2023","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 283.","sponsors.0.party":"D","number":"127","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/127/cosponsors?format=json","sponsors.0.bioguideId":"C000127","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/127/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/127/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/127/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/127/relatedbills?format=json","latestAction.actionDate":"2023-12-13","sponsors.0.fullName":"Sen. Cantwell, Maria [D-WA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":14,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/127?format=json","sponsors.0.firstName":"Maria","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"10632","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4427","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4427/committees?format=json","policyArea.name":"Commerce","type":"S","title":"DOE and SBA Research Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4427","request.format":"json","latestAction_actionDate":"2024-05-23","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4427/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4427/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4427/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-23","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4427?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10633","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1039","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3932/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3932","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3932/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3932/subjects?format=json","policyArea.name":"Health","type":"S","title":"Patient's Choice Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3932","request.format":"json","latestAction_actionDate":"2024-03-12","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3932/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3932/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3932/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-03-12","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3932?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10634","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1132","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2694/text?format=json","updateDate":"2024-07-24T15:20:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"2694","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2694/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2694/subjects?format=json","policyArea.name":"Law","type":"S","title":"Foundation of the Federal Bar Association Charter Amendments Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"2694","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2694/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2694/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2694/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2694?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:20:40Z"}}} +{"type":"relationship","id":"10635","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1162","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2230/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"2230","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2230/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2230/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Protecting Investors’ Personally Identifiable Information Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2230","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2230/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2230/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2230/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2230/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2230/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":11,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2230?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10636","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1219","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1644/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1644","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1644/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1644/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Veterans’ True Choice Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"1644","request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1644/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1644/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1644/actions?format=json","latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1644/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-05-17","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1644?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"10637","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1396","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/32/text?format=json","relatedBills.count":6,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":27,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"32","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/32/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/32/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)\".","latestAction.text":"Failed of passage in Senate over veto by Yea-Nay Vote. 54 - 45. Record Vote Number: 5.","sponsors.0.party":"R","number":"32","cosponsors.countIncludingWithdrawnCosponsors":45,"request.format":"json","latestAction_actionDate":"2024-03-22","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/32/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/32/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/32/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/32/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/32/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-06-13","cosponsors.count":45,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/32?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:24:10Z"}}} +{"type":"relationship","id":"10638","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1910","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 17.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z"}}} +{"type":"relationship","id":"10639","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1929","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/32/text?format=json","relatedBills.count":6,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":27,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"32","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/32/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/32/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)\".","latestAction.text":"Failed of passage in Senate over veto by Yea-Nay Vote. 54 - 45. Record Vote Number: 5.","sponsors.0.party":"R","number":"32","cosponsors.countIncludingWithdrawnCosponsors":45,"request.format":"json","latestAction_actionDate":"2025-03-10","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/32/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/32/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/32/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/32/actions?format=json","textVersions.count":4,"latestAction.actionDate":"2024-01-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/32/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-06-13","cosponsors.count":45,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/32?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:24:10Z"}}} +{"type":"relationship","id":"10640","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"1939","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2025-02-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z"}}} +{"type":"relationship","id":"10641","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9395","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4353/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4353","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 426.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4353/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4353/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Quality Loss Adjustment Improvement for Farmers Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"4353","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-06-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4353/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4353/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4353/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4353/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4353/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-16","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4353?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10642","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9413","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"4427","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/4427/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4427/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"DOE and SBA Research Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"4427","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2022-06-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4427/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4427/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4427/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-05-23","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4427?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10643","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9464","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3708/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3708","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3708/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3708/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to reprogram Federal funds appropriated for UNRWA to construct the southwest border wall and to prohibit future funding for UNRWA.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3708","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3708/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3708/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3708/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3708/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3708/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":2,"introducedDate":"2024-01-31","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3708?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10644","label":"SPONSORED","start":{"id":"3999","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:15Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001096_200.jpg","startYear":"2013","name":"Cramer, Kevin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"North Dakota","endYear":"2019","url":"https://api.congress.gov/v3/member/C001096?format=json","bioguideId":"C001096"}},"end":{"id":"9619","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1625/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Feinstein","sponsors.0.isByRequest":"N","request.billNumber":"1625","sponsors.0.url":"https://api.congress.gov/v3/member/F000062?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Taxation","subjects.url":"https://api.congress.gov/v3/bill/118/s/1625/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1625/committees?format=json","title":"HITS Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S1680-1681)","sponsors.0.party":"D","number":"1625","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1625/cosponsors?format=json","sponsors.0.bioguideId":"F000062","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1625/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1625/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1625/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1625/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Feinstein, Dianne [D-CA]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1625?format=json","sponsors.0.firstName":"Dianne","updateDateIncludingText":"2024-07-24T15:22:09Z"}}} +{"type":"relationship","id":"10645","label":"SPONSORED","start":{"id":"3969","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:21Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000570_200.jpg","startYear":"2009","name":"Lujan, Ben Ray","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","endYear":"2021","url":"https://api.congress.gov/v3/member/L000570?format=json","bioguideId":"L000570"}},"end":{"id":"9620","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kaine","cboCostEstimates.0.pubDate":"2024-09-13T15:44:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Health","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 224.","sponsors.0.party":"D","number":"1624","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1624/cosponsors?format=json","sponsors.0.bioguideId":"K000384","actions.url":"https://api.congress.gov/v3/bill/118/s/1624/actions?format=json","latestAction.actionDate":"2023-10-04","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1624/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Kaine, Tim [D-VA]","titles.count":4,"cosponsors.count":15,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1624/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1624","sponsors.0.url":"https://api.congress.gov/v3/member/K000384?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1624/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1624/committees?format=json","title":"Gabriella Miller Kids First Research Act 2.0","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on October 4, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":15,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60715","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-05-13","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1624/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1624/summaries?format=json","cboCostEstimates.0.title":"S. 1624, Gabriella Miller Kids First Research Act 2.0","introducedDate":"2023-05-16","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1624?format=json","sponsors.0.firstName":"Timothy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10646","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9465","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3707/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"3707","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/3707/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3707/committees?format=json","type":"S","title":"Peace and Tolerance in Palestinian Education Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3707","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3707/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3707/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3707/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3707/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3707/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3707?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"10647","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9486","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Kennedy","cboCostEstimates.0.pubDate":"2022-11-16T20:24:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 228.","policyArea.name":"Finance and Financial Sector","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"2068","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2068/cosponsors?format=json","sponsors.0.bioguideId":"K000393","actions.url":"https://api.congress.gov/v3/bill/118/s/2068/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2068/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2068/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2068","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2068/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2068/subjects?format=json","title":"Main Street Growth Act","cboCostEstimates.0.description":"As reported on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58782","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2068/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2068/summaries?format=json","cboCostEstimates.0.title":"S. 2068, Minority Business Development Act of 2021","introducedDate":"2023-06-21","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2068?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10648","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9612","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1901/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1901","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Indian Affairs.","policyArea.name":"Finance and Financial Sector","committees.url":"https://api.congress.gov/v3/bill/118/s/1901/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1901/subjects?format=json","title":"Sponsor Promote and Compensation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1901","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1901/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1901/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1901/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1901/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1901?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10649","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9613","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1900/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1900","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/1900/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1900/committees?format=json","title":"Tracking Bad Actors Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1900","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1900/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1900/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1900/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1900/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1900?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10650","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9637","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1362/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1362","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/1362/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1362/committees?format=json","type":"S","title":"Transparency in CFPB Cost-Benefit Analysis Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1362","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1362/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1362/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1362/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1362/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1362/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1362?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"10651","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9657","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1063/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1063","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1063/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1063/subjects?format=json","policyArea.name":"Health","type":"S","title":"Jobs and Opportunities for Medicaid Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1063","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1063/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1063/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1063/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1063/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1063/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":12,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1063?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:23:01Z"}}} +{"type":"relationship","id":"10652","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9659","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1062/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"1062","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1062/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1062/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Jobs and Opportunities for SNAP Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"1062","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1062/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1062/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1062/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1062/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1062/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1062?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10653","label":"SPONSORED","start":{"id":"3972","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:20Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/k000393_200.jpg","startYear":"2017","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Kennedy, John","state":"Louisiana","url":"https://api.congress.gov/v3/member/K000393?format=json","bioguideId":"K000393"}},"end":{"id":"9809","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/20/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Kennedy","sponsors.0.isByRequest":"N","request.billNumber":"20","sponsors.0.url":"https://api.congress.gov/v3/member/K000393?format=json","latestAction_text":"Held at the desk.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/20/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/20/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Justice and the Bureau of Alcohol, Tobacco, Firearms and Explosives relating to \"Factoring Criteria for Firearms With Attached 'Stabilizing Braces'\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"20","cosponsors.countIncludingWithdrawnCosponsors":46,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/20/cosponsors?format=json","sponsors.0.bioguideId":"K000393","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/20/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/20/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/20/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/20/relatedbills?format=json","sponsors.0.fullName":"Sen. Kennedy, John [R-LA]","latestAction.actionTime":"12:06:52","titles.count":2,"introducedDate":"2023-03-15","cosponsors.count":46,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"LA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/20?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:48Z","latestAction_actionTime":"12:06:52"}}} +{"type":"relationship","id":"10654","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"992","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4361/text?format=json","relatedBills.count":1,"updateDate":"2024-09-04T19:53:17Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"4361","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 43 - 50. Record Vote Number: 182. (CR S3878)","subjects.url":"https://api.congress.gov/v3/bill/118/s/4361/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Border Act of 2024","latestAction.text":"Cloture on the motion to proceed to the measure not invoked in Senate by Yea-Nay Vote. 43 - 50. Record Vote Number: 182. (CR S3878)","sponsors.0.party":"D","number":"4361","request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-05-23","summaries.count":1,"amendments.count":4,"sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4361/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4361/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4361/actions?format=json","latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4361/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","amendments.url":"https://api.congress.gov/v3/bill/118/s/4361/amendments?format=json","titles.count":5,"introducedDate":"2024-05-16","subjects.count":44,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4361?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-09-04T19:53:17Z"}}} +{"type":"relationship","id":"10655","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"1206","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1661/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"1661","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/1661/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1661/subjects?format=json","policyArea.name":"Education","type":"S","title":"Strength in Diversity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1661","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1661/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1661/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1661/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1661/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1661/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1661?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10656","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"1263","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/795/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"795","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/795/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/795/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Agricultural Management Assistance Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"795","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/795/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/795/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/795/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/795/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/795?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10657","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"9512","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3214/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"3214","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3214/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3214/committees?format=json","policyArea.name":"Education","type":"S","title":"Counseling Not Criminalization in Schools Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"3214","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-11-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3214/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3214/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3214/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3214/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3214/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3214?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10658","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"9574","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/951/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"951","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/951/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/951/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Office of Gun Violence Prevention Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"951","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/951/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/951/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/951/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/951/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/951/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-03-22","cosponsors.count":1,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/951?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:21Z"}}} +{"type":"relationship","id":"10659","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"9581","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2191/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"2191","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2191/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2191/subjects?format=json","policyArea.name":"Health","type":"S","title":"Consensual Donation and Research Integrity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2191","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2191/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2191/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2191/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2191/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2191/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":1,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2191?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10660","label":"SPONSORED","start":{"id":"3955","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001169_200.jpg","startYear":"2007","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Murphy, Christopher","state":"Connecticut","endYear":"2013","url":"https://api.congress.gov/v3/member/M001169?format=json","bioguideId":"M001169"}},"end":{"id":"10012","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/371/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murphy","sponsors.0.isByRequest":"N","request.billNumber":"371","sponsors.0.url":"https://api.congress.gov/v3/member/M001169?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sres/371/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/371/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the designation of the week of September 18 through September 22, 2023, as \"Malnutrition Awareness Week\".","latestAction.text":"Referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S4724)","sponsors.0.party":"D","number":"371","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/371/cosponsors?format=json","sponsors.0.bioguideId":"M001169","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/371/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/371/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/371/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/371/relatedbills?format=json","sponsors.0.fullName":"Sen. Murphy, Christopher [D-CT]","titles.count":2,"introducedDate":"2023-09-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"CT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/371?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"10771","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10051","labels":["Order"],"properties":{"date_enacted":"2025-02-07","date_repealed":"None","description":"nan","id":"EO 14204","title":"Addressing Egregious Actions of the Republic of South Africa","url":"https://www.federalregister.gov/d/2025-02630"}}} +{"type":"relationship","id":"10772","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10076","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14179","title":"Removing Barriers to American Leadership in Artificial Intelligence","url":"https://www.federalregister.gov/d/2025-02172"}}} +{"type":"relationship","id":"10773","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10101","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14154","title":"Unleashing American Energy","url":"https://www.federalregister.gov/d/2025-01956"}}} +{"type":"relationship","id":"10822","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"1005","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4196/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4196","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/4196/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4196/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Building Civic Bridges Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4196","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2024-04-18","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4196/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4196/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4196/actions?format=json","latestAction.actionDate":"2024-04-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4196/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2024-04-18","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/4196?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"10823","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"1096","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1744/text?format=json","updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"1744","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1744/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1744/committees?format=json","policyArea.name":"Commerce","type":"S","title":"SCORE for Small Business Act of 2023","latestAction.text":"Committee on Small Business and Entrepreneurship. Hearings held.","sponsors.0.party":"D","number":"1744","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1744/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1744/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1744/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1744/actions?format=json","latestAction.actionDate":"2023-11-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-05-18","cosponsors.count":2,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1744?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"10824","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"1128","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2681/text?format=json","relatedBills.count":1,"updateDate":"2024-12-21T12:03:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"2681","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/2681/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2681/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Safer Supervision Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"2681","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2681/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2681/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2681/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2681/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2681?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-12-21T12:03:17Z"}}} +{"type":"relationship","id":"10825","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"1497","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/629/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"629","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/629/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"UNITED Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"629","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/629/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/629/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/629/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2023-03-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/629?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:51Z"}}} +{"type":"relationship","id":"10826","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"1588","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/446/text?format=json","updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"446","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Committee on Rules and Administration.","committees.url":"https://api.congress.gov/v3/bill/118/s/446/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/446/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Trading System Preservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"446","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/446/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/446/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/446?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-07-24T15:23:45Z"}}} +{"type":"relationship","id":"10827","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"1842","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/629/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"629","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/629/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"UNITED Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"629","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2025-02-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/629/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/629/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/629/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2023-03-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/629?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:51Z"}}} +{"type":"relationship","id":"10828","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9373","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4875/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4875","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/4875/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4875/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"NO FAKES Act of 2024","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"4875","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-09-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4875/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4875/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4875/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4875/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4875/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2024-07-31","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4875?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"10829","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9420","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4218/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"4218","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Public Lands and Natural Resources","committees.url":"https://api.congress.gov/v3/bill/118/s/4218/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4218/subjects?format=json","type":"S","title":"A bill to designate the visitor center for the First State National Historical Park to be located at the Sheriff's House in New Castle, Delaware, as the \"Thomas R. Carper Visitor Center\".","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 615.","sponsors.0.party":"D","number":"4218","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4218/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4218/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4218/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4218/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-11-21","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4218/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-05-01","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4218?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:20:41Z"}}} +{"type":"relationship","id":"10830","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9451","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3960/text?format=json","updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":21,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"3960","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3960/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3960/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"A bill to amend title 35, United States Code, to provide a good faith exception to the imposition of fines for false assertions and certifications, and for other purposes.","latestAction.text":"Became Public Law No: 118-151.","sponsors.0.party":"D","number":"3960","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-03-30","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3960/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3960/titles?format=json","laws.0.number":"118-151","summaries.url":"https://api.congress.gov/v3/bill/118/s/3960/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3960/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3960/relatedbills?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":4,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3960?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-14T17:15:30Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"10831","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9478","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3439/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"3439","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3439/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3439/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Concrete and Asphalt Innovation Act of 2023","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"3439","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3439/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3439/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3439/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3439/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3439/relatedbills?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":5,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3439?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"10832","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9694","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/446/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"446","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/446/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/446/committees?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Trading System Preservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"446","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/446/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/446/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/446/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/446/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/446/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":1,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/446?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-07-24T15:23:45Z"}}} +{"type":"relationship","id":"10833","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9913","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/456/text?format=json","updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"456","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Subcommittee on Asia, the Pacific, Central Asia and Nonproliferation.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sres/456/committees?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating November 2023 as \"National College Application Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5432; text: CR S5430-5431)","sponsors.0.party":"D","number":"456","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-08-04","summaries.count":2,"amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/456/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/456/actions?format=json","latestAction.actionDate":"2023-11-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/456/amendments?format=json","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/456?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-04-17T23:51:46Z"}}} +{"type":"relationship","id":"10834","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9972","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/713/text?format=json","relatedBills.count":2,"updateDate":"2024-11-25T20:30:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"713","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 610.","committees.url":"https://api.congress.gov/v3/bill/118/sres/713/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/713/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution designating May 2024 as \"ALS Awareness Month\".","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S4023; text: 5/23/2024 CR S3893)","sponsors.0.party":"D","number":"713","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-12-07","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/713/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/713/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-06-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/713/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":2,"introducedDate":"2024-05-23","cosponsors.count":7,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/713?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-25T20:30:46Z"}}} +{"type":"relationship","id":"10835","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/456/text?format=json","updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"456","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"The committee amendment to the preamble withdrawn by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/sres/456/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/117/sres/456/committees?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution designating November 2023 as \"National College Application Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5432; text: CR S5430-5431)","sponsors.0.party":"D","number":"456","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-11","summaries.count":2,"amendments.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/456/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/456/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/456/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/456/actions?format=json","latestAction.actionDate":"2023-11-08","textVersions.count":1,"sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","amendments.url":"https://api.congress.gov/v3/bill/117/sres/456/amendments?format=json","titles.count":2,"introducedDate":"2023-11-08","cosponsors.count":4,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/456?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-04-17T23:51:46Z"}}} +{"type":"relationship","id":"10836","label":"SPONSORED","start":{"id":"4002","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001088_200.jpg","startYear":"2010","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Coons, Christopher A.","state":"Delaware","url":"https://api.congress.gov/v3/member/C001088?format=json","bioguideId":"C001088"}},"end":{"id":"9993","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/629/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Coons","sponsors.0.isByRequest":"N","request.billNumber":"629","sponsors.0.url":"https://api.congress.gov/v3/member/C001088?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: 5/10/2022 CR S2451-2452)","committees.url":"https://api.congress.gov/v3/bill/118/s/629/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/629/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"UNITED Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"629","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-11","sponsors.0.middleName":"A.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/629/cosponsors?format=json","sponsors.0.bioguideId":"C001088","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/629/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/629/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/629/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/629/relatedbills?format=json","sponsors.0.fullName":"Sen. Coons, Christopher A. [D-DE]","titles.count":4,"introducedDate":"2023-03-02","cosponsors.count":2,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"DE","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/629?format=json","sponsors.0.firstName":"Christopher","updateDateIncludingText":"2024-11-09T01:57:51Z"}}} +{"type":"relationship","id":"11036","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10052","labels":["Order"],"properties":{"date_enacted":"2025-02-06","date_repealed":"None","description":"nan","id":"EO 14203","title":"Imposing Sanctions on the International Criminal Court","url":"https://www.federalregister.gov/d/2025-02612"}}} +{"type":"relationship","id":"11037","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10077","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14178","title":"Strengthening American Leadership in Digital Financial Technology","url":"https://www.federalregister.gov/d/2025-02123"}}} +{"type":"relationship","id":"11038","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10102","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14153","title":"Unleashing Alaskas Extraordinary Resource Potential","url":"https://www.federalregister.gov/d/2025-01955"}}} +{"type":"relationship","id":"11078","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"1026","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3947/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"3947","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Committee on Health, Education, Labor, and Pensions. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/3947/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3947/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"Thirty-Two Hour Workweek Act","latestAction.text":"Committee on Health, Education, Labor, and Pensions. Hearings held.","sponsors.0.party":"I","number":"3947","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3947/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3947/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3947/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3947/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3947?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:11:30Z"}}} +{"type":"relationship","id":"11079","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"1211","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1655/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"1655","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1655/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1655/subjects?format=json","policyArea.name":"Health","type":"S","title":"Medicare for All Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"I","number":"1655","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1655/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1655/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1655/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1655/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":14,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1655?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"11080","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"1346","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/115?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11081","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"1348","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/111/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"111","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 18 - 79. Record Vote Number: 292. (consideration: CR S6653-6665)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/111/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/111/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 18 - 79. Record Vote Number: 292. (consideration: CR S6653-6665)","sponsors.0.party":"I","number":"111","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-11-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/111/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/111/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/111/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/111?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11082","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"1349","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/116/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"116","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/116/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed enhancement or upgrade of sensitivity of technology or capability of certain major defense equipment for the Government of Israel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"I","number":"116","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-09-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/116/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/116/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/116/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/116?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11083","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"1539","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-09","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/115?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11084","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"2005","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/116/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"116","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation. (text: CR S1609)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/116/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed enhancement or upgrade of sensitivity of technology or capability of certain major defense equipment for the Government of Israel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"I","number":"116","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-06","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/116/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/116/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/116/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/116?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11085","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"2007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S1576; text: CR S1584-1585)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","latestAction.actionDate":"2024-11-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/115?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11086","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"9575","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/727/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"727","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","subjects.url":"https://api.congress.gov/v3/bill/118/s/727/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/727/committees?format=json","policyArea.name":"Health","title":"Insulin for All Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"727","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/727/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/727/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/727/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/727?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11087","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"9676","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/766/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"766","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/766/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/766/subjects?format=json","policyArea.name":"Education","title":"Pay Teachers Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"I","number":"766","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-03-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/766/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/766/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/766/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/766/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/766/relatedbills?format=json","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":3,"introducedDate":"2023-03-09","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/766?format=json","sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11088","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"9785","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/116/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"116","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the Committee on House Administration, and in addition to the Committee on Oversight and Reform, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/116/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed enhancement or upgrade of sensitivity of technology or capability of certain major defense equipment for the Government of Israel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"I","number":"116","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/116/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/116/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/116/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/116/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/116?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11089","label":"SPONSORED","start":{"id":"3942","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000033_200.jpg","startYear":"1991","partyName":"Independent","attribution":"Courtesy U.S. Senate Historical Office","name":"Sanders, Bernard","state":"Vermont","endYear":"2007","url":"https://api.congress.gov/v3/member/S000033?format=json","bioguideId":"S000033"}},"end":{"id":"9786","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/115/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Sanders","sponsors.0.isByRequest":"N","request.billNumber":"115","sponsors.0.url":"https://api.congress.gov/v3/member/S000033?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/115/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/115/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel.","latestAction.text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 17 - 80. Record Vote Number: 294. (consideration: CR S6665-6666)","sponsors.0.party":"I","number":"115","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/115/cosponsors?format=json","sponsors.0.bioguideId":"S000033","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/115/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/115/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/115/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hconres/115/relatedbills?format=json","latestAction.actionDate":"2024-11-20","sponsors.0.fullName":"Sen. Sanders, Bernard [I-VT]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VT","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/115?format=json","sponsors.0.district":3,"sponsors.0.firstName":"Bernard","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11142","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"1031","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3936/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"3936","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3936/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3936/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Taiwan and American Space Assistance Act of 2024","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3936","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-03-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3936/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3936/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3936/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3936/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":3,"introducedDate":"2024-03-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3936?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11143","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"1540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/942/text?format=json","updateDate":"2025-01-29T16:17:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"942","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7336)","committees.url":"https://api.congress.gov/v3/bill/118/sres/942/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/942/subjects?format=json","policyArea.name":"Sports and Recreation","type":"SRES","title":"A resolution congratulating the Washington University in St. Louis Bears women's soccer team for winning the 2024 NCAA Division III Women's Soccer Championship.","latestAction.text":"Referred to the Committee on Commerce, Science, and Transportation. (consideration: CR S7336)","sponsors.0.party":"R","number":"942","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2024-12-21","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/942/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/942/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/942/actions?format=json","latestAction.actionDate":"2024-12-21","textVersions.count":1,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"introducedDate":"2024-12-21","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/942?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-29T16:17:49Z"}}} +{"type":"relationship","id":"11144","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"9377","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4658/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"4658","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Water Resources Development","committees.url":"https://api.congress.gov/v3/bill/118/s/4658/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4658/subjects?format=json","type":"S","title":"A bill to provide for the ongoing presence of certain structures at the Table Rock Lake project.","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"4658","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/4658/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4658/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4658/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4658/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4658/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-10","sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"introducedDate":"2024-07-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4658?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"11145","label":"SPONSORED","start":{"id":"3937","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg","startYear":"2023","name":"Schmitt, Eric","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"Missouri","url":"https://api.congress.gov/v3/member/S001227?format=json","bioguideId":"S001227"}},"end":{"id":"9765","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/57/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":8,"sponsors.0.lastName":"Schmitt","sponsors.0.isByRequest":"N","request.billNumber":"57","sponsors.0.url":"https://api.congress.gov/v3/member/S001227?format=json","latestAction_text":"Committee on Energy and Natural Resources Subcommittee on National Parks. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/57/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/57/committees?format=json","policyArea.name":"Health","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Treasury relating to \"Coronavirus State and Local Fiscal Recovery Funds\".","latestAction.text":"Failed of passage in Senate by Yea-Nay Vote. 46 - 49. Record Vote Number: 168.","sponsors.0.party":"R","number":"57","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/57/cosponsors?format=json","sponsors.0.bioguideId":"S001227","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/57/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/57/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/57/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/57/relatedbills?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":2,"sponsors.0.fullName":"Sen. Schmitt, Eric [R-MO]","titles.count":2,"cosponsors.count":12,"introducedDate":"2024-02-01","subjects.count":9,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/57?format=json","sponsors.0.firstName":"Eric","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"11191","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"1037","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3937/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"3937","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3937/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3937/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Promoting Access to Capital in Underbanked Communities Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3937","request.format":"json","latestAction_actionDate":"2024-03-14","summaries.count":1,"sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3937/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3937/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3937/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3937/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3937?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"11192","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"1557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/733/text?format=json","updateDate":"2025-01-28T20:44:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"733","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","committees.url":"https://api.congress.gov/v3/bill/118/sres/733/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/733/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"SRES","title":"A resolution honoring the life and legacy of Patrick Gottsch.","latestAction.text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S6989; text: 6/13/2024 CR S4088)","sponsors.0.party":"R","number":"733","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-12-12","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/733/cosponsors?format=json","sponsors.0.bioguideId":"H001079","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/733/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/733/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/733/actions?format=json","latestAction.actionDate":"2024-12-12","textVersions.count":2,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":2,"introducedDate":"2024-06-13","cosponsors.count":5,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/733?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-28T20:44:48Z"}}} +{"type":"relationship","id":"11193","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"9433","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4201/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"4201","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4201/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4201/committees?format=json","policyArea.name":"Health","title":"Rural Health Sustainability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4201","request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4201/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4201/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4201/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4201/relatedbills?format=json","sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-04-23","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4201?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"11194","label":"SPONSORED","start":{"id":"3976","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001079_200.jpg","startYear":"2018","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hyde-Smith, Cindy","state":"Mississippi","url":"https://api.congress.gov/v3/member/H001079?format=json","bioguideId":"H001079"}},"end":{"id":"9455","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3713/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hyde-Smith","sponsors.0.isByRequest":"N","request.billNumber":"3713","sponsors.0.url":"https://api.congress.gov/v3/member/H001079?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S838)","subjects.url":"https://api.congress.gov/v3/bill/118/s/3713/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3713/committees?format=json","policyArea.name":"Health","type":"S","title":"Protecting Life and Integrity in Research Act of 2024","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3713","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3713/cosponsors?format=json","sponsors.0.bioguideId":"H001079","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3713/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3713/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3713/actions?format=json","latestAction.actionDate":"2024-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Hyde-Smith, Cindy [R-MS]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3713?format=json","sponsors.0.firstName":"Cindy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11195","label":"SPONSORED","start":{"id":"4007","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001319_200.jpg","startYear":"2023","partyName":"Republican","attribution":"
Official U.S. Senate Photo
","name":"Britt, Katie Boyd","state":"Alabama","url":"https://api.congress.gov/v3/member/B001319?format=json","bioguideId":"B001319"}},"end":{"id":"1038","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3933/text?format=json","relatedBills.count":3,"updateDate":"2024-07-24T15:18:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Britt","sponsors.0.isByRequest":"N","request.billNumber":"3933","sponsors.0.url":"https://api.congress.gov/v3/member/B001319?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/3933/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3933/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"Laken Riley Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3933","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2024-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3933/cosponsors?format=json","sponsors.0.bioguideId":"B001319","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3933/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3933/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3933/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3933/relatedbills?format=json","sponsors.0.fullName":"Sen. Britt, Katie Boyd [R-AL]","titles.count":3,"introducedDate":"2024-03-12","cosponsors.count":47,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3933?format=json","sponsors.0.firstName":"Katie","updateDateIncludingText":"2024-07-24T15:18:57Z"}}} +{"type":"relationship","id":"11259","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1044","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3688/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"3688","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3688/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3688/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FAIR Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"3688","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3688/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3688/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3688/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3688/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2024-01-30","cosponsors.count":16,"subjects.count":2,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3688?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"11260","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1136","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2691/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2691","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2691/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2691/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"AI Labeling Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"2691","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2691/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2691/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2691/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2691/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2691?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"11261","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1158","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2437/text?format=json","relatedBills.count":4,"updateDate":"2025-02-14T02:41:12Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2437","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 143.","committees.url":"https://api.congress.gov/v3/bill/118/s/2437/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2437/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"Transportation, Housing and Urban Development, and Related Agencies Appropriations Act, 2024","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 143.","sponsors.0.party":"D","number":"2437","request.format":"json","latestAction_actionDate":"2023-07-20","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/70?format=json","summaries.count":2,"sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2437/actions?format=json","latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2437/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":5,"introducedDate":"2023-07-20","request.contentType":"application/json","subjects.count":65,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2437?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-02-14T02:41:12Z","committeeReports.0.citation":"S. Rept. 118-70"}}} +{"type":"relationship","id":"11262","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1341","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-12-12","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}}} +{"type":"relationship","id":"11263","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1370","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FAIR Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2024-09-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"11264","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1376","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2024-07-22","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}}} +{"type":"relationship","id":"11265","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1481","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2023-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"11266","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1496","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the House Committee on Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","policyArea.name":"Labor and Employment","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11267","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1509","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/372/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"372","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/372/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Macadamia Tree Health Initiative Amendments Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"372","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/372/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/372/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/372/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/372/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/372/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/372?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11268","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1536","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the House Committee on House Administration.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-02-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}}} +{"type":"relationship","id":"11269","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1835","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"11270","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1836","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Committee on Indian Affairs. Ordered to be reported without amendment favorably.","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","policyArea.name":"Labor and Employment","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11271","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1865","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/372/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"372","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/372/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/372/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Macadamia Tree Health Initiative Amendments Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"372","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/372/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/372/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/372/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/372/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/372/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/372?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11272","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"1997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Armed Services. (text: CR S1716)","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"FAIR Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"11273","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"2000","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S1632-1633)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/121?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}}} +{"type":"relationship","id":"11274","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9361","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4886/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:13:01Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"4886","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4886/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4886/committees?format=json","policyArea.name":"Native Americans","type":"S","title":"Native Arts and Culture Promotion Act","latestAction.text":"Read twice and referred to the Committee on Indian Affairs.","sponsors.0.party":"D","number":"4886","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4886/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4886/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4886/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4886/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4886/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2024-07-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4886?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:13:01Z"}}} +{"type":"relationship","id":"11275","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9423","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4213/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"4213","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/s/4213/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4213/committees?format=json","title":"Kids Off Social Media Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"4213","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4213/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4213/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/4213/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4213/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4213/relatedbills?format=json","latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2024-04-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4213?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"11276","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9485","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Schatz","cboCostEstimates.0.pubDate":"2021-07-15T20:05:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 227.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2016","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2016/cosponsors?format=json","sponsors.0.bioguideId":"S001194","actions.url":"https://api.congress.gov/v3/bill/118/s/2016/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2016/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"cosponsors.count":65,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2016/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2016","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2016/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2016/committees?format=json","title":"CONNECT for Health Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on June 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57359","cosponsors.countIncludingWithdrawnCosponsors":65,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2016/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2016/summaries?format=json","cboCostEstimates.0.title":"S. 2016, Surface Transportation Investment Act of 2021","introducedDate":"2023-06-15","subjects.count":15,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2016?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"11277","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9591","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2183/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"2183","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2183/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2183/subjects?format=json","policyArea.name":"Health","title":"Red Hill Health Impact Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2183","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2183/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2183/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2183/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2183/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2183/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2183?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"11278","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9729","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"11279","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9777","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/121/text?format=json","relatedBills.count":1,"updateDate":"2024-12-20T19:12:52Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"121","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Message on Senate action sent to the House.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/121/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/121/committees?format=json","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to abolish the electoral college and to provide for the direct election of the President and Vice President of the United States.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"121","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-16","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/121/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/121/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/121/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/121/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/121/relatedbills?format=json","latestAction.actionDate":"2024-12-12","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2024-12-12","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/121?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-12-20T19:12:52Z"}}} +{"type":"relationship","id":"11280","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9778","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Received in the Senate.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-26","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/124?format=json","updateDateIncludingText":"2025-01-14T19:03:55Z","sponsors.0.firstName":"Brian"}}} +{"type":"relationship","id":"11281","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9969","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/124/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"124","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (consideration: CR S7082-7083; text of amendment in the nature of a substitute: CR S7082-7083)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/124/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/124/committees?format=json","title":"FAIR Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"124","cosponsors.countIncludingWithdrawnCosponsors":20,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/124/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/124/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/124/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/124/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/124/relatedbills?format=json","latestAction.actionDate":"2023-01-26","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":20,"request.contentType":"application/json","subjects.count":2,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/124?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"11282","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9980","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/640/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"640","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2535; text: CR S2549-2550)","subjects.url":"https://api.congress.gov/v3/bill/118/s/640/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/640/committees?format=json","title":"Federal Employees Civil Relief Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"640","cosponsors.countIncludingWithdrawnCosponsors":16,"request.format":"json","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/640/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/640/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/640/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/640/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/640/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":16,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/640?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"11283","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"9983","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/637/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"637","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S2548)","policyArea.name":"Labor and Employment","committees.url":"https://api.congress.gov/v3/bill/118/s/637/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/637/subjects?format=json","title":"Child Labor Prevention Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"637","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2022-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/637/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/637/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/637/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/637/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/637/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":12,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/637?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11284","label":"SPONSORED","start":{"id":"3939","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001194_200.jpg","startYear":"2012","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schatz, Brian","state":"Hawaii","url":"https://api.congress.gov/v3/member/S001194?format=json","bioguideId":"S001194"}},"end":{"id":"10016","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/147/text?format=json","relatedBills.count":1,"updateDate":"2024-08-05T14:58:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Schatz","sponsors.0.isByRequest":"N","request.billNumber":"147","sponsors.0.url":"https://api.congress.gov/v3/member/S001194?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S1838)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/147/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/147/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"SRES","title":"A resolution designating April 2023 as \"Preserving and Protecting Local News Month\" and recognizing the importance and significance of local news.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S1101)","sponsors.0.party":"D","number":"147","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/147/cosponsors?format=json","sponsors.0.bioguideId":"S001194","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/147/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/147/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/147/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/147/relatedbills?format=json","sponsors.0.fullName":"Sen. Schatz, Brian [D-HI]","titles.count":2,"introducedDate":"2023-03-30","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"HI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/147?format=json","sponsors.0.firstName":"Brian","updateDateIncludingText":"2024-08-05T14:58:18Z"}}} +{"type":"relationship","id":"11288","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"9832","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1485/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T16:04:33Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Gonzales","sponsors.0.isByRequest":"N","request.billNumber":"1485","sponsors.0.url":"https://api.congress.gov/v3/member/G000594?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/hres/1485/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1485/subjects?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that the third Friday of September shall be recognized as \"National POW/MIA Recognition Day\".","latestAction.text":"Referred to the House Committee on Armed Services.","sponsors.0.party":"R","number":"1485","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1485/cosponsors?format=json","sponsors.0.bioguideId":"G000594","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1485/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/1485/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1485/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1485/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-23","sponsors.0.fullName":"Rep. Gonzales, Tony [R-TX-23]","titles.count":2,"introducedDate":"2024-09-23","cosponsors.count":41,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1485?format=json","sponsors.0.district":23,"sponsors.0.firstName":"Tony","updateDateIncludingText":"2025-01-03T16:04:33Z"}}} +{"type":"relationship","id":"11289","label":"SPONSORED","start":{"id":"4142","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/e000294_200.jpg","district":"6","startYear":"2015","name":"Emmer, Tom","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Minnesota","url":"https://api.congress.gov/v3/member/E000294?format=json","bioguideId":"E000294"}},"end":{"id":"9888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/811/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:08Z","originChamber":"House","committees.count":2,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Scalise","sponsors.0.isByRequest":"N","request.billNumber":"811","sponsors.0.url":"https://api.congress.gov/v3/member/S001176?format=json","latestAction_text":"Referred to the Subcommittee on Biotechnology, Horticulture, and Research.","committees.url":"https://api.congress.gov/v3/bill/117/hres/811/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/811/subjects?format=json","policyArea.name":"Congress","type":"HRES","title":"Authorizing the Clerk to inform the President of the election of the Speaker.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"811","request.format":"json","latestAction_actionDate":"2021-12-02","summaries.count":1,"sponsors.0.bioguideId":"S001176","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/811/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/811/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/811/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/811/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-10-25","sponsors.0.fullName":"Rep. Scalise, Steve [R-LA-1]","latestAction.actionTime":"14:47:17","titles.count":2,"introducedDate":"2023-10-25","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"LA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/811?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Steve","updateDateIncludingText":"2024-07-24T15:20:08Z"}}} +{"type":"relationship","id":"11312","label":"SPONSORED","start":{"id":"4106","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"11","imageUrl":"https://www.congress.gov/img/member/m000317_200.jpg","startYear":"2021","partyName":"Republican","name":"Malliotakis, Nicole","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/M000317?format=json","bioguideId":"M000317"}},"end":{"id":"9854","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1116/text?format=json","relatedBills.count":1,"updateDate":"2024-06-11T15:45:35Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Drew","sponsors.0.isByRequest":"N","request.billNumber":"1116","sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1116/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1116/committees?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives that the Federal Government should recoup monies from the Synergy Marine Group and Maersk Line Limited to compensate taxpayers for certain damages resulting from the allision of the cargo shipping vessel the Dali with the Francis Scott Key Bridge on March 26, 2024, and for other purposes.","latestAction.text":"Referred to the House Committee on Transportation and Infrastructure.","sponsors.0.party":"R","number":"1116","request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"sponsors.0.bioguideId":"V000133","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1116/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1116/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1116/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1116/relatedbills?format=json","sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","titles.count":2,"introducedDate":"2024-04-05","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1116?format=json","sponsors.0.district":2,"sponsors.0.firstName":"Jefferson","updateDateIncludingText":"2024-06-11T15:45:35Z"}}} +{"type":"relationship","id":"11317","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"1047","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3690/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"3690","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/3690/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3690/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Amateur Radio Emergency Preparedness Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"3690","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-01-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3690/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3690/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3690/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3690/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":3,"introducedDate":"2024-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3690?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"11318","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"1114","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2944/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"2944","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","committees.url":"https://api.congress.gov/v3/bill/118/s/2944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2944/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Puerto Rico Status Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"2944","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-09-27","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2944/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2944/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":3,"introducedDate":"2023-09-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2944?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-03T20:51:24Z"}}} +{"type":"relationship","id":"11319","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"1571","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/684/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"684","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3687-3688)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/684/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/684/committees?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution supporting the role of the United States in helping save the lives of children and protecting the health of people in low-income countries with vaccines and immunization through Gavi, the Vaccine Alliance (\"Gavi\").","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3687-3688)","sponsors.0.party":"R","number":"684","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-05-14","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/684/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/684/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/684/actions?format=json","latestAction.actionDate":"2024-05-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/684/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":2,"introducedDate":"2024-05-14","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/684?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11320","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"9444","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3968/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Wicker","sponsors.0.isByRequest":"N","request.billNumber":"3968","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3968/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3968/committees?format=json","policyArea.name":"Health","title":"Community TEAMS Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3968","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3968/cosponsors?format=json","sponsors.0.bioguideId":"W000437","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3968/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3968/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3968/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3968/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":4,"introducedDate":"2024-03-19","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3968?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11321","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"9448","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Wicker","cboCostEstimates.0.pubDate":"2024-09-20T18:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","type":"S","latestAction.text":"Became Public Law No: 118-202.","sponsors.0.party":"R","number":"3959","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3959/cosponsors?format=json","sponsors.0.bioguideId":"W000437","laws.0.number":"118-202","actions.url":"https://api.congress.gov/v3/bill/118/s/3959/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3959/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":6,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3959/text?format=json","updateDate":"2025-02-22T01:21:13Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"3959","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3959/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3959/committees?format=json","title":"Transportation Security Screening Modernization Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60738","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-30","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3959/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3959/summaries?format=json","cboCostEstimates.0.title":"S. 3959, Transportation Security Screening Modernization Act of 2024","introducedDate":"2024-03-14","subjects.count":5,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3959?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-02-22T01:21:13Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"11322","label":"SPONSORED","start":{"id":"3926","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg","startYear":"1995","partyName":"Republican","name":"Wicker, Roger F.","attribution":"Image courtesy of the Member","state":"Mississippi","endYear":"2007","url":"https://api.congress.gov/v3/member/W000437?format=json","bioguideId":"W000437"}},"end":{"id":"9713","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Wicker","cboCostEstimates.0.pubDate":"2023-08-08T21:00:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 147.","sponsors.0.party":"R","number":"416","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/416/cosponsors?format=json","sponsors.0.bioguideId":"W000437","actions.url":"https://api.congress.gov/v3/bill/118/s/416/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/416/relatedbills?format=json","sponsors.0.fullName":"Sen. Wicker, Roger F. [R-MS]","titles.count":6,"cosponsors.count":16,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/416/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"416","sponsors.0.url":"https://api.congress.gov/v3/member/W000437?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/416/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/416/committees?format=json","title":"HARM Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Foreign Relations\non July 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":16,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59428","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-02-24","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/416/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/416/summaries?format=json","cboCostEstimates.0.title":"S. 416, Holding Accountable Russian Mercenaries Act","introducedDate":"2023-02-14","subjects.count":15,"sponsors.0.state":"MS","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/416?format=json","sponsors.0.firstName":"Roger","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11356","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"9883","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/838/text?format=json","relatedBills.count":5,"updateDate":"2024-11-09T04:52:00Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":13,"sponsors.0.lastName":"Fischbach","sponsors.0.isByRequest":"N","request.billNumber":"838","sponsors.0.url":"https://api.congress.gov/v3/member/F000470?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/838/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/838/committees?format=json","policyArea.name":"Congress","type":"HRES","title":"Providing for consideration of the bill (H.R. 4821) making appropriations for the Department of the Interior, environment, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; providing for consideration of the bill (H.R. 4820) making appropriations for the Departments of Transportation, and Housing and Urban Development, and related agencies for the fiscal year ending September 30, 2024, and for other purposes; and providing for consideration of the bill (H.R. 6126) making emergency supplemental appropriations to respond to the attacks in Israel for the fiscal year ending September 30, 2024, and for other purposes.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"838","request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2021-12-07","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/261?format=json","sponsors.0.bioguideId":"F000470","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/838/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/838/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/838/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-02","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/838/relatedbills?format=json","sponsors.0.fullName":"Rep. Fischbach, Michelle [R-MN-7]","latestAction.actionTime":"11:00:55","titles.count":2,"introducedDate":"2023-11-02","request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"MN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/838?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Michelle","updateDateIncludingText":"2024-11-09T04:52:00Z","latestAction_actionTime":"19:27:57","committeeReports.0.citation":"H. Rept. 118-261"}}} +{"type":"relationship","id":"11357","label":"SPONSORED","start":{"id":"4092","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:58Z","chamber":"House of Representatives","district":"5","imageUrl":"https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg","startYear":"2018","partyName":"Democratic","name":"Scanlon, Mary Gay","attribution":"Congressional Pictorial Directory","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/S001205?format=json","bioguideId":"S001205"}},"end":{"id":"9946","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/33/text?format=json","relatedBills.count":1,"updateDate":"2024-06-19T10:56:35Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Merkley","sponsors.0.isByRequest":"N","request.billNumber":"33","sponsors.0.url":"https://api.congress.gov/v3/member/M001176?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Crime and Law Enforcement","committees.url":"https://api.congress.gov/v3/bill/118/sjres/33/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/33/subjects?format=json","type":"SJRES","title":"A joint resolution proposing an amendment to the Constitution of the United States to prohibit the use of slavery and involuntary servitude as a punishment for a crime.","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"33","cosponsors.countIncludingWithdrawnCosponsors":14,"request.format":"json","sponsors.0.middleName":"Gay","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/33/cosponsors?format=json","sponsors.0.bioguideId":"M001176","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/33/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/33/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/33/actions?format=json","latestAction.actionDate":"2023-06-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/33/relatedbills?format=json","sponsors.0.fullName":"Sen. Merkley, Jeff [D-OR]","titles.count":2,"introducedDate":"2023-06-14","cosponsors.count":14,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"OR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/33?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Jeff","updateDateIncludingText":"2024-06-19T10:56:35Z"}}} +{"type":"relationship","id":"11505","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"9961","labels":["Bill"],"properties":{"relatedBills.count":3,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/873/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cornyn","sponsors.0.isByRequest":"N","request.billNumber":"873","sponsors.0.url":"https://api.congress.gov/v3/member/C001056?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7185-7186 text: CR S7202-7203)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/873/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sres/873/committees?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the goals and ideals of Red Ribbon Week during the period of October 23 through October 31, 2024.","latestAction.text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S6455-6456)","sponsors.0.party":"R","number":"873","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-12-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/873/cosponsors?format=json","sponsors.0.bioguideId":"C001056","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/873/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/873/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/873/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/873/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-25","sponsors.0.fullName":"Sen. Cornyn, John [R-TX]","titles.count":2,"introducedDate":"2024-09-25","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/873?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11506","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"9974","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/645/text?format=json","relatedBills.count":1,"updateDate":"2024-12-12T20:36:14Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"King","sponsors.0.isByRequest":"N","request.billNumber":"645","sponsors.0.url":"https://api.congress.gov/v3/member/K000383?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2630; text: CR S2624)","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/sres/645/subjects?format=json","type":"SRES","title":"A resolution designating the week of April 20 through April 28, 2024, as \"National Park Week\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2781; text: CR S2794)","sponsors.0.party":"I","number":"645","cosponsors.countIncludingWithdrawnCosponsors":63,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-05-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/645/cosponsors?format=json","sponsors.0.bioguideId":"K000383","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/645/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/645/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/645/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-16","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/645/relatedbills?format=json","sponsors.0.fullName":"Sen. King, Angus S., Jr. [I-ME]","titles.count":2,"introducedDate":"2024-04-16","cosponsors.count":63,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/645?format=json","sponsors.0.firstName":"Angus","updateDateIncludingText":"2024-12-12T20:36:14Z"}}} +{"type":"relationship","id":"11664","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1070","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3454/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"3454","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/3454/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3454/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Taxpayer Dollars for Communist China COVID Tests Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"3454","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-12-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3454/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3454/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3454/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3454/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3454/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":5,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3454?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11665","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1123","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2699/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"2699","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2699/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2699/committees?format=json","policyArea.name":"Health","type":"S","title":"Opioid RADAR Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2699","request.format":"json","latestAction_actionDate":"2023-07-27","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2699/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2699/actions?format=json","latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2699/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-07-27","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2699?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11666","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1126","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2684/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"2684","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2684/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2684/subjects?format=json","policyArea.name":"Health","type":"S","title":"Medical License Verification Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2684","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2684/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2684/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2684/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2684?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"11667","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1127","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2683/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"2683","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2683/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2683/committees?format=json","policyArea.name":"Health","type":"S","title":"AMERICAN DRUGS Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2683","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2683/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2683/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2683/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2683/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2683?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11668","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1274","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/782/text?format=json","updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"782","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/782/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/782/subjects?format=json","policyArea.name":"Energy","type":"S","title":"FREE American Energy Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"782","request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/782/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/782/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/782/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/782?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2024-07-24T15:23:21Z"}}} +{"type":"relationship","id":"11669","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1298","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/477/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"477","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/s/477/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/477/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Taiwan Invasion Prevention Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"477","request.format":"json","latestAction_actionDate":"2023-02-16","summaries.count":1,"sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/477/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/477/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/477/actions?format=json","latestAction.actionDate":"2023-02-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-02-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/477?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11670","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1308","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/180/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"180","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/180/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/180/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Block Grant Assistance Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"R","number":"180","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/180/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/180/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/180/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/180/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/180/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/180?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11671","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1315","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/170/text?format=json","updateDate":"2025-01-14T17:21:40Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"170","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","committees.url":"https://api.congress.gov/v3/bill/118/s/170/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/170/subjects?format=json","policyArea.name":"Congress","type":"S","title":"A bill to establish a Joint Select Committee on Afghanistan to conduct a full investigation and compile a joint report on the United States withdrawal from Afghanistan.","latestAction.text":"Read twice and referred to the Committee on Rules and Administration.","sponsors.0.party":"R","number":"170","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/170/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/170/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/170/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/170/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":2,"introducedDate":"2023-01-31","cosponsors.count":8,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/170?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T17:21:40Z"}}} +{"type":"relationship","id":"11672","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1374","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"BAD IRS Activities Act","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2024-08-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}}} +{"type":"relationship","id":"11673","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1400","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1626/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1626","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/s/1626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1626/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"ASK Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1626","request.format":"json","latestAction_actionDate":"2024-12-31","summaries.count":1,"sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1626/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-05-16","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1626?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:51:33Z","latestAction_actionTime":"10:10:26"}}} +{"type":"relationship","id":"11674","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1535","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-02-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}}} +{"type":"relationship","id":"11675","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1576","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2023-04-19T19:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3626; text: S3599-3600)","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-97.","sponsors.0.party":"R","number":"679","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/679/cosponsors?format=json","sponsors.0.bioguideId":"S001217","laws.0.number":"118-97","actions.url":"https://api.congress.gov/v3/bill/118/s/679/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/679/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-25","textVersions.url":"https://api.congress.gov/v3/bill/118/s/679/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"679","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/679/committees?format=json","title":"GAO Database Modernization Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59087","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-05-08","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/25?format=json","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/679/summaries?format=json","cboCostEstimates.0.title":"S. 679, GAO Database Modernization Act of 2023","introducedDate":"2023-03-07","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/679?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"11676","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1820","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/864/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"864","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/864/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/864/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"TASK Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"864","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/864/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/864/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/864/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/864/actions?format=json","latestAction.actionDate":"2023-03-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-03-16","cosponsors.count":2,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/864?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"11677","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"1998","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1667-1668)","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}}} +{"type":"relationship","id":"11678","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9488","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2022-04-20T20:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 221.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2699","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2699/cosponsors?format=json","sponsors.0.bioguideId":"S001217","actions.url":"https://api.congress.gov/v3/bill/118/s/2699/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2699/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2699/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"2699","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2699/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2699/committees?format=json","title":"Opioid RADAR Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on December 17, 2021\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58014","request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2699/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2699/summaries?format=json","cboCostEstimates.0.title":"S. 2699, American Cybersecurity Literacy Act of 2021","introducedDate":"2023-07-27","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2699?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11679","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9618","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1626/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1626","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/s/1626/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1626/subjects?format=json","title":"ASK Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1626","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1626/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1626/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1626/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1626/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1626/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1626?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"11680","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9679","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Scott","cboCostEstimates.0.pubDate":"2023-04-19T19:57:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-97.","sponsors.0.party":"R","number":"679","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/679/cosponsors?format=json","sponsors.0.bioguideId":"S001217","laws.0.number":"118-97","actions.url":"https://api.congress.gov/v3/bill/118/s/679/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/679/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":6,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-25","textVersions.url":"https://api.congress.gov/v3/bill/118/s/679/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"679","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/679/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/679/committees?format=json","title":"GAO Database Modernization Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59087","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-03-16","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/25?format=json","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/679/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/679/summaries?format=json","cboCostEstimates.0.title":"S. 679, GAO Database Modernization Act of 2023","introducedDate":"2023-03-07","subjects.count":5,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/679?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"11681","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9730","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/117/s/123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}}} +{"type":"relationship","id":"11682","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9776","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/117/s/123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-16","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}}} +{"type":"relationship","id":"11683","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"9970","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/864/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"864","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7072)","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/864/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/864/committees?format=json","title":"TASK Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"864","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/864/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/864/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/864/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/864/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/864/relatedbills?format=json","latestAction.actionDate":"2023-03-16","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-03-16","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/864?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"11684","label":"SPONSORED","start":{"id":"3934","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:27Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/s001217_200.jpg","startYear":"2019","name":"Scott, Rick","partyName":"Republican","state":"Florida","url":"https://api.congress.gov/v3/member/S001217?format=json","bioguideId":"S001217"}},"end":{"id":"10029","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/123/text?format=json","relatedBills.count":2,"updateDate":"2025-01-03T08:10:49Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"123","sponsors.0.url":"https://api.congress.gov/v3/member/S001217?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1717; text: 3/18/2021 CR S1653)","committees.url":"https://api.congress.gov/v3/bill/117/s/123/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/123/subjects?format=json","policyArea.name":"Taxation","title":"BAD IRS Activities Act","type":"S","latestAction.text":"Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 8.","sponsors.0.party":"R","number":"123","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/123/cosponsors?format=json","sponsors.0.bioguideId":"S001217","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/123/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/123/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/123/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/123/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Rick [R-FL]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"FL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/123?format=json","sponsors.0.firstName":"Rick","updateDateIncludingText":"2025-01-03T08:10:49Z"}}} +{"type":"relationship","id":"11719","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"9999","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/386/text?format=json","updateDate":"2024-10-03T16:45:53Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"386","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sres/386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/386/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution designating October 4, 2023, as National Energy Appreciation Day to celebrate the people who work to power the United States and the economy of the United States and to build awareness of the important role that the energy producers of the United States play in reducing poverty, strengthening national security, and improving the quality of life for people around the world.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4827-4828)","sponsors.0.party":"R","number":"386","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/386/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/386/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/386/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":2,"introducedDate":"2023-09-29","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/386?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2024-10-03T16:45:53Z"}}} +{"type":"relationship","id":"11738","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"1075","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3450/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"3450","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3450/subjects?format=json","policyArea.name":"Health","type":"S","title":"Mental and Physical Health Care Comorbidities Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3450","request.format":"json","latestAction_actionDate":"2023-12-07","summaries.count":1,"sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3450/actions?format=json","latestAction.actionDate":"2023-12-07","textVersions.count":1,"sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-12-07","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3450?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"11739","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"1185","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1948/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1948","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/1948/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1948/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Cleaner Air Spaces Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"1948","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-06-13","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1948/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1948/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1948/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1948/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":6,"subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1948?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"11740","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9345","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Bennet","cboCostEstimates.0.pubDate":"2022-11-21T17:03:00Z","sponsors.0.isByRequest":"N","latestAction_text":"An errata sheet on written report No. 117-187 was printed.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3450","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3450/cosponsors?format=json","sponsors.0.bioguideId":"B001267","actions.url":"https://api.congress.gov/v3/bill/118/s/3450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3450/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-187,Errata","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3450/text?format=json","updateDate":"2024-11-09T01:28:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"committeeReports.1.citation":"S. Rept. 117-187","request.billNumber":"3450","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3450/subjects?format=json","title":"Mental and Physical Health Care Comorbidities Act of 2023","cboCostEstimates.0.description":"As reported on October 18, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58823","request.format":"json","latestAction_actionDate":"2022-11-07","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/187?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3450/summaries?format=json","cboCostEstimates.0.title":"S. 3450, Sun River Hydropower Authorization Act","committeeReports.1.url":"https://api.congress.gov/v3/committee-report/117/SRPT/187?format=json","introducedDate":"2023-12-07","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3450?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:28:28Z"}}} +{"type":"relationship","id":"11741","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9415","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-125.","policyArea.name":"Health","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3059","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3059/cosponsors?format=json","sponsors.0.bioguideId":"B001267","laws.0.number":"117-125","actions.url":"https://api.congress.gov/v3/bill/118/s/3059/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3059/relatedbills?format=json","latestAction.actionDate":"2023-10-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3059/amendments?format=json","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3059/text?format=json","updateDate":"2024-11-09T01:57:51Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3059","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3059/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3059/subjects?format=json","title":"REAL Health Providers Act","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-05-13","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3059/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3059/summaries?format=json","introducedDate":"2023-10-17","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3059?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-11-09T01:57:51Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"11742","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9473","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3702/text?format=json","relatedBills.count":1,"updateDate":"2024-12-04T12:03:19Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"3702","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3702/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3702/committees?format=json","policyArea.name":"Taxation","title":"Credit for Caring Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3702","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3702/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3702/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3702/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3702/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3702/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3702?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2024-12-04T12:03:19Z"}}} +{"type":"relationship","id":"11743","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9592","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2180/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"2180","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Agriculture and Food","subjects.url":"https://api.congress.gov/v3/bill/118/s/2180/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2180/committees?format=json","title":"Small Farm Conservation Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2180","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2021-06-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2180/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2180/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2180/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2180/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2180/relatedbills?format=json","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":3,"introducedDate":"2023-06-22","cosponsors.count":15,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2180?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11744","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9653","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1355/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1355","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1355/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1355/committees?format=json","policyArea.name":"Health","type":"S","title":"PASTEUR Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1355","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1355/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1355/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1355/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1355?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11745","label":"SPONSORED","start":{"id":"4016","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/b001267_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Bennet, Michael F.","state":"Colorado","url":"https://api.congress.gov/v3/member/B001267?format=json","bioguideId":"B001267"}},"end":{"id":"9834","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1355/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Bennet","sponsors.0.isByRequest":"N","request.billNumber":"1355","sponsors.0.url":"https://api.congress.gov/v3/member/B001267?format=json","latestAction_text":"Placed on the House Calendar, Calendar No. 135.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1355/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1355/committees?format=json","policyArea.name":"Health","title":"PASTEUR Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1355","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-09-29","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1355/cosponsors?format=json","sponsors.0.bioguideId":"B001267","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1355/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1355/relatedbills?format=json","latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Bennet, Michael F. [D-CO]","titles.count":4,"introducedDate":"2023-04-27","cosponsors.count":7,"request.contentType":"application/json","subjects.count":16,"sponsors.0.state":"CO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1355?format=json","sponsors.0.firstName":"Michael","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11791","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1080","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3207/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"3207","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/3207/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3207/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Foundation for International Food Security Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"3207","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-11-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3207/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3207/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3207/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3207?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11792","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1355","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/107/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"107","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/107/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/107/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of military force against the Islamic Republic of Iran if the President determines that the Islamic Republic of Iran is planning or conducts an attack against any former, current, or incoming United States Government official or senior military personnel.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"107","request.format":"json","latestAction_actionDate":"2024-08-01","sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/107/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/107/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-08-01","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/107?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11793","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1356","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/106/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"106","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/106/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/106/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"106","request.format":"json","latestAction_actionDate":"2024-07-31","summaries.count":1,"sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/106/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-07-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/106?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11794","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1552","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/931/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"931","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S7109)","committees.url":"https://api.congress.gov/v3/bill/118/sres/931/committees?format=json","type":"SRES","title":"A resolution recognizing the exceptional service of Ambassador Michael Herzog during his tenure as Ambassador of Israel to the United States.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S7109)","sponsors.0.party":"R","number":"931","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/931/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/931/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/931/actions?format=json","latestAction.actionDate":"2024-12-17","textVersions.count":1,"sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/931?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11795","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1573","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/682/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"682","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S3659-3660)","committees.url":"https://api.congress.gov/v3/bill/118/sres/682/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/682/subjects?format=json","policyArea.name":"International Affairs","type":"SRES","title":"A resolution condemning the decision by the Biden Administration to halt the shipment of United States made ammunition and weapons to the State of Israel.","latestAction.text":"Referred to the Committee on Foreign Relations. (text: CR S3659-3660)","sponsors.0.party":"R","number":"682","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","latestAction_actionDate":"2024-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/682/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/682/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/682/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/682/actions?format=json","latestAction.actionDate":"2024-05-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-05-09","cosponsors.count":47,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/682?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11796","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/106/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"106","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 55.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/106/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/106/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"106","request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/106/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-07-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/106?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11797","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"1862","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"377","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/377/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/377/committees?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Domestic Reinvestment Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/377/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/377/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/377/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/377?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:47Z"}}} +{"type":"relationship","id":"11798","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"9608","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1907/text?format=json","relatedBills.count":1,"updateDate":"2024-09-24T11:03:16Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"1907","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1907/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1907/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Federal Firearms Licensee Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1907","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1907/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1907/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1907/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1907/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1907/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":26,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1907?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-09-24T11:03:16Z"}}} +{"type":"relationship","id":"11799","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"9704","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/425/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:44Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"425","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/425/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/425/committees?format=json","policyArea.name":"Immigration","type":"S","title":"Secure and Protect Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"425","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/425/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/425/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/425/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/425/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/425/relatedbills?format=json","latestAction.actionDate":"2023-02-14","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/425?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:44Z"}}} +{"type":"relationship","id":"11800","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"9734","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/106/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"106","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/106/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/106/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution to authorize the use of United States Armed Forces against the Islamic Republic of Iran for threatening the national security of the United States through the development of nuclear weapons.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"106","request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"sponsors.0.bioguideId":"G000359","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/106/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/106/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/106/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hjres/106/relatedbills?format=json","latestAction.actionDate":"2024-07-31","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":2,"introducedDate":"2024-07-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/106?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11801","label":"SPONSORED","start":{"id":"3990","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000359_200.jpg","startYear":"1995","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Graham, Lindsey","state":"South Carolina","endYear":"2003","url":"https://api.congress.gov/v3/member/G000359?format=json","bioguideId":"G000359"}},"end":{"id":"10007","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/377/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:47Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Graham","sponsors.0.isByRequest":"N","request.billNumber":"377","sponsors.0.url":"https://api.congress.gov/v3/member/G000359?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S6627-6628)","committees.url":"https://api.congress.gov/v3/bill/118/s/377/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/377/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","title":"Domestic Reinvestment Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"377","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/377/cosponsors?format=json","sponsors.0.bioguideId":"G000359","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/377/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/377/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/377/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/377/relatedbills?format=json","sponsors.0.fullName":"Sen. Graham, Lindsey [R-SC]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/377?format=json","sponsors.0.firstName":"Lindsey","updateDateIncludingText":"2024-07-24T15:23:47Z"}}} +{"type":"relationship","id":"11819","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1085","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3202/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:19:57Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"3202","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3202/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"Paperwork Burden Reduction Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"3202","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-11-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3202/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3202/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3202/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-02","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3202?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:19:57Z"}}} +{"type":"relationship","id":"11820","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10053","labels":["Order"],"properties":{"date_enacted":"2025-02-06","date_repealed":"None","description":"nan","id":"EO 14202","title":"Eradicating Anti-Christian Bias","url":"https://www.federalregister.gov/d/2025-02611"}}} +{"type":"relationship","id":"11821","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10078","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14177","title":"Presidents Council of Advisors on Science and Technology","url":"https://www.federalregister.gov/d/2025-02121"}}} +{"type":"relationship","id":"11822","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10103","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14152","title":"Holding Former Government Officials Accountable for Election Interference and Improper Disclosure of Sensitive Governmental Information","url":"https://www.federalregister.gov/d/2025-01954"}}} +{"type":"relationship","id":"11823","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1214","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1652/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"1652","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1707)","committees.url":"https://api.congress.gov/v3/bill/118/s/1652/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1652/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"SAVE Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S1707)","sponsors.0.party":"R","number":"1652","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1652/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1652/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1652/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1652/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1652/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1652?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11824","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1273","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/786/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"786","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (text: CR S774-775)","subjects.url":"https://api.congress.gov/v3/bill/118/s/786/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/786/committees?format=json","policyArea.name":"Taxation","type":"S","title":"PHIT Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance. (text: CR S774-775)","sponsors.0.party":"R","number":"786","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/786/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/786/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/786/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/786/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/786/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/786?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"11825","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1310","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/174/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"174","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S174)","committees.url":"https://api.congress.gov/v3/bill/118/s/174/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/174/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Conservation Reserve Program Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S174)","sponsors.0.party":"R","number":"174","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/174/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/174/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/174/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/174/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/174/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-31","cosponsors.count":2,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/174?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11826","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1367","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Energy and Commerce, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2024-09-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11827","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1531","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11828","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1603","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/202/text?format=json","updateDate":"2024-04-17T23:51:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"202","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Referred to the Committee on Finance. (text: CR S1569)","committees.url":"https://api.congress.gov/v3/bill/118/sres/202/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/202/subjects?format=json","policyArea.name":"Foreign Trade and International Finance","type":"SRES","title":"A resolution expressing the sense of the Senate that the United States must continue to demonstrate leadership to achieve significant reforms to the rules of the World Trade Organization in order to promote the advancement of truly developing countries.","latestAction.text":"Referred to the Committee on Finance. (text: CR S1569)","sponsors.0.party":"R","number":"202","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/202/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/202/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/202/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/202/actions?format=json","latestAction.actionDate":"2023-05-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/202?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-04-17T23:51:39Z"}}} +{"type":"relationship","id":"11829","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"1990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11830","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9460","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Thune","cboCostEstimates.0.pubDate":"2022-11-21T16:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 286.","policyArea.name":"International Affairs","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S1629)","sponsors.0.party":"R","number":"1583","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1583/cosponsors?format=json","sponsors.0.bioguideId":"T000250","actions.url":"https://api.congress.gov/v3/bill/118/s/1583/actions?format=json","latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1583/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":2,"cosponsors.count":18,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-85","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1583/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1583","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1583/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1583/subjects?format=json","title":"A bill to require the Secretary of State to submit to Congress classified dissent cables relating to the withdrawal of the United States Armed Forces from Afghanistan.","cboCostEstimates.0.description":"As reported on February 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":18,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58810","request.format":"json","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/85?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1583/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1583/summaries?format=json","cboCostEstimates.0.title":"S. 1583, Lake Tahoe Restoration Reauthorization Act","introducedDate":"2023-05-11","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1583?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"11831","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9495","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2405/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"2405","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Veterans' Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2405/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2405/committees?format=json","policyArea.name":"Health","type":"S","title":"Strengthening Pharmacy Access for Seniors Act","latestAction.text":"Read twice and referred to the Committee on Finance. (text: CR S3461-3462)","sponsors.0.party":"R","number":"2405","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2405/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2405/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2405/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2405/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/2405/relatedbills?format=json","latestAction.actionDate":"2023-07-20","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-07-20","cosponsors.count":4,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2405?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-09T01:57:21Z"}}} +{"type":"relationship","id":"11832","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9537","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/808/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"808","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","committees.url":"https://api.congress.gov/v3/bill/118/s/808/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/808/subjects?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Expediting Forest Restoration and Recovery Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S802)","sponsors.0.party":"R","number":"808","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/808/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/808/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/808/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/808/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/808/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-03-15","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/808?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11833","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9538","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/354/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"354","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/354/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/354/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Strengthening Local Processing Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S317-319)","sponsors.0.party":"R","number":"354","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/354/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/354/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/354/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/354/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/354/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/354?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11834","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9640","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/415/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"415","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Became Public Law No: 117-9.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/415/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/415/committees?format=json","title":"Food and Energy Security Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (text: CR S399)","sponsors.0.party":"R","number":"415","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/415/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/415/titles?format=json","laws.0.number":"117-9","summaries.url":"https://api.congress.gov/v3/bill/118/s/415/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/415/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/415?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:20:21Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"11835","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"9720","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11836","label":"SPONSORED","start":{"id":"3932","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000250_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Thune, John","state":"South Dakota","endYear":"2003","url":"https://api.congress.gov/v3/member/T000250?format=json","bioguideId":"T000250"}},"end":{"id":"10014","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/130/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Thune","sponsors.0.isByRequest":"N","request.billNumber":"130","sponsors.0.url":"https://api.congress.gov/v3/member/T000250?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Unanimous Consent. (consideration: CR S1845; text: 3/23/2021 CR S1713)","subjects.url":"https://api.congress.gov/v3/bill/118/s/130/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/130/committees?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"Rural Internet Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry. (text: CR S148-150)","sponsors.0.party":"R","number":"130","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-03-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/130/cosponsors?format=json","sponsors.0.bioguideId":"T000250","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/130/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/130/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/130/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/130/relatedbills?format=json","sponsors.0.fullName":"Sen. Thune, John [R-SD]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":5,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"SD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/130?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"11846","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10054","labels":["Order"],"properties":{"date_enacted":"2025-02-05","date_repealed":"None","description":"nan","id":"EO 14201","title":"Keeping Men Out of Womens Sports ","url":"https://www.federalregister.gov/d/2025-02513"}}} +{"type":"relationship","id":"11847","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10079","labels":["Order"],"properties":{"date_enacted":"2025-01-23","date_repealed":"None","description":"nan","id":"EO 14176","title":"Declassification of Records Concerning the Assassinations of President John F. Kennedy, Senator Robert F. Kennedy, and the Reverend Dr. Martin Luther King, Jr.","url":"https://www.federalregister.gov/d/2025-02116"}}} +{"type":"relationship","id":"11848","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10104","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14151","title":"Ending Radical and Wasteful Government DEI Programs and Preferencing","url":"https://www.federalregister.gov/d/2025-01953"}}} +{"type":"relationship","id":"11880","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"1088","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3200/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"3200","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3200/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3200/subjects?format=json","policyArea.name":"Health","type":"S","title":"Substance Use Disorder Treatment and Recovery Loan Repayment Program Reauthorization Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3200","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-11-02","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3200/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3200/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3200/actions?format=json","latestAction.actionDate":"2023-11-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3200/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2023-11-02","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/3200?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2024-11-09T01:57:46Z"}}} +{"type":"relationship","id":"11881","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"1241","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1095/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"1095","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/1095/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1095/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Reserve Component Parental Leave Parity Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1095","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1095/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1095/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1095/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1095/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1095/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2023-03-30","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1095?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"11882","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"1279","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/775/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"775","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/775/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/775/subjects?format=json","policyArea.name":"Health","type":"S","title":"Increasing Transparency in Generic Drug Applications Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"775","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/775/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/775/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/775/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/775/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/775/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/775?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11883","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9322","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Hassan","cboCostEstimates.0.pubDate":"2022-06-27T20:46:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 626.","policyArea.name":"Taxation","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3296","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3296/cosponsors?format=json","sponsors.0.bioguideId":"H001076","actions.url":"https://api.congress.gov/v3/bill/118/s/3296/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3296/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-14","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3296/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3296","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3296/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3296/subjects?format=json","title":"Upskilling and Retraining Assistance Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":3,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58257","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3296/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3296/summaries?format=json","cboCostEstimates.0.title":"S. 3296, TRANSLATE Act","introducedDate":"2023-11-14","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3296?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"11884","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9328","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Hassan","cboCostEstimates.0.pubDate":"2022-11-09T16:11:00Z","sponsors.0.isByRequest":"N","latestAction_text":"By Senator Peters from Committee on Homeland Security and Governmental Affairs filed written report. Report No. 117-240.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4399","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4399/cosponsors?format=json","sponsors.0.bioguideId":"H001076","actions.url":"https://api.congress.gov/v3/bill/118/s/4399/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-05-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4399/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-240","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4399/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4399","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4399/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4399/subjects?format=json","title":"Help Grandfamilies Prevent Child Abuse Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58726","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/240?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4399/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4399/summaries?format=json","cboCostEstimates.0.title":"S. 4399, All-American Flag Act","introducedDate":"2024-05-23","subjects.count":1,"sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4399?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"11885","label":"SPONSORED","start":{"id":"3983","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001076_200.jpg","startYear":"2017","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Hassan, Margaret Wood","state":"New Hampshire","url":"https://api.congress.gov/v3/member/H001076?format=json","bioguideId":"H001076"}},"end":{"id":"9344","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5077/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hassan","sponsors.0.isByRequest":"N","request.billNumber":"5077","sponsors.0.url":"https://api.congress.gov/v3/member/H001076?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/5077/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5077/subjects?format=json","type":"S","title":"Government Service Delivery Improvement Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5077","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5077/cosponsors?format=json","sponsors.0.bioguideId":"H001076","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5077/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5077/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5077/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5077/relatedbills?format=json","sponsors.0.fullName":"Sen. Hassan, Margaret Wood [D-NH]","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NH","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5077?format=json","sponsors.0.firstName":"Maggie","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"11910","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10055","labels":["Order"],"properties":{"date_enacted":"2025-02-05","date_repealed":"None","description":"nan","id":"EO 14200","title":"Amendment to Duties Addressing the Synthetic Opioid Supply Chain in the Peoples Republic of China","url":"https://www.federalregister.gov/d/2025-02512"}}} +{"type":"relationship","id":"11911","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10080","labels":["Order"],"properties":{"date_enacted":"2025-01-22","date_repealed":"None","description":"nan","id":"EO 14175","title":"Designation of Ansar Allah as a Foreign Terrorist Organization","url":"https://www.federalregister.gov/d/2025-02103"}}} +{"type":"relationship","id":"11912","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10105","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14150","title":"America First Policy Directive to the Secretary of State","url":"https://www.federalregister.gov/d/2025-01952"}}} +{"type":"relationship","id":"11957","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10056","labels":["Order"],"properties":{"date_enacted":"2025-02-04","date_repealed":"None","description":"nan","id":"EO 14199","title":"Withdrawing the United States From and Ending Funding to Certain United Nations Organizations and Reviewing United States Support to All International Organizations","url":"https://www.federalregister.gov/d/2025-02504"}}} +{"type":"relationship","id":"11958","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10081","labels":["Order"],"properties":{"date_enacted":"2025-01-21","date_repealed":"None","description":"nan","id":"EO 14174","title":"Revocation of Certain Executive Orders ","url":"https://www.federalregister.gov/d/2025-02098"}}} +{"type":"relationship","id":"11959","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10106","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14149","title":"Restoring Freedom of Speech and Ending Federal Censorship","url":"https://www.federalregister.gov/d/2025-01902"}}} +{"type":"relationship","id":"11983","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10057","labels":["Order"],"properties":{"date_enacted":"2025-02-03","date_repealed":"None","description":"nan","id":"EO 14198","title":"Progress on the Situation at Our Southern Border","url":"https://www.federalregister.gov/d/2025-02479"}}} +{"type":"relationship","id":"11984","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10082","labels":["Order"],"properties":{"date_enacted":"2025-01-21","date_repealed":"None","description":"nan","id":"EO 14173","title":"Ending Illegal Discrimination and Restoring Merit-Based Opportunity","url":"https://www.federalregister.gov/d/2025-02097"}}} +{"type":"relationship","id":"11985","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10107","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14148","title":"Initial Rescissions of Harmful Executive Orders and Actions","url":"https://www.federalregister.gov/d/2025-01901"}}} +{"type":"relationship","id":"12026","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10058","labels":["Order"],"properties":{"date_enacted":"2025-02-03","date_repealed":"None","description":"nan","id":"EO 14197","title":"Progress on the Situation at Our Northern Border","url":"https://www.federalregister.gov/d/2025-02478"}}} +{"type":"relationship","id":"12027","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10083","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14172","title":"Restoring Names That Honor American Greatness","url":"https://www.federalregister.gov/d/2025-02096"}}} +{"type":"relationship","id":"12028","label":"ENACTED","start":{"id":"10109","labels":["Person"],"properties":{"last_name":"Trump","position":"President","first_name":"Donald"}},"end":{"id":"10108","labels":["Order"],"properties":{"date_enacted":"2025-01-20","date_repealed":"None","description":"nan","id":"EO 14147","title":"Ending the Weaponization of the Federal Government","url":"https://www.federalregister.gov/d/2025-01900"}}} +{"type":"relationship","id":"12038","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"1103","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2956/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"2956","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/2956/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2956/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Middle East Security Coordination Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"2956","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2956/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2956/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2956/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2956/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2956?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"12039","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"1129","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2680/text?format=json","updateDate":"2025-01-14T17:02:09Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"2680","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2680/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2680/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Transitioning Servicemember Food Security Act of 2023","latestAction.text":"Read twice and referred to the Committee on Veterans' Affairs.","sponsors.0.party":"D","number":"2680","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2680/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2680/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2680/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2680?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:02:09Z"}}} +{"type":"relationship","id":"12040","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"1168","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2215/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"2215","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2215/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2215/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fort Gordon Cyber Center Enhancement Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"2215","request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2215/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2215/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2215/actions?format=json","latestAction.actionDate":"2023-07-10","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-07-10","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2215?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12041","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"1403","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1623/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1623","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Referred to the House Committee on Education and the Workforce.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1623/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fort Gordon Child Development Center Expansion Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1623","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-19","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1623/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1623/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1623/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1623?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12042","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"1407","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1620/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1620","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Transportation and Infrastructure, and Homeland Security, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1620/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1620/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Fort Gillem Defense Forensics Enhancement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1620","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1620/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1620/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1620/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1620?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12043","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"1408","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1621/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1621","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1621/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1621/committees?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Military Mental Health Professionals Support Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1621/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1621/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1621?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12044","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9339","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5080/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"5080","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/5080/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5080/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"Postmaster General Reform Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"5080","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5080/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5080/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5080/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5080/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/5080/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"cosponsors.count":1,"introducedDate":"2024-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5080?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"12045","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9445","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3965/text?format=json","updateDate":"2025-01-14T18:18:18Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"3965","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/3965/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3965/subjects?format=json","policyArea.name":"Immigration","title":"Deploy Fentanyl Scanners Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Appropriations.","sponsors.0.party":"D","number":"3965","request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3965/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3965/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3965/actions?format=json","latestAction.actionDate":"2024-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3965?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:18:18Z"}}} +{"type":"relationship","id":"12046","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9459","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Ossoff","cboCostEstimates.0.pubDate":"2022-02-28T21:20:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 287.","policyArea.name":"Armed Forces and National Security","type":"S","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1620","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1620/cosponsors?format=json","sponsors.0.bioguideId":"O000174","actions.url":"https://api.congress.gov/v3/bill/118/s/1620/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1620/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-86","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1620/text?format=json","updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1620","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1620/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1620/committees?format=json","title":"Fort Gillem Defense Forensics Enhancement Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on November 18, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57890","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-02-28","summaries.count":1,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/86?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1620/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1620/summaries?format=json","cboCostEstimates.0.title":"S. 1620, Save the Liberty Theatre Act of 2021","introducedDate":"2023-05-16","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1620?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12047","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9607","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1899/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1899","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1899/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1899/committees?format=json","type":"S","title":"Hydrogen Aviation Development Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1899","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1899/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1899/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1899/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1899/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1899/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":2,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1899?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12048","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9610","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1902/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1902","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/1902/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1902/subjects?format=json","title":"Hydrogen Aviation Strategy Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1902","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1902/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1902/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1902/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1902/actions?format=json","latestAction.actionDate":"2023-06-08","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1902/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":2,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1902?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12049","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9621","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1623/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1623","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1623/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1623/committees?format=json","type":"S","title":"Fort Gordon Child Development Center Expansion Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1623","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1623/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1623/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1623/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1623/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1623/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1623?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12050","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9623","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1621/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1621","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/s/1621/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1621/subjects?format=json","type":"S","title":"Military Mental Health Professionals Support Act of 2023","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1621","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1621/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1621/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1621/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1621/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1621/relatedbills?format=json","latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1621?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12051","label":"SPONSORED","start":{"id":"3950","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/o000174_200.jpg","startYear":"2021","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Ossoff, Jon","state":"Georgia","url":"https://api.congress.gov/v3/member/O000174?format=json","bioguideId":"O000174"}},"end":{"id":"9647","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1347/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Ossoff","sponsors.0.isByRequest":"N","request.billNumber":"1347","sponsors.0.url":"https://api.congress.gov/v3/member/O000174?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/s/1347/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1347/committees?format=json","type":"S","title":"Military Families Mental Health Services Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"D","number":"1347","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1347/cosponsors?format=json","sponsors.0.bioguideId":"O000174","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1347/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1347/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1347/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1347/relatedbills?format=json","sponsors.0.fullName":"Sen. Ossoff, Jon [D-GA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"GA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1347?format=json","sponsors.0.firstName":"Jon","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12140","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1117","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2939/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:28:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"2939","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2939/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2939/subjects?format=json","policyArea.name":"Health","type":"S","title":"Pharmacy Access Oversight and Reporting Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"2939","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-09-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2939/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2939/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2939/actions?format=json","latestAction.actionDate":"2023-09-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2939/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2939?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:28:24Z"}}} +{"type":"relationship","id":"12141","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1150","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2450/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"2450","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2450/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2450/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"S","title":"A bill to improve coordination between the Department of Energy and the National Science Foundation on activities carried out under the National Quantum Initiative Program, and for other purposes.","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2450","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-07-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2450/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2450/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2450/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2450/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-20","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2450/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-07-20","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2450?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12142","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1181","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1946/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1946","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1946/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1946/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Dependable Classification of Airports Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1946","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1946/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1946/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1946/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1946?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12143","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1182","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1944/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1944","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/1944/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1944/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"CERTS Tax Exemption Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"1944","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1944/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1944/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1944/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1944/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1944/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-06-13","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1944?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:21Z"}}} +{"type":"relationship","id":"12144","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1225","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1382/text?format=json","updateDate":"2024-11-09T01:57:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1382","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1382/subjects?format=json","policyArea.name":"Law","type":"S","title":"Protecting Our Supreme Court Justices Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1382","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2023-04-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1382/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1382/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1382/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1382?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:39Z"}}} +{"type":"relationship","id":"12145","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1359","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/103/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"103","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/103/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/103/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"Safeguarding and Securing the Open Internet; Restoring Internet Freedom\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"103","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-07-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/103/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/103/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/103/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/103/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-23","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/103?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12146","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1388","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S5347)","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"12147","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1429","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1382/text?format=json","updateDate":"2024-11-09T01:57:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1382","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1382/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1382/subjects?format=json","policyArea.name":"Law","type":"S","title":"Protecting Our Supreme Court Justices Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1382","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1382/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1382/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1382/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":10,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1382?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:39Z"}}} +{"type":"relationship","id":"12148","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1590","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/442/text?format=json","relatedBills.count":1,"updateDate":"2024-12-06T17:13:10Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"442","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5262; text: CR S5259)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/442/subjects?format=json","policyArea.name":"Arts, Culture, Religion","type":"SRES","title":"A resolution designating October 2023 as \"National Country Music Month\".","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5262; text: CR S5259)","sponsors.0.party":"R","number":"442","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-10-31","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/442/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/442/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/442/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/442/actions?format=json","latestAction.actionDate":"2023-10-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/442/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-10-31","cosponsors.count":1,"subjects.count":5,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/442?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-12-06T17:13:10Z"}}} +{"type":"relationship","id":"12149","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1595","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/437/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:46Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"437","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/437/subjects?format=json","policyArea.name":"Education","type":"SRES","title":"A resolution condemning antisemitism at institutions of higher education in the United States and encouraging college and university leaders, administrators, and faculty to speak out against antisemitism.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","sponsors.0.party":"R","number":"437","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/437/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/437/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/437/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/437/actions?format=json","latestAction.actionDate":"2023-10-26","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/437/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-10-26","cosponsors.count":3,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/437?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-04-17T23:51:46Z"}}} +{"type":"relationship","id":"12150","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"1801","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/331/text?format=json","relatedBills.count":2,"updateDate":"2025-03-15T10:56:29Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"331","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/s/331/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/331/subjects?format=json","policyArea.name":"Economics and Public Finance","type":"S","title":"A bill to make 1 percent across-the-board rescissions in non-defense, non-homeland-security, and non-veterans-affairs discretionary spending for each of fiscal years 2024 and 2025.","latestAction.text":"Read twice and referred to the Committee on Appropriations.","sponsors.0.party":"R","number":"331","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/331/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/331/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/331/actions?format=json","latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/331/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/331?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-03-15T10:56:29Z"}}} +{"type":"relationship","id":"12151","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9317","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blackburn","cboCostEstimates.0.pubDate":"2022-09-26T21:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 629.","policyArea.name":"Crime and Law Enforcement","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"3817","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3817/cosponsors?format=json","sponsors.0.bioguideId":"B001243","actions.url":"https://api.congress.gov/v3/bill/118/s/3817/actions?format=json","latestAction.actionDate":"2024-02-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3817/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":3,"cosponsors.count":7,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3817/text?format=json","updateDate":"2024-11-09T01:57:45Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"3817","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3817/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3817/committees?format=json","title":"Safer Prisons Act of 2024","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58518","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-12-12","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3817/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3817/summaries?format=json","cboCostEstimates.0.title":"S. 3817, TORNADO Act","introducedDate":"2024-02-27","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3817?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:45Z"}}} +{"type":"relationship","id":"12152","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9425","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Blackburn","cboCostEstimates.0.pubDate":"2024-12-06T19:16:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Arts, Culture, Religion","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"4212","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4212/cosponsors?format=json","amendments.count":1,"sponsors.0.bioguideId":"B001243","actions.url":"https://api.congress.gov/v3/bill/118/s/4212/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4212/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-10","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","amendments.url":"https://api.congress.gov/v3/bill/118/s/4212/amendments?format=json","titles.count":5,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4212/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"4212","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4212/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4212/subjects?format=json","title":"American Music Tourism Act of 2024","cboCostEstimates.0.description":"As reported by the Senate Committee on Commerce, Science, and Transportation on September 17, 2024\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/61076","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Neely","latestAction_actionDate":"2022-05-12","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4212/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4212/summaries?format=json","cboCostEstimates.0.title":"S. 4212, American Music Tourism Act of 2024","latestAction.actionTime":"15:02:37","introducedDate":"2024-04-30","subjects.count":6,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4212?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:57:03Z"}}} +{"type":"relationship","id":"12154","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9737","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/103/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"103","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/103/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/103/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"Safeguarding and Securing the Open Internet; Restoring Internet Freedom\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"103","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/103/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/103/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/103/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/103/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-23","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/103/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-23","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/103?format=json","sponsors.0.district":6,"sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12155","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9810","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S2283-2284)","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2022-05-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z"}}} +{"type":"relationship","id":"12156","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9816","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1382/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:57:39Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"1382","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Pursuant to the provisions of H. Res. 1531, H. Res. 1382 is considered passed House. (text: CR H10074)","subjects.url":"https://api.congress.gov/v3/bill/118/s/1382/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1382/committees?format=json","policyArea.name":"Law","type":"S","title":"Protecting Our Supreme Court Justices Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1382","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1382/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1382/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1382/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1382/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hres/1382/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","latestAction.actionTime":"12:38:18","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/1382?format=json","sponsors.0.district":5,"sponsors.0.firstName":"Marsha","updateDateIncludingText":"2024-11-09T01:57:39Z","latestAction_actionTime":"12:38:18"}}} +{"type":"relationship","id":"12157","label":"SPONSORED","start":{"id":"4018","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:12Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001243_200.jpg","startYear":"2003","partyName":"Republican","name":"Blackburn, Marsha","attribution":"Image courtesy of the Member","state":"Tennessee","endYear":"2019","url":"https://api.congress.gov/v3/member/B001243?format=json","bioguideId":"B001243"}},"end":{"id":"9940","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/38/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:15:30Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Blackburn","sponsors.0.isByRequest":"N","request.billNumber":"38","sponsors.0.url":"https://api.congress.gov/v3/member/B001243?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sconres/38/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/38/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"SCONRES","title":"A concurrent resolution expressing the sense of Congress that Operation Legend was successful in reducing and combating violent crime in the largest cities of the United States and that a future presidential administration committed to enforcing and maintaining law and order should consider implementing a similar policy.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S5347)","sponsors.0.party":"R","number":"38","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-01-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sconres/38/cosponsors?format=json","sponsors.0.bioguideId":"B001243","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/38/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sconres/38/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/38/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/38/relatedbills?format=json","sponsors.0.fullName":"Sen. Blackburn, Marsha [R-TN]","titles.count":2,"introducedDate":"2024-07-24","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TN","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/38?format=json","sponsors.0.firstName":"Marsha","updateDateIncludingText":"2025-01-14T17:15:30Z","latestAction_actionTime":"21:15:00"}}} +{"type":"relationship","id":"12183","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"1119","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2943/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"2943","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2943/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2943/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Addressing Digestive Distress in Stomachs of Our Youth Act","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2943","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-09-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2943/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2943/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2943/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2943/actions?format=json","latestAction.actionDate":"2023-09-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2943/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","titles.count":3,"introducedDate":"2023-09-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2943?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"12184","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"9298","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5087/text?format=json","updateDate":"2024-11-04T14:38:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"5087","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Became Public Law No: 117-359.","policyArea.name":"Housing and Community Development","committees.url":"https://api.congress.gov/v3/bill/118/s/5087/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5087/subjects?format=json","type":"S","title":"Tenants’ Right to Organize Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"5087","cosponsors.countIncludingWithdrawnCosponsors":8,"request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-01-05","summaries.count":4,"amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5087/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5087/titles?format=json","laws.0.number":"117-359","summaries.url":"https://api.congress.gov/v3/bill/117/s/5087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5087/actions?format=json","latestAction.actionDate":"2024-09-18","textVersions.count":1,"sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","amendments.url":"https://api.congress.gov/v3/bill/117/s/5087/amendments?format=json","titles.count":3,"introducedDate":"2024-09-18","cosponsors.count":8,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5087?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-11-04T14:38:58Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"12185","label":"SPONSORED","start":{"id":"3986","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:17Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/f000479_200.jpg","startYear":"2023","partyName":"Democratic","name":"Fetterman, John","attribution":"Official U.S. Senate Photo","state":"Pennsylvania","url":"https://api.congress.gov/v3/member/F000479?format=json","bioguideId":"F000479"}},"end":{"id":"9654","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1044/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Fetterman","sponsors.0.isByRequest":"N","request.billNumber":"1044","sponsors.0.url":"https://api.congress.gov/v3/member/F000479?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","subjects.url":"https://api.congress.gov/v3/bill/118/s/1044/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1044/committees?format=json","title":"Railway Accountability Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"1044","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-03-25","sponsors.0.middleName":"K.","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1044/cosponsors?format=json","sponsors.0.bioguideId":"F000479","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1044/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1044/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1044/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-29","sponsors.0.fullName":"Sen. Fetterman, John [D-PA]","titles.count":3,"introducedDate":"2023-03-29","cosponsors.count":3,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"PA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1044?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12186","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"1121","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2708/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"2708","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2708/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2708/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"DETOUR Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"2708","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-07-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2708/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2708/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2708/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":4,"introducedDate":"2023-07-27","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2708?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12187","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"1269","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/790/text?format=json","updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"790","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/790/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/790/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"ALIGN Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"790","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/790/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/790/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/790/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/790/actions?format=json","latestAction.actionDate":"2023-03-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/790?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"12188","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"1881","labels":["Bill"],"properties":{"congress":118,"sponsors.0.lastName":"Warner","cboCostEstimates.0.pubDate":"2023-06-09T19:59:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Foreign Relations. (text: CR S140)","policyArea.name":"Arts, Culture, Religion","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 120.","sponsors.0.party":"D","number":"92","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/92/cosponsors?format=json","sponsors.0.bioguideId":"W000805","actions.url":"https://api.congress.gov/v3/bill/118/s/92/actions?format=json","latestAction.actionDate":"2023-07-11","textVersions.count":2,"sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-48","textVersions.url":"https://api.congress.gov/v3/bill/118/s/92/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"92","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/92/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/92/committees?format=json","title":"A bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the \"Rick Boucher Amphitheater\".","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Energy and Natural Resources on May 17, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59261","request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2025-01-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/48?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/92/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/92/summaries?format=json","cboCostEstimates.0.title":"S. 92, a bill to designate the outdoor amphitheater at the Blue Ridge Music Center in Galax, Virginia, as the “Rick Boucher Amphitheater”","introducedDate":"2023-01-26","subjects.count":8,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/92?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"12189","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"9355","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3441/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"3441","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs Subcommittee on Housing, Transportation, and Community Development. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3441/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3441/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Terrorist Financing Prevention Act of 2023","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"D","number":"3441","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3441/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3441/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3441/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3441/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3441/relatedbills?format=json","latestAction.actionDate":"2024-02-08","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":3,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3441?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2025-01-14T18:24:11Z"}}} +{"type":"relationship","id":"12190","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"9438","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3977/text?format=json","relatedBills.count":1,"updateDate":"2024-07-31T18:48:54Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"3977","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3977/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3977/committees?format=json","policyArea.name":"Health","type":"S","title":"Medicare Orthotics and Prosthetics Patient-Centered Care Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"3977","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3977/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3977/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3977/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3977/actions?format=json","latestAction.actionDate":"2024-03-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3977/relatedbills?format=json","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2024-03-19","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3977?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-31T18:48:54Z"}}} +{"type":"relationship","id":"12191","label":"SPONSORED","start":{"id":"3924","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/w000805_200.jpg","startYear":"2009","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Warner, Mark R.","state":"Virginia","url":"https://api.congress.gov/v3/member/W000805?format=json","bioguideId":"W000805"}},"end":{"id":"9557","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2462/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:20:51Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Warner","sponsors.0.isByRequest":"N","request.billNumber":"2462","sponsors.0.url":"https://api.congress.gov/v3/member/W000805?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2462/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2462/committees?format=json","policyArea.name":"Taxation","type":"S","title":"Motorsports Fairness and Permanency Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"2462","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"R.","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2462/cosponsors?format=json","sponsors.0.bioguideId":"W000805","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2462/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2462/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2462/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2462/relatedbills?format=json","latestAction.actionDate":"2023-07-25","sponsors.0.fullName":"Sen. Warner, Mark R. [D-VA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"VA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2462?format=json","sponsors.0.firstName":"Mark","updateDateIncludingText":"2024-07-24T15:20:51Z"}}} +{"type":"relationship","id":"12442","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"1139","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2675/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"2675","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/2675/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2675/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"Backcountry Aviation Protection Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2675","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2023-07-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2675/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2675/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2675/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2675/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2675/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2675?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12443","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"1935","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/27/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"27","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/27/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/27/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"27","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/27/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/27/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/27/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/27/actions?format=json","latestAction.actionDate":"2023-05-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/27/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/27?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12444","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9387","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3719/text?format=json","updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"3719","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Committee on Energy and Natural Resources. Hearings held.","policyArea.name":"Environmental Protection","committees.url":"https://api.congress.gov/v3/bill/118/s/3719/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3719/subjects?format=json","type":"S","title":"Sound Science for Farmers Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"3719","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-07-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3719/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3719/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3719/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3719/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-02-01","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2024-02-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3719?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"12445","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9452","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2675/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"2675","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Committee on Small Business and Entrepreneurship. Hearings held.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/2675/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2675/subjects?format=json","title":"Backcountry Aviation Protection Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"2675","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","latestAction_actionDate":"2022-03-30","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2675/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2675/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2675/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2675/actions?format=json","latestAction.actionDate":"2023-07-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2675/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2023-07-27","cosponsors.count":2,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2675?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12446","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9458","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3710/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"3710","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Finance and Financial Sector","subjects.url":"https://api.congress.gov/v3/bill/118/s/3710/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3710/committees?format=json","type":"S","title":"Regulation A+ Improvement Act of 2024","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"3710","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2022-02-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3710/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3710/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3710/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3710/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3710/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3710?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"12447","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9597","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1919/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"1919","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1919/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1919/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Chinese Currency Accountability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1919","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1919/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1919/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1919/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1919/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1919/relatedbills?format=json","latestAction.actionDate":"2023-06-08","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"introducedDate":"2023-06-08","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1919?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"12448","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9639","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/s/422/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"422","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Became Public Law No: 117-10.","subjects.url":"https://api.congress.gov/v3/bill/118/s/422/subjects?format=json","policyArea.name":"Immigration","committees.url":"https://api.congress.gov/v3/bill/118/s/422/committees?format=json","type":"S","title":"Build the Wall Now Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"422","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/422/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/422/titles?format=json","laws.0.number":"117-10","summaries.url":"https://api.congress.gov/v3/bill/118/s/422/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/422/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/422/relatedbills?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":3,"cosponsors.count":9,"introducedDate":"2023-02-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/422?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"12449","label":"SPONSORED","start":{"id":"4008","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001305_200.jpg","startYear":"2017","name":"Budd, Ted","partyName":"Republican","attribution":"Official U.S. Senate Photo","state":"North Carolina","endYear":"2023","url":"https://api.congress.gov/v3/member/B001305?format=json","bioguideId":"B001305"}},"end":{"id":"9949","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/27/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Budd","sponsors.0.isByRequest":"N","request.billNumber":"27","sponsors.0.url":"https://api.congress.gov/v3/member/B001305?format=json","latestAction_text":"Referred to the House Committee on Oversight and Reform.","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/27/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/27/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Office of Federal Contract Compliance Programs of the Department of Labor relating to \"Rescission of Implementing Legal Requirements Regarding the Equal Opportunity Clause's Religious Exemption Rule\".","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"27","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-01-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/27/cosponsors?format=json","sponsors.0.bioguideId":"B001305","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/27/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/27/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/27/actions?format=json","latestAction.actionDate":"2023-05-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/27/relatedbills?format=json","sponsors.0.fullName":"Sen. Budd, Ted [R-NC]","titles.count":2,"introducedDate":"2023-05-11","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"NC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/27?format=json","sponsors.0.district":16,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12450","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"1140","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2460/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","sponsors.0.isByRequest":"N","request.billNumber":"2460","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/2460/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2460/subjects?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Training for School Food Service Workers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2460","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2460/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2460/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2460/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2460/actions?format=json","latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2460/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2460?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"12451","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"1582","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/452/text?format=json","relatedBills.count":1,"updateDate":"2024-12-19T17:37:33Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Murray","sponsors.0.isByRequest":"N","request.billNumber":"452","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5366; text: CR S5362-5363)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/452/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SRES","title":"A resolution designating October 30, 2023, as a national day of remembrance for the workers of the nuclear weapons program of the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5366; text: CR S5362-5363)","sponsors.0.party":"D","number":"452","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","latestAction_actionDate":"2023-11-06","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/452/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/452/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/452/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/452/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-06","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/452/relatedbills?format=json","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":2,"introducedDate":"2023-11-06","cosponsors.count":12,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/452?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2024-12-19T17:37:33Z"}}} +{"type":"relationship","id":"12452","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9326","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2022-11-09T16:01:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 617.","policyArea.name":"Labor and Employment","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"4902","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4902/cosponsors?format=json","sponsors.0.bioguideId":"M001111","actions.url":"https://api.congress.gov/v3/bill/118/s/4902/actions?format=json","latestAction.actionDate":"2024-07-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4902/relatedbills?format=json","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":4,"cosponsors.count":22,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-239","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4902/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4902","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4902/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4902/subjects?format=json","title":"BE HEARD in the Workplace Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Government Affairs on September 28, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":22,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58740","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/239?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4902/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4902/summaries?format=json","cboCostEstimates.0.title":"S. 4902, Invent Here, Make Here for Homeland Security Act","introducedDate":"2024-07-31","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4902?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12453","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9462","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2022-05-12T20:35:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 285.","policyArea.name":"Families","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"1354","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1354/cosponsors?format=json","sponsors.0.bioguideId":"M001111","actions.url":"https://api.congress.gov/v3/bill/118/s/1354/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1354/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"cosponsors.count":42,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-84","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1354/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"1354","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1354/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1354/subjects?format=json","title":"Child Care for Working Families Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Energy and Natural Resources on February 28, 2022\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/58108","cosponsors.countIncludingWithdrawnCosponsors":42,"request.format":"json","latestAction_actionDate":"2022-02-28","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/84?format=json","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1354/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1354/summaries?format=json","cboCostEstimates.0.title":"S. 1354, Alaska Trails Act","introducedDate":"2023-04-27","subjects.count":33,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1354?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12454","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9490","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1995/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","cboCostEstimates.0.pubDate":"2021-09-22T12:55:00Z","sponsors.0.isByRequest":"N","request.billNumber":"1995","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 218.","committees.url":"https://api.congress.gov/v3/bill/118/s/1995/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1995/subjects?format=json","policyArea.name":"Health","type":"S","title":"Public Health Infrastructure Saves Lives Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions. (Sponsor introductory remarks on measure: CR S2100)","sponsors.0.party":"D","number":"1995","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on June 16, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57483","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2021-12-17","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1995/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1995/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1995/summaries?format=json","cboCostEstimates.0.title":"S. 1995, Sport Fish Restoration and Recreational Boating Safety Act of 2021","actions.url":"https://api.congress.gov/v3/bill/118/s/1995/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-06-14","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1995?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12455","label":"SPONSORED","start":{"id":"3952","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg","startYear":"1993","name":"Murray, Patty","partyName":"Democratic","attribution":"Official U.S. Senate Photo","state":"Washington","url":"https://api.congress.gov/v3/member/M001111?format=json","bioguideId":"M001111"}},"end":{"id":"9559","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2460/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Murray","sponsors.0.isByRequest":"N","request.billNumber":"2460","sponsors.0.url":"https://api.congress.gov/v3/member/M001111?format=json","latestAction_text":"Read twice and referred to the Committee on Rules and Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2460/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2460/committees?format=json","policyArea.name":"Agriculture and Food","type":"S","title":"Improving Training for School Food Service Workers Act of 2023","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"2460","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-07-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2460/cosponsors?format=json","sponsors.0.bioguideId":"M001111","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2460/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2460/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2460/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2460/relatedbills?format=json","sponsors.0.fullName":"Sen. Murray, Patty [D-WA]","titles.count":3,"introducedDate":"2023-07-25","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2460?format=json","sponsors.0.firstName":"Patty","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"12774","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1160","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2234/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:07:58Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"2234","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","committees.url":"https://api.congress.gov/v3/bill/118/s/2234/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2234/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"S","title":"Deterring Egregious State Infiltration of Schools’ Training Act","latestAction.text":"Read twice and referred to the Committee on Armed Services.","sponsors.0.party":"R","number":"2234","request.format":"json","latestAction_actionDate":"2023-07-11","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2234/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2234/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2234/actions?format=json","latestAction.actionDate":"2023-07-11","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2234/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-07-11","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2234?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:07:58Z"}}} +{"type":"relationship","id":"12775","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1251","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1083/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1083","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1083/committees?format=json","policyArea.name":"Education","type":"S","title":"School Security Enhancement Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1083","request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1083/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1083/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1083?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12776","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1307","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/181/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"181","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/181/subjects?format=json","policyArea.name":"Health","type":"S","title":"No Vaccine Passports Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"181","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/181/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/181/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":22,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/181?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12777","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1317","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/169/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"169","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/169/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/169/subjects?format=json","policyArea.name":"Health","type":"S","title":"Parental Rights Protection Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"169","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/169/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/169/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/169/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":11,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/169?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12778","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1319","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/167/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:59Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"167","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/167/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/167/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"No Vaccine Mandates Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"167","request.format":"json","latestAction_actionDate":"2023-01-31","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/167/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/167/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/167/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/167/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/167?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:59Z"}}} +{"type":"relationship","id":"12779","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1325","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/181/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"181","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Placed on the Union Calendar, Calendar No. 715.","committees.url":"https://api.congress.gov/v3/bill/118/s/181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/181/subjects?format=json","policyArea.name":"Health","title":"No Vaccine Passports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"181","request.format":"json","latestAction_actionDate":"2024-12-16","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/181/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/181/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":22,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hjres/181?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12780","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1357","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2024-07-30","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-07-30","cosponsors.count":29,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/104?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12781","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1514","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/360/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"360","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/s/360/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/360/subjects?format=json","policyArea.name":"Education","type":"S","title":"Stop Higher Education Espionage and Theft Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"360","request.format":"json","latestAction_actionDate":"2023-05-12","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/360/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/360/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/360?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"12782","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1537","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2023-02-09","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-07-30","cosponsors.count":29,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/104?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z","latestAction_actionTime":"11:27:37"}}} +{"type":"relationship","id":"12783","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1594","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/438/text?format=json","updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"438","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S5219; text: CR S5218)","subjects.url":"https://api.congress.gov/v3/bill/118/s/438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/438/committees?format=json","policyArea.name":"Energy","title":"Natural Gas Export Expansion Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"438","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2023-10-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/438/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/438/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/438?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"12784","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1610","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/181/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"181","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Resolution agreed to in Senate without amendment and with a preamble by Voice Vote. (consideration: CR S1539; text: 4/27/2023 CR S1423)","committees.url":"https://api.congress.gov/v3/bill/118/s/181/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/181/subjects?format=json","policyArea.name":"Health","title":"No Vaccine Passports Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"181","request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/181/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/181/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/181/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/181/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-01-31","subjects.count":22,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/181?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12785","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1807","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1083/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1083","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1083/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1083/committees?format=json","policyArea.name":"Education","title":"School Security Enhancement Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1083","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1083/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1083/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1083/actions?format=json","latestAction.actionDate":"2023-03-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1083/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1083?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12786","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1808","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1081/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1081","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1081/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1081/subjects?format=json","policyArea.name":"Education","title":"Protect Our Children's Schools Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1081","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1081/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1081/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1081/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1081?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12787","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1860","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}}} +{"type":"relationship","id":"12788","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1866","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/370/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"370","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/370/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/370/committees?format=json","policyArea.name":"Immigration","title":"Protecting America From Spies Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"370","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/370/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/370/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/370/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/370?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:48Z"}}} +{"type":"relationship","id":"12789","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1869","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/369/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"369","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/369/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/369/committees?format=json","policyArea.name":"Foreign Trade and International Finance","type":"S","title":"Protecting Military Installations and Ranges Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"369","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/369/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/369/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/369/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/369/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/369/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":6,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/369?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"12790","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1874","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/360/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"360","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Appropriations.","committees.url":"https://api.congress.gov/v3/bill/118/s/360/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/360/subjects?format=json","policyArea.name":"Education","type":"S","title":"Stop Higher Education Espionage and Theft Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"360","request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/360/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/360/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/360/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/360/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/360?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"12791","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1883","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2023-04-11T20:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Energy and Natural Resources.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 252.","sponsors.0.party":"R","number":"90","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/90/cosponsors?format=json","sponsors.0.bioguideId":"C001098","actions.url":"https://api.congress.gov/v3/bill/118/s/90/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/90/relatedbills?format=json","textVersions.count":2,"latestAction.actionDate":"2023-11-28","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":4,"cosponsors.count":2,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-114","textVersions.url":"https://api.congress.gov/v3/bill/118/s/90/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"90","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/90/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/90/committees?format=json","title":"Informing Consumers about Smart Devices Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on March 22, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":2,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59063","request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/114?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/90/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/90/summaries?format=json","cboCostEstimates.0.title":"S. 90, Informing Consumers About Smart Devices Act","introducedDate":"2023-01-25","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/90?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12792","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1917","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/64/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"64","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the House Committee on Financial Services.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/64/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/64/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"The Infrastructure Investment and Jobs Act: Prevention and Elimination of Digital Discrimination\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"64","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2025-02-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/64/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/64/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/64/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/64/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/64/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/64?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12793","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"1977","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/164/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"164","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Motion to discharge the Committee on Rules filed by Mrs. Luna. Assigned to the Discharge Calendar, Calendar No. 1.","subjects.url":"https://api.congress.gov/v3/bill/118/s/164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/164/committees?format=json","policyArea.name":"Health","type":"S","title":"Doss's Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"164","request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/164/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/164/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/164/actions?format=json","latestAction.actionDate":"2023-01-31","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":5,"introducedDate":"2023-01-31","subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hres/164?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12794","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9311","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2024-08-12T18:40:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-347.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Became Public Law No: 118-201.","sponsors.0.party":"R","number":"3946","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3946/cosponsors?format=json","sponsors.0.bioguideId":"C001098","laws.0.number":"118-201","actions.url":"https://api.congress.gov/v3/bill/118/s/3946/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3946/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-12-23","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","amendments.url":"https://api.congress.gov/v3/bill/117/s/3946/amendments?format=json","titles.count":2,"cosponsors.count":1,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3946/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"3946","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3946/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3946/committees?format=json","title":"A bill to designate the facility of the United States Postal Service located at 1106 Main Street in Bastrop, Texas, as the \"Sergeant Major Billy D. Waugh Post Office\".","cboCostEstimates.0.description":"As reported by the Senate Committee on Homeland Security and Governmental Affairs on August 1, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60622","request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":3,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3946/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/3946/summaries?format=json","cboCostEstimates.0.title":"S. 3946, a bill to designate the facility of the United States Postal Service located at 1106 Main Street in Bastrop, Texas, as the “Sergeant Major Billy D. Waugh Post Office”","introducedDate":"2024-03-14","subjects.count":5,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3946?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"12795","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9521","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2969/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"2969","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/2969/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2969/committees?format=json","type":"S","title":"A bill to ensure that United States diplomats and officials of the U.S. Section of the International Boundary and Water Commission are able to advance efforts seeking compliance by the United Mexican States with the 1944 Treaty on Utilization of Waters of the Colorado and Tijuana Rivers and of the Rio Grande.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2969","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/2969/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2969/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2969/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2969/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2969/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2023-09-28","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2969?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"12796","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9579","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Cruz","cboCostEstimates.0.pubDate":"2023-06-07T22:09:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Committee on Veterans' Affairs. Hearings held. Hearings printed: S.Hrg. 117-231.","policyArea.name":"Science, Technology, Communications","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 286.","sponsors.0.party":"R","number":"1280","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1280/cosponsors?format=json","sponsors.0.bioguideId":"C001098","actions.url":"https://api.congress.gov/v3/bill/118/s/1280/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-12-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1280/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":6,"cosponsors.count":5,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/1280/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"1280","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1280/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1280/committees?format=json","title":"TRANQ Research Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Commerce, Science, and Transportation on May 10, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":5,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59250","request.format":"json","latestAction_actionDate":"2021-06-23","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1280/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1280/summaries?format=json","cboCostEstimates.0.title":"S. 1280, TRANQ Research Act of 2023","introducedDate":"2023-04-25","subjects.count":8,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1280?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12797","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9635","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1363/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"1363","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1363/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1363/committees?format=json","policyArea.name":"Finance and Financial Sector","title":"Repeal CFPB Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1363","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2021-04-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1363/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1363/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1363/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1363/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1363/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":4,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1363?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"12798","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9641","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/164/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"164","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Became Public Law No: 117-8.","subjects.url":"https://api.congress.gov/v3/bill/118/s/164/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/164/committees?format=json","policyArea.name":"Health","title":"Doss's Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"164","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-04-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/164/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/164/titles?format=json","laws.0.number":"117-8","summaries.url":"https://api.congress.gov/v3/bill/118/s/164/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/164/actions?format=json","latestAction.actionDate":"2023-01-31","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/164/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":5,"introducedDate":"2023-01-31","cosponsors.count":1,"request.contentType":"application/json","subjects.count":12,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/164?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"12799","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9698","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/438/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"438","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/438/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/438/committees?format=json","policyArea.name":"Energy","title":"Natural Gas Export Expansion Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"438","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/438/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/438/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/438/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/438/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/438/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/438?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"12800","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9736","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/104/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"104","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/104/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/104/subjects?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to \"Corporate Average Fuel Economy Standards for Passenger Cars and Light Trucks for Model Years 2027 and Beyond and Fuel Efficiency Standards for Heavy-Duty Pickup Trucks and Vans for Model Years 2030 and Beyond\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"104","cosponsors.countIncludingWithdrawnCosponsors":29,"request.format":"json","latestAction_actionDate":"2022-12-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/104/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/104/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hjres/104/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/104/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-07-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/104/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"cosponsors.count":29,"introducedDate":"2024-07-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/104?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12801","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9763","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/64/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"64","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Science, Technology, Communications","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/64/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/64/committees?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Communications Commission relating to \"The Infrastructure Investment and Jobs Act: Prevention and Elimination of Digital Discrimination\".","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"64","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/64/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/64/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/64/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/64/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/64/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/64?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12802","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9767","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/58/text?format=json","relatedBills.count":1,"updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":12,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"58","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/58/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/58/committees?format=json","policyArea.name":"Energy","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Energy relating to \"Energy Conservation Program: Energy Conservation Standards for Consumer Furnaces\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"58","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2022-08-04","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/58/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/58/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/58/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/58/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/58/relatedbills?format=json","latestAction.actionDate":"2024-05-22","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"13:28:58","titles.count":2,"cosponsors.count":36,"introducedDate":"2024-02-01","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/58?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-03T20:58:56Z"}}} +{"type":"relationship","id":"12803","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"9876","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Ordered to be Reported in the Nature of a Substitute (Amended) by Voice Vote.","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-12-10","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}}} +{"type":"relationship","id":"12804","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"10008","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/376/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"376","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6593; text: CR S6592)","subjects.url":"https://api.congress.gov/v3/bill/118/s/376/subjects?format=json","policyArea.name":"Government Operations and Politics","committees.url":"https://api.congress.gov/v3/bill/118/s/376/committees?format=json","type":"S","title":"A bill to designate the area between the intersections of 16th Street, Northwest and Fuller Street, Northwest and 16th Street, Northwest and Euclid Street, Northwest in Washington, District of Columbia, as \"Oswaldo Paya Way\".","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"376","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","latestAction_actionDate":"2021-09-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/376/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/376/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/376/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/376/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-06-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/376/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","latestAction.actionTime":"12:17:26","titles.count":2,"introducedDate":"2023-02-09","cosponsors.count":5,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/376?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2025-01-14T19:10:49Z"}}} +{"type":"relationship","id":"12805","label":"SPONSORED","start":{"id":"3993","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001098_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Cruz, Ted","state":"Texas","url":"https://api.congress.gov/v3/member/C001098?format=json","bioguideId":"C001098"}},"end":{"id":"10013","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/370/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Cruz","sponsors.0.isByRequest":"N","request.billNumber":"370","sponsors.0.url":"https://api.congress.gov/v3/member/C001098?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/370/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/370/subjects?format=json","policyArea.name":"Immigration","title":"Protecting America From Spies Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"370","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2021-09-20","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/370/cosponsors?format=json","sponsors.0.bioguideId":"C001098","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/370/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/370/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/370/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/370/relatedbills?format=json","sponsors.0.fullName":"Sen. Cruz, Ted [R-TX]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":10,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/370?format=json","sponsors.0.firstName":"Ted","updateDateIncludingText":"2024-07-24T15:23:48Z"}}} +{"type":"relationship","id":"12826","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1163","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2229/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"2229","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/2229/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2229/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Retroactive Foreign Agents Registration Act","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"2229","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-07-11","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2229/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2229/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2229/actions?format=json","latestAction.actionDate":"2023-07-11","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2229/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-07-11","cosponsors.count":4,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2229?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"12827","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1175","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-04-05T16:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Held at the desk.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"829","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/829/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/829/actions?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/829/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":5,"cosponsors.count":7,"request.contentType":"application/json","latestAction_actionTime":"09:25:18","committeeReports.0.citation":"S. Rept. 118-13","textVersions.url":"https://api.congress.gov/v3/bill/118/s/829/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"829","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/829/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/829/subjects?format=json","title":"Disclosing Foreign Influence in Lobbying Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":7,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59044","request.format":"json","latestAction_actionDate":"2023-06-27","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/13?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/829/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/829/summaries?format=json","cboCostEstimates.0.title":"S. 829, Disclosing Foreign Influence in Lobbying Act","latestAction.actionTime":"09:25:18","introducedDate":"2023-03-16","subjects.count":4,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/829?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"12828","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1218","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1646/text?format=json","relatedBills.count":1,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1646","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1646/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1646/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Gang Activity Reporting Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1646","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1646/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1646/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1646/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1646/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1646/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1646?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"12829","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1247","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1087/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1087","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1087/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1087/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Think Tank Transparency Act","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1087","request.format":"json","latestAction_actionDate":"2023-03-30","summaries.count":1,"sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1087/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1087/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1087?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"12830","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1347","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Motion to discharge Senate Committee on Foreign Relations rejected by Yea-Nay Vote. 19 - 78. Record Vote Number: 293. (consideration: CR S6665)","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Prescription Pricing for the People Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2024-11-20","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":21,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"12831","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1563","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/692/text?format=json","relatedBills.count":2,"updateDate":"2024-11-25T20:28:41Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"692","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3720-3721)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/692/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution supporting the mission and goals of National Fentanyl Awareness Day in 2024, including increasing individual and public awareness of the impact of fake or counterfeit fentanyl pills on families and young people.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S3739; text: CR S3720-3721)","sponsors.0.party":"R","number":"692","cosponsors.countIncludingWithdrawnCosponsors":40,"request.format":"json","latestAction_actionDate":"2024-05-15","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/692/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/692/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/692/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/692/actions?format=json","latestAction.actionDate":"2024-05-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/692/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":2,"introducedDate":"2024-05-15","cosponsors.count":40,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/692?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-25T20:28:41Z"}}} +{"type":"relationship","id":"12832","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1800","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1087/text?format=json","updateDate":"2024-11-09T01:57:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1087","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1087/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1087/committees?format=json","policyArea.name":"International Affairs","title":"Think Tank Transparency Act","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"1087","request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1087/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1087/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1087/actions?format=json","latestAction.actionDate":"2023-03-30","textVersions.count":1,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-03-30","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/1087?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:56Z"}}} +{"type":"relationship","id":"12833","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"1845","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/625/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:23:32Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"625","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/625/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/625/subjects?format=json","policyArea.name":"Taxation","type":"S","title":"IRS Whistleblower Program Improvement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"625","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-18","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/625/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/625/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/625/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/625/actions?format=json","latestAction.actionDate":"2023-03-02","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/625/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-03-02","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/625?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-07-24T15:23:32Z"}}} +{"type":"relationship","id":"12834","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"2006","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":6,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Referred to the Committee on Foreign Relations. (text: CR S1584)","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Prescription Pricing for the People Act of 2023","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","cosponsors.countIncludingWithdrawnCosponsors":21,"request.format":"json","latestAction_actionDate":"2025-03-05","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-03-01","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"introducedDate":"2023-01-26","cosponsors.count":21,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"12835","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9499","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1364/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Grassley","sponsors.0.isByRequest":"N","request.billNumber":"1364","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","latestAction_text":"Committee on Indian Affairs. Hearings held. Hearings printed: S.Hrg. 117-115.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1364/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1364/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"Foreign Agents Disclosure and Registration Enhancement Act of 2023","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"1364","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"Mauze","latestAction_actionDate":"2021-11-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1364/cosponsors?format=json","sponsors.0.bioguideId":"G000386","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1364/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1364/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1364/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1364/relatedbills?format=json","sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":5,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1364?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"12836","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9724","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-03-31T18:52:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Commerce","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 19.","sponsors.0.party":"R","number":"113","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/113/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/113/actions?format=json","latestAction.actionDate":"2023-03-01","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/113/relatedbills?format=json","textVersions.count":2,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":4,"cosponsors.count":21,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/113/text?format=json","updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"113","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/113/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/113/committees?format=json","title":"Prescription Pricing for the People Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on February 9, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":21,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59035","request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":2,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/113/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/113/summaries?format=json","cboCostEstimates.0.title":"S. 113, Prescription Pricing for the People Act of 2023","introducedDate":"2023-01-26","subjects.count":11,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/113?format=json","sponsors.0.firstName":"Chuck","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"12837","label":"SPONSORED","start":{"id":"3985","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/g000386_200.jpg","startYear":"1975","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Grassley, Chuck","state":"Iowa","endYear":"1981","url":"https://api.congress.gov/v3/member/G000386?format=json","bioguideId":"G000386"}},"end":{"id":"9887","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Grassley","cboCostEstimates.0.pubDate":"2023-04-05T16:06:00Z","sponsors.0.isByRequest":"N","latestAction_text":"On motion to table the motion to reconsider Agreed to by the Yeas and Nays: 217 - 202 (Roll no. 397).","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"829","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/829/cosponsors?format=json","sponsors.0.bioguideId":"G000386","actions.url":"https://api.congress.gov/v3/bill/118/s/829/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/829/relatedbills?format=json","latestAction.actionDate":"2023-06-27","textVersions.count":3,"sponsors.0.fullName":"Sen. Grassley, Chuck [R-IA]","titles.count":5,"cosponsors.count":7,"request.contentType":"application/json","latestAction_actionTime":"15:19:08","committeeReports.0.citation":"S. Rept. 118-13","textVersions.url":"https://api.congress.gov/v3/bill/118/s/829/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"829","sponsors.0.url":"https://api.congress.gov/v3/member/G000386?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/829/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/829/committees?format=json","title":"Disclosing Foreign Influence in Lobbying Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 29, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59044","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-12-02","summaries.count":3,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/13?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/829/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/829/summaries?format=json","cboCostEstimates.0.title":"S. 829, Disclosing Foreign Influence in Lobbying Act","latestAction.actionTime":"09:25:18","introducedDate":"2023-03-16","subjects.count":4,"sponsors.0.state":"IA","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/829?format=json","sponsors.0.district":35,"sponsors.0.firstName":"Chuck","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"12940","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"1171","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2217/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"2217","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/2217/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2217/subjects?format=json","policyArea.name":"Education","type":"S","title":"IDEA Full Funding Act","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"D","number":"2217","cosponsors.countIncludingWithdrawnCosponsors":33,"request.format":"json","latestAction_actionDate":"2023-07-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2217/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2217/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2217/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-07-10","cosponsors.count":33,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/2217?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"12941","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"1186","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1727/text?format=json","updateDate":"2024-07-24T15:21:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1727","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Star Print ordered on the bill.","committees.url":"https://api.congress.gov/v3/bill/118/s/1727/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1727/subjects?format=json","policyArea.name":"Immigration","type":"S","title":"SECURE Act","latestAction.text":"Star Print ordered on the bill.","sponsors.0.party":"D","number":"1727","cosponsors.countIncludingWithdrawnCosponsors":28,"request.format":"json","latestAction_actionDate":"2023-06-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1727/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1727/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1727/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1727/actions?format=json","latestAction.actionDate":"2023-06-13","textVersions.count":1,"sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":4,"introducedDate":"2023-05-18","cosponsors.count":28,"subjects.count":12,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1727?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:21:56Z"}}} +{"type":"relationship","id":"12942","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"1270","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/789/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T06:06:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"789","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/789/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/789/subjects?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"United States Foreign Service Commemorative Coin Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"D","number":"789","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/789/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/789/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/789/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/789/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/789/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/789?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-16T06:06:27Z"}}} +{"type":"relationship","id":"12943","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"1410","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1618/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1618","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/s/1618/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1618/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Employee Equity Investment Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"1618","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1618/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1618/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1618/actions?format=json","latestAction.actionDate":"2023-05-16","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1618/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1618?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"12944","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"1868","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/366/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"366","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs. (Sponsor introductory remarks on measure: CR S545-546)","committees.url":"https://api.congress.gov/v3/bill/118/s/366/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/366/subjects?format=json","policyArea.name":"Government Operations and Politics","title":"Democracy in Design Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"366","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/366/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/366/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/366/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/366?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"12945","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9348","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Van Hollen","cboCostEstimates.0.pubDate":"2022-05-24T21:28:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 542.","policyArea.name":"Emergency Management","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"D","number":"977","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/977/cosponsors?format=json","sponsors.0.bioguideId":"V000128","actions.url":"https://api.congress.gov/v3/bill/118/s/977/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/977/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-27","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":4,"cosponsors.count":11,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/977/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"977","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/977/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/977/subjects?format=json","title":"FIRE STATION Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on the Judiciary on May 5, 2022\n","cosponsors.countIncludingWithdrawnCosponsors":11,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/58141","request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-10-18","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/977/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/977/summaries?format=json","cboCostEstimates.0.title":"S. 977, No Oil Producing and Exporting Cartels Act of 2021","introducedDate":"2023-03-27","subjects.count":8,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/977?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"12946","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9477","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3440/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"3440","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Environmental Protection","subjects.url":"https://api.congress.gov/v3/bill/118/s/3440/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3440/committees?format=json","title":"Farewell to Foam Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"3440","cosponsors.countIncludingWithdrawnCosponsors":10,"request.format":"json","latestAction_actionDate":"2022-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3440/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3440/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3440/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3440/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-12-07","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3440/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-12-07","cosponsors.count":10,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3440?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"12947","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9541","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2725/text?format=json","relatedBills.count":4,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"2725","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","subjects.url":"https://api.congress.gov/v3/bill/118/s/2725/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2725/committees?format=json","policyArea.name":"International Affairs","type":"S","title":"A bill to authorize the establishment of the US-ASEAN Center to support United States economic and cultural engagement with Southeast Asia.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"D","number":"2725","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-09-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2725/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2725/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/2725/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2725/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-05","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2725/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":2,"introducedDate":"2023-09-05","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2725?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"12948","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9626","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1618/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:16:56Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"1618","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1618/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1618/committees?format=json","policyArea.name":"Commerce","type":"S","title":"Employee Equity Investment Act of 2023","latestAction.text":"Read twice and referred to the Committee on Small Business and Entrepreneurship.","sponsors.0.party":"D","number":"1618","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-05-13","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1618/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1618/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/1618/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1618/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1618/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-16","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-05-16","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1618?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:16:56Z"}}} +{"type":"relationship","id":"12949","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9709","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/423/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:45Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"423","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/423/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/423/subjects?format=json","policyArea.name":"Health","title":"Easy Enrollment in Health Care Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"D","number":"423","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/423/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/423/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/423/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/423/actions?format=json","latestAction.actionDate":"2023-02-14","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/423/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"request.contentType":"application/json","subjects.count":17,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/423?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2024-07-24T15:23:45Z"}}} +{"type":"relationship","id":"12950","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9711","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/417/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:11:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"417","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Public Lands and Natural Resources","subjects.url":"https://api.congress.gov/v3/bill/118/s/417/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/417/committees?format=json","type":"S","title":"Francis G. Newlands Memorial Removal Act","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"D","number":"417","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/417/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/417/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/417/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/417/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/417/relatedbills?format=json","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","titles.count":3,"introducedDate":"2023-02-14","cosponsors.count":1,"subjects.count":7,"request.contentType":"application/json","sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/417?format=json","sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:11:28Z"}}} +{"type":"relationship","id":"12951","label":"SPONSORED","start":{"id":"3927","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:29Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000128_200.jpg","startYear":"2003","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Van Hollen, Chris","state":"Maryland","endYear":"2017","url":"https://api.congress.gov/v3/member/V000128?format=json","bioguideId":"V000128"}},"end":{"id":"9817","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/366/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Van Hollen","sponsors.0.isByRequest":"N","request.billNumber":"366","sponsors.0.url":"https://api.congress.gov/v3/member/V000128?format=json","latestAction_text":"Pursuant to the provisions of H. Res. 1531, H. Res. 366 is considered passed House. (text: CR H10074)","policyArea.name":"Government Operations and Politics","subjects.url":"https://api.congress.gov/v3/bill/118/s/366/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/366/committees?format=json","title":"Democracy in Design Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"D","number":"366","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-12-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/366/cosponsors?format=json","sponsors.0.bioguideId":"V000128","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/366/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/366/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/366/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/366/relatedbills?format=json","latestAction.actionDate":"2023-02-09","sponsors.0.fullName":"Sen. Van Hollen, Chris [D-MD]","latestAction.actionTime":"12:38:15","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"MD","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/366?format=json","sponsors.0.district":7,"sponsors.0.firstName":"Chris","updateDateIncludingText":"2025-01-14T17:12:38Z","latestAction_actionTime":"12:38:15"}}} +{"type":"relationship","id":"13410","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"1212","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1654/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"1654","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1654/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1654/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"S","title":"Credit Access and Inclusion Act of 2023","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"1654","cosponsors.countIncludingWithdrawnCosponsors":9,"request.format":"json","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1654/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1654/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1654/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1654/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1654/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":3,"introducedDate":"2023-05-17","cosponsors.count":9,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1654?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"13411","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"1900","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/25/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"25","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Received in the Senate. Read twice. Placed on Senate Legislative Calendar under General Orders. Calendar No. 27.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/25/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/25/subjects?format=json","policyArea.name":"Immigration","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Adverse Effect Wage Rate Methodology for the Temporary Employment of H-2A Nonimmigrants in Non-Range Occupations in the United States\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"25","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2025-03-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/25/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/25/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/25/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/25/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/25/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2023-04-25","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/25?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2024-04-17T23:51:48Z"}}} +{"type":"relationship","id":"13412","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"1913","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/70/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"70","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/70/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/70/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Credit Card Penalty Fees (Regulation Z)\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"70","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2025-03-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/70/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/70/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/70/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/70/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/70/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2024-04-08","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/70?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"13413","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"1937","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/25/text?format=json","relatedBills.count":1,"updateDate":"2024-04-17T23:51:48Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"25","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/25/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/25/subjects?format=json","policyArea.name":"Immigration","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Labor relating to \"Adverse Effect Wage Rate Methodology for the Temporary Employment of H-2A Nonimmigrants in Non-Range Occupations in the United States\".","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"R","number":"25","cosponsors.countIncludingWithdrawnCosponsors":36,"request.format":"json","latestAction_actionDate":"2025-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/25/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/25/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/25/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/25/actions?format=json","latestAction.actionDate":"2023-04-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/25/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2023-04-25","cosponsors.count":36,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/25?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2024-04-17T23:51:48Z"}}} +{"type":"relationship","id":"13414","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"9471","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3704/text?format=json","relatedBills.count":1,"updateDate":"2025-01-17T03:06:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"3704","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/3704/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3704/committees?format=json","policyArea.name":"Energy","type":"S","title":"Unlocking Domestic LNG Potential Act of 2024","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"3704","cosponsors.countIncludingWithdrawnCosponsors":22,"request.format":"json","sponsors.0.middleName":"G.","latestAction_actionDate":"2022-02-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3704/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3704/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3704/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3704/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/3704/relatedbills?format=json","latestAction.actionDate":"2024-01-31","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":3,"introducedDate":"2024-01-31","cosponsors.count":22,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3704?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-17T03:06:27Z"}}} +{"type":"relationship","id":"13415","label":"SPONSORED","start":{"id":"3940","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s001184_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Scott, Tim","state":"South Carolina","endYear":"2013","url":"https://api.congress.gov/v3/member/S001184?format=json","bioguideId":"S001184"}},"end":{"id":"9754","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/70/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Scott","sponsors.0.isByRequest":"N","request.billNumber":"70","sponsors.0.url":"https://api.congress.gov/v3/member/S001184?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/70/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/70/committees?format=json","policyArea.name":"Finance and Financial Sector","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to \"Credit Card Penalty Fees (Regulation Z)\".","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"70","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","latestAction_actionDate":"2022-12-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/70/cosponsors?format=json","sponsors.0.bioguideId":"S001184","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/70/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/70/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/70/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-08","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/70/relatedbills?format=json","sponsors.0.fullName":"Sen. Scott, Tim [R-SC]","titles.count":2,"introducedDate":"2024-04-08","cosponsors.count":15,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"SC","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/70?format=json","sponsors.0.firstName":"Tim","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"13446","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"1216","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1649/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"1649","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1649/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1649/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"LICENSE Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1649","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-05-17","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1649/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1649/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1649/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1649/actions?format=json","latestAction.actionDate":"2023-05-17","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1649/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":4,"introducedDate":"2023-05-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1649?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"13447","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"1262","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/796/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"796","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/s/796/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/796/subjects?format=json","policyArea.name":"Public Lands and Natural Resources","type":"S","title":"Forest Protection and Wildland Firefighter Safety Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"796","cosponsors.countIncludingWithdrawnCosponsors":5,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/796/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/796/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/796/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/796/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/796/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":3,"introducedDate":"2023-03-14","cosponsors.count":5,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/796?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13448","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"9301","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-356.","policyArea.name":"Public Lands and Natural Resources","type":"S","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"4978","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4978/cosponsors?format=json","sponsors.0.bioguideId":"L000571","laws.0.number":"117-356","actions.url":"https://api.congress.gov/v3/bill/118/s/4978/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-08-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/4978/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","amendments.url":"https://api.congress.gov/v3/bill/117/s/4978/amendments?format=json","titles.count":3,"cosponsors.count":3,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/4978/text?format=json","updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"4978","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/4978/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4978/committees?format=json","title":"No American Land for Communist China Act","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-01-05","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4978/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4978/summaries?format=json","introducedDate":"2024-08-01","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4978?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T19:00:46Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"13449","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"9405","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4160/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"4160","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Became Public Law No: 117-148.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4160/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4160/committees?format=json","policyArea.name":"Government Operations and Politics","title":"POSTAL Act","type":"S","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"4160","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-06-16","sponsors.0.middleName":"M.","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4160/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4160/titles?format=json","laws.0.number":"117-148","summaries.url":"https://api.congress.gov/v3/bill/117/s/4160/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4160/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/117/s/4160/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":4,"introducedDate":"2024-04-18","cosponsors.count":3,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4160?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T19:03:55Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"13450","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"9696","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/445/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"445","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/445/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/445/committees?format=json","policyArea.name":"Environmental Protection","type":"S","title":"Grizzly Bear State Management Act of 2023","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"445","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-02-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/445/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/445/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/445/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/445/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-15","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/445/relatedbills?format=json","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":4,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/445?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13451","label":"SPONSORED","start":{"id":"3961","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/l000571_200.jpg","startYear":"2009","partyName":"Republican","attribution":"Collection of the U.S. House of Representatives","name":"Lummis, Cynthia M.","state":"Wyoming","endYear":"2017","url":"https://api.congress.gov/v3/member/L000571?format=json","bioguideId":"L000571"}},"end":{"id":"9999","labels":["Bill"],"properties":{"relatedBills.count":2,"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/386/text?format=json","updateDate":"2024-10-03T16:45:53Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Lummis","sponsors.0.isByRequest":"N","request.billNumber":"386","sponsors.0.url":"https://api.congress.gov/v3/member/L000571?format=json","latestAction_text":"Message on Senate action sent to the House.","committees.url":"https://api.congress.gov/v3/bill/118/sres/386/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/386/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution designating October 4, 2023, as National Energy Appreciation Day to celebrate the people who work to power the United States and the economy of the United States and to build awareness of the important role that the energy producers of the United States play in reducing poverty, strengthening national security, and improving the quality of life for people around the world.","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4827-4828)","sponsors.0.party":"R","number":"386","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/386/cosponsors?format=json","sponsors.0.bioguideId":"L000571","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/386/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/386/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/386/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/386/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","sponsors.0.fullName":"Sen. Lummis, Cynthia M. [R-WY]","titles.count":2,"introducedDate":"2023-09-29","cosponsors.count":11,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/386?format=json","sponsors.0.firstName":"Cynthia","updateDateIncludingText":"2024-10-03T16:45:53Z"}}} +{"type":"relationship","id":"13484","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"1220","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1388/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"1388","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","committees.url":"https://api.congress.gov/v3/bill/118/s/1388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1388/subjects?format=json","policyArea.name":"Transportation and Public Works","type":"S","title":"UAS Integration Research Act of 2023","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1388","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-05-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1388/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1388/actions?format=json","latestAction.actionDate":"2023-05-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/1388?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"13485","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"1340","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Read twice and referred to the Committee on Environment and Public Works.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-12-17","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sjres/122?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13486","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"1375","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2024-07-25","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/122?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13487","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"1422","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1388/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"1388","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on Foreign Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/1388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1388/subjects?format=json","policyArea.name":"Transportation and Public Works","title":"UAS Integration Research Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"R","number":"1388","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-07-25","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1388/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1388/actions?format=json","latestAction.actionDate":"2023-05-01","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":3,"introducedDate":"2023-05-01","cosponsors.count":1,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1388?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"13488","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"1999","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S1633)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2025-03-10","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","latestAction.actionDate":"2024-12-17","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/122?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13489","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"9294","labels":["Bill"],"properties":{"relatedBills.count":6,"congress":118,"sponsors.0.lastName":"Hoeven","cboCostEstimates.0.pubDate":"2021-11-05T15:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-335.","policyArea.name":"Energy","type":"S","latestAction.text":"Read twice and referred to the Committee on Energy and Natural Resources.","sponsors.0.party":"R","number":"989","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/989/cosponsors?format=json","sponsors.0.bioguideId":"H001061","laws.0.number":"117-335","actions.url":"https://api.congress.gov/v3/bill/118/s/989/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/989/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-27","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","amendments.url":"https://api.congress.gov/v3/bill/117/s/989/amendments?format=json","titles.count":3,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 117-46","textVersions.url":"https://api.congress.gov/v3/bill/118/s/989/text?format=json","updateDate":"2025-01-03T20:51:24Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":2,"request.billNumber":"989","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/989/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/989/committees?format=json","title":"North American Energy Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Indian Affairs on\nAugust 4, 2021\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/57568","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","latestAction_actionDate":"2023-01-05","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/SRPT/46?format=json","summaries.count":1,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/989/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/989/summaries?format=json","cboCostEstimates.0.title":"S. 989, Native American Language Resource Center Act of 2021","introducedDate":"2023-03-27","subjects.count":1,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/989?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-03T20:51:24Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"13490","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"9779","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Referred to the House Committee on Education and Labor.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-12-08","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hconres/122?format=json","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13491","label":"SPONSORED","start":{"id":"3978","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001061_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Hoeven, John","state":"North Dakota","url":"https://api.congress.gov/v3/member/H001061?format=json","bioguideId":"H001061"}},"end":{"id":"9990","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/122/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hoeven","sponsors.0.isByRequest":"N","request.billNumber":"122","sponsors.0.url":"https://api.congress.gov/v3/member/H001061?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and an amended preamble by Unanimous Consent. (consideration: CR S2455; text: CR S2457-2459)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/122/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/122/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Waste Emissions Charge for Petroleum and Natural Gas Systems: Procedures for Facilitating Compliance, Including Netting and Exemptions\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"122","cosponsors.countIncludingWithdrawnCosponsors":11,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/122/cosponsors?format=json","sponsors.0.bioguideId":"H001061","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/122/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hconres/122/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/122/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/122/relatedbills?format=json","latestAction.actionDate":"2024-12-17","sponsors.0.fullName":"Sen. Hoeven, John [R-ND]","titles.count":2,"introducedDate":"2024-12-17","cosponsors.count":11,"request.contentType":"application/json","subjects.count":6,"sponsors.0.state":"ND","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/122?format=json","sponsors.0.district":3,"sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"13896","label":"SPONSORED","start":{"id":"3977","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:19Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/j000293_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Johnson, Ron","state":"Wisconsin","url":"https://api.congress.gov/v3/member/J000293?format=json","bioguideId":"J000293"}},"end":{"id":"1266","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/791/text?format=json","relatedBills.count":1,"updateDate":"2025-01-16T05:26:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Johnson","sponsors.0.isByRequest":"N","request.billNumber":"791","sponsors.0.url":"https://api.congress.gov/v3/member/J000293?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/791/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/791/subjects?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"GOOD Act","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"791","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/791/cosponsors?format=json","sponsors.0.bioguideId":"J000293","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/791/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/791/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/791/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/791/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","sponsors.0.fullName":"Sen. Johnson, Ron [R-WI]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":18,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/791?format=json","sponsors.0.firstName":"Ron","updateDateIncludingText":"2025-01-16T05:26:33Z"}}} +{"type":"relationship","id":"13964","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"1276","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/779/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:23:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"779","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S774)","committees.url":"https://api.congress.gov/v3/bill/118/s/779/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/779/subjects?format=json","policyArea.name":"Labor and Employment","type":"S","title":"ACTION for National Service Act","latestAction.text":"Read twice and referred to the Committee on Finance. (Sponsor introductory remarks on measure: CR S774)","sponsors.0.party":"D","number":"779","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2023-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/779/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/779/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/779/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/779/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/779/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-03-14","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"introducedDate":"2023-03-14","cosponsors.count":6,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/s/779?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-07-24T15:23:21Z"}}} +{"type":"relationship","id":"13965","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"1382","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/44/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:49:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"44","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/44/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SCONRES","title":"A concurrent resolution directing the Clerk of the House of Representatives to make a correction in the enrollment of the bill H.R. 5009.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"D","number":"44","request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2024-12-18","sponsors.0.bioguideId":"R000122","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/44/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/44/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/44/relatedbills?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","latestAction.actionTime":"18:04:09","titles.count":2,"introducedDate":"2024-12-18","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sconres/44?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-31T18:49:07Z","latestAction_actionTime":"18:04:09"}}} +{"type":"relationship","id":"13966","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9397","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Reed","cboCostEstimates.0.pubDate":"2023-11-14T21:51:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 427.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 384.","sponsors.0.party":"D","number":"2150","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2150/cosponsors?format=json","sponsors.0.bioguideId":"R000122","actions.url":"https://api.congress.gov/v3/bill/118/s/2150/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-09","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2150/relatedbills?format=json","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"cosponsors.count":4,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-173","textVersions.url":"https://api.congress.gov/v3/bill/118/s/2150/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"2150","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2150/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/2150/committees?format=json","title":"Unity through Service Act of 2023","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on October 25, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":4,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59741","request.format":"json","latestAction_actionDate":"2022-06-21","sponsors.0.middleName":"F.","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/173?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2150/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2150/summaries?format=json","cboCostEstimates.0.title":"S. 2150, Unity Through Service Act of 2023","introducedDate":"2023-06-22","subjects.count":11,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2150?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"13967","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9434","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/3982/text?format=json","updateDate":"2025-01-14T16:41:20Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"3982","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/3982/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3982/subjects?format=json","policyArea.name":"Agriculture and Food","title":"EAT Local Foods Act of 2024","type":"S","latestAction.text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","sponsors.0.party":"D","number":"3982","cosponsors.countIncludingWithdrawnCosponsors":15,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-03-31","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/3982/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3982/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3982/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/3982/actions?format=json","latestAction.actionDate":"2024-03-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","titles.count":4,"cosponsors.count":15,"introducedDate":"2024-03-20","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3982?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T16:41:20Z"}}} +{"type":"relationship","id":"13968","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"9803","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/44/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:49:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"44","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/44/subjects?format=json","type":"SCONRES","title":"A concurrent resolution directing the Clerk of the House of Representatives to make a correction in the enrollment of the bill H.R. 5009.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"D","number":"44","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2022-09-21","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/44/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/44/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/44/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/44/actions?format=json","textVersions.count":3,"relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/44/relatedbills?format=json","latestAction.actionDate":"2024-12-18","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","latestAction.actionTime":"18:04:09","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":4,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sconres/44?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-31T18:49:07Z","latestAction_actionTime":"14:46:26"}}} +{"type":"relationship","id":"13969","label":"SPONSORED","start":{"id":"3948","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:25Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/r000122_200.jpg","startYear":"1991","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Reed, Jack","state":"Rhode Island","endYear":"1997","url":"https://api.congress.gov/v3/member/R000122?format=json","bioguideId":"R000122"}},"end":{"id":"10023","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sconres/44/text?format=json","relatedBills.count":1,"updateDate":"2024-12-31T18:49:07Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":10,"sponsors.0.lastName":"Reed","sponsors.0.isByRequest":"N","request.billNumber":"44","sponsors.0.url":"https://api.congress.gov/v3/member/R000122?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 27.","policyArea.name":"Armed Forces and National Security","subjects.url":"https://api.congress.gov/v3/bill/118/sconres/44/subjects?format=json","type":"SCONRES","title":"A concurrent resolution directing the Clerk of the House of Representatives to make a correction in the enrollment of the bill H.R. 5009.","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"D","number":"44","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","sponsors.0.middleName":"F.","latestAction_actionDate":"2021-03-24","summaries.count":3,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sconres/44/cosponsors?format=json","sponsors.0.bioguideId":"R000122","request.billType":"sconres","titles.url":"https://api.congress.gov/v3/bill/118/sconres/44/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sconres/44/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sconres/44/actions?format=json","textVersions.count":3,"latestAction.actionDate":"2024-12-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/sconres/44/relatedbills?format=json","sponsors.0.fullName":"Sen. Reed, Jack [D-RI]","latestAction.actionTime":"18:04:09","titles.count":2,"introducedDate":"2024-12-18","cosponsors.count":4,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"RI","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/44?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2024-12-31T18:49:07Z"}}} +{"type":"relationship","id":"14796","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"1362","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Received in the Senate.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-12-12","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14797","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"1363","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","latestAction_text":"Referred to the House Committee on Energy and Commerce.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2024-11-22","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14798","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"1524","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Oversight and Accountability.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","textVersions.count":5,"sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","cosponsors.countIncludingWithdrawnCosponsors":41,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-02-17","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14799","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"1525","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","cosponsors.countIncludingWithdrawnCosponsors":44,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2023-02-17","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14800","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9716","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:25:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Veterans' Affairs.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-93.","sponsors.0.party":"R","number":"134","cosponsors.url":"https://api.congress.gov/v3/bill/118/s/134/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-93","actions.url":"https://api.congress.gov/v3/bill/118/s/134/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/134/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":6,"cosponsors.count":41,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/134/text?format=json","updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":23,"request.billNumber":"134","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/134/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/134/committees?format=json","title":"Alzheimer’s Accountability and Investment Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":41,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59875","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/134/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/134/summaries?format=json","cboCostEstimates.0.title":"S. 134, Alzheimer’s Accountability and Investment Act","introducedDate":"2023-01-30","subjects.count":4,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/134?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-01-14T19:02:28Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14801","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9717","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":44,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-01-28","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14802","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"9997","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/388/text?format=json","relatedBills.count":2,"updateDate":"2024-11-09T01:57:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Collins","sponsors.0.isByRequest":"N","request.billNumber":"388","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S6743)","committees.url":"https://api.congress.gov/v3/bill/118/sres/388/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/388/subjects?format=json","policyArea.name":"Energy","type":"SRES","title":"A resolution designating the week of September 25 through September 29, 2023, as \"National Clean Energy Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S4828)","sponsors.0.party":"R","number":"388","cosponsors.countIncludingWithdrawnCosponsors":18,"request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-09-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/388/cosponsors?format=json","sponsors.0.bioguideId":"C001035","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/388/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/388/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/388/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-29","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/388/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","titles.count":2,"introducedDate":"2023-09-29","cosponsors.count":18,"request.contentType":"application/json","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/388?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2024-11-09T01:57:27Z"}}} +{"type":"relationship","id":"14803","label":"SPONSORED","start":{"id":"4004","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/c001035_200.jpg","startYear":"1997","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Collins, Susan M.","state":"Maine","url":"https://api.congress.gov/v3/member/C001035?format=json","bioguideId":"C001035"}},"end":{"id":"10026","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Collins","cboCostEstimates.0.pubDate":"2024-01-12T20:22:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on the Judiciary. (Sponsor introductory remarks on measure: CR S1775-1776; text: CR S1775)","policyArea.name":"Health","type":"S","latestAction.text":"Became Public Law No: 118-92.","sponsors.0.party":"R","number":"133","amendments.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/133/cosponsors?format=json","sponsors.0.bioguideId":"C001035","laws.0.number":"118-92","actions.url":"https://api.congress.gov/v3/bill/118/s/133/actions?format=json","textVersions.count":5,"latestAction.actionDate":"2024-10-01","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/133/relatedbills?format=json","sponsors.0.fullName":"Sen. Collins, Susan M. [R-ME]","amendments.url":"https://api.congress.gov/v3/bill/118/s/133/amendments?format=json","titles.count":6,"cosponsors.count":44,"request.contentType":"application/json","textVersions.url":"https://api.congress.gov/v3/bill/118/s/133/text?format=json","updateDate":"2025-02-01T23:41:11Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":25,"request.billNumber":"133","sponsors.0.url":"https://api.congress.gov/v3/member/C001035?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/133/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/133/committees?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the Senate Committee on Health, Education, Labor, and Pensions on July 27, 2023\n","cosponsors.countIncludingWithdrawnCosponsors":44,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/59874","request.format":"json","sponsors.0.middleName":"M.","latestAction_actionDate":"2021-03-24","summaries.count":4,"request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/133/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/133/summaries?format=json","cboCostEstimates.0.title":"S. 133, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"ME","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/133?format=json","sponsors.0.firstName":"Susan","updateDateIncludingText":"2025-02-01T23:41:11Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"14839","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"1368","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Referred to the House Committee on Energy and Commerce.","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2024-09-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hconres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}}} +{"type":"relationship","id":"14840","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"1527","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Referred to the House Committee on House Administration.","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2023-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}}} +{"type":"relationship","id":"14841","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"1876","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/355/text?format=json","updateDate":"2025-01-14T18:51:33Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"355","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/s/355/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/355/subjects?format=json","policyArea.name":"Commerce","type":"S","title":"Federal Price Gouging Prevention Act","latestAction.text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","sponsors.0.party":"D","number":"355","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2025-02-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/355/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/355/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/355/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/355/actions?format=json","latestAction.actionDate":"2023-02-09","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-02-09","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/355?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2025-01-14T18:51:33Z"}}} +{"type":"relationship","id":"14842","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"1991","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent.","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2025-03-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}}} +{"type":"relationship","id":"14843","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"9721","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","policyArea.name":"Crime and Law Enforcement","type":"S","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}}} +{"type":"relationship","id":"14844","label":"SPONSORED","start":{"id":"3995","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:16Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/d000622_200.jpg","startYear":"2013","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Duckworth, Tammy","state":"Illinois","endYear":"2017","url":"https://api.congress.gov/v3/member/D000622?format=json","bioguideId":"D000622"}},"end":{"id":"10031","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/129/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:24:00Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Duckworth","sponsors.0.isByRequest":"N","request.billNumber":"129","sponsors.0.url":"https://api.congress.gov/v3/member/D000622?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment by Unanimous Consent. (consideration: CR S1662; text: CR S1675)","committees.url":"https://api.congress.gov/v3/bill/118/s/129/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/129/subjects?format=json","policyArea.name":"Crime and Law Enforcement","title":"Korematsu-Takai Civil Liberties Protection Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on the Judiciary.","sponsors.0.party":"D","number":"129","cosponsors.countIncludingWithdrawnCosponsors":26,"request.format":"json","latestAction_actionDate":"2021-03-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/129/cosponsors?format=json","sponsors.0.bioguideId":"D000622","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/129/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/129/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/129/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-30","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/129/relatedbills?format=json","sponsors.0.fullName":"Sen. Duckworth, Tammy [D-IL]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":26,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"IL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/129?format=json","sponsors.0.firstName":"Tammy","updateDateIncludingText":"2024-07-24T15:24:00Z"}}} +{"type":"relationship","id":"15052","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"1389","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Health, Education, Labor, and Pensions. (text: CR S4271-4272)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","type":"HR","title":"David Dorn Act of 2023","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2024-07-09","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/sconres/37?format=json","constitutionalAuthorityStatementText":"\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"15053","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"1696","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1481/text?format=json","updateDate":"2024-07-24T15:23:23Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"1481","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Ways and Means, and in addition to the Committee on the Judiciary, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","committees.url":"https://api.congress.gov/v3/bill/118/hr/1481/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1481/subjects?format=json","policyArea.name":"Energy","type":"HR","title":"CRUDE Act","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"R","number":"1481","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1481/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/1481/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1481/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/1481/actions?format=json","latestAction.actionDate":"2023-03-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":4,"introducedDate":"2023-03-09","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/1481?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 45 (Thursday, March 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 1481.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe constitutional authority of Congress to enact this\nlegislation is provided by Article I, section 8 of the United\nStates Constitution, specifically clause 18 (relating to the\npower to make all laws necessary and proper for carrying out\nthe powers vested in Congress).\nThe single subject of this legislation is:\nThe single subject of this legislation is energy.\n[Page H1249]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:23:23Z"}}} +{"type":"relationship","id":"15054","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"1790","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the House Committee on the Judiciary.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-01-03","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/hr/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"15055","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"1922","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","latestAction.actionDate":"2023-01-09","textVersions.count":1,"sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"introducedDate":"2023-01-09","cosponsors.count":3,"request.contentType":"application/json","subjects.count":3,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/sjres/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"15056","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"8632","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Arrington","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Taxation","bill.relatedBills.count":2,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8882/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Ways and Means.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8882","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 150 (Monday, September 19, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. JACOBS of New York:\nH.R. 8882.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H7966]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/8882/cosponsors?format=json","sponsors.0.bioguideId":"A000375","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8882/actions?format=json","latestAction.actionDate":"2024-06-28","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8882/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","bill.sponsors.0.bioguideId":"J000020","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8882/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Jacobs, Chris [R-NY-27]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8882/text?format=json","bill.updateDate":"2025-01-03T08:00:09Z","updateDate":"2024-11-16T09:05:19Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8882/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","request.billNumber":"8882","committees.url":"https://api.congress.gov/v3/bill/118/hr/8882/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8882/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T08:00:09Z","title":"Family Cord Blood Banking Act","bill.title":"Federal Assault Weapons Licensing Act","bill.number":"8882","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8882/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8882/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/8882/summaries?format=json","bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/J000020?format=json","introducedDate":"2024-06-28","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Chris","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8882/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8882/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8882?format=json","bill.introducedDate":"2022-09-19","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 109 (Friday, June 28, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 8882.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the U.S. Constitution\nThe single subject of this legislation is:\nDefining cord blood banking services as medical care\nexpenses.\n[Page H4444]\n","sponsors.0.district":19,"bill.sponsors.0.state":"NY","bill.sponsors.0.district":27,"sponsors.0.firstName":"Jodey","bill.type":"HR","updateDateIncludingText":"2024-11-16T09:05:19Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8882/text?format=json","bill.sponsors.0.lastName":"Jacobs"}}} +{"type":"relationship","id":"15057","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"8785","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/7512/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Arrington","bill.latestAction.actionDate":"2022-04-15","cboCostEstimates.0.pubDate":"2024-06-26T18:18:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7512/summaries?format=json","type":"HR","latestAction.text":"Reported (Amended) by the Committee on Ways and Means. H. Rept. 118-549, Part I.","bill.summaries.count":1,"sponsors.0.party":"R","number":"7512","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 64 (Thursday, April 14, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HAYES:\nH.R. 7512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H4444]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7512/cosponsors?format=json","sponsors.0.bioguideId":"A000375","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7512/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-11","bill.policyArea.name":"Health","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","bill.sponsors.0.bioguideId":"H001081","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":1,"bill.latestAction.text":"Referred to the Subcommittee on Health.","request.contentType":"application/json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-549","bill.sponsors.0.fullName":"Rep. Hayes, Jahana [D-CT-5]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7512/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-11-09T05:06:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7512/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":10,"sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","request.billNumber":"7512","committees.url":"https://api.congress.gov/v3/bill/118/hr/7512/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7512/subjects?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"Real-Time Benefit Tool Implementation Act","bill.title":"Protecting Patients from Deceptive Health Plans Act","bill.number":"7512","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As posted on the website of the House Committee on Ways and Means on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":1,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60469","request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7512/committees?format=json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-04-15","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/549?format=json","titles.url":"https://api.congress.gov/v3/bill/118/hr/7512/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7512/summaries?format=json","bill.cosponsors.count":2,"cboCostEstimates.0.title":"Estimated Direct Spending Effects of H.R. 7512","bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/H001081?format=json","introducedDate":"2024-03-01","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jahana","sponsors.0.state":"TX","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7512/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7512/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7512?format=json","bill.introducedDate":"2022-04-14","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 38 (Friday, March 1, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 7512.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I Section 8\nThe single subject of this legislation is:\nEnsuring real-time benefit tools are implemented in\nMedicare.\n[Page H781]\n","sponsors.0.district":19,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":5,"sponsors.0.firstName":"Jodey","bill.type":"HR","updateDateIncludingText":"2024-11-09T05:06:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7512/text?format=json","bill.sponsors.0.lastName":"Hayes"}}} +{"type":"relationship","id":"15058","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"8986","labels":["Bill"],"properties":{"relatedBills.count":3,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/4473/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Arrington","bill.latestAction.actionDate":"2021-08-03","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","policyArea.name":"Health","bill.relatedBills.count":3,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/4473/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"R","bill.sponsors.0.middleName":"P.","number":"4473","bill.cosponsors.countIncludingWithdrawnCosponsors":3,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 125 (Friday, July 16, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. McGOVERN:\nH.R. 4473.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\n[Page H3633]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/4473/cosponsors?format=json","sponsors.0.bioguideId":"A000375","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/4473/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4473/relatedbills?format=json","latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Public Lands and Natural Resources","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","bill.sponsors.0.bioguideId":"M000312","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on National Parks, Forests, and Public Lands.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/4473/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. McGovern, James P. [D-MA-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/4473/text?format=json","bill.updateDate":"2025-01-03T07:22:11Z","updateDate":"2024-12-20T09:05:42Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/4473/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","request.billNumber":"4473","committees.url":"https://api.congress.gov/v3/bill/118/hr/4473/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/4473/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:22:11Z","title":"Medicare Patient Access to Cancer Treatment Act","bill.title":"John H. Chafee Blackstone River Valley National Heritage Corridor Reauthorization Act of 2021","bill.number":"4473","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/4473/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2021-08-03","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/4473/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/4473/summaries?format=json","bill.cosponsors.count":3,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M000312?format=json","introducedDate":"2023-07-06","bill.originChamberCode":"H","subjects.count":4,"bill.committees.count":1,"bill.sponsors.0.firstName":"JAMES","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/4473/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/4473/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/4473?format=json","bill.introducedDate":"2021-07-16","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 116 (Thursday, July 6, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 4473.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 section 8 of the US Constitution\nThe single subject of this legislation is:\nInstitutes site-neutral payments for cancer services within\nthe Medicare Program\n[Page H3172]\n","sponsors.0.district":19,"bill.sponsors.0.state":"MA","bill.sponsors.0.district":2,"sponsors.0.firstName":"Jodey","bill.type":"HR","updateDateIncludingText":"2024-12-20T09:05:42Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/4473/text?format=json","bill.sponsors.0.lastName":"MCGOVERN"}}} +{"type":"relationship","id":"15059","label":"SPONSORED","start":{"id":"4063","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"19","imageUrl":"https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg","startYear":"2017","partyName":"Republican","name":"Arrington, Jodey C.","attribution":"Congressional Pictorial Directory","state":"Texas","url":"https://api.congress.gov/v3/member/A000375?format=json","bioguideId":"A000375"}},"end":{"id":"9811","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hr/37/text?format=json","relatedBills.count":2,"updateDate":"2024-07-24T15:24:13Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Arrington","sponsors.0.isByRequest":"N","request.billNumber":"37","sponsors.0.url":"https://api.congress.gov/v3/member/A000375?format=json","latestAction_text":"Referred to the Committee on Commerce, Science, and Transportation. (text: CR S2248)","subjects.url":"https://api.congress.gov/v3/bill/118/hr/37/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/37/committees?format=json","policyArea.name":"Crime and Law Enforcement","title":"David Dorn Act of 2023","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","sponsors.0.party":"R","number":"37","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-05-02","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/37/cosponsors?format=json","sponsors.0.bioguideId":"A000375","request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/37/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/37/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hr/37/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sconres/37/relatedbills?format=json","latestAction.actionDate":"2023-01-09","sponsors.0.fullName":"Rep. Arrington, Jodey C. [R-TX-19]","titles.count":3,"cosponsors.count":3,"introducedDate":"2023-01-09","subjects.count":3,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sconres/37?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 7 (Monday, January 9, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. ARRINGTON:\nH.R. 37.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8 of the constitution\n[Page H108]\n","sponsors.0.district":19,"sponsors.0.firstName":"Jodey","updateDateIncludingText":"2024-07-24T15:24:13Z"}}} +{"type":"relationship","id":"15515","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"1427","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1346/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1346","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Motion to Discharge Committee filed by Ms. Wild. Petition No: 118-15. (Discharge petition text with signatures.)","committees.url":"https://api.congress.gov/v3/bill/118/s/1346/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/1346/subjects?format=json","policyArea.name":"Health","type":"S","title":"Improving Mental Health Access from the Emergency Department Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1346","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2024-07-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1346/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1346/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1346/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1346/actions?format=json","latestAction.actionDate":"2023-04-27","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1346/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/hres/1346?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"15516","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"1930","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/7/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"7","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 24.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/7/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/7/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Army, Corps of Engineers, Department of Defense and the Environmental Protection Agency relating to \"Revised Definition of 'Waters of the United States'\".","latestAction.text":"Star Print ordered on the joint resolution.","sponsors.0.party":"R","number":"7","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2025-03-05","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/7/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/7/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/7/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/7/actions?format=json","latestAction.actionDate":"2023-02-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/7/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":2,"introducedDate":"2023-02-02","cosponsors.count":49,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/7?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"15517","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"1953","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/7/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"7","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Referred to the House Committee on Rules.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/7/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/7/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Army, Corps of Engineers, Department of Defense and the Environmental Protection Agency relating to \"Revised Definition of 'Waters of the United States'\".","latestAction.text":"Star Print ordered on the joint resolution.","sponsors.0.party":"R","number":"7","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2025-01-28","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/7/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/7/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/7/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/7/actions?format=json","latestAction.actionDate":"2023-02-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/7/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":2,"introducedDate":"2023-02-02","cosponsors.count":49,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/7?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"15518","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"1962","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/7/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"7","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Resolution agreed to in Senate with amendments by Yea-Nay Vote. 52 - 48. Record Vote Number: 87. (text: CR S1119-1125)","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/7/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/7/committees?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of the Army, Corps of Engineers, Department of Defense and the Environmental Protection Agency relating to \"Revised Definition of 'Waters of the United States'\".","latestAction.text":"Star Print ordered on the joint resolution.","sponsors.0.party":"R","number":"7","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2025-02-21","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/7/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/7/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/7/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/7/actions?format=json","latestAction.actionDate":"2023-02-13","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/7/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":2,"introducedDate":"2023-02-02","cosponsors.count":49,"request.contentType":"application/json","subjects.count":11,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/7?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"15519","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"9329","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5235/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"5235","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Transportation and Public Works","committees.url":"https://api.congress.gov/v3/bill/118/s/5235/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/5235/subjects?format=json","type":"S","title":"Fiscally Responsible Highway Funding Act of 2024","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"5235","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2022-12-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5235/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5235/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5235/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5235/actions?format=json","latestAction.actionDate":"2024-09-25","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/5235/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2024-09-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5235?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"15520","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"9601","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1923/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1923","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Armed Services.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1923/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1923/committees?format=json","policyArea.name":"Environmental Protection","title":"POPP Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works.","sponsors.0.party":"R","number":"1923","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-05-27","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1923/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1923/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1923/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1923/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1923/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":4,"introducedDate":"2023-06-12","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1923?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"15521","label":"SPONSORED","start":{"id":"4005","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:14Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001047_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Capito, Shelley Moore","state":"West Virginia","endYear":"2015","url":"https://api.congress.gov/v3/member/C001047?format=json","bioguideId":"C001047"}},"end":{"id":"9649","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1346/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Capito","sponsors.0.isByRequest":"N","request.billNumber":"1346","sponsors.0.url":"https://api.congress.gov/v3/member/C001047?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1346/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1346/committees?format=json","policyArea.name":"Health","type":"S","title":"Improving Mental Health Access from the Emergency Department Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1346","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"Moore","latestAction_actionDate":"2021-04-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/1346/cosponsors?format=json","sponsors.0.bioguideId":"C001047","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1346/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1346/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1346/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/1346/relatedbills?format=json","sponsors.0.fullName":"Sen. Capito, Shelley Moore [R-WV]","titles.count":3,"introducedDate":"2023-04-27","cosponsors.count":1,"request.contentType":"application/json","subjects.count":9,"sponsors.0.state":"WV","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1346?format=json","sponsors.0.firstName":"Shelley","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"15809","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"1486","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/646/text?format=json","updateDate":"2024-11-20T17:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"DelBene","sponsors.0.isByRequest":"N","request.billNumber":"646","sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","latestAction_text":"Referred to the House Committee on Science, Space, and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hres/646/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/646/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Recognizing the launch of the Redmond Space District in partnership with the City of Redmond and OneRedmond, showcasing the growth of Redmond's Space Cluster.","latestAction.text":"Referred to the House Committee on Science, Space, and Technology.","sponsors.0.party":"D","number":"646","request.format":"json","sponsors.0.middleName":"K.","latestAction_actionDate":"2023-08-04","summaries.count":1,"sponsors.0.bioguideId":"D000617","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/646/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/646/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/646/actions?format=json","latestAction.actionDate":"2023-08-04","textVersions.count":1,"sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","titles.count":2,"introducedDate":"2023-08-04","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"WA","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/646?format=json","sponsors.0.district":1,"sponsors.0.firstName":"Suzan","updateDateIncludingText":"2024-11-20T17:21:20Z"}}} +{"type":"relationship","id":"15810","label":"SPONSORED","start":{"id":"4044","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:01:00Z","chamber":"House of Representatives","district":"1","imageUrl":"https://www.congress.gov/img/member/d000617_200.jpg","startYear":"2012","partyName":"Democratic","name":"DelBene, Suzan K.","attribution":"Image courtesy of the Member","state":"Washington","url":"https://api.congress.gov/v3/member/D000617?format=json","bioguideId":"D000617"}},"end":{"id":"9243","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1119/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"DelBene","bill.latestAction.actionDate":"2021-02-19","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Energy.","policyArea.name":"Labor and Employment","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1119/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Education and the Workforce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1119","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 31 (Thursday, February 18, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. DUNCAN:\nH.R. 1119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H536]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1119/cosponsors?format=json","sponsors.0.bioguideId":"D000617","bill.subjects.count":9,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1119/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-02-21","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1119/relatedbills?format=json","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. DelBene, Suzan K. [D-WA-1]","bill.sponsors.0.bioguideId":"D000615","bill.originChamber":"House","bill.actions.count":6,"titles.count":3,"cosponsors.count":4,"bill.latestAction.text":"Referred to the Subcommittee on Energy.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Duncan, Jeff [R-SC-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1119/text?format=json","bill.updateDate":"2025-02-04T16:54:13Z","updateDate":"2025-02-04T16:28:27Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1119/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/D000617?format=json","request.billNumber":"1119","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1119/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1119/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:54:13Z","title":"Freedom to Invest in a Sustainable Future Act","bill.title":"Stopping Chinese Communist Involvement in the Power Grid Act","bill.number":"1119","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":4,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1119/committees?format=json","sponsors.0.middleName":"K.","latestAction_actionDate":"2021-02-19","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1119/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1119/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000615?format=json","introducedDate":"2023-02-21","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":3,"bill.sponsors.0.firstName":"Jeff","sponsors.0.state":"WA","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1119/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1119/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1119?format=json","bill.introducedDate":"2021-02-18","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 34 (Tuesday, February 21, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DelBENE:\nH.R. 1119.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1 Section 8\nThe single subject of this legislation is:\nRetirement\n[Page H867]\n","sponsors.0.district":1,"bill.sponsors.0.state":"SC","bill.sponsors.0.district":3,"sponsors.0.firstName":"Suzan","bill.type":"HR","updateDateIncludingText":"2025-02-04T16:28:27Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1119/text?format=json","bill.sponsors.0.lastName":"Duncan"}}} +{"type":"relationship","id":"15811","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"1491","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/631/text?format=json","updateDate":"2024-07-24T15:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Veasey","sponsors.0.isByRequest":"N","request.billNumber":"631","sponsors.0.url":"https://api.congress.gov/v3/member/V000131?format=json","latestAction_text":"Referred to the Subcommittee on Communications and Technology.","committees.url":"https://api.congress.gov/v3/bill/118/hres/631/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/631/subjects?format=json","policyArea.name":"Science, Technology, Communications","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"D","number":"631","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2023-07-28","summaries.count":1,"sponsors.0.bioguideId":"V000131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/631/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/631/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/631/actions?format=json","latestAction.actionDate":"2023-07-28","textVersions.count":1,"sponsors.0.fullName":"Rep. Veasey, Marc A. [D-TX-33]","titles.count":2,"introducedDate":"2023-07-27","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/631?format=json","sponsors.0.district":33,"sponsors.0.firstName":"Marc","updateDateIncludingText":"2024-07-24T15:21:20Z"}}} +{"type":"relationship","id":"15812","label":"SPONSORED","start":{"id":"4066","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"33","imageUrl":"https://www.congress.gov/img/member/v000131_200.jpg","startYear":"2013","partyName":"Democratic","name":"Veasey, Marc A.","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/V000131?format=json","bioguideId":"V000131"}},"end":{"id":"9988","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/631/text?format=json","updateDate":"2024-07-24T15:21:20Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Veasey","sponsors.0.isByRequest":"N","request.billNumber":"631","sponsors.0.url":"https://api.congress.gov/v3/member/V000131?format=json","latestAction_text":"Referred to the Committee on Rules and Administration. (text: CR S2495)","policyArea.name":"Science, Technology, Communications","committees.url":"https://api.congress.gov/v3/bill/118/hres/631/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/631/subjects?format=json","type":"HRES","title":"Expressing the sense of the House of Representatives to advance the country's national spectrum policy amidst the 29th anniversary of the Federal Communications Commission's first spectrum auction that commenced on July 25, 1994.","latestAction.text":"Referred to the Subcommittee on Communications and Technology.","sponsors.0.party":"D","number":"631","request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2022-05-12","summaries.count":1,"sponsors.0.bioguideId":"V000131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/631/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/631/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/631/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-28","sponsors.0.fullName":"Rep. Veasey, Marc A. [D-TX-33]","titles.count":2,"introducedDate":"2023-07-27","subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/631?format=json","sponsors.0.district":33,"sponsors.0.firstName":"Marc","updateDateIncludingText":"2024-07-24T15:21:20Z"}}} +{"type":"relationship","id":"15901","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"1506","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/379/text?format=json","updateDate":"2024-07-24T15:22:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"PASCRELL","sponsors.0.isByRequest":"N","request.billNumber":"379","sponsors.0.url":"https://api.congress.gov/v3/member/P000096?format=json","latestAction_text":"Referred to the Subcommittee on Health.","committees.url":"https://api.congress.gov/v3/bill/118/hres/379/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/379/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 6, 2023, as \"National Sport Brain Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"379","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2023-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/379/cosponsors?format=json","sponsors.0.bioguideId":"P000096","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/379/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-12","sponsors.0.fullName":"Rep. Pascrell, Bill, Jr. [D-NJ-9]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/118/hres/379?format=json","sponsors.0.district":9,"sponsors.0.firstName":"WILLIAM","updateDateIncludingText":"2024-07-24T15:22:26Z"}}} +{"type":"relationship","id":"15902","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"9196","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/1814/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"PASCRELL","bill.latestAction.actionDate":"2021-03-11","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Education and Labor.","policyArea.name":"Emergency Management","bill.relatedBills.count":4,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/1814/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Economic Development, Public Buildings, and Emergency Management.","bill.summaries.count":1,"sponsors.0.party":"D","number":"1814","bill.cosponsors.countIncludingWithdrawnCosponsors":23,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 46 (Thursday, March 11, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. DeLAURO:\nH.R. 1814.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3 of the United States\nConstitution and Article I, Section 8, Clause I of the United\nStates Constitution.\n[Page H1357]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/1814/cosponsors?format=json","sponsors.0.bioguideId":"P000096","bill.subjects.count":23,"actions.url":"https://api.congress.gov/v3/bill/118/hr/1814/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/1814/relatedbills?format=json","latestAction.actionDate":"2023-03-28","bill.policyArea.name":"Education","sponsors.0.fullName":"Rep. Pascrell, Bill, Jr. [D-NJ-9]","bill.sponsors.0.bioguideId":"D000216","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":25,"bill.latestAction.text":"Referred to the House Committee on Education and Labor.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/1814/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. DeLauro, Rosa L. [D-CT-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/1814/text?format=json","bill.updateDate":"2025-02-04T16:28:27Z","updateDate":"2024-07-24T15:23:10Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/1814/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/P000096?format=json","request.billNumber":"1814","subjects.url":"https://api.congress.gov/v3/bill/118/hr/1814/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/1814/committees?format=json","bill.updateDateIncludingText":"2025-02-04T16:28:27Z","title":"FIRE STATION Act","bill.title":"Civics Secures Democracy Act of 2021","bill.number":"1814","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/1814/committees?format=json","request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-03-11","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/1814/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/1814/summaries?format=json","bill.cosponsors.count":23,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/D000216?format=json","introducedDate":"2023-03-27","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"ROSA","sponsors.0.state":"NJ","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/1814/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/1814/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/1814?format=json","bill.introducedDate":"2021-03-11","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 55 (Monday, March 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. PASCRELL:\nH.R. 1814.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution.\nThe single subject of this legislation is:\nFire services.\n[Page H1465]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CT","bill.sponsors.0.district":3,"sponsors.0.firstName":"WILLIAM","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:23:10Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/1814/text?format=json","bill.sponsors.0.lastName":"DELAURO"}}} +{"type":"relationship","id":"15903","label":"SPONSORED","start":{"id":"4031","labels":["Person"],"properties":{"updateDate":"2025-01-23T17:33:43Z","chamber":"House of Representatives","district":"9","imageUrl":"https://www.congress.gov/img/member/116_rp_nj_9_pascrell_bill_200.jpg","startYear":"1997","name":"Pascrell, Bill","partyName":"Democratic","attribution":"Congressional Pictorial Directory","state":"New Jersey","endYear":"2024","url":"https://api.congress.gov/v3/member/P000096?format=json","bioguideId":"P000096"}},"end":{"id":"10005","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/379/text?format=json","relatedBills.count":1,"updateDate":"2024-07-24T15:22:26Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"PASCRELL","sponsors.0.isByRequest":"N","request.billNumber":"379","sponsors.0.url":"https://api.congress.gov/v3/member/P000096?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S6630; text: CR S6629)","committees.url":"https://api.congress.gov/v3/bill/118/hres/379/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/379/subjects?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing support for the designation of May 6, 2023, as \"National Sport Brain Health Day\".","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"D","number":"379","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"J.","latestAction_actionDate":"2021-09-22","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/379/cosponsors?format=json","sponsors.0.bioguideId":"P000096","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/379/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/379/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/379/actions?format=json","latestAction.actionDate":"2023-05-12","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/sres/379/relatedbills?format=json","sponsors.0.fullName":"Rep. Pascrell, Bill, Jr. [D-NJ-9]","titles.count":2,"introducedDate":"2023-05-09","cosponsors.count":1,"subjects.count":4,"request.contentType":"application/json","sponsors.0.state":"NJ","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/sres/379?format=json","sponsors.0.district":9,"sponsors.0.firstName":"WILLIAM","updateDateIncludingText":"2024-07-24T15:22:26Z"}}} +{"type":"relationship","id":"16197","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"1542","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/940/text?format=json","updateDate":"2024-12-31T01:48:25Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"940","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (consideration: CR S7335-7336)","committees.url":"https://api.congress.gov/v3/bill/118/sres/940/committees?format=json","type":"SRES","title":"A resolution honoring the lives and service of Natalie and Davy Lloyd and expressing condolences to the family of Natalie and Davy Lloyd.","latestAction.text":"Referred to the Committee on the Judiciary. (consideration: CR S7335-7336)","sponsors.0.party":"R","number":"940","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2024-12-20","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/940/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/940/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/940/actions?format=json","latestAction.actionDate":"2024-12-20","textVersions.count":1,"sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":2,"introducedDate":"2024-12-20","cosponsors.count":1,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/940?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2024-12-31T01:48:25Z"}}} +{"type":"relationship","id":"16198","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"1858","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/146/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":2,"congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"146","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Held at the desk.","subjects.url":"https://api.congress.gov/v3/bill/118/s/146/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/146/committees?format=json","policyArea.name":"Health","type":"S","title":"Cap Insulin Prices Act","latestAction.text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","sponsors.0.party":"R","number":"146","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-02-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/146/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/146/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/146/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/146/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/146/relatedbills?format=json","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-01-30","cosponsors.count":1,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/146?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T19:02:28Z","latestAction_actionTime":"13:46:55"}}} +{"type":"relationship","id":"16199","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"1888","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/85/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"85","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Read twice and referred to the Committee on Agriculture, Nutrition, and Forestry.","committees.url":"https://api.congress.gov/v3/bill/118/s/85/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/85/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"No TikTok on United States Devices Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"85","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2025-01-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/85/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/85/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/85/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/85/actions?format=json","latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/85/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-01-25","cosponsors.count":1,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/s/85?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"16200","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9540","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/1217/text?format=json","relatedBills.count":3,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"1217","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Committee on Banking, Housing, and Urban Affairs. Hearings held.","subjects.url":"https://api.congress.gov/v3/bill/118/s/1217/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/1217/committees?format=json","policyArea.name":"Health","type":"S","title":"Ending the Prescription Drug Kickback Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"1217","cosponsors.countIncludingWithdrawnCosponsors":17,"request.format":"json","sponsors.0.middleName":"A.","latestAction_actionDate":"2021-09-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/1217/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/1217/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/1217/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/1217/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/s/1217/relatedbills?format=json","latestAction.actionDate":"2023-04-19","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"introducedDate":"2023-04-19","cosponsors.count":17,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/1217?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"16201","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9712","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/418/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":9,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"418","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","policyArea.name":"Environmental Protection","subjects.url":"https://api.congress.gov/v3/bill/118/s/418/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/418/committees?format=json","type":"S","title":"Justice for Jana Elementary Act of 2023","latestAction.text":"Held at the desk.","sponsors.0.party":"R","number":"418","request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":2,"sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/418/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/418/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/418/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/418/relatedbills?format=json","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","latestAction.actionTime":"13:19:29","titles.count":4,"introducedDate":"2023-02-14","subjects.count":10,"request.contentType":"application/json","sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/418?format=json","sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T17:17:39Z"}}} +{"type":"relationship","id":"16202","label":"SPONSORED","start":{"id":"3982","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:18Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/h001089_200.jpg","startYear":"2019","name":"Hawley, Josh","partyName":"Republican","state":"Missouri","url":"https://api.congress.gov/v3/member/H001089?format=json","bioguideId":"H001089"}},"end":{"id":"9742","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/85/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T18:20:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Hawley","sponsors.0.isByRequest":"N","request.billNumber":"85","sponsors.0.url":"https://api.congress.gov/v3/member/H001089?format=json","latestAction_text":"Referred to the Subcommittee on the Constitution, Civil Rights, and Civil Liberties.","policyArea.name":"International Affairs","subjects.url":"https://api.congress.gov/v3/bill/118/s/85/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/85/committees?format=json","type":"S","title":"No TikTok on United States Devices Act","latestAction.text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","sponsors.0.party":"R","number":"85","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"D.","latestAction_actionDate":"2022-11-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/85/cosponsors?format=json","sponsors.0.bioguideId":"H001089","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/85/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/85/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/85/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-01-25","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/85/relatedbills?format=json","sponsors.0.fullName":"Sen. Hawley, Josh [R-MO]","titles.count":3,"cosponsors.count":1,"introducedDate":"2023-01-25","request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"MO","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hjres/85?format=json","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 71 (Friday, April 29, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. MORELLE:\nH.J. Res. 85.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe bill is enacted pursuant to the power granted Congress\nby Article V of the Constitution.\n[Page H4708]\n","sponsors.0.district":25,"sponsors.0.firstName":"Josh","updateDateIncludingText":"2025-01-14T18:20:21Z"}}} +{"type":"relationship","id":"16223","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"1545","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/937/text?format=json","updateDate":"2025-01-15T21:07:29Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schumer","sponsors.0.isByRequest":"N","request.billNumber":"937","sponsors.0.url":"https://api.congress.gov/v3/member/S000148?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7223-7224; text: CR S7243)","subjects.url":"https://api.congress.gov/v3/bill/118/sres/937/subjects?format=json","policyArea.name":"Congress","type":"SRES","title":"A resolution to authorize testimony and representation in United States v. Warnagiris.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S7223-7224; text: CR S7243)","sponsors.0.party":"D","number":"937","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2024-12-19","cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/937/cosponsors?format=json","sponsors.0.bioguideId":"S000148","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/937/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/937/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-19","sponsors.0.fullName":"Sen. Schumer, Charles E. [D-NY]","titles.count":2,"introducedDate":"2024-12-19","cosponsors.count":1,"subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/937?format=json","sponsors.0.firstName":"Charles","updateDateIncludingText":"2025-01-15T21:07:29Z"}}} +{"type":"relationship","id":"16224","label":"SPONSORED","start":{"id":"3941","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:26Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/s000148_200.jpg","startYear":"1981","partyName":"Democratic","attribution":"Courtesy U.S. Senate Historical Office","name":"Schumer, Charles E.","state":"New York","endYear":"1999","url":"https://api.congress.gov/v3/member/S000148?format=json","bioguideId":"S000148"}},"end":{"id":"9985","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/634/text?format=json","relatedBills.count":1,"updateDate":"2024-12-10T15:36:25Z","originChamber":"Senate","congress":118,"request.congress":"118","actions.count":3,"sponsors.0.lastName":"Schumer","sponsors.0.isByRequest":"N","request.billNumber":"634","sponsors.0.url":"https://api.congress.gov/v3/member/S000148?format=json","latestAction_text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2516; text: CR S2521-2522)","policyArea.name":"Arts, Culture, Religion","subjects.url":"https://api.congress.gov/v3/bill/118/sres/634/subjects?format=json","type":"SRES","title":"A resolution recognizing the cultural and educational contributions of the Youth America Grand Prix throughout its 25 years of service as the national youth dance competition of the United States.","latestAction.text":"Submitted in the Senate, considered, and agreed to without amendment and with a preamble by Unanimous Consent. (consideration: CR S2703; text: CR S2712)","sponsors.0.party":"D","number":"634","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","sponsors.0.middleName":"E.","latestAction_actionDate":"2022-05-16","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sres/634/cosponsors?format=json","sponsors.0.bioguideId":"S000148","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/634/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/634/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/634/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-10","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/634/relatedbills?format=json","sponsors.0.fullName":"Sen. Schumer, Charles E. [D-NY]","titles.count":2,"introducedDate":"2024-04-10","cosponsors.count":1,"request.contentType":"application/json","subjects.count":4,"sponsors.0.state":"NY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/634?format=json","sponsors.0.firstName":"Charles","updateDateIncludingText":"2024-12-10T15:36:25Z"}}} +{"type":"relationship","id":"16939","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"
Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"1611","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sres/197/text?format=json","relatedBills.count":2,"updateDate":"2024-11-18T14:11:27Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Mullin","sponsors.0.isByRequest":"N","request.billNumber":"197","sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1537)","committees.url":"https://api.congress.gov/v3/bill/118/sres/197/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sres/197/subjects?format=json","policyArea.name":"Health","type":"SRES","title":"A resolution designating the week of May 1, 2023, through May 7, 2023, as \"Tardive Dyskinesia Awareness Week\".","latestAction.text":"Referred to the Committee on the Judiciary. (text: CR S1537)","sponsors.0.party":"R","number":"197","request.format":"json","latestAction_actionDate":"2023-05-04","summaries.count":1,"sponsors.0.bioguideId":"M001190","request.billType":"sres","titles.url":"https://api.congress.gov/v3/bill/118/sres/197/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sres/197/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sres/197/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sres/197/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2023-05-04","sponsors.0.fullName":"Sen. Mullin, Markwayne [R-OK]","titles.count":2,"introducedDate":"2023-05-04","subjects.count":6,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/118/sres/197?format=json","sponsors.0.firstName":"Markwayne","updateDateIncludingText":"2024-11-18T14:11:27Z"}}} +{"type":"relationship","id":"16940","label":"SPONSORED","start":{"id":"3954","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:23Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/m001190_200.jpg","startYear":"2013","partyName":"Republican","attribution":"Official U.S. Senate Photo
","name":"Mullin, Markwayne","state":"Oklahoma","endYear":"2023","url":"https://api.congress.gov/v3/member/M001190?format=json","bioguideId":"M001190"}},"end":{"id":"9430","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/4204/text?format=json","updateDate":"2024-08-12T13:55:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Mullin","sponsors.0.isByRequest":"N","request.billNumber":"4204","sponsors.0.url":"https://api.congress.gov/v3/member/M001190?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","subjects.url":"https://api.congress.gov/v3/bill/118/s/4204/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/4204/committees?format=json","policyArea.name":"Health","type":"S","title":"MVP Act","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"4204","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2022-05-12","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/4204/cosponsors?format=json","sponsors.0.bioguideId":"M001190","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/4204/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/4204/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/4204/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-04-30","sponsors.0.fullName":"Sen. Mullin, Markwayne [R-OK]","titles.count":4,"introducedDate":"2024-04-30","cosponsors.count":3,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"OK","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/4204?format=json","sponsors.0.firstName":"Markwayne","updateDateIncludingText":"2024-08-12T13:55:13Z"}}} +{"type":"relationship","id":"17821","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"1848","labels":["Bill"],"properties":{"relatedBills.count":2,"congress":118,"sponsors.0.lastName":"Tonko","cboCostEstimates.0.pubDate":"2024-07-23T21:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Read twice and referred to the Committee on Banking, Housing, and Urban Affairs.","policyArea.name":"Health","type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 438.","sponsors.0.party":"D","number":"619","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/619/cosponsors?format=json","sponsors.0.bioguideId":"T000469","actions.url":"https://api.congress.gov/v3/bill/118/hr/619/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/619/relatedbills?format=json","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","titles.count":4,"cosponsors.count":144,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-526","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/619/text?format=json","updateDate":"2024-11-12T19:25:37Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"619","sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/619/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/619/subjects?format=json","title":"NAPA Reauthorization Act","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 24, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":144,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60575","request.format":"json","latestAction_actionDate":"2025-02-18","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/526?format=json","summaries.count":1,"request.billType":"hr","titles.url":"https://api.congress.gov/v3/bill/118/hr/619/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hr/619/summaries?format=json","cboCostEstimates.0.title":"H.R. 619, NAPA Reauthorization Act","introducedDate":"2023-01-30","subjects.count":5,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/119/s/619?format=json","constitutionalAuthorityStatementText":"\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 619.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H510]\n","sponsors.0.district":20,"sponsors.0.firstName":"Paul","updateDateIncludingText":"2024-11-12T19:25:37Z"}}} +{"type":"relationship","id":"17822","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"8535","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9590/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2022-12-15","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on the Judiciary.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/9590/summaries?format=json","type":"HR","latestAction.text":"Referred to the Committee on Energy and Commerce, and in addition to the Committee on Natural Resources, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","bill.summaries.count":1,"sponsors.0.party":"D","number":"9590","bill.cosponsors.countIncludingWithdrawnCosponsors":1,"sponsors":[],"cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/9590/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/9590/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-12","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/9590/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"M001160","bill.originChamber":"House","bill.actions.count":3,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Referred to the House Committee on the Judiciary.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Moore, Gwen [D-WI-4]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/9590/text?format=json","bill.updateDate":"2025-01-03T08:06:29Z","updateDate":"2024-11-01T13:06:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/9590/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":4,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"9590","subjects.url":"https://api.congress.gov/v3/bill/118/hr/9590/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/9590/committees?format=json","bill.updateDateIncludingText":"2025-01-03T08:06:29Z","title":"SAFE Bet Act","bill.title":"Corey Adams Searchlight Act","bill.number":"9590","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/9590/committees?format=json","request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/9590/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/9590/summaries?format=json","bill.cosponsors.count":1,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/M001160?format=json","introducedDate":"2024-09-12","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Gwen","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/9590/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/9590/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/9590?format=json","bill.introducedDate":"2022-12-15","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 142 (Thursday, September 12, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 9590.\nCongress has the power to enact this legislation pursuant\nto the following:\n``The constitutional authority on which this bill rests is\nthe power of Congress to make rules for the government and\nregulation of the land and naval forces, as enumerated in\nArticle 1, Section 8 of the United States Constitution.''\nThe single subject of this legislation is:\nA bill to regulate and establish public health guardrails\nfor states operating sports betting programs.\n[Page H5232]\n","sponsors.0.district":20,"bill.sponsors.0.state":"WI","bill.sponsors.0.district":4,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-11-01T13:06:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/9590/text?format=json","bill.sponsors.0.lastName":"Moore"}}} +{"type":"relationship","id":"17823","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"8687","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8769/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2022-09-02","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Ways and Means.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8769/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on Energy and Commerce.","bill.summaries.count":1,"sponsors.0.party":"D","number":"8769","bill.cosponsors.countIncludingWithdrawnCosponsors":25,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 141 (Friday, September 2, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VAN DREW:\nH.R. 8769.\nCongress has the power to enact this legislation pursuant\nto the following:\nThe Congress shall have power to lay and collect taxes,\nduties, imposts and excises, to pay the debts and provide for\nthe common defense and general welfare of the United States;\nbut all duties, imposts and excises shall be uniform\nthroughout the United States;\n[Page H7736]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8769/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8769/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-06-14","bill.policyArea.name":"Taxation","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"V000133","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":25,"bill.latestAction.text":"Referred to the House Committee on Ways and Means.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Van Drew, Jefferson [R-NJ-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8769/text?format=json","bill.updateDate":"2025-01-03T07:58:45Z","updateDate":"2024-09-03T16:18:16Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8769/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"8769","committees.url":"https://api.congress.gov/v3/bill/118/hr/8769/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8769/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:58:45Z","title":"State Industrial Competitiveness Act of 2024","bill.title":"IRS Reduction Act","bill.number":"8769","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":25,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8769/committees?format=json","request.format":"json","latestAction_actionDate":"2022-09-02","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8769/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8769/summaries?format=json","bill.cosponsors.count":25,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/V000133?format=json","introducedDate":"2024-06-14","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Jefferson","sponsors.0.state":"NY","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8769/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8769/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8769?format=json","bill.introducedDate":"2022-09-02","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 101 (Friday, June 14, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 8769\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8, Clause 1\nThe single subject of this legislation is:\nTo support State Energy Offices with industrial energy\nefficiency\n[Page H4110]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":2,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-09-03T16:18:16Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8769/text?format=json","bill.sponsors.0.lastName":"Van Drew"}}} +{"type":"relationship","id":"17824","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"9115","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2982/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-05-04","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Armed Services.","policyArea.name":"Environmental Protection","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2982/summaries?format=json","type":"HR","latestAction.text":"Subcommittee Hearings Held","bill.summaries.count":1,"sponsors.0.party":"D","number":"2982","bill.cosponsors.countIncludingWithdrawnCosponsors":4,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 77 (Tuesday, May 4, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KIM of New Jersey:\nH.R. 2982.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8 of the United States Constitution\n[Page H2142]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2982/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":7,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2982/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-07-27","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2982/relatedbills?format=json","bill.policyArea.name":"Armed Forces and National Security","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"K000394","bill.actions.count":3,"bill.originChamber":"House","titles.count":3,"cosponsors.count":23,"bill.latestAction.text":"Referred to the House Committee on Armed Services.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2982/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Kim, Andy [D-NJ-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2982/text?format=json","bill.updateDate":"2025-01-03T05:00:49Z","updateDate":"2024-12-17T09:05:52Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2982/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"2982","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2982/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2982/committees?format=json","bill.updateDateIncludingText":"2025-01-03T05:00:49Z","title":"New York-New Jersey Watershed Protection Act","bill.title":"National Guard Cybersecurity Support Act","bill.number":"2982","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":23,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2982/committees?format=json","request.format":"json","latestAction_actionDate":"2021-05-04","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2982/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2982/summaries?format=json","bill.cosponsors.count":4,"bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000394?format=json","bill.sponsors.0.party":"D","introducedDate":"2023-04-27","bill.originChamberCode":"H","subjects.count":24,"bill.committees.count":1,"bill.sponsors.0.firstName":"Andy","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2982/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2982/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2982?format=json","bill.introducedDate":"2021-05-04","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 71 (Thursday, April 27, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2982.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nThis legislation establishes the New York-New Jersey\nWatershed Restoration Program to coordinate and fund\nrestoration activities throughout the Watershed.\n[Page H2088]\n","sponsors.0.district":20,"bill.sponsors.0.state":"NJ","bill.sponsors.0.district":3,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-12-17T09:05:52Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2982/text?format=json","bill.sponsors.0.lastName":"Kim"}}} +{"type":"relationship","id":"17825","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"9135","labels":["Bill"],"properties":{"relatedBills.count":1,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/2731/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-04-22","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Consumer Protection and Commerce.","policyArea.name":"Transportation and Public Works","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/2731/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Water Resources and Environment.","bill.summaries.count":1,"sponsors.0.party":"D","number":"2731","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 69 (Wednesday, April 21, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. KHANNA:\nH.R. 2731.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the Constitution gives Congress the\npower to make laws that are necessary and proper to carry out\nits enumerated powers.\n[Page H2056]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/2731/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":115,"actions.url":"https://api.congress.gov/v3/bill/118/hr/2731/actions?format=json","latestAction.actionDate":"2023-04-19","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/2731/relatedbills?format=json","bill.policyArea.name":"Science, Technology, Communications","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"K000389","bill.originChamber":"House","bill.actions.count":6,"titles.count":4,"cosponsors.count":2,"bill.latestAction.text":"Referred to the Subcommittee on Consumer Protection and Commerce.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/2731/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Khanna, Ro [D-CA-17]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/2731/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2024-07-24T15:22:38Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/2731/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"2731","subjects.url":"https://api.congress.gov/v3/bill/118/hr/2731/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/2731/committees?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"POWER Our Reservoirs Act","bill.title":"Endless Frontier Act","bill.number":"2731","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":2,"request.format":"json","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/2731/committees?format=json","latestAction_actionDate":"2021-04-22","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/2731/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/2731/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":5,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/K000389?format=json","introducedDate":"2023-04-19","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Ro","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/2731/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/2731/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/2731?format=json","bill.introducedDate":"2021-04-21","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 65 (Wednesday, April 19, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 2731.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause I\nThe single subject of this legislation is:\nThis legislation advances the deployment of floating solar\npanels on federal reservoirs.\n[Page H1888]\n","sponsors.0.district":20,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":17,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:22:38Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/2731/text?format=json","bill.sponsors.0.lastName":"Khanna"}}} +{"type":"relationship","id":"17826","label":"SPONSORED","start":{"id":"4111","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000469_200.jpg","district":"20","startYear":"2009","name":"Tonko, Paul","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/T000469?format=json","bioguideId":"T000469"}},"end":{"id":"9193","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/619/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Tonko","bill.latestAction.actionDate":"2021-03-22","cboCostEstimates.0.pubDate":"2024-07-23T21:42:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/619/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Placed on the Union Calendar, Calendar No. 438.","bill.summaries.count":1,"sponsors.0.party":"D","number":"619","bill.cosponsors.countIncludingWithdrawnCosponsors":208,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 17 (Thursday, January 28, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. WAGNER:\nH.R. 619.\nCongress has the power to enact this legislation pursuant\nto the following:\n(1) section 5 of the 14th Amendment, including the power\nto enforce the prohibition on government action denying equal\nprotection of the laws; and (2) section 8 of article I to\nmake all laws necessary and proper for carrying into\nexecution the powers vested by the Constitution of the United\nStates, including the power to regulate commerce under clause\n3 of such section.\n[Page H253]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/619/cosponsors?format=json","sponsors.0.bioguideId":"T000469","bill.subjects.count":8,"actions.url":"https://api.congress.gov/v3/bill/118/hr/619/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2024-05-24","relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/619/relatedbills?format=json","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Tonko, Paul [D-NY-20]","bill.sponsors.0.bioguideId":"W000812","bill.originChamber":"House","bill.actions.count":4,"titles.count":4,"cosponsors.count":144,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/619/relatedbills?format=json","bill.congress":117,"committeeReports.0.citation":"H. Rept. 118-526","bill.sponsors.0.fullName":"Rep. Wagner, Ann [R-MO-2]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/619/text?format=json","bill.updateDate":"2025-01-03T04:43:30Z","updateDate":"2024-11-12T19:25:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/619/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":11,"sponsors.0.url":"https://api.congress.gov/v3/member/T000469?format=json","request.billNumber":"619","subjects.url":"https://api.congress.gov/v3/bill/118/hr/619/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/619/committees?format=json","bill.updateDateIncludingText":"2025-01-03T04:43:30Z","title":"NAPA Reauthorization Act","bill.title":"Born-Alive Abortion Survivors Protection Act","bill.number":"619","bill.sponsors.0.isByRequest":"N","cboCostEstimates.0.description":"As reported by the House Committee on Energy and Commerce on\nMay 24, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":144,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60575","bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/619/committees?format=json","request.format":"json","latestAction_actionDate":"2021-03-22","committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/526?format=json","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/619/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/619/summaries?format=json","bill.cosponsors.count":208,"cboCostEstimates.0.title":"H.R. 619, NAPA Reauthorization Act","bill.titles.count":3,"bill.sponsors.0.url":"https://api.congress.gov/v3/member/W000812?format=json","bill.sponsors.0.party":"R","introducedDate":"2023-01-30","bill.originChamberCode":"H","subjects.count":5,"bill.committees.count":1,"bill.sponsors.0.firstName":"Ann","sponsors.0.state":"NY","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/619/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/619/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/619?format=json","bill.introducedDate":"2021-01-28","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 19 (Monday, January 30, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. TONKO:\nH.R. 619.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 3\n[Page H510]\n","sponsors.0.district":20,"bill.sponsors.0.state":"MO","bill.sponsors.0.district":2,"sponsors.0.firstName":"Paul","bill.type":"HR","updateDateIncludingText":"2024-11-12T19:25:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/619/text?format=json","bill.sponsors.0.lastName":"Wagner"}}} +{"type":"relationship","id":"18578","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"1919","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/65/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"McConnell","sponsors.0.isByRequest":"N","request.billNumber":"65","sponsors.0.url":"https://api.congress.gov/v3/member/M000355?format=json","latestAction_text":"Referred to the House Committee on Ways and Means.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/65/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/65/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","sponsors.0.party":"R","number":"65","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2025-02-27","cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/65/cosponsors?format=json","sponsors.0.bioguideId":"M000355","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/65/titles?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/65/actions?format=json","latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/65/relatedbills?format=json","textVersions.count":1,"sponsors.0.fullName":"Sen. McConnell, Mitch [R-KY]","titles.count":2,"introducedDate":"2024-03-14","cosponsors.count":49,"subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hjres/65?format=json","sponsors.0.firstName":"Mitch","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"18579","label":"SPONSORED","start":{"id":"3964","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:22Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/m000355_200.jpg","startYear":"1985","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"McConnell, Mitch","state":"Kentucky","url":"https://api.congress.gov/v3/member/M000355?format=json","bioguideId":"M000355"}},"end":{"id":"9760","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/65/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T17:12:38Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"McConnell","sponsors.0.isByRequest":"N","request.billNumber":"65","sponsors.0.url":"https://api.congress.gov/v3/member/M000355?format=json","latestAction_text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/65/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/65/subjects?format=json","policyArea.name":"Environmental Protection","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to \"Reconsideration of the National Ambient Air Quality Standards for Particulate Matter\".","latestAction.text":"Read twice and referred to the Committee on Environment and Public Works. (Sponsor introductory remarks on measure: CR S2414; text: CR S2414)","sponsors.0.party":"R","number":"65","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2022-12-01","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/65/cosponsors?format=json","sponsors.0.bioguideId":"M000355","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/65/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/65/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/65/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-03-14","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/65/relatedbills?format=json","sponsors.0.fullName":"Sen. McConnell, Mitch [R-KY]","titles.count":2,"cosponsors.count":49,"introducedDate":"2024-03-14","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/65?format=json","sponsors.0.firstName":"Mitch","updateDateIncludingText":"2025-01-14T17:12:38Z"}}} +{"type":"relationship","id":"18761","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"1934","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","relatedBills.count":1,"updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Failed of passage in Senate by Yea-Nay Vote. 47 - 52. Record Vote Number: 95. (consideration: CR S1364, S1367-1390)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-26","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":37,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sjres/10?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-03-07T19:16:21Z"}}} +{"type":"relationship","id":"18762","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"1950","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","relatedBills.count":1,"updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Referred to the House Committee on the Budget.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-02-10","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":37,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/hconres/10?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-03-07T19:16:21Z"}}} +{"type":"relationship","id":"18763","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"1959","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","relatedBills.count":1,"updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Referred to the Committee on the Judiciary. (text: CR S1668)","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","policyArea.name":"Armed Forces and National Security","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2025-03-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-19","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":2,"introducedDate":"2023-02-07","cosponsors.count":37,"request.contentType":"application/json","subjects.count":8,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/119/sconres/10?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-03-07T19:16:21Z"}}} +{"type":"relationship","id":"18764","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"9702","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"427","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Read twice and referred to the Committee on Commerce, Science, and Transportation.","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/427/committees?format=json","title":"Financial Freedom Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"427","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2021-02-24","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/427/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/427/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/427/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/427?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"18765","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"9953","labels":["Bill"],"properties":{"relatedBills.count":1,"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/10/text?format=json","updateDate":"2025-03-07T19:16:21Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"10","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"Armed Forces and National Security","committees.url":"https://api.congress.gov/v3/bill/118/sjres/10/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/10/subjects?format=json","type":"SJRES","title":"A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Department of Veterans Affairs relating to \"Reproductive Health Services\".","latestAction.text":"Motion to proceed to consideration of measure rejected in Senate by Yea-Nay Vote. 48 - 51. Record Vote Number: 90.","sponsors.0.party":"R","number":"10","cosponsors.countIncludingWithdrawnCosponsors":37,"request.format":"json","latestAction_actionDate":"2021-01-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/sjres/10/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/10/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/sjres/10/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/10/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/10/relatedbills?format=json","latestAction.actionDate":"2023-04-19","textVersions.count":2,"sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","latestAction.actionTime":"16:52:34","titles.count":2,"cosponsors.count":37,"introducedDate":"2023-02-07","subjects.count":8,"request.contentType":"application/json","sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/hres/10?format=json","updateDateIncludingText":"2025-03-07T19:16:21Z","sponsors.0.firstName":"Tommy","latestAction_actionTime":"16:52:34"}}} +{"type":"relationship","id":"18766","label":"SPONSORED","start":{"id":"3928","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:28Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/t000278_200.jpg","startYear":"2021","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Tuberville, Tommy","state":"Alabama","url":"https://api.congress.gov/v3/member/T000278?format=json","bioguideId":"T000278"}},"end":{"id":"9989","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/427/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Tuberville","sponsors.0.isByRequest":"N","request.billNumber":"427","sponsors.0.url":"https://api.congress.gov/v3/member/T000278?format=json","latestAction_text":"Resolution agreed to in Senate with an amendment and with a preamble by Voice Vote. (consideration: CR S2459; text: CR S2459-2460)","policyArea.name":"Labor and Employment","subjects.url":"https://api.congress.gov/v3/bill/118/s/427/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/427/committees?format=json","title":"Financial Freedom Act of 2023","type":"S","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"427","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-05-11","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/427/cosponsors?format=json","sponsors.0.bioguideId":"T000278","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/427/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/s/427/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/427/actions?format=json","latestAction.actionDate":"2023-02-15","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/427/relatedbills?format=json","sponsors.0.fullName":"Sen. Tuberville, Tommy [R-AL]","titles.count":3,"introducedDate":"2023-02-15","cosponsors.count":7,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"AL","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sres/427?format=json","sponsors.0.firstName":"Tommy","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"19404","label":"SPONSORED","start":{"id":"4101","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/v000136_200.jpg","district":"2","startYear":"2023","name":"Vasquez, Gabe","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"New Mexico","url":"https://api.congress.gov/v3/member/V000136?format=json","bioguideId":"V000136"}},"end":{"id":"8601","labels":["Bill"],"properties":{"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/6480/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Vasquez","bill.latestAction.actionDate":"2022-11-01","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","policyArea.name":"Immigration","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/6480/summaries?format=json","type":"HR","latestAction.text":"Referred to the House Committee on the Judiciary.","bill.summaries.count":1,"sponsors.0.party":"D","number":"6480","bill.cosponsors.countIncludingWithdrawnCosponsors":24,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 16 (Tuesday, January 25, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. CAMMACK:\nH.R. 6480.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8\n[Page H302]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/6480/cosponsors?format=json","sponsors.0.bioguideId":"V000136","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/6480/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-11-24","bill.policyArea.name":"Crime and Law Enforcement","sponsors.0.fullName":"Rep. Vasquez, Gabe [D-NM-2]","bill.sponsors.0.bioguideId":"C001039","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":5,"bill.latestAction.text":"Referred to the Subcommittee on Crime, Terrorism, and Homeland Security.","request.contentType":"application/json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cammack, Kat [R-FL-3]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/6480/text?format=json","bill.updateDate":"2025-01-03T07:39:23Z","updateDate":"2024-07-24T15:19:44Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/6480/subjects?format=json","committees.count":1,"request.congress":"118","actions.count":3,"sponsors.0.url":"https://api.congress.gov/v3/member/V000136?format=json","request.billNumber":"6480","subjects.url":"https://api.congress.gov/v3/bill/118/hr/6480/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/6480/committees?format=json","bill.updateDateIncludingText":"2025-01-03T07:39:23Z","title":"Strengthening Our Workforce Act of 2023","bill.title":"Human Trafficking Awareness Training Act","bill.number":"6480","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":5,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/6480/committees?format=json","request.format":"json","latestAction_actionDate":"2022-11-01","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/6480/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/6480/summaries?format=json","bill.cosponsors.count":24,"bill.titles.count":3,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001039?format=json","introducedDate":"2023-11-24","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":1,"bill.sponsors.0.firstName":"Kat","sponsors.0.state":"NM","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/6480/actions?format=json","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/6480/titles?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/6480?format=json","bill.introducedDate":"2022-01-25","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 193 (Friday, November 24, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. VASQUEZ:\nH.R. 6480.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, section 8, Clauses 1 and 18 of the United States\nConstitution, to provide for the general welfare and make all\nlaws necessary and proper to carry out the powers of the\nCongress.\nThe single subject of this legislation is:\nImmigration Reform\n[Page H5906]\n","sponsors.0.district":2,"bill.sponsors.0.state":"FL","bill.sponsors.0.district":3,"sponsors.0.firstName":"Gabe","bill.type":"HR","updateDateIncludingText":"2024-07-24T15:19:44Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/6480/text?format=json","bill.sponsors.0.lastName":"Cammack"}}} +{"type":"relationship","id":"19625","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"8705","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8535/cosponsors?format=json","congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Houchin","bill.latestAction.actionDate":"2022-07-27","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Public Lands and Natural Resources","bill.relatedBills.count":1,"bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/8535/summaries?format=json","type":"HR","latestAction.text":"Referred to the Subcommittee on Forestry.","bill.summaries.count":1,"sponsors.0.party":"R","number":"8535","bill.cosponsors.countIncludingWithdrawnCosponsors":123,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 125 (Wednesday, July 27, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Ms. LEE of California:\nH.R. 8535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18, to make all laws, which\nshall be necessary and proper for carrying into execution the\nforegoing powers.\n[Page H7256]\n","cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/8535/cosponsors?format=json","sponsors.0.bioguideId":"H001093","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/8535/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/118/hr/8535/relatedbills?format=json","latestAction.actionDate":"2024-09-03","bill.policyArea.name":"Congress","sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","bill.sponsors.0.bioguideId":"L000551","bill.originChamber":"House","bill.actions.count":4,"titles.count":3,"cosponsors.count":123,"bill.latestAction.text":"Referred to the Committee on Financial Services, and in addition to the Committee on House Administration, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/8535/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Lee, Barbara [D-CA-13]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/8535/text?format=json","bill.updateDate":"2025-01-03T07:56:43Z","updateDate":"2025-01-24T18:06:37Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/8535/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","request.billNumber":"8535","committees.url":"https://api.congress.gov/v3/bill/118/hr/8535/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/8535/subjects?format=json","bill.updateDateIncludingText":"2025-01-03T07:56:43Z","title":"Benjamin Harrison National Recreation Area and Wilderness Establishment Act of 2024","bill.title":"Shirley Chisholm Congressional Gold Medal Act","bill.number":"8535","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":123,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/8535/committees?format=json","request.format":"json","latestAction_actionDate":"2022-07-27","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/8535/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/8535/summaries?format=json","bill.cosponsors.count":123,"bill.titles.count":3,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/L000551?format=json","introducedDate":"2024-05-23","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"BARBARA","sponsors.0.state":"IN","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/8535/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/8535/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/8535?format=json","bill.introducedDate":"2022-07-27","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 90 (Thursday, May 23, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. HOUCHIN:\nH.R. 8535.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8\nThe single subject of this legislation is:\nTo establish the Benjamin Harrison National Recreation Area\nand Wilderness in the State of Indiana, and for other\npurposes.\n[Page H3524]\n","sponsors.0.district":9,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":13,"sponsors.0.firstName":"Erin","bill.type":"HR","updateDateIncludingText":"2025-01-24T18:06:37Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/8535/text?format=json","bill.sponsors.0.lastName":"LEE"}}} +{"type":"relationship","id":"19626","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"9875","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Houchin","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the House Committee on Foreign Affairs.","policyArea.name":"Congress","type":"HRES","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"847","cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/847/cosponsors?format=json","sponsors.0.bioguideId":"H001093","actions.url":"https://api.congress.gov/v3/bill/118/hres/847/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/847/relatedbills?format=json","latestAction.actionDate":"2023-11-07","textVersions.count":2,"sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","titles.count":2,"cosponsors.count":47,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-269","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/847/text?format=json","updateDate":"2024-11-09T04:51:59Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":13,"request.billNumber":"847","sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/847/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/847/committees?format=json","title":"Providing for consideration of the bill (H.R. 4664) making appropriations for financial services and general government for the fiscal year ending September 30, 2024, and for other purposes.","cosponsors.countIncludingWithdrawnCosponsors":47,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2021-12-13","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/269?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/847/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/847/summaries?format=json","latestAction.actionTime":"14:11:04","introducedDate":"2023-11-06","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/847?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Erin","updateDateIncludingText":"2024-11-09T04:51:59Z"}}} +{"type":"relationship","id":"19627","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"9902","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/550/text?format=json","updateDate":"2024-07-24T15:21:49Z","originChamber":"House","committees.count":1,"congress":118,"request.congress":"118","actions.count":4,"sponsors.0.lastName":"Houchin","sponsors.0.isByRequest":"N","request.billNumber":"550","sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","latestAction_text":"Referred to the Subcommittee on Middle East, North Africa and Global Counterterrorism.","subjects.url":"https://api.congress.gov/v3/bill/118/hres/550/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/550/committees?format=json","policyArea.name":"Health","type":"HRES","title":"Expressing the sense of the House of Representatives regarding the Centers for Medicare & Medicaid Services developing a mobility metric to guide providers in preventing mobility loss among hospitalized older adults.","latestAction.text":"Referred to the Subcommittee on Health.","sponsors.0.party":"R","number":"550","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-08-04","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/550/cosponsors?format=json","sponsors.0.bioguideId":"H001093","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/550/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/550/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/550/actions?format=json","latestAction.actionDate":"2023-06-29","textVersions.count":1,"sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","titles.count":2,"introducedDate":"2023-06-23","cosponsors.count":3,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/550?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Erin","updateDateIncludingText":"2024-07-24T15:21:49Z"}}} +{"type":"relationship","id":"19628","label":"SPONSORED","start":{"id":"4151","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:54Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/h001093_200.jpg","district":"9","startYear":"2023","name":"Houchin, Erin","partyName":"Republican","attribution":"Image courtesy of the Member","state":"Indiana","url":"https://api.congress.gov/v3/member/H001093?format=json","bioguideId":"H001093"}},"end":{"id":"9927","labels":["Bill"],"properties":{"relatedBills.count":3,"congress":118,"sponsors.0.lastName":"Houchin","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Health.","policyArea.name":"Congress","type":"HRES","latestAction.text":"Motion to reconsider laid on the table Agreed to without objection.","sponsors.0.party":"R","number":"298","cosponsors.url":"https://api.congress.gov/v3/bill/117/hres/298/cosponsors?format=json","sponsors.0.bioguideId":"H001093","actions.url":"https://api.congress.gov/v3/bill/118/hres/298/actions?format=json","textVersions.count":2,"latestAction.actionDate":"2023-04-18","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/298/relatedbills?format=json","sponsors.0.fullName":"Rep. Houchin, Erin [R-IN-9]","titles.count":2,"cosponsors.count":3,"request.contentType":"application/json","committeeReports.0.citation":"H. Rept. 118-37","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/298/text?format=json","updateDate":"2024-11-09T04:56:49Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":11,"request.billNumber":"298","sponsors.0.url":"https://api.congress.gov/v3/member/H001093?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/298/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/298/subjects?format=json","title":"Providing for consideration of the bill (H.R. 734) to amend the Education Amendments of 1972 to provide that for purposes of determining compliance with title IX of such Act in athletics, sex shall be recognized based solely on a person's reproductive biology and genetics at birth, and providing for consideration of the joint resolution (H.J. Res. 42) disapproving the action of the District of Columbia Council in approving the Comprehensive Policing and Justice Reform Amendment Act of 2022.","cosponsors.countIncludingWithdrawnCosponsors":3,"request.format":"json","latestAction_actionDate":"2021-04-09","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/HRPT/37?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/298/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/118/hres/298/summaries?format=json","latestAction.actionTime":"14:10:51","introducedDate":"2023-04-17","subjects.count":3,"sponsors.0.state":"IN","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/298?format=json","sponsors.0.district":9,"sponsors.0.firstName":"Erin","updateDateIncludingText":"2024-11-09T04:56:49Z"}}} +{"type":"relationship","id":"19692","label":"SPONSORED","start":{"id":"4061","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","district":"7","imageUrl":"https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg","startYear":"2019","partyName":"Democratic","name":"Fletcher, Lizzie","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/F000468?format=json","bioguideId":"F000468"}},"end":{"id":"8755","labels":["Bill"],"properties":{"relatedBills.count":2,"bill.cosponsors.url":"https://api.congress.gov/v3/bill/117/hr/3182/cosponsors?format=json","congress":118,"bill.textVersions.count":5,"sponsors.0.lastName":"Fletcher","bill.latestAction.actionDate":"2022-05-16","sponsors.0.isByRequest":"N","latestAction_text":"Became Public Law No: 117-126.","policyArea.name":"Energy","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/3182/summaries?format=json","bill.relatedBills.count":2,"type":"HR","latestAction.text":"Referred to the Subcommittee on Environment, Manufacturing, and Critical Materials.","bill.summaries.count":4,"sponsors.0.party":"D","number":"3182","bill.cosponsors.countIncludingWithdrawnCosponsors":2,"sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 167, Number 83 (Thursday, May 13, 2021)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. CARDENAS:\nH.R. 3182.\nCongress has the power to enact this legislation pursuant\nto the following:\nAritcle 1, Section 1.\nAll legislative powers herein granted shall be vested in a\nCongress of the United States, which shall consist of a\nSenate and House of Representatives.\n[Page H2315]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/3182/cosponsors?format=json","sponsors.0.bioguideId":"F000468","laws.0.number":"117-126","bill.subjects.count":5,"actions.url":"https://api.congress.gov/v3/bill/118/hr/3182/actions?format=json","textVersions.count":1,"relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3182/relatedbills?format=json","latestAction.actionDate":"2023-05-12","bill.policyArea.name":"Commerce","sponsors.0.fullName":"Rep. Fletcher, Lizzie [D-TX-7]","bill.sponsors.0.bioguideId":"C001097","laws":[],"bill.originChamber":"House","bill.actions.count":23,"titles.count":4,"cosponsors.count":1,"bill.latestAction.text":"Became Public Law No: 117-126.","request.contentType":"application/json","bill.laws.0.type":"Public Law","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/3182/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Cárdenas, Tony [D-CA-29]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/3182/text?format=json","bill.updateDate":"2025-01-16T11:48:07Z","updateDate":"2025-01-16T11:56:46Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/3182/subjects?format=json","committees.count":2,"bill.laws.0.number":"117-126","request.congress":"118","actions.count":5,"sponsors.0.url":"https://api.congress.gov/v3/member/F000468?format=json","request.billNumber":"3182","committees.url":"https://api.congress.gov/v3/bill/118/hr/3182/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hr/3182/subjects?format=json","bill.updateDateIncludingText":"2025-01-16T11:48:07Z","title":"CLEAR Act","bill.title":"Safe Sleep for Babies Act of 2021","bill.number":"3182","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":1,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/3182/committees?format=json","request.format":"json","latestAction_actionDate":"2022-05-16","summaries.count":4,"titles.url":"https://api.congress.gov/v3/bill/118/hr/3182/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/117/hr/3182/summaries?format=json","bill.cosponsors.count":2,"bill.titles.count":7,"bill.sponsors.0.party":"D","bill.sponsors.0.url":"https://api.congress.gov/v3/member/C001097?format=json","introducedDate":"2023-05-10","bill.originChamberCode":"H","subjects.count":12,"bill.committees.count":2,"bill.sponsors.0.firstName":"Tony","sponsors.0.state":"TX","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/3182/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/3182/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/3182?format=json","bill.introducedDate":"2021-05-13","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 169, Number 79 (Wednesday, May 10, 2023)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. FLETCHER:\nH.R. 3182.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, section 8 of the Constitution of the United\nStates.\nThe single subject of this legislation is:\nEnergy\n[Page H2245]\n","sponsors.0.district":7,"bill.sponsors.0.state":"CA","bill.sponsors.0.district":29,"bill.type":"HR","updateDateIncludingText":"2025-01-16T11:56:46Z","sponsors.0.firstName":"Lizzie","laws.0.type":"Public Law","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/3182/text?format=json","bill.sponsors.0.lastName":"Cárdenas"}}} +{"type":"relationship","id":"19743","label":"SPONSORED","start":{"id":"4141","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:55Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/t000482_200.jpg","district":"3","startYear":"2019","name":"Trahan, Lori","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Massachusetts","url":"https://api.congress.gov/v3/member/T000482?format=json","bioguideId":"T000482"}},"end":{"id":"8777","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"bill.textVersions.count":1,"sponsors.0.lastName":"Trahan","bill.latestAction.actionDate":"2022-04-18","sponsors.0.isByRequest":"N","latestAction_text":"Referred to the Subcommittee on Conservation and Forestry.","policyArea.name":"Health","bill.summaries.url":"https://api.congress.gov/v3/bill/117/hr/7397/summaries?format=json","bill.relatedBills.count":1,"type":"HR","latestAction.text":"Referred to the Subcommittee on Health.","bill.summaries.count":1,"sponsors.0.party":"D","bill.sponsors.0.middleName":"C.","number":"7397","sponsors":[],"bill.constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 168, Number 60 (Tuesday, April 5, 2022)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mr. BURGESS:\nH.R. 7397.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle 1, Section 8 of the U.S. Constitution\n[Page H4191]\n","cosponsors.url":"https://api.congress.gov/v3/bill/118/hr/7397/cosponsors?format=json","sponsors.0.bioguideId":"T000482","bill.subjects.count":1,"actions.url":"https://api.congress.gov/v3/bill/118/hr/7397/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7397/relatedbills?format=json","textVersions.count":1,"latestAction.actionDate":"2024-12-17","bill.policyArea.name":"Energy","sponsors.0.fullName":"Rep. Trahan, Lori [D-MA-3]","bill.sponsors.0.bioguideId":"B001248","bill.originChamber":"House","bill.actions.count":5,"titles.count":2,"cosponsors.count":15,"bill.latestAction.text":"Referred to the Subcommittee on Conservation and Forestry.","request.contentType":"application/json","bill.relatedBills.url":"https://api.congress.gov/v3/bill/117/hr/7397/relatedbills?format=json","bill.congress":117,"bill.sponsors.0.fullName":"Rep. Burgess, Michael C. [R-TX-26]","textVersions.url":"https://api.congress.gov/v3/bill/118/hr/7397/text?format=json","bill.updateDate":"2025-01-24T18:06:37Z","updateDate":"2024-12-19T09:06:26Z","originChamber":"House","bill.subjects.url":"https://api.congress.gov/v3/bill/117/hr/7397/subjects?format=json","committees.count":2,"request.congress":"118","actions.count":6,"sponsors.0.url":"https://api.congress.gov/v3/member/T000482?format=json","request.billNumber":"7397","subjects.url":"https://api.congress.gov/v3/bill/118/hr/7397/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hr/7397/committees?format=json","bill.updateDateIncludingText":"2025-01-24T18:06:37Z","title":"To amend title XVIII of the Social Security Act to establish a definition of essential health system in statute.","bill.title":"To restart oil and gas leasing and permitting on Federal land, and for other purposes.","bill.number":"7397","bill.sponsors.0.isByRequest":"N","cosponsors.countIncludingWithdrawnCosponsors":15,"bill.committees.url":"https://api.congress.gov/v3/bill/117/hr/7397/committees?format=json","request.format":"json","sponsors.0.middleName":"C.","latestAction_actionDate":"2022-04-18","summaries.count":1,"titles.url":"https://api.congress.gov/v3/bill/118/hr/7397/titles?format=json","request.billType":"hr","summaries.url":"https://api.congress.gov/v3/bill/118/hr/7397/summaries?format=json","bill.titles.count":2,"bill.sponsors.0.party":"R","bill.sponsors.0.url":"https://api.congress.gov/v3/member/B001248?format=json","introducedDate":"2024-02-15","bill.originChamberCode":"H","subjects.count":1,"bill.committees.count":2,"bill.sponsors.0.firstName":"Michael","sponsors.0.state":"MA","bill.titles.url":"https://api.congress.gov/v3/bill/117/hr/7397/titles?format=json","bill.actions.url":"https://api.congress.gov/v3/bill/117/hr/7397/actions?format=json","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hr/7397?format=json","bill.introducedDate":"2022-04-05","constitutionalAuthorityStatementText":"
\n[Congressional Record Volume 170, Number 30 (Thursday, February 15, 2024)]\n[House]\nFrom the Congressional Record Online through the Government Publishing Office [www.gpo.gov]\nBy Mrs. TRAHAN:\nH.R. 7397.\nCongress has the power to enact this legislation pursuant\nto the following:\nArticle I, Section 8, Clause 18\nThe single subject of this legislation is:\nHealthcare\n[Page H680]\n","sponsors.0.district":3,"bill.sponsors.0.state":"TX","bill.sponsors.0.district":26,"sponsors.0.firstName":"Lori","bill.type":"HR","updateDateIncludingText":"2024-12-19T09:06:26Z","bill.textVersions.url":"https://api.congress.gov/v3/bill/117/hr/7397/text?format=json","bill.sponsors.0.lastName":"Burgess"}}} +{"type":"relationship","id":"20762","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9299","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5066/text?format=json","updateDate":"2024-09-25T02:53:17Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"5066","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Became Public Law No: 117-358.","subjects.url":"https://api.congress.gov/v3/bill/117/s/5066/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/5066/committees?format=json","policyArea.name":"Government Operations and Politics","type":"S","title":"No Taxation Without Representation Act of 2024","latestAction.text":"Read twice and referred to the Committee on Finance.","sponsors.0.party":"R","number":"5066","cosponsors.countIncludingWithdrawnCosponsors":1,"request.format":"json","latestAction_actionDate":"2023-01-05","summaries.count":4,"cosponsors.url":"https://api.congress.gov/v3/bill/117/s/5066/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5066/titles?format=json","laws.0.number":"117-358","summaries.url":"https://api.congress.gov/v3/bill/117/s/5066/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5066/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-17","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":3,"introducedDate":"2024-09-17","cosponsors.count":1,"request.contentType":"application/json","subjects.count":10,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5066?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-03-07T17:27:15Z","laws.0.type":"Public Law"}}} +{"type":"relationship","id":"20763","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9319","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Paul","cboCostEstimates.0.pubDate":"2024-07-31T19:33:00Z","sponsors.0.isByRequest":"N","latestAction_text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 628.","policyArea.name":"Government Operations and Politics","type":"S","latestAction.text":"Placed on Senate Legislative Calendar under General Orders. Calendar No. 488.","sponsors.0.party":"R","number":"3664","cosponsors.url":"https://api.congress.gov/v3/bill/117/s/3664/cosponsors?format=json","sponsors.0.bioguideId":"P000603","actions.url":"https://api.congress.gov/v3/bill/118/s/3664/actions?format=json","textVersions.count":2,"relatedBills.url":"https://api.congress.gov/v3/bill/118/s/3664/relatedbills?format=json","latestAction.actionDate":"2024-09-09","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":4,"cosponsors.count":6,"request.contentType":"application/json","committeeReports.0.citation":"S. Rept. 118-210","textVersions.url":"https://api.congress.gov/v3/bill/118/s/3664/text?format=json","updateDate":"2025-01-17T03:11:13Z","originChamber":"Senate","committees.count":1,"request.congress":"118","actions.count":6,"request.billNumber":"3664","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","committees.url":"https://api.congress.gov/v3/bill/118/s/3664/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/3664/subjects?format=json","title":"Royalty Transparency Act","cboCostEstimates.0.description":"As ordered reported by the Senate Committee on Homeland Security and Governmental Affairs on March 6, 2024\n","cosponsors.countIncludingWithdrawnCosponsors":6,"cboCostEstimates.0.url":"https://www.cbo.gov/publication/60589","request.format":"json","latestAction_actionDate":"2022-12-12","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/118/SRPT/210?format=json","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/3664/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/3664/summaries?format=json","cboCostEstimates.0.title":"S. 3664, Royalty Transparency Act","introducedDate":"2024-01-25","subjects.count":7,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/3664?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-17T03:11:13Z"}}} +{"type":"relationship","id":"20764","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9337","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/5082/text?format=json","updateDate":"2025-01-14T19:03:55Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"5082","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","committees.url":"https://api.congress.gov/v3/bill/118/s/5082/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/117/s/5082/subjects?format=json","policyArea.name":"International Affairs","type":"S","title":"Regulations from the Executive in Need of Scrutiny Act of 2024","latestAction.text":"Read twice and referred to the Committee on Homeland Security and Governmental Affairs.","sponsors.0.party":"R","number":"5082","cosponsors.countIncludingWithdrawnCosponsors":7,"request.format":"json","latestAction_actionDate":"2022-11-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/5082/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/5082/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/5082/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/5082/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-09-18","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":3,"cosponsors.count":7,"introducedDate":"2024-09-18","subjects.count":1,"request.contentType":"application/json","sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/5082?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:03:55Z"}}} +{"type":"relationship","id":"20765","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9764","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/55/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"55","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Star Print ordered on the joint resolution.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/55/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/55/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"55","cosponsors.countIncludingWithdrawnCosponsors":49,"request.format":"json","latestAction_actionDate":"2022-09-21","summaries.count":2,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/55/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/55/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/55/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/55/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/55/relatedbills?format=json","latestAction.actionDate":"2024-01-22","textVersions.count":1,"sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":49,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/55?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"20766","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9769","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/56/text?format=json","relatedBills.count":2,"updateDate":"2025-01-14T19:00:46Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"56","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on Foreign Relations.","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/56/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/sjres/56/committees?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sales to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"56","cosponsors.countIncludingWithdrawnCosponsors":13,"request.format":"json","latestAction_actionDate":"2022-07-14","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/56/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/56/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/56/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/56/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/56/relatedbills?format=json","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":13,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/56?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-01-14T19:00:46Z"}}} +{"type":"relationship","id":"20767","label":"SPONSORED","start":{"id":"3951","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:24Z","chamber":"Senate","imageUrl":"https://www.congress.gov/img/member/p000603_200.jpg","startYear":"2011","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Paul, Rand","state":"Kentucky","url":"https://api.congress.gov/v3/member/P000603?format=json","bioguideId":"P000603"}},"end":{"id":"9770","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/sjres/54/text?format=json","relatedBills.count":1,"updateDate":"2025-02-22T01:21:13Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Paul","sponsors.0.isByRequest":"N","request.billNumber":"54","sponsors.0.url":"https://api.congress.gov/v3/member/P000603?format=json","latestAction_text":"Read twice and referred to the Committee on the Judiciary.","committees.url":"https://api.congress.gov/v3/bill/118/sjres/54/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/sjres/54/subjects?format=json","policyArea.name":"International Affairs","type":"SJRES","title":"A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Egypt of certain defense articles and services.","latestAction.text":"Read twice and referred to the Committee on Foreign Relations.","sponsors.0.party":"R","number":"54","cosponsors.countIncludingWithdrawnCosponsors":19,"request.format":"json","latestAction_actionDate":"2022-06-23","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/117/sjres/54/cosponsors?format=json","sponsors.0.bioguideId":"P000603","request.billType":"sjres","titles.url":"https://api.congress.gov/v3/bill/118/sjres/54/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/sjres/54/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/sjres/54/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-01-22","relatedBills.url":"https://api.congress.gov/v3/bill/118/sjres/54/relatedbills?format=json","sponsors.0.fullName":"Sen. Paul, Rand [R-KY]","titles.count":2,"introducedDate":"2024-01-22","cosponsors.count":19,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"KY","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/sjres/54?format=json","sponsors.0.firstName":"Rand","updateDateIncludingText":"2025-02-22T01:21:13Z"}}} +{"type":"relationship","id":"23312","label":"SPONSORED","start":{"id":"4012","labels":["Person"],"properties":{"updateDate":"2025-03-09T12:42:13Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/b001236_200.jpg","startYear":"2001","partyName":"Republican","attribution":"Courtesy U.S. Senate Historical Office","name":"Boozman, John","state":"Arkansas","endYear":"2011","url":"https://api.congress.gov/v3/member/B001236?format=json","bioguideId":"B001236"}},"end":{"id":"9522","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/s/2966/text?format=json","relatedBills.count":1,"updateDate":"2025-01-14T19:02:28Z","originChamber":"Senate","committees.count":1,"congress":118,"request.congress":"118","actions.count":2,"sponsors.0.lastName":"Boozman","sponsors.0.isByRequest":"N","request.billNumber":"2966","sponsors.0.url":"https://api.congress.gov/v3/member/B001236?format=json","latestAction_text":"Read twice and referred to the Committee on Finance.","committees.url":"https://api.congress.gov/v3/bill/118/s/2966/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/s/2966/subjects?format=json","policyArea.name":"Health","type":"S","title":"Targeting Emotional and Mental Stability Act of 2023","latestAction.text":"Read twice and referred to the Committee on Health, Education, Labor, and Pensions.","sponsors.0.party":"R","number":"2966","cosponsors.countIncludingWithdrawnCosponsors":6,"request.format":"json","latestAction_actionDate":"2021-10-07","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/s/2966/cosponsors?format=json","sponsors.0.bioguideId":"B001236","request.billType":"s","titles.url":"https://api.congress.gov/v3/bill/118/s/2966/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/s/2966/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/s/2966/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2023-09-28","relatedBills.url":"https://api.congress.gov/v3/bill/118/s/2966/relatedbills?format=json","sponsors.0.fullName":"Sen. Boozman, John [R-AR]","titles.count":3,"introducedDate":"2023-09-28","cosponsors.count":6,"request.contentType":"application/json","subjects.count":7,"sponsors.0.state":"AR","originChamberCode":"S","url":"https://api.congress.gov/v3/bill/117/s/2966?format=json","sponsors.0.firstName":"John","updateDateIncludingText":"2025-01-14T19:02:28Z"}}} +{"type":"relationship","id":"26518","label":"SPONSORED","start":{"id":"4057","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:59Z","chamber":"House of Representatives","imageUrl":"https://www.congress.gov/img/member/c001131_200.jpg","district":"35","startYear":"2023","name":"Casar, Greg","partyName":"Democratic","attribution":"Image courtesy of the Member","state":"Texas","url":"https://api.congress.gov/v3/member/C001131?format=json","bioguideId":"C001131"}},"end":{"id":"9830","labels":["Bill"],"properties":{"textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1525/text?format=json","updateDate":"2024-12-16T19:19:16Z","originChamber":"House","committees.count":4,"congress":118,"request.congress":"118","actions.count":7,"sponsors.0.lastName":"Casar","sponsors.0.isByRequest":"N","request.billNumber":"1525","sponsors.0.url":"https://api.congress.gov/v3/member/C001131?format=json","latestAction_text":"Referred to the Committee on the Judiciary, and in addition to the Committee on Foreign Affairs, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","policyArea.name":"Immigration","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1525/subjects?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1525/committees?format=json","type":"HRES","title":"Calling for comprehensive legislation that addresses United States policies contributing to forced migration and displacement, promotes an immigration system that addresses the root causes of migration, reaffirms United States commitment to asylum, and provides a roadmap to citizenship for immigrants living in the United States.","latestAction.text":"Referred to the Committee on the Judiciary, and in addition to the Committees on Foreign Affairs, Financial Services, and Ways and Means, for a period to be subsequently determined by the Speaker, in each case for consideration of such provisions as fall within the jurisdiction of the committee concerned.","sponsors.0.party":"D","number":"1525","cosponsors.countIncludingWithdrawnCosponsors":31,"request.format":"json","latestAction_actionDate":"2022-12-15","summaries.count":1,"cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1525/cosponsors?format=json","sponsors.0.bioguideId":"C001131","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1525/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1525/summaries?format=json","actions.url":"https://api.congress.gov/v3/bill/118/hres/1525/actions?format=json","textVersions.count":1,"latestAction.actionDate":"2024-10-01","sponsors.0.fullName":"Rep. Casar, Greg [D-TX-35]","titles.count":2,"introducedDate":"2024-10-01","cosponsors.count":31,"request.contentType":"application/json","subjects.count":1,"sponsors.0.state":"TX","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1525?format=json","sponsors.0.district":35,"sponsors.0.firstName":"Greg","updateDateIncludingText":"2024-12-16T19:19:16Z"}}} +{"type":"relationship","id":"26624","label":"SPONSORED","start":{"id":"4109","labels":["Person"],"properties":{"updateDate":"2025-01-21T18:00:57Z","chamber":"House of Representatives","district":"8","imageUrl":"https://www.congress.gov/img/member/j000294_200.jpg","startYear":"2013","partyName":"Democratic","name":"Jeffries, Hakeem S.","attribution":"Image courtesy of the Member","state":"New York","url":"https://api.congress.gov/v3/member/J000294?format=json","bioguideId":"J000294"}},"end":{"id":"9847","labels":["Bill"],"properties":{"relatedBills.count":1,"congress":118,"sponsors.0.lastName":"Jeffries","sponsors.0.isByRequest":"N","latestAction_text":"Motion to reconsider laid on the table Agreed to without objection.","policyArea.name":"International Affairs","type":"HRES","latestAction.text":"Referred to the House Committee on Foreign Affairs.","sponsors.0.party":"D","number":"1396","cosponsors.url":"https://api.congress.gov/v3/bill/118/hres/1396/cosponsors?format=json","sponsors.0.bioguideId":"J000294","actions.url":"https://api.congress.gov/v3/bill/118/hres/1396/actions?format=json","relatedBills.url":"https://api.congress.gov/v3/bill/118/hres/1396/relatedbills?format=json","latestAction.actionDate":"2024-07-30","textVersions.count":1,"sponsors.0.fullName":"Rep. Jeffries, Hakeem S. [D-NY-8]","titles.count":2,"cosponsors.count":12,"request.contentType":"application/json","latestAction_actionTime":"19:29:30","committeeReports.0.citation":"H. Rept. 117-507","textVersions.url":"https://api.congress.gov/v3/bill/118/hres/1396/text?format=json","updateDate":"2024-08-29T17:07:03Z","originChamber":"House","committees.count":1,"request.congress":"118","actions.count":3,"request.billNumber":"1396","sponsors.0.url":"https://api.congress.gov/v3/member/J000294?format=json","committees.url":"https://api.congress.gov/v3/bill/118/hres/1396/committees?format=json","subjects.url":"https://api.congress.gov/v3/bill/118/hres/1396/subjects?format=json","title":"Recognizing a half century of the independence of the Republic of Cabo Verde and celebrating the contributions of Cabo Verdean-Americans to democracy in Cabo Verde and the United States.","cosponsors.countIncludingWithdrawnCosponsors":12,"request.format":"json","sponsors.0.middleName":"S.","latestAction_actionDate":"2022-09-28","summaries.count":2,"committeeReports.0.url":"https://api.congress.gov/v3/committee-report/117/HRPT/507?format=json","request.billType":"hres","titles.url":"https://api.congress.gov/v3/bill/118/hres/1396/titles?format=json","summaries.url":"https://api.congress.gov/v3/bill/117/hres/1396/summaries?format=json","latestAction.actionTime":"19:29:30","introducedDate":"2024-07-30","subjects.count":1,"sponsors.0.state":"NY","originChamberCode":"H","url":"https://api.congress.gov/v3/bill/117/hres/1396?format=json","sponsors.0.district":8,"updateDateIncludingText":"2024-08-29T17:07:03Z","sponsors.0.firstName":"Hakeem"}}} \ No newline at end of file diff --git a/render/static/js/3d-force-graph.js b/render/static/js/3d-force-graph.js new file mode 100644 index 0000000..35fb9c5 --- /dev/null +++ b/render/static/js/3d-force-graph.js @@ -0,0 +1,444 @@ +import { AmbientLight, DirectionalLight, Vector3, REVISION } from 'three'; + +const three = window.THREE + ? window.THREE // Prefer consumption from global THREE, if exists + : { AmbientLight, DirectionalLight, Vector3, REVISION }; + +import { DragControls as ThreeDragControls } from 'three/examples/jsm/controls/DragControls.js'; + +import ThreeForceGraph from 'three-forcegraph'; +import ThreeRenderObjects from 'three-render-objects'; + +import accessorFn from 'accessor-fn'; +import Kapsule from 'kapsule'; + +import linkKapsule from './kapsule-link.js'; + +// + +const CAMERA_DISTANCE2NODES_FACTOR = 170; + +// + +// Expose config from forceGraph +const bindFG = linkKapsule('forceGraph', ThreeForceGraph); +const linkedFGProps = Object.assign(...[ + 'jsonUrl', + 'graphData', + 'numDimensions', + 'dagMode', + 'dagLevelDistance', + 'dagNodeFilter', + 'onDagError', + 'nodeRelSize', + 'nodeId', + 'nodeVal', + 'nodeResolution', + 'nodeColor', + 'nodeAutoColorBy', + 'nodeOpacity', + 'nodeVisibility', + 'nodeThreeObject', + 'nodeThreeObjectExtend', + 'linkSource', + 'linkTarget', + 'linkVisibility', + 'linkColor', + 'linkAutoColorBy', + 'linkOpacity', + 'linkWidth', + 'linkResolution', + 'linkCurvature', + 'linkCurveRotation', + 'linkMaterial', + 'linkThreeObject', + 'linkThreeObjectExtend', + 'linkPositionUpdate', + 'linkDirectionalArrowLength', + 'linkDirectionalArrowColor', + 'linkDirectionalArrowRelPos', + 'linkDirectionalArrowResolution', + 'linkDirectionalParticles', + 'linkDirectionalParticleSpeed', + 'linkDirectionalParticleWidth', + 'linkDirectionalParticleColor', + 'linkDirectionalParticleResolution', + 'forceEngine', + 'd3AlphaDecay', + 'd3VelocityDecay', + 'd3AlphaMin', + 'ngraphPhysics', + 'warmupTicks', + 'cooldownTicks', + 'cooldownTime', + 'onEngineTick', + 'onEngineStop' +].map(p => ({ [p]: bindFG.linkProp(p)}))); +const linkedFGMethods = Object.assign(...[ + 'refresh', + 'getGraphBbox', + 'd3Force', + 'd3ReheatSimulation', + 'emitParticle' +].map(p => ({ [p]: bindFG.linkMethod(p)}))); + +// Expose config from renderObjs +const bindRenderObjs = linkKapsule('renderObjs', ThreeRenderObjects); +const linkedRenderObjsProps = Object.assign(...[ + 'width', + 'height', + 'backgroundColor', + 'showNavInfo', + 'enablePointerInteraction' +].map(p => ({ [p]: bindRenderObjs.linkProp(p)}))); +const linkedRenderObjsMethods = Object.assign( + ...[ + 'lights', + 'cameraPosition', + 'postProcessingComposer' + ].map(p => ({ [p]: bindRenderObjs.linkMethod(p)})), + { + graph2ScreenCoords: bindRenderObjs.linkMethod('getScreenCoords'), + screen2GraphCoords: bindRenderObjs.linkMethod('getSceneCoords') + } +); + +// + +export default Kapsule({ + + props: { + nodeLabel: { default: 'name', triggerUpdate: false }, + linkLabel: { default: 'name', triggerUpdate: false }, + linkHoverPrecision: { default: 1, onChange: (p, state) => state.renderObjs.lineHoverPrecision(p), triggerUpdate: false }, + enableNavigationControls: { + default: true, + onChange(enable, state) { + const controls = state.renderObjs.controls(); + if (controls) { + controls.enabled = enable; + // trigger mouseup on re-enable to prevent sticky controls + enable && controls.domElement && controls.domElement.dispatchEvent(new PointerEvent('pointerup')); + } + }, + triggerUpdate: false + }, + enableNodeDrag: { default: true, triggerUpdate: false }, + onNodeDrag: { default: () => {}, triggerUpdate: false }, + onNodeDragEnd: { default: () => {}, triggerUpdate: false }, + onNodeClick: { triggerUpdate: false }, + onNodeRightClick: { triggerUpdate: false }, + onNodeHover: { triggerUpdate: false }, + onLinkClick: { triggerUpdate: false }, + onLinkRightClick: { triggerUpdate: false }, + onLinkHover: { triggerUpdate: false }, + onBackgroundClick: { triggerUpdate: false }, + onBackgroundRightClick: { triggerUpdate: false }, + ...linkedFGProps, + ...linkedRenderObjsProps + }, + + methods: { + zoomToFit: function(state, transitionDuration, padding, ...bboxArgs) { + state.renderObjs.fitToBbox( + state.forceGraph.getGraphBbox(...bboxArgs), + transitionDuration, + padding + ); + return this; + }, + pauseAnimation: function(state) { + if (state.animationFrameRequestId !== null) { + cancelAnimationFrame(state.animationFrameRequestId); + state.animationFrameRequestId = null; + } + return this; + }, + + resumeAnimation: function(state) { + if (state.animationFrameRequestId === null) { + this._animationCycle(); + } + return this; + }, + _animationCycle(state) { + if (state.enablePointerInteraction) { + // reset canvas cursor (override dragControls cursor) + this.renderer().domElement.style.cursor = null; + } + + // Frame cycle + state.forceGraph.tickFrame(); + state.renderObjs.tick(); + state.animationFrameRequestId = requestAnimationFrame(this._animationCycle); + }, + scene: state => state.renderObjs.scene(), // Expose scene + camera: state => state.renderObjs.camera(), // Expose camera + renderer: state => state.renderObjs.renderer(), // Expose renderer + controls: state => state.renderObjs.controls(), // Expose controls + tbControls: state => state.renderObjs.tbControls(), // To be deprecated + _destructor: function() { + this.pauseAnimation(); + this.graphData({ nodes: [], links: []}); + }, + ...linkedFGMethods, + ...linkedRenderObjsMethods + }, + + stateInit: ({ controlType, rendererConfig, extraRenderers }) => { + const forceGraph = new ThreeForceGraph(); + return { + forceGraph, + renderObjs: ThreeRenderObjects({ controlType, rendererConfig, extraRenderers }) + .objects([forceGraph]) // Populate scene + .lights([ + new three.AmbientLight(0xcccccc, Math.PI), + new three.DirectionalLight(0xffffff, 0.6 * Math.PI) + ]) + } + }, + + init: function(domNode, state) { + // Wipe DOM + domNode.innerHTML = ''; + + // Add relative container + domNode.appendChild(state.container = document.createElement('div')); + state.container.style.position = 'relative'; + + // Add renderObjs + const roDomNode = document.createElement('div'); + state.container.appendChild(roDomNode); + state.renderObjs(roDomNode); + const camera = state.renderObjs.camera(); + const renderer = state.renderObjs.renderer(); + const controls = state.renderObjs.controls(); + controls.enabled = !!state.enableNavigationControls; + state.lastSetCameraZ = camera.position.z; + + // Add info space + let infoElem; + state.container.appendChild(infoElem = document.createElement('div')); + infoElem.className = 'graph-info-msg'; + infoElem.textContent = ''; + + // config forcegraph + state.forceGraph + .onLoading(() => { infoElem.textContent = 'Loading...' }) + .onFinishLoading(() => { infoElem.textContent = '' }) + .onUpdate(() => { + // sync graph data structures + state.graphData = state.forceGraph.graphData(); + + // re-aim camera, if still in default position (not user modified) + if (camera.position.x === 0 && camera.position.y === 0 && camera.position.z === state.lastSetCameraZ && state.graphData.nodes.length) { + camera.lookAt(state.forceGraph.position); + state.lastSetCameraZ = camera.position.z = Math.cbrt(state.graphData.nodes.length) * CAMERA_DISTANCE2NODES_FACTOR; + } + }) + .onFinishUpdate(() => { + // Setup node drag interaction + if (state._dragControls) { + const curNodeDrag = state.graphData.nodes.find(node => node.__initialFixedPos && !node.__disposeControlsAfterDrag); // detect if there's a node being dragged using the existing drag controls + if (curNodeDrag) { + curNodeDrag.__disposeControlsAfterDrag = true; // postpone previous controls disposal until drag ends + } else { + state._dragControls.dispose(); // cancel previous drag controls + } + + state._dragControls = undefined; + } + + if (state.enableNodeDrag && state.enablePointerInteraction && state.forceEngine === 'd3') { // Can't access node positions programmatically in ngraph + const dragControls = state._dragControls = new ThreeDragControls( + state.graphData.nodes.map(node => node.__threeObj).filter(obj => obj), + camera, + renderer.domElement + ); + + dragControls.addEventListener('dragstart', function (event) { + const nodeObj = getGraphObj(event.object); + if (!nodeObj) return; + + controls.enabled = false; // Disable controls while dragging + + // track drag object movement + event.object.__initialPos = event.object.position.clone(); + event.object.__prevPos = event.object.position.clone(); + + const node = nodeObj.__data; + !node.__initialFixedPos && (node.__initialFixedPos = {fx: node.fx, fy: node.fy, fz: node.fz}); + !node.__initialPos && (node.__initialPos = {x: node.x, y: node.y, z: node.z}); + + // lock node + ['x', 'y', 'z'].forEach(c => node[`f${c}`] = node[c]); + + // drag cursor + renderer.domElement.classList.add('grabbable'); + }); + + dragControls.addEventListener('drag', function (event) { + const nodeObj = getGraphObj(event.object); + if (!nodeObj) return; + + if (!event.object.hasOwnProperty('__graphObjType')) { + // If dragging a child of the node, update the node object instead + const initPos = event.object.__initialPos; + const prevPos = event.object.__prevPos; + const newPos = event.object.position; + + nodeObj.position.add(newPos.clone().sub(prevPos)); // translate node object by the motion delta + prevPos.copy(newPos); + newPos.copy(initPos); // reset child back to its initial position + } + + const node = nodeObj.__data; + const newPos = nodeObj.position; + const translate = {x: newPos.x - node.x, y: newPos.y - node.y, z: newPos.z - node.z}; + // Move fx/fy/fz (and x/y/z) of nodes based on object new position + ['x', 'y', 'z'].forEach(c => node[`f${c}`] = node[c] = newPos[c]); + + state.forceGraph + .d3AlphaTarget(0.3) // keep engine running at low intensity throughout drag + .resetCountdown(); // prevent freeze while dragging + + node.__dragged = true; + state.onNodeDrag(node, translate); + }); + + dragControls.addEventListener('dragend', function (event) { + const nodeObj = getGraphObj(event.object); + if (!nodeObj) return; + + delete(event.object.__initialPos); // remove tracking attributes + delete(event.object.__prevPos); + + const node = nodeObj.__data; + + // dispose previous controls if needed + if (node.__disposeControlsAfterDrag) { + dragControls.dispose(); + delete(node.__disposeControlsAfterDrag); + } + + const initFixedPos = node.__initialFixedPos; + const initPos = node.__initialPos; + const translate = {x: initPos.x - node.x, y: initPos.y - node.y, z: initPos.z - node.z}; + if (initFixedPos) { + ['x', 'y', 'z'].forEach(c => { + const fc = `f${c}`; + if (initFixedPos[fc] === undefined) { + delete(node[fc]) + } + }); + delete(node.__initialFixedPos); + delete(node.__initialPos); + if (node.__dragged) { + delete(node.__dragged); + state.onNodeDragEnd(node, translate); + } + } + + state.forceGraph + .d3AlphaTarget(0) // release engine low intensity + .resetCountdown(); // let the engine readjust after releasing fixed nodes + + if (state.enableNavigationControls) { + controls.enabled = true; // Re-enable controls + controls.domElement && controls.domElement.ownerDocument && controls.domElement.ownerDocument.dispatchEvent( + // simulate mouseup to ensure the controls don't take over after dragend + new PointerEvent('pointerup', { pointerType: 'touch' }) + ); + } + + // clear cursor + renderer.domElement.classList.remove('grabbable'); + }); + } + }); + + // config renderObjs + three.REVISION < 155 && (state.renderObjs.renderer().useLegacyLights = false); // force behavior for three < 155 + state.renderObjs + .hoverOrderComparator((a, b) => { + // Prioritize graph objects + const aObj = getGraphObj(a); + if (!aObj) return 1; + const bObj = getGraphObj(b); + if (!bObj) return -1; + + // Prioritize nodes over links + const isNode = o => o.__graphObjType === 'node'; + return isNode(bObj) - isNode(aObj); + }) + .tooltipContent(obj => { + const graphObj = getGraphObj(obj); + return graphObj ? accessorFn(state[`${graphObj.__graphObjType}Label`])(graphObj.__data) || '' : ''; + }) + .hoverDuringDrag(false) + .onHover(obj => { + // Update tooltip and trigger onHover events + const hoverObj = getGraphObj(obj); + + if (hoverObj !== state.hoverObj) { + const prevObjType = state.hoverObj ? state.hoverObj.__graphObjType : null; + const prevObjData = state.hoverObj ? state.hoverObj.__data : null; + const objType = hoverObj ? hoverObj.__graphObjType : null; + const objData = hoverObj ? hoverObj.__data : null; + if (prevObjType && prevObjType !== objType) { + // Hover out + const fn = state[`on${prevObjType === 'node' ? 'Node' : 'Link'}Hover`]; + fn && fn(null, prevObjData); + } + if (objType) { + // Hover in + const fn = state[`on${objType === 'node' ? 'Node' : 'Link'}Hover`]; + fn && fn(objData, prevObjType === objType ? prevObjData : null); + } + + // set pointer if hovered object is clickable + renderer.domElement.classList[ + ((hoverObj && state[`on${objType === 'node' ? 'Node' : 'Link'}Click`]) || (!hoverObj && state.onBackgroundClick)) ? 'add' : 'remove' + ]('clickable'); + + state.hoverObj = hoverObj; + } + }) + .clickAfterDrag(false) + .onClick((obj, ev) => { + const graphObj = getGraphObj(obj); + if (graphObj) { + const fn = state[`on${graphObj.__graphObjType === 'node' ? 'Node' : 'Link'}Click`]; + fn && fn(graphObj.__data, ev); + } else { + state.onBackgroundClick && state.onBackgroundClick(ev); + } + }) + .onRightClick((obj, ev) => { + // Handle right-click events + const graphObj = getGraphObj(obj); + if (graphObj) { + const fn = state[`on${graphObj.__graphObjType === 'node' ? 'Node' : 'Link'}RightClick`]; + fn && fn(graphObj.__data, ev); + } else { + state.onBackgroundRightClick && state.onBackgroundRightClick(ev); + } + }); + + // + + // Kick-off renderer + this._animationCycle(); + } +}); + +// + +function getGraphObj(object) { + let obj = object; + // recurse up object chain until finding the graph object + while (obj && !obj.hasOwnProperty('__graphObjType')) { + obj = obj.parent; + } + return obj; +} diff --git a/render/static/js/index.d.ts b/render/static/js/index.d.ts new file mode 100644 index 0000000..c4249f6 --- /dev/null +++ b/render/static/js/index.d.ts @@ -0,0 +1,90 @@ +import { Scene, Light, Camera, WebGLRenderer, WebGLRendererParameters, Renderer } from 'three'; +import { EffectComposer } from 'three/examples/jsm/postprocessing/EffectComposer.js'; +import { ThreeForceGraphGeneric, NodeObject, LinkObject } from 'three-forcegraph'; + +export interface ConfigOptions { + controlType?: 'trackball' | 'orbit' | 'fly' + rendererConfig?: WebGLRendererParameters, + extraRenderers?: Renderer[] +} + +type Accessor